/*!**********************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./assets/sass/main.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************/
.error-page .btn-secondary, .single-post-page__comments .submit,
.single-post-page__comments #submit,
.single-post-page__comments input[type=submit], .single-post-page__nav-link a, .single-event__nav-link a, .btn-primary, .error-page .btn-primary, .btn-secondary,
.btn-gold {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.single-post-page__comments .submit:focus-visible,
.single-post-page__comments #submit:focus-visible,
.single-post-page__comments input[type=submit]:focus-visible, .single-post-page__nav-link a:focus-visible, .single-event__nav-link a:focus-visible, .btn-primary:focus-visible, .btn-secondary:focus-visible,
.btn-gold:focus-visible {
  outline: 3px solid rgba(216, 163, 60, 0.45);
  outline-offset: 3px;
}
.single-post-page__comments .submit:disabled,
.single-post-page__comments #submit:disabled,
.single-post-page__comments input[type=submit]:disabled, .single-post-page__nav-link a:disabled, .single-event__nav-link a:disabled, .btn-primary:disabled, .btn-secondary:disabled,
.btn-gold:disabled, .single-post-page__comments [aria-disabled=true].submit,
.single-post-page__comments [aria-disabled=true]#submit,
.single-post-page__comments input[aria-disabled=true][type=submit], .single-post-page__nav-link a[aria-disabled=true], .single-event__nav-link a[aria-disabled=true], [aria-disabled=true].btn-primary, [aria-disabled=true].btn-secondary,
[aria-disabled=true].btn-gold {
  cursor: not-allowed;
  opacity: 0.65;
  pointer-events: none;
}

.healthJourneySlider img, .faqs-section__media img, .single-event__media img, .blog-card__image img, .event-card__image img, .blogs-events .blog-item .media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-page__comments, .single-event__content, .single-event__details, .single-event__media, .blog-card, .event-card, .events-archive__empty, .blogs-events .card {
  background: #ffffff;
  border: 1px solid rgba(236, 236, 236, 0.8);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.blog-card, .event-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.blog-card:hover, .event-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.blog-card__meta, .blogs-events .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.events-archive__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-event__date-badge, .event-card__date-badge, .blogs-events .blog-item .blog-date, .blogs-events .event-item .date-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-story__title, .blogs-events .card-header h3, .section-title {
  color: #06235c;
  font-weight: 700;
  line-height: 1.2;
}

.about-story__eyebrow, .section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #d8a33c;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-description {
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.7;
}

.single-event__date-badge, .event-card__date-badge, .blogs-events .blog-item .blog-date, .blogs-events .event-item .date-box {
  flex-shrink: 0;
  min-width: 72px;
  min-height: 72px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: #06235c;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-page .btn-primary, .btn-secondary,
.btn-gold {
  background: #d8a33c;
  color: #111111;
  font-weight: 700;
  padding: 14px 32px;
}
.error-page .btn-primary:hover, .btn-secondary:hover,
.btn-gold:hover {
  background: #c89c36;
  transform: translateY(-2px);
}

.btn-primary {
  background: #002d62;
  color: #ffffff;
  font-weight: 700;
  padding: 14px 32px;
}
.btn-primary:hover {
  background: #001b4d;
  transform: translateY(-2px);
}

.sr-only,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate-fade-up {
  animation: fade-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-fade-in {
  animation: fade-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.animate-scale-in {
  animation: scale-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-on-scroll.is-visible, .reveal-on-scroll.visible, .reveal-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  min-width: 320px;
  background: #ffffff;
  color: #555555;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background: transparent;
  border: 0;
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:focus-visible {
  outline: 3px solid rgba(216, 163, 60, 0.45);
  outline-offset: 3px;
}

::selection {
  background: rgba(216, 163, 60, 0.28);
  color: #06235c;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  color: #555555;
  font-family: "Lato", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #06235c;
  font-family: "Lato", Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1.125rem;
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

main a,
.site-content a {
  transition: color 0.3s ease;
}

main a:hover,
main a:focus-visible,
.site-content a:hover,
.site-content a:focus-visible {
  color: #d8a33c;
}

.container {
  width: min(1400px, 92%);
  margin-inline: auto;
}

.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-gold {
  color: #d8a33c;
}

.text-navy {
  color: #06235c;
}

.bg-light {
  background: #f7f8fa;
}

.section-heading {
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-align: center;
}

.section-subtitle {
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}
.section-title span {
  color: #d8a33c;
}

.section-description {
  margin-inline: auto;
  max-width: 680px;
}

:where(.services-grid, .why-choose-us) .container {
  width: min(1320px, 100% - 30px);
  margin-inline: auto;
}
:where(.services-grid, .why-choose-us) .section-heading {
  max-width: 760px;
  margin: 0 auto 4rem;
  text-align: center;
}
:where(.services-grid, .why-choose-us) .section-subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(0, 63, 136, 0.08);
  color: #003f88;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
:where(.services-grid, .why-choose-us) .section-title {
  margin-bottom: 1.25rem;
  color: #06235c;
  font-size: clamp(2.125rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}
:where(.services-grid, .why-choose-us) .section-title span {
  color: #16b9d4;
}
:where(.services-grid, .why-choose-us) .section-description {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.8;
}

.has-shadow {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.rounded-sm {
  border-radius: 8px;
}

.rounded-md {
  border-radius: 12px;
}

.rounded-lg {
  border-radius: 20px;
}

.overflow-hidden {
  overflow: hidden;
}

.is-hidden {
  display: none !important;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 80px;
  background: rgba(8, 29, 55, 0.45);
  backdrop-filter: blur(12px);
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  padding-block: 14px;
  background: rgba(0, 27, 77, 0.92);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.navbar .logo-link {
  display: inline-flex;
  color: inherit;
  text-decoration: none;
}
.navbar .logo-link:hover, .navbar .logo-link:focus, .navbar .logo-link:visited {
  color: inherit;
  text-decoration: none;
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.navbar .logo img {
  width: 50px;
  height: auto;
  flex-shrink: 0;
  object-fit: contain;
}
.navbar .logo-text {
  display: flex;
  flex-direction: column;
  color: #faf0ca;
}
.navbar .logo-main {
  color: #faf0ca;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.navbar .logo-main .gentle,
.navbar .logo-main .angles {
  color: #faf0ca;
}
.navbar .logo-sub-wrap {
  display: flex;
  align-items: center;
  font-weight: 700;
  text-align: center;
}
.navbar .logo-sub-wrap::before, .navbar .logo-sub-wrap::after {
  flex: 1;
  border-bottom: 2px solid rgba(255, 255, 255, 0.75);
  content: "";
}
.navbar .logo-sub-wrap::before {
  margin-right: 0.5rem;
}
.navbar .logo-sub-wrap::after {
  margin-left: 0.5rem;
}
.navbar .logo-sub {
  color: rgba(250, 240, 202, 0.85);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}

.navbar .nav-links,
.navbar .sub-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar .nav-links li,
.navbar .nav-links .menu-item,
.navbar .nav-links .menu-item-has-children,
.navbar .sub-menu li,
.navbar .sub-menu .menu-item,
.navbar .sub-menu .menu-item-has-children {
  list-style: none;
}
.navbar .nav-links li::marker,
.navbar .nav-links .menu-item::marker,
.navbar .nav-links .menu-item-has-children::marker,
.navbar .sub-menu li::marker,
.navbar .sub-menu .menu-item::marker,
.navbar .sub-menu .menu-item-has-children::marker {
  content: "";
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}
.navbar .nav-links li,
.navbar .nav-links .menu-item,
.navbar .nav-links .menu-item-has-children {
  position: relative;
}
.navbar .nav-links a {
  position: relative;
  display: block;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar .nav-links a::after {
  position: absolute;
  bottom: -8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #d8a33c;
  content: "";
  transform: translateX(-50%);
  transition: width 0.3s ease;
}
.navbar .nav-links a:hover, .navbar .nav-links a:focus-visible, .navbar .nav-links a.active, .navbar .nav-links a[aria-current=page] {
  color: #d8a33c;
}
.navbar .nav-links a:hover::after, .navbar .nav-links a:focus-visible::after, .navbar .nav-links a.active::after, .navbar .nav-links a[aria-current=page]::after {
  width: 100%;
}
.navbar .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 0.5rem 0;
  border-radius: 0 0 8px 8px;
  background: rgba(0, 27, 77, 0.98);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}
.navbar .sub-menu li,
.navbar .sub-menu .menu-item {
  width: 100%;
}
.navbar .sub-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  border-left: 3px solid transparent;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, padding 0.3s ease;
}
.navbar .sub-menu a::after {
  display: none;
}
.navbar .sub-menu a:hover, .navbar .sub-menu a:focus-visible {
  padding-left: 1.75rem;
  border-left-color: #d8a33c;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.navbar .menu-item-has-children {
  position: relative;
}
.navbar .menu-item-has-children > a {
  padding-right: 2rem;
}
.navbar .menu-item-has-children > a::before {
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  border-color: currentColor transparent transparent;
  border-style: solid;
  border-width: 0.35rem 0.3rem 0;
  content: "";
  opacity: 0.7;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.navbar .menu-item-has-children:hover > .sub-menu, .navbar .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}
.navbar .menu-item-has-children:hover > a::before, .navbar .menu-item-has-children:focus-within > a::before {
  transform: translateY(-50%) rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-actions a,
.nav-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.nav-actions a:focus-visible,
.nav-actions button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}
.nav-actions .phone-btn {
  gap: 0.5rem;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}
.nav-actions .phone-btn i,
.nav-actions .phone-btn svg {
  flex-shrink: 0;
  color: currentColor;
}
.nav-actions .phone-btn:hover, .nav-actions .phone-btn:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
  color: #001b4d;
}
.nav-actions .search-btn {
  width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.1rem;
}
.nav-actions .search-btn i,
.nav-actions .search-btn svg {
  color: currentColor;
  pointer-events: none;
}
.nav-actions .search-btn:hover, .nav-actions .search-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #d8a33c;
  transform: scale(1.05);
}
.nav-actions .login-btn {
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: transparent;
  color: #ffffff;
}
.nav-actions .login-btn:hover, .nav-actions .login-btn:focus-visible {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}
.nav-actions .signup-btn,
.nav-actions .book-btn,
.nav-actions .logout-btn {
  background: #d8a33c;
  box-shadow: 0 15px 35px rgba(216, 163, 60, 0.35);
  color: #111111;
}
.nav-actions .signup-btn:hover, .nav-actions .signup-btn:focus-visible,
.nav-actions .book-btn:hover,
.nav-actions .book-btn:focus-visible,
.nav-actions .logout-btn:hover,
.nav-actions .logout-btn:focus-visible {
  background: #c89c36;
  box-shadow: 0 25px 45px rgba(216, 163, 60, 0.45);
  color: #111111;
  transform: translateY(-3px);
}
.nav-actions .signup-btn,
.nav-actions .book-btn,
.nav-actions .logout-btn {
  min-height: 52px;
  padding: 14px 28px;
}
.nav-actions .signup-btn,
.nav-actions .logout-btn {
  gap: 0.5rem;
}
.nav-actions .signup-btn i,
.nav-actions .signup-btn svg,
.nav-actions .logout-btn i,
.nav-actions .logout-btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: currentColor;
  line-height: 1;
}
.nav-actions .signup-btn span,
.nav-actions .logout-btn span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.nav-actions .logout-btn img {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  object-fit: cover;
  background: #ffffff;
}
.nav-actions .logout-btn span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.menu-toggle {
  z-index: 1001;
  display: none;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}
.menu-toggle:hover, .menu-toggle:focus-visible {
  color: #d8a33c;
}
.menu-toggle:focus-visible {
  border-radius: 4px;
  outline: 2px solid #d8a33c;
  outline-offset: 2px;
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(17, 17, 17, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}
.mobile-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.mobile-overlay[hidden] {
  display: none;
}

body.menu-is-open {
  overflow: hidden;
}

.mobile-menu-actions {
  display: none;
}

@media (max-width: 1320px) and (min-width: 992px) {
  .navbar {
    padding: 14px 28px;
  }
  .navbar .logo img {
    width: 42px;
  }
  .navbar .logo-main {
    font-size: 0.78rem;
    line-height: 1.05;
  }
  .navbar .logo-sub {
    font-size: 0.54rem;
    letter-spacing: 1.4px;
  }
  .navbar .nav-links {
    gap: 20px;
  }
  .navbar .nav-links a {
    font-size: 0.78rem;
    line-height: 1.25;
  }
  .navbar .menu-item-has-children > a {
    padding-right: 1.25rem;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-actions a,
  .nav-actions button {
    min-height: 40px;
    font-size: 0.78rem;
  }
  .nav-actions .search-btn {
    width: 40px;
    height: 40px;
    min-height: 40px;
  }
  .nav-actions .login-btn {
    padding: 8px 14px;
  }
  .nav-actions .signup-btn,
  .nav-actions .book-btn,
  .nav-actions .logout-btn {
    min-height: 44px;
    padding: 11px 18px;
  }
  .nav-actions .logout-btn img {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}
@media (max-width: 1200px) {
  .navbar {
    padding: 16px 32px;
  }
  .navbar .logo {
    gap: 0.5rem;
  }
  .navbar .logo img {
    width: 44px;
  }
  .navbar .logo-main {
    font-size: 0.875rem;
  }
  .navbar .logo-sub {
    font-size: 0.58rem;
    letter-spacing: 1.6px;
  }
  .navbar .nav-links {
    gap: 24px;
  }
  .navbar .nav-links a {
    font-size: 0.875rem;
  }
  .navbar .menu-item-has-children > a {
    padding-right: 1.5rem;
  }
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-actions a,
  .nav-actions button {
    min-height: 42px;
    font-size: 0.875rem;
  }
  .nav-actions .search-btn {
    width: 42px;
    height: 42px;
    min-height: 42px;
  }
  .nav-actions .login-btn {
    padding: 9px 16px;
  }
  .nav-actions .signup-btn,
  .nav-actions .book-btn,
  .nav-actions .logout-btn {
    min-height: 46px;
    padding: 12px 20px;
  }
  .nav-actions .logout-btn img {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
}
@media (max-width: 992px) {
  .navbar {
    padding: 18px 24px;
  }
  .navbar .logo {
    order: 1;
  }
  .navbar .logo-main {
    font-size: 0.9rem;
  }
  .navbar .logo-sub {
    font-size: 0.62rem;
  }
  .navbar .menu-toggle {
    order: 3;
    display: block;
  }
  .navbar .nav-links {
    position: fixed;
    top: 84px;
    right: -100%;
    z-index: 1002;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
    max-width: none;
    height: calc(100vh - 84px);
    padding: 0 0 calc(2rem + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: #001b4d;
    box-shadow: 0 18px 44px rgba(17, 17, 17, 0.22);
    pointer-events: none;
    transition: right 0.3s ease;
  }
  .navbar .nav-links.is-active {
    right: 0;
    pointer-events: auto;
  }
  .navbar .nav-links li,
  .navbar .nav-links .menu-item,
  .navbar .nav-links .menu-item-has-children {
    width: 100%;
  }
  .navbar .nav-links a {
    display: block;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 800;
    opacity: 1;
    pointer-events: auto;
    text-decoration: none;
  }
  .navbar .nav-links a::after {
    display: none;
  }
  .navbar .nav-links a:hover, .navbar .nav-links a:focus-visible, .navbar .nav-links a.active, .navbar .nav-links a[aria-current=page] {
    color: #d8a33c !important;
  }
  .navbar .nav-links .sub-menu {
    position: static;
    display: none;
    min-width: auto;
    padding: 0;
    background: rgba(17, 17, 17, 0.2);
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    visibility: visible;
  }
  .navbar .nav-links .sub-menu.is-active {
    display: block;
  }
  .navbar .nav-links .sub-menu a {
    padding-left: 3rem;
    color: rgba(255, 255, 255, 0.92) !important;
    font-size: 0.875rem;
  }
  .navbar .mobile-menu-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 1.5rem 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .navbar .mobile-menu-actions::before, .navbar .mobile-menu-actions::after {
    display: none;
    content: none;
  }
  .navbar .mobile-menu-actions__button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    min-height: 54px;
    padding: 0 1rem !important;
    border-bottom: 0 !important;
    border-radius: 999px;
    font-size: 0.875rem !important;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
  }
  .navbar .mobile-menu-actions__button::before, .navbar .mobile-menu-actions__button::after {
    display: none !important;
    content: none !important;
  }
  .navbar .mobile-menu-actions__button:hover, .navbar .mobile-menu-actions__button:focus-visible, .navbar .mobile-menu-actions__button.active, .navbar .mobile-menu-actions__button[aria-current=page] {
    transform: translateY(-2px);
  }
  .navbar .mobile-menu-actions__button i,
  .navbar .mobile-menu-actions__button svg {
    flex: 0 0 auto;
    color: currentColor;
  }
  .navbar .mobile-menu-actions__button--outline {
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
  }
  .navbar .mobile-menu-actions__button--outline:hover, .navbar .mobile-menu-actions__button--outline:focus-visible {
    border-color: rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff !important;
  }
  .navbar .mobile-menu-actions__button--gold {
    border: 0;
    background: #d8a33c;
    color: #111111 !important;
  }
  .navbar .mobile-menu-actions__button--gold:hover, .navbar .mobile-menu-actions__button--gold:focus-visible {
    background: #c89c36;
    color: #111111 !important;
  }
  .navbar .mobile-menu-actions__avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: #ffffff;
    object-fit: cover;
  }
  .navbar .menu-item-has-children > a {
    padding-right: 4rem;
  }
  .navbar .menu-item-has-children > a::before {
    right: 30px;
    display: block;
    border-width: 0.4rem 0.35rem 0;
    color: #ffffff;
  }
  .navbar .menu-item-has-children.sub-menu-open > a::before {
    transform: translateY(-50%) rotate(180deg);
  }
  .nav-actions {
    order: 2;
    display: flex;
    margin-left: auto;
    font-size: 0.875rem;
  }
  .nav-actions .phone-btn,
  .nav-actions .login-btn,
  .nav-actions .signup-btn,
  .nav-actions .book-btn,
  .nav-actions .logout-btn {
    display: none;
  }
  .nav-actions .search-btn {
    display: inline-flex;
  }
}
@media (max-width: 576px) {
  .navbar {
    padding-inline: 1.25rem;
  }
  .navbar .logo img {
    width: 44px;
  }
  .navbar .nav-links {
    top: 80px;
    height: calc(100vh - 80px);
  }
  .navbar .mobile-menu-actions {
    padding-inline: 1.25rem;
  }
  .nav-actions .search-btn {
    width: 42px;
    height: 42px;
    min-height: 42px;
  }
}
@media (max-width: 480px) {
  .navbar .mobile-menu-actions {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  body.menu-is-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
    touch-action: none;
  }
  .navbar {
    z-index: 1120;
  }
  body.menu-is-open .navbar {
    inset: 0 auto auto 0;
    align-items: flex-start;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    background: linear-gradient(90deg, #001b4d, #002d62) !important;
    backdrop-filter: none;
  }
  .navbar .nav-links {
    top: 84px !important;
    right: -100% !important;
    bottom: 0 !important;
    z-index: 1110 !important;
    height: auto !important;
    min-height: calc(100vh - 84px);
    min-height: calc(100dvh - 84px);
    background-color: #001b4d !important;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .navbar .nav-links.is-active {
    right: 0 !important;
    box-shadow: 0 22px 60px rgba(17, 17, 17, 0.28);
  }
  body.menu-is-open .navbar .nav-links {
    position: absolute !important;
    top: 84px !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100vh - 84px) !important;
    height: calc(100dvh - 84px) !important;
    min-height: 0 !important;
    background: #001b4d !important;
  }
}
@media (max-width: 576px) {
  .navbar .nav-links {
    top: 80px !important;
    min-height: calc(100vh - 80px);
    min-height: calc(100dvh - 80px);
  }
  body.menu-is-open .navbar .nav-links {
    top: 80px !important;
    height: calc(100vh - 80px) !important;
    height: calc(100dvh - 80px) !important;
  }
}
.hero-header {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background-color: #001b4d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-header::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(0, 27, 77, 0.88) 0%, rgba(0, 63, 136, 0.65) 45%, rgba(0, 45, 98, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 730px;
  margin-top: 90px;
  padding-left: 80px;
  animation: fade-up 0.8s ease both;
}
.hero-content h1 {
  margin-bottom: 28px;
  color: #ffffff;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
}
.hero-content p {
  max-width: 560px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.hero-buttons > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 16px 36px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.hero-buttons .primary-btn {
  background: #d8a33c;
  box-shadow: 0 15px 35px rgba(216, 163, 60, 0.35);
  color: #111111;
}
.hero-buttons .primary-btn:hover, .hero-buttons .primary-btn:focus-visible {
  box-shadow: 0 20px 40px rgba(216, 163, 60, 0.45);
  transform: translateY(-4px);
}
.hero-buttons .secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  backdrop-filter: blur(8px);
}
.hero-buttons .secondary-btn:hover, .hero-buttons .secondary-btn:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-header {
  position: relative;
  min-height: clamp(360px, 38vw, 560px);
  overflow: hidden;
  background-color: #001b4d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #ffffff;
}
.site-header__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(0, 27, 77, 0.6) 0%, rgba(0, 27, 77, 0.28) 38%, rgba(0, 27, 77, 0.44) 100%), linear-gradient(90deg, rgba(0, 27, 77, 0.25) 0%, rgba(0, 27, 77, 0.08) 45%, rgba(0, 27, 77, 0.22) 100%);
}
.site-header .navbar,
.site-header .page-header {
  position: relative;
  z-index: 1;
}
.site-header .navbar {
  z-index: 1005;
  background: linear-gradient(90deg, rgba(0, 27, 77, 0.98) 0%, rgba(0, 45, 98, 0.94) 58%, rgba(0, 63, 136, 0.88) 100%);
  box-shadow: 0 12px 34px rgba(17, 17, 17, 0.14);
  backdrop-filter: none;
}

.page-header {
  display: flex;
  align-items: center;
  min-height: clamp(250px, 30vw, 440px);
  padding-block: clamp(4rem, 8vw, 7rem);
  text-align: center;
}
.page-header .container {
  position: relative;
  z-index: 1;
  max-width: 920px;
}
.page-header__kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #d8a33c;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.page-header h1,
.page-header #page-header-title {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 6vw, 5.75rem);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 4px 24px rgba(17, 17, 17, 0.35);
}
.page-header__description {
  max-width: 720px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.125rem;
  line-height: 1.7;
  text-shadow: 0 2px 12px rgba(17, 17, 17, 0.25);
}
.page-header__description p {
  margin: 0;
}

@media (max-width: 992px) {
  .hero-header {
    min-height: 820px;
    background-position: center;
  }
  .hero-header::before {
    background: linear-gradient(180deg, rgba(0, 27, 77, 0.42) 0%, rgba(0, 27, 77, 0.62) 38%, rgba(0, 27, 77, 0.9) 100%), linear-gradient(90deg, rgba(0, 27, 77, 0.78) 0%, rgba(0, 45, 98, 0.35) 100%);
  }
  .hero-content {
    padding-inline: 48px;
  }
}
@media (max-width: 768px) {
  .hero-header {
    align-items: flex-end;
    min-height: 760px;
    padding-block: 128px 64px;
    background-position: center top;
  }
  .hero-content {
    width: 100%;
    max-width: 620px;
    margin-top: 0;
    padding-inline: 24px;
  }
  .hero-content h1 {
    margin-bottom: 1.25rem;
    font-size: clamp(2.35rem, 10.5vw, 3.45rem);
    line-height: 1.08;
  }
  .hero-content p {
    max-width: 100%;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 420px;
    gap: 1rem;
  }
  .hero-buttons > a {
    width: 100%;
    min-height: 62px;
    padding-inline: 1.5rem;
    text-align: center;
  }
  .site-header {
    min-height: 340px;
    background-position: center;
  }
  .page-header {
    align-items: flex-end;
    min-height: 260px;
    padding-block: 4rem 3rem;
    text-align: left;
  }
  .page-header__kicker {
    font-size: 0.875rem;
  }
  .page-header h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }
}
@media (max-width: 480px) {
  .hero-header {
    min-height: 724px;
    padding-block: 118px 48px;
  }
  .hero-content {
    padding-inline: 20px;
  }
  .hero-content h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
  }
  .hero-content p {
    font-size: 0.925rem;
  }
  .hero-buttons {
    max-width: none;
  }
  .hero-buttons > a {
    min-height: 58px;
    font-size: 1rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-content {
    animation: none;
  }
}
.blogs-events {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: #f7f8fa;
}
.blogs-events .container {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: min(1400px, 92%);
  margin-inline: auto;
}
.blogs-events .card {
  padding: clamp(1.5rem, 3vw, 2.25rem);
}
.blogs-events .card-header {
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}
.blogs-events .card-header h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.2;
}
.blogs-events .card-link,
.blogs-events .read-more {
  color: #c89c36;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.blogs-events .card-link::after,
.blogs-events .read-more::after {
  content: " ->";
}
.blogs-events .card-link:hover, .blogs-events .card-link:focus-visible,
.blogs-events .read-more:hover,
.blogs-events .read-more:focus-visible {
  color: #d8a33c;
}
.blogs-events .event-item,
.blogs-events .blog-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(6, 35, 92, 0.08);
}
.blogs-events .event-item:last-child,
.blogs-events .blog-item:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.blogs-events .event-item .content,
.blogs-events .blog-item .content {
  min-width: 0;
}
.blogs-events .event-item .content h4,
.blogs-events .blog-item .content h4 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  line-height: 1.35;
}
.blogs-events .event-item .content h4 a,
.blogs-events .blog-item .content h4 a {
  color: #06235c;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blogs-events .event-item .content h4 a:hover, .blogs-events .event-item .content h4 a:focus-visible,
.blogs-events .blog-item .content h4 a:hover,
.blogs-events .blog-item .content h4 a:focus-visible {
  color: #c89c36;
}
.blogs-events .event-item .content p,
.blogs-events .blog-item .content p {
  margin: 0;
  color: #555555;
  line-height: 1.65;
}
.blogs-events .event-item .date-box {
  width: 86px;
  min-width: 86px;
  height: 96px;
  color: inherit;
  text-decoration: none;
}
.blogs-events .event-item .date-box span {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.blogs-events .event-item .date-box strong {
  color: #06235c;
  font-size: 2rem;
  line-height: 1;
}
.blogs-events .event-item .meta {
  margin-bottom: 0.5rem;
  color: #6b7280;
  font-size: 0.95rem;
}
.blogs-events .blog-item .media {
  flex: 0 0 132px;
  height: 104px;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f8fa;
}
.blogs-events .blog-item .media img {
  transition: transform 0.5s ease;
}
.blogs-events .blog-item .media:hover img, .blogs-events .blog-item .media:focus-visible img {
  transform: scale(1.04);
}
.blogs-events .blog-item .blog-date {
  flex: 0 0 58px;
  width: 58px;
  min-width: 58px;
  height: 76px;
  border-color: rgba(200, 156, 54, 0.25);
}
.blogs-events .blog-item .blog-date span,
.blogs-events .blog-item .blog-date strong {
  color: #c89c36;
  font-weight: 800;
}
.blogs-events .blog-item .blog-date span {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.blogs-events .blog-item .blog-date strong {
  font-size: 1.65rem;
  line-height: 1;
}
.blogs-events .blog-item .content p {
  margin-bottom: 0.75rem;
}
.blogs-events .no-posts {
  margin: 0;
  color: #6b7280;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .blogs-events .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .blogs-events .card-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.75rem;
  }
  .blogs-events .event-item,
  .blogs-events .blog-item {
    gap: 1rem;
  }
  .blogs-events .blog-item {
    display: grid;
    grid-template-columns: 92px 1fr;
    align-items: start;
  }
  .blogs-events .blog-item .media {
    grid-row: span 2;
    width: 92px;
    height: 92px;
    flex-basis: auto;
  }
  .blogs-events .blog-item .blog-date {
    display: none;
  }
  .blogs-events .event-item .date-box {
    width: 72px;
    min-width: 72px;
    height: 82px;
  }
  .blogs-events .event-item .date-box strong {
    font-size: 1.7rem;
  }
}
.contact-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: #ffffff;
}
.contact-section .container {
  width: min(1400px, 92%);
  margin-inline: auto;
}
.contact-section .wpcf7 .form-control,
.contact-section .wpcf7 input:not([type=submit]):not([type=checkbox]):not([type=radio]),
.contact-section .wpcf7 textarea,
.contact-section .wpcf7 select {
  width: 100%;
  min-height: 64px;
  margin-bottom: 1.25rem;
  padding: 0 1.5rem;
  border: 2px solid rgba(200, 156, 54, 0.75);
  border-radius: 8px;
  background: #ffffff;
  color: #101828;
  font-size: 1.125rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-section .wpcf7 .form-control:focus,
.contact-section .wpcf7 input:not([type=submit]):not([type=checkbox]):not([type=radio]):focus,
.contact-section .wpcf7 textarea:focus,
.contact-section .wpcf7 select:focus {
  border-color: #d8a33c;
  box-shadow: 0 0 0 4px rgba(216, 163, 60, 0.2);
}
.contact-section .wpcf7 textarea {
  min-height: 170px;
  padding-block: 1.25rem;
  resize: vertical;
}
.contact-section .wpcf7 input[type=submit],
.contact-section .wpcf7 .contact-btn {
  width: 100%;
  min-height: 68px;
  border: 0;
  border-radius: 8px;
  background: #19b7ca;
  color: #ffffff;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 800;
  transition: background 0.3s ease, transform 0.3s ease;
}
.contact-section .wpcf7 input[type=submit]:hover, .contact-section .wpcf7 input[type=submit]:focus-visible,
.contact-section .wpcf7 .contact-btn:hover,
.contact-section .wpcf7 .contact-btn:focus-visible {
  background: #0f9bb3;
  transform: translateY(-2px);
}
.contact-section .wpcf7 .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin: 1.75rem 0;
  color: rgba(255, 255, 255, 0.85);
}
.contact-section .wpcf7 .wpcf7-acceptance input {
  width: auto;
  min-height: 0;
  margin-top: 0.35rem;
  margin-bottom: 0;
}
.contact-section .wpcf7 .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 5rem;
}

.contact-card {
  padding: 2.5rem 1.25rem;
  border-radius: 20px;
  background: #eef7fc;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.contact-card.active, .contact-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}
.contact-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  margin-inline: auto;
  border-radius: 50%;
  background: #16b9d4;
  color: #ffffff;
  font-size: 1.75rem;
}
.contact-card p {
  margin: 1.5rem 0 0;
  color: #06235c;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.375rem);
  align-items: stretch;
}

.contact-form {
  border-radius: 20px;
  background: #001b4d;
  color: #ffffff;
  padding: clamp(2.25rem, 4vw, 3.125rem);
}
.contact-form h2 {
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.12;
}
.contact-form p {
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  line-height: 1.7;
}

.privacy-links {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  text-align: center;
}
.privacy-links a {
  color: #16b9d4;
  font-weight: 700;
  text-decoration: none;
}
.privacy-links a:hover, .privacy-links a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.acf-map {
  min-height: 500px;
  height: 100%;
  overflow: hidden;
  border-radius: 12px;
  background: #f7f8fa;
}
.acf-map iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border: 0;
}

.acf-map {
  position: relative;
}
.acf-map .marker {
  display: none;
}

@media (max-width: 992px) {
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 4rem;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .acf-map,
  .acf-map iframe {
    min-height: 450px;
  }
}
@media (max-width: 576px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }
  .contact-form {
    padding: 2rem 1.5rem;
  }
  .acf-map,
  .acf-map iframe {
    min-height: 360px;
  }
}
.dashboard-page {
  background: #fbfcfd;
}
.dashboard-page__container {
  width: min(1320px, 100% - 40px);
  margin-inline: auto;
}
.dashboard-page__hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, rgba(0, 27, 77, 0.96), rgba(0, 45, 98, 0.84)), linear-gradient(135deg, #001b4d, #003f88);
  color: #ffffff;
}
.dashboard-page__hero .dashboard-page__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: end;
}
.dashboard-page__welcome {
  max-width: 820px;
}
.dashboard-page__welcome h1 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
}
.dashboard-page__welcome p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  line-height: 1.8;
}
.dashboard-page__eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8a33c;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.dashboard-page__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
.dashboard-page__action, .dashboard-page__signin a,
.dashboard-page .dashboard-card__header a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.dashboard-page__action:hover, .dashboard-page__action:focus-visible, .dashboard-page__signin a:hover, .dashboard-page__signin a:focus-visible,
.dashboard-page .dashboard-card__header a:hover,
.dashboard-page .dashboard-card__header a:focus-visible {
  background: #ffffff;
  color: #06235c;
  transform: translateY(-2px);
}
.dashboard-page__action--primary {
  border-color: #d8a33c;
  background: #d8a33c;
  box-shadow: 0 18px 34px rgba(216, 163, 60, 0.28);
  color: #111111;
}
.dashboard-page__action--primary:hover, .dashboard-page__action--primary:focus-visible {
  background: #c89c36;
  border-color: #c89c36;
  color: #111111;
}
.dashboard-page__section {
  padding: clamp(3rem, 7vw, 6rem) 0;
}
.dashboard-page__signin {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.dashboard-page__signin h2 {
  margin: 0 0 0.75rem;
  color: #06235c;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
}
.dashboard-page__signin p {
  max-width: 660px;
  margin: 0;
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.8;
}
.dashboard-page__signin a {
  flex-shrink: 0;
  border-color: #d8a33c;
  background: #d8a33c;
  color: #111111;
}
.dashboard-page__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.38fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: 2.5rem;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.dashboard-stat {
  padding: 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.dashboard-stat span {
  display: block;
  margin-bottom: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.dashboard-stat strong {
  display: block;
  color: #06235c;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1;
}

.dashboard-card {
  padding: clamp(1.5rem, 4vw, 2rem);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.dashboard-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.dashboard-card__header span {
  display: block;
  margin-bottom: 0.5rem;
  color: #0f9bb3;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.dashboard-card__header h2 {
  margin: 0;
  color: #06235c;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}
.dashboard-card__header a {
  min-height: 44px;
  padding-inline: 1.25rem;
  border-color: #e5e7eb;
  background: #ffffff;
  color: #06235c;
  font-size: 0.875rem;
}
.dashboard-card__header a:hover, .dashboard-card__header a:focus-visible {
  border-color: #16b9d4;
  background: #16b9d4;
  color: #ffffff;
}
.dashboard-card__empty {
  padding: 2rem;
  border-radius: 12px;
  background: #f7f8fa;
  text-align: center;
}
.dashboard-card__empty i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  border-radius: 50%;
  background: rgba(22, 185, 212, 0.12);
  color: #0f9bb3;
  font-size: 1.5rem;
}
.dashboard-card__empty h3 {
  margin: 0 0 0.75rem;
  color: #06235c;
  font-size: 1.5rem;
}
.dashboard-card__empty p {
  max-width: 460px;
  margin: 0 auto;
  color: #555555;
  line-height: 1.7;
}

.dashboard-bookings {
  display: grid;
  gap: 1rem;
}

.dashboard-booking {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fbfcfd;
}
.dashboard-booking h3 {
  margin: 0 0 0.5rem;
  color: #06235c;
  font-size: 1.125rem;
  line-height: 1.25;
}
.dashboard-booking p {
  margin: 0;
  color: #6b7280;
  font-weight: 700;
}
.dashboard-booking__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 112px;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(107, 114, 128, 0.12);
  color: #101828;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.dashboard-booking__status--pending {
  background: rgba(216, 163, 60, 0.18);
  color: #c89c36;
}
.dashboard-booking__status--confirmed {
  background: rgba(22, 185, 212, 0.14);
  color: #0f9bb3;
}
.dashboard-booking__status--completed {
  background: rgba(0, 45, 98, 0.12);
  color: #06235c;
}

.dashboard-shortcuts {
  display: grid;
  gap: 1rem;
}
.dashboard-shortcuts a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fbfcfd;
  color: #06235c;
  font-weight: 800;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.dashboard-shortcuts a i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(22, 185, 212, 0.12);
  color: #0f9bb3;
}
.dashboard-shortcuts a:hover, .dashboard-shortcuts a:focus-visible {
  border-color: #16b9d4;
  background: rgba(22, 185, 212, 0.08);
  color: #0f9bb3;
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .dashboard-page__hero .dashboard-page__container, .dashboard-page__grid {
    grid-template-columns: 1fr;
  }
  .dashboard-page__actions {
    justify-content: flex-start;
  }
  .dashboard-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .dashboard-page__container {
    width: min(100% - 30px, 1320px);
  }
  .dashboard-page__signin {
    align-items: stretch;
    flex-direction: column;
  }
  .dashboard-card__header,
  .dashboard-booking {
    align-items: stretch;
    flex-direction: column;
  }
  .dashboard-booking__status {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .dashboard-page__actions, .dashboard-page__action {
    width: 100%;
  }
  .dashboard-stats {
    grid-template-columns: 1fr;
  }
}
.events-archive {
  background: #f7f8fa;
}
.events-archive__hero {
  padding-block: clamp(4rem, 8vw, 6.5rem) 3rem;
  background: #ffffff;
  text-align: center;
}
.events-archive__description {
  max-width: 720px;
  margin: 1rem auto 0;
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.7;
}
.events-archive__content {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.events-archive__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.events-archive__pagination {
  margin-top: 3rem;
  text-align: center;
}
.events-archive__pagination .nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.events-archive__pagination .page-numbers {
  min-width: 44px;
  height: 44px;
  padding-inline: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
  color: #06235c;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
.events-archive__pagination .page-numbers:hover, .events-archive__pagination .page-numbers.current {
  border-color: #d8a33c;
  background: #d8a33c;
  color: #111111;
}
.events-archive__past-events {
  max-width: 760px;
  margin: 2.5rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
}
.events-archive__past-events p {
  margin: 0;
  color: #555555;
}
.events-archive__past-events a {
  color: #c89c36;
  font-weight: 700;
  text-decoration: none;
}
.events-archive__past-events a:hover, .events-archive__past-events a:focus-visible {
  color: #06235c;
}
.events-archive__empty {
  max-width: 680px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.events-archive__empty img {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  object-fit: contain;
}
.events-archive__empty h2 {
  margin-bottom: 0.75rem;
  color: #06235c;
}
.events-archive__empty p {
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 1.5rem;
  color: #555555;
}

.event-card {
  display: grid;
  grid-template-columns: 42% 58%;
  overflow: hidden;
}
.event-card__image {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #fbfcfd;
}
.event-card__image img {
  min-height: 100%;
  transition: transform 0.5s ease;
}
.event-card:hover .event-card__image img {
  transform: scale(1.04);
}
.event-card__content {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.event-card__date-badge {
  width: 72px;
  height: 82px;
  margin-bottom: 1.25rem;
  border-color: rgba(200, 156, 54, 0.25);
}
.event-card__date-badge span,
.event-card__date-badge strong {
  color: #c89c36;
  font-weight: 800;
}
.event-card__date-badge span {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}
.event-card__date-badge strong {
  font-size: 1.75rem;
  line-height: 1;
}
.event-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 600;
}
.event-card__meta li {
  position: relative;
}
.event-card__meta li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(0.5rem * -1);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #d8a33c;
  transform: translateY(-50%);
}
.event-card__title {
  margin-bottom: 1rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
}
.event-card__title a {
  color: #06235c;
  text-decoration: none;
}
.event-card__title a:hover, .event-card__title a:focus-visible {
  color: #0f9bb3;
}
.event-card__excerpt {
  color: #555555;
  line-height: 1.75;
}
.event-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #16b9d4;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.event-card__button::after {
  content: "->";
}
.event-card__button:hover, .event-card__button:focus-visible {
  gap: 0.75rem;
  color: #06235c;
}

@media (max-width: 992px) {
  .events-archive__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .event-card {
    grid-template-columns: 1fr;
  }
  .event-card__image {
    min-height: 260px;
  }
}
@media (max-width: 576px) {
  .events-archive__hero {
    text-align: left;
  }
  .event-card {
    border-radius: 12px;
  }
  .event-card__image {
    min-height: 220px;
  }
  .event-card__date-badge {
    width: 64px;
    height: 76px;
  }
  .event-card__date-badge strong {
    font-size: 1.55rem;
  }
}
.features-bar {
  padding-block: 4rem;
  background: #f7f8fa;
}
.features-bar .container {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1400px;
  width: 92%;
  margin-inline: auto;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05), 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2.25rem 2rem;
  border-right: 1px solid #ececec;
  transition: background-color 0.3s ease;
}
.feature-item:last-child {
  border-right: 0;
}
.feature-item:hover {
  background: #fbfcfd;
}
.feature-item:hover img {
  transform: scale(1.08);
}
.feature-item img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.feature-item h3 {
  margin: 0;
  color: #06235c;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}
.feature-item p {
  margin-top: 0.5rem;
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .features-bar .container {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .feature-item {
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
  }
  .feature-item:nth-child(even) {
    border-right: 0;
  }
  .feature-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}
@media (max-width: 768px) {
  .features-bar {
    padding: 2.5rem 1.25rem;
  }
  .features-bar .container {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 20px;
  }
  .feature-item {
    padding: 1.5rem;
    border-right: 0;
    border-bottom: 1px solid #ececec;
  }
  .feature-item:nth-child(even) {
    border-right: 0;
  }
  .feature-item:nth-last-child(-n+2) {
    border-bottom: 1px solid #ececec;
  }
  .feature-item:last-child {
    border-bottom: 0;
  }
}
.services-grid {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: #f7f8fa;
}

.services-grid__wrapper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  padding: clamp(1.875rem, 3vw, 2.375rem);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 35px rgba(6, 35, 92, 0.06);
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.service-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(to right, #003f88, #16b9d4);
}
.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.service-card:hover {
  box-shadow: 0 30px 70px rgba(6, 35, 92, 0.12);
  transform: translateY(-12px);
}
.service-card:hover .service-card__icon {
  transform: rotate(-5deg) scale(1.08);
}
.service-card:hover .service-card__button {
  background: #16b9d4;
  color: #ffffff;
  transform: translateX(6px);
}
.service-card:hover .service-card__button svg {
  transform: translateX(4px);
}

.service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 2rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #003f88, #16b9d4);
  transition: transform 0.3s ease;
}
.service-card__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.service-card__content {
  flex: 1;
}
.service-card__content h3 {
  margin-bottom: 1.25rem;
  color: #06235c;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
}
.service-card__content p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.8;
}

.service-card__footer {
  margin-top: 2rem;
}

.service-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #eef6fa;
  color: #16b9d4;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-card__button svg {
  transition: transform 0.3s ease;
}

@media (max-width: 1200px) {
  .services-grid__wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .services-grid {
    padding-block: 4rem;
  }
  .services-grid .section-heading {
    margin-bottom: 3rem;
  }
  .services-grid .section-description {
    font-size: 1rem;
  }
  .services-grid__wrapper {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .service-card__icon {
    width: 68px;
    height: 68px;
  }
  .service-card__icon img {
    width: 34px;
    height: 34px;
  }
  .service-card__content h3 {
    font-size: 1.375rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .service-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.stay-connected {
  position: relative;
  background: #ffffff;
}
.stay-connected__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 4.375rem) 12%;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #001b4d, #003f88, #001b4d);
}
.stay-connected__container::before, .stay-connected__container::after {
  position: absolute;
  border-radius: 50%;
  content: "";
  pointer-events: none;
}
.stay-connected__container::before {
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, 0.04);
}
.stay-connected__container::after {
  top: -80px;
  right: 120px;
  width: 180px;
  height: 180px;
  background: rgba(255, 255, 255, 0.03);
}
.stay-connected__content {
  position: relative;
  z-index: 2;
  max-width: 450px;
}
.stay-connected__content h2 {
  margin: 0 0 1rem;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 2.5rem);
  line-height: 1.15;
}
.stay-connected__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}
.stay-connected__form {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  max-width: 600px;
}
.stay-connected__form-row {
  display: flex;
  width: 100%;
}
.stay-connected__form-row input,
.stay-connected__form-row button {
  height: 58px;
  font-family: inherit;
}
.stay-connected__form-row input[type=email] {
  flex: 1;
  min-width: 0;
  padding-inline: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.stay-connected__form-row input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.72);
}
.stay-connected__form-row input[type=email]:hover {
  background: rgba(255, 255, 255, 0.11);
}
.stay-connected__form-row input[type=email]:focus {
  border-color: rgba(216, 163, 60, 0.8);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(216, 163, 60, 0.5), 0 0 0 3px rgba(216, 163, 60, 0.12);
}
.stay-connected__form-row button {
  flex: 0 0 auto;
  padding-inline: 2rem;
  border: 0;
  border-radius: 0 8px 8px 0;
  background: #d8a33c;
  color: #111111;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.stay-connected__form-row button:hover, .stay-connected__form-row button:focus-visible {
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.18);
  transform: translateY(-2px);
}
.stay-connected__form-row button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.stay-connected__form-row button:active {
  box-shadow: 0 6px 16px rgba(17, 17, 17, 0.16);
  transform: translateY(0);
}
.stay-connected__message {
  width: 100%;
  margin: 0 0 0.75rem;
  padding: 10px 14px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
}
.stay-connected__message--success {
  border-color: rgba(167, 231, 208, 0.75);
  background: rgba(223, 248, 238, 0.96);
  color: #126447;
}
.stay-connected__message--notice {
  border-color: rgba(216, 163, 60, 0.7);
  background: rgba(255, 245, 213, 0.96);
  color: #664d00;
}
.stay-connected__message--error {
  border-color: rgba(240, 171, 171, 0.8);
  background: rgba(255, 240, 240, 0.96);
  color: #921f1f;
}
.stay-connected__consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  margin-top: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
  cursor: pointer;
  font-size: 0.825rem;
  line-height: 1.5;
}
.stay-connected__consent input[type=checkbox] {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: #d8a33c;
  cursor: pointer;
}
.stay-connected__consent input[type=checkbox]:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}
.stay-connected__consent span {
  min-width: 0;
}
.stay-connected__honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.stay-connected__tower {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
  width: 200px;
  max-width: 220px;
  opacity: 0.35;
  filter: contrast(1.05) brightness(1.05);
  mix-blend-mode: normal;
  pointer-events: none;
}
.stay-connected__tower img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 1;
}

@media (max-width: 992px) {
  .stay-connected__container {
    align-items: flex-start;
    flex-direction: column;
    padding: 2.5rem 2rem;
  }
  .stay-connected__content, .stay-connected__form {
    width: 100%;
  }
  .stay-connected__tower {
    top: 0;
    right: 0;
    bottom: 0;
    width: 46%;
    max-width: none;
    opacity: 0.42;
  }
  .stay-connected__tower img {
    height: 100%;
    object-fit: cover;
  }
}
@media (max-width: 576px) {
  .stay-connected__container {
    gap: 1.75rem;
  }
  .stay-connected__form-row input,
  .stay-connected__form-row button {
    height: 64px;
    font-size: 1rem;
  }
  .stay-connected__form-row input[type=email] {
    padding-inline: 1rem;
  }
  .stay-connected__form-row button {
    padding-inline: 1.5rem;
  }
  .stay-connected__tower {
    width: 46%;
    opacity: 0.42;
  }
}
@media (max-width: 480px) {
  .stay-connected__form-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  .stay-connected__form-row input[type=email],
  .stay-connected__form-row button {
    width: 100%;
    border-radius: 8px;
  }
  .stay-connected__form-row input[type=email] {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 1rem;
    text-align: center;
  }
  .stay-connected__message {
    text-align: center;
  }
  .stay-connected__tower {
    width: 46%;
  }
  .stay-connected__consent {
    font-size: 0.8rem;
    text-align: left;
  }
}
@media (prefers-reduced-motion: reduce) {
  .stay-connected__form-row input,
  .stay-connected__form-row button {
    transition: none;
  }
  .stay-connected__form-row button:hover,
  .stay-connected__form-row button:focus-visible {
    transform: none;
  }
}
.service-slider {
  position: relative;
  top: 10px;
  height: 200px;
  padding-inline: 45px;
}
.service-slider .swiper-slide {
  width: 170px;
}
.service-slider .swiper-slide a {
  display: block;
  color: #101828;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}
.service-slider .swiper-slide a:hover, .service-slider .swiper-slide a:focus-visible {
  color: #16b9d4;
  transform: translateY(-4px);
}
.service-slider .swiper-slide img {
  display: block;
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
}
.service-slider .swiper-slide span {
  display: block;
  margin-top: 0.75rem;
  color: #101828;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
.service-slider .swiper-button-next,
.service-slider .swiper-button-prev {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(17, 17, 17, 0.15);
  color: #101828;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.service-slider .swiper-button-next::after,
.service-slider .swiper-button-prev::after {
  color: currentColor;
  font-size: 18px;
  font-weight: 800;
}
.service-slider .swiper-button-next:hover, .service-slider .swiper-button-next:focus-visible,
.service-slider .swiper-button-prev:hover,
.service-slider .swiper-button-prev:focus-visible {
  background: #16b9d4;
  color: #ffffff;
  transform: translateY(-2px);
}
.service-slider .swiper-button-prev {
  left: 0;
}
.service-slider .swiper-button-next {
  right: 0;
}

@media (max-width: 992px) {
  .service-slider {
    padding-inline: 1.25rem;
  }
  .service-slider .swiper-slide {
    width: 150px;
  }
  .service-slider .swiper-slide img {
    height: 130px;
  }
}
@media (max-width: 768px) {
  .service-slider .swiper-slide {
    width: 130px;
  }
  .service-slider .swiper-slide img {
    height: 115px;
  }
  .service-slider .swiper-slide span {
    font-size: 0.875rem;
  }
}
.team-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: #ffffff;
}
.team-section .container {
  width: min(1320px, 100% - 40px);
  margin-inline: auto;
}
.team-section .section-heading {
  max-width: 850px;
  margin: 0 auto 4rem;
  text-align: center;
}
.team-section .section-subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 10px 22px;
  border-radius: 999px;
  background: #eef5fb;
  color: #003f88;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.team-section .section-title {
  margin: 0 0 1.25rem;
  color: #111111;
  font-size: clamp(2.375rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.15;
}
.team-section .section-title span {
  color: #19b7ca;
}
.team-section .section-description {
  max-width: 760px;
  margin-inline: auto;
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.8;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 380px));
  gap: clamp(2.75rem, 5vw, 3.75rem);
  justify-content: center;
  justify-items: center;
}

.team-card {
  width: 100%;
  max-width: 380px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.team-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.team-card:hover {
  transform: translateY(-10px);
}
.team-card:hover .team-card__image img {
  transform: scale(1.05);
}
.team-card:hover .team-card__overlay {
  opacity: 1;
}

.team-card__image {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(380px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 2rem;
  overflow: hidden;
  border-radius: 50%;
  background: #002d62;
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.08);
}
.team-card__image img {
  position: relative;
  z-index: 2;
  width: 88%;
  height: 88%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.team-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background: rgba(0, 45, 98, 0.65);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.team-card__overlay a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #19b7ca;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.team-card__overlay a:hover, .team-card__overlay a:focus-visible {
  background: #ffffff;
  color: #003f88;
  transform: scale(1.1);
}
.team-card__overlay a svg {
  width: 20px;
  height: 20px;
}

.team-card__content h3 {
  margin-bottom: 0.75rem;
  color: #06235c;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
}
.team-card__content span {
  display: block;
  color: #555555;
  font-size: 1.25rem;
}

@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 300px));
    gap: 3rem;
  }
  .team-card__image {
    width: min(300px, 100%);
  }
}
@media (max-width: 768px) {
  .team-section {
    padding-block: 5rem;
  }
  .team-section .section-description {
    font-size: 1rem;
  }
  .team-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .team-card__image {
    width: min(260px, 100%);
  }
  .team-card__content span {
    font-size: 1.125rem;
  }
}
@media (max-width: 480px) {
  .team-card__image {
    width: min(220px, 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .team-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.testimonials-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: #f7f8fa;
}
.testimonials-section .container {
  width: min(1500px, 100% - 48px);
  margin-inline: auto;
}
.testimonials-section .section-heading {
  margin-bottom: 4rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid rgba(229, 231, 235, 0.65);
  border-radius: clamp(1.5rem, 3vw, 2rem);
  background: #ffffff;
  box-shadow: 0 18px 55px rgba(17, 17, 17, 0.06);
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.65s ease, box-shadow 0.3s ease, transform 0.65s ease;
}
.testimonial-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.testimonial-card:hover {
  box-shadow: 0 26px 70px rgba(6, 35, 92, 0.12);
  transform: translateY(-6px);
}
.testimonial-card__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 2rem;
  border-radius: 50%;
  background: #16b9d4;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
  padding-top: 0.35rem;
}
.testimonial-card__rating {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 1.25rem;
  color: #d8a33c;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
.testimonial-card__content {
  margin: 0;
  color: #111111;
  font-size: clamp(1.125rem, 1.55vw, 1.45rem);
  font-weight: 500;
  line-height: 1.65;
}
.testimonial-card__content p {
  margin: 0;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2.5rem;
}
.testimonial-card__author img,
.testimonial-card__author .testimonial-card__avatar {
  flex: 0 0 56px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}
.testimonial-card__author img {
  display: block;
  object-fit: cover;
}
.testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #003f88, #16b9d4);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
}
.testimonial-card__author-text {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  color: #111111;
  line-height: 1.25;
}
.testimonial-card__author-text strong {
  color: #111111;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.125rem, 1.4vw, 1.35rem);
  font-weight: 800;
}
.testimonial-card__author-text span {
  color: #101828;
  font-size: 1rem;
}

.testimonials-comments {
  margin-top: clamp(3rem, 6vw, 5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
}
.testimonials-comments__divider {
  width: min(180px, 40%);
  height: 3px;
  margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8a33c, #19b7ca);
}
.testimonials-comments__title {
  margin: 0 0 1.5rem;
  color: #06235c;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
}

.testimonials-comments {
  margin-top: clamp(4rem, 7vw, 6rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}
.testimonials-comments__divider {
  width: min(180px, 40%);
  height: 3px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #d8a33c, #19b7ca);
}
.testimonials-comments .comment-reply-title {
  margin: 0 0 1.5rem;
  color: #06235c;
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
}
.testimonials-comments .logged-in-as,
.testimonials-comments .comment-notes {
  max-width: 560px;
  margin: 0 0 clamp(2rem, 4vw, 4rem);
  color: #6b7280;
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  line-height: 1.75;
}
.testimonials-comments .logged-in-as a,
.testimonials-comments .comment-notes a {
  color: #06235c;
  font-weight: 700;
  text-decoration: none;
}
.testimonials-comments .logged-in-as a:hover, .testimonials-comments .logged-in-as a:focus-visible,
.testimonials-comments .comment-notes a:hover,
.testimonials-comments .comment-notes a:focus-visible {
  color: #19b7ca;
}
.testimonials-comments .comment-form {
  display: grid;
  gap: 1.5rem;
}
.testimonials-comments .comment-form-comment {
  margin: 0;
}
.testimonials-comments .comment-form-comment label {
  display: block;
  margin-bottom: 0.75rem;
  color: #06235c;
  font-size: 1.125rem;
  font-weight: 800;
}
.testimonials-comments .comment-form-comment textarea {
  width: 100%;
  min-height: clamp(260px, 30vw, 420px);
  padding: 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: #101828;
  font: inherit;
  line-height: 1.7;
  resize: vertical;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.testimonials-comments .comment-form-comment textarea:focus {
  border-color: #19b7ca;
  box-shadow: 0 0 0 4px rgba(25, 183, 202, 0.14);
  outline: none;
}
.testimonials-comments .form-submit {
  margin: 1rem 0 0;
}
.testimonials-comments__submit,
.testimonials-comments .submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 64px;
  padding: 0 2rem;
  border: 0;
  border-radius: 999px;
  background: #19b7ca;
  box-shadow: 0 18px 45px rgba(25, 183, 202, 0.25);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.125rem;
  font-weight: 800;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.testimonials-comments__submit:hover, .testimonials-comments__submit:focus-visible,
.testimonials-comments .submit:hover,
.testimonials-comments .submit:focus-visible {
  background: #0f9bb3;
  box-shadow: 0 24px 55px rgba(25, 183, 202, 0.32);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .testimonials-comments {
    padding: 2rem 1.25rem;
    border-radius: 12px;
  }
  .testimonials-comments .comment-reply-title {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }
  .testimonials-comments .comment-form-comment textarea {
    min-height: 240px;
  }
  .testimonials-comments__submit,
  .testimonials-comments .submit {
    width: 100%;
  }
}
@media (max-width: 1200px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .testimonials-section {
    padding-block: 5rem;
  }
  .testimonials-section .container {
    width: min(100% - 30px, 1500px);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-card__quote {
    width: 56px;
    height: 56px;
    font-size: 3.5rem;
  }
  .testimonial-card__content {
    font-size: 1.125rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .testimonial-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.pricing-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: #ffffff;
}
.pricing-section .container {
  width: min(1440px, 100% - 40px);
  margin-inline: auto;
}
.pricing-section .section-heading {
  max-width: 860px;
  margin: 0 auto 4rem;
  text-align: center;
}
.pricing-section .section-subtitle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 11px 24px;
  border-radius: 999px;
  background: #eef5fb;
  color: #06235c;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}
.pricing-section .section-title {
  margin: 0 0 1.25rem;
  color: #06235c;
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  font-weight: 800;
  line-height: 1.08;
}
.pricing-section .section-title span {
  color: #19b7ca;
}
.pricing-section .section-description {
  max-width: 720px;
  margin: 0 auto;
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.8;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 2.5vw, 2rem);
  align-items: stretch;
  width: 100%;
  margin-inline: auto;
}
.pricing-grid--count-1 {
  max-width: 480px;
  grid-template-columns: minmax(0, 1fr);
}
.pricing-grid--count-2 {
  max-width: 960px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: clamp(2rem, 3vw, 3.8rem);
  border: 1px solid rgba(229, 231, 235, 0.32);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(17, 17, 17, 0.08);
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.12);
}
.pricing-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.pricing-card--featured {
  border: 2px solid #19b7ca;
  background: radial-gradient(circle at 50% 10%, rgba(25, 183, 202, 0.08), transparent 32%), #ffffff;
  box-shadow: 0 20px 65px rgba(25, 183, 202, 0.14);
}

.pricing-card__badge {
  position: absolute;
  top: 22px;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  padding: 10px 26px;
  border: 1px solid #19b7ca;
  border-radius: 999px;
  background: rgba(25, 183, 202, 0.08);
  color: #19b7ca;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.pricing-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pricing-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 94px;
  height: 94px;
  margin: 1rem auto 1.75rem;
  border-radius: 50%;
  background: rgba(25, 183, 202, 0.08);
  color: #111111;
}
.pricing-card__icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}
.pricing-card__icon .pricing-card__icon-heart {
  fill: #19b7ca;
  stroke: #111111;
}

.pricing-card--featured .pricing-card__icon {
  margin-top: 3rem;
}

.pricing-plan {
  margin: 0 0 1rem;
  color: #06235c;
  font-size: clamp(2.15rem, 3.6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.05;
}

.pricing-card__description {
  max-width: 340px;
  min-height: 4.9em;
  margin: 0 auto 3rem;
  color: #4b5567;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.65;
}

.pricing-price {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: #111111;
}
.pricing-price .currency {
  margin-top: 0.45rem;
  margin-right: 0.75rem;
  color: #4b4b4b;
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  font-weight: 800;
  line-height: 1;
}
.pricing-price .amount {
  font-size: clamp(4.2rem, 7vw, 6rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.85;
}

.pricing-period {
  margin-bottom: 2.5rem;
  color: #4b5567;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.2;
}

.pricing-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(250px, 100%);
  min-height: 60px;
  overflow: hidden;
  padding: 16px 30px;
  border-radius: 999px;
  background: linear-gradient(180deg, #19c3d4, #08aebe);
  box-shadow: 0 14px 32px rgba(25, 183, 202, 0.26);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: box-shadow 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.pricing-button:hover, .pricing-button:focus-visible {
  box-shadow: 0 20px 42px rgba(25, 183, 202, 0.34);
  color: #ffffff;
  filter: saturate(1.08);
  transform: translateY(-3px);
}

.pricing-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transform: scale(0);
  animation: pricing-ripple 0.65s ease-out;
}

.pricing-divider {
  width: min(160px, 46%);
  height: 2px;
  margin: 2.25rem auto 1.75rem;
  background: rgba(229, 231, 235, 0.72);
}

.pricing-features {
  flex: 1;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pricing-features li {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(229, 231, 235, 0.72);
  color: #374151;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
  line-height: 1.45;
}
.pricing-features li:last-child {
  border-bottom: 0;
}

.feature-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.feature-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.feature-text {
  min-width: 0;
  text-align: left;
}

.pricing-card__note {
  margin: 1.5rem 0 0;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

@keyframes pricing-ripple {
  to {
    opacity: 0;
    transform: scale(2.5);
  }
}
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-grid--count-1 {
    grid-template-columns: minmax(0, 1fr);
  }
  .pricing-grid--count-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pricing-card--featured {
    grid-row: 1;
  }
}
@media (max-width: 768px) {
  .pricing-section {
    padding-block: 5rem;
  }
  .pricing-section .container {
    width: min(100% - 30px, 1320px);
  }
  .pricing-section .section-heading {
    margin-bottom: 2.5rem;
  }
  .pricing-section .section-title {
    font-size: clamp(2.1rem, 10vw, 3rem);
  }
  .pricing-section .section-description {
    font-size: 1rem;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card {
    padding: 2rem 1.75rem;
    border-radius: 12px;
  }
  .pricing-card__description {
    min-height: 0;
    margin-bottom: 2.25rem;
  }
}
@media (max-width: 480px) {
  .pricing-card__badge {
    position: static;
    min-width: 0;
    margin: 0 auto 1.25rem;
    transform: none;
  }
  .pricing-card--featured .pricing-card__icon,
  .pricing-card__icon {
    margin-top: 0;
  }
  .pricing-price .amount {
    font-size: clamp(3.8rem, 20vw, 5rem);
  }
  .pricing-button {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .pricing-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pricing-ripple {
    animation: none;
  }
}
.why-choose-us {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: #ffffff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.why-card {
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  padding: clamp(2.1875rem, 4vw, 2.8125rem) clamp(1.5625rem, 3vw, 2.1875rem);
  border-radius: 20px;
  background: #003f88;
  box-shadow: 0 15px 40px rgba(17, 17, 17, 0.08);
  color: #ffffff;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.why-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.why-card:hover {
  background: #001b4d;
  box-shadow: 0 25px 55px rgba(17, 17, 17, 0.16);
  transform: translateY(-10px);
}
.why-card:hover .why-card__icon {
  transform: scale(1.1);
}
.why-card h3 {
  margin-bottom: 1.25rem;
  color: #ffffff;
  font-size: clamp(1.5rem, 2.4vw, 1.75rem);
  font-weight: 700;
  line-height: 1.3;
}
.why-card h3 a {
  color: inherit;
  text-decoration: none;
}
.why-card h3 a:hover, .why-card h3 a:focus-visible {
  color: #d8a33c;
}
.why-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  line-height: 1.8;
}

.why-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  margin-bottom: 1.75rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #16b9d4, #29d5e8);
  transition: transform 0.3s ease;
}
.why-card__icon svg {
  color: #ffffff;
}

@media (max-width: 1200px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .why-choose-us {
    padding-block: 5rem;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  .why-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.cta-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 560px;
  overflow: hidden;
  background-color: #001b4d;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.cta-banner::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: rgba(0, 27, 77, 0.68);
  backdrop-filter: blur(2px);
}
.cta-banner .container {
  position: relative;
  z-index: 2;
  width: min(1320px, 100% - 40px);
  margin-inline: auto;
}
.cta-banner.visible .cta-text,
.cta-banner.visible .cta-image {
  opacity: 1;
  transform: translateY(0);
}
.cta-banner.visible .cta-image {
  transition-delay: 0.25s;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(2rem, 5vw, 3.75rem);
}

.cta-text {
  flex: 0 0 52%;
  max-width: 620px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.cta-text h2 {
  margin: 0 0 2.5rem;
  color: #ffffff;
  font-size: clamp(2.625rem, 5vw, 4.625rem);
  font-weight: 700;
  line-height: 1.15;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  background: #19b7ca;
  box-shadow: 0 12px 35px rgba(25, 183, 202, 0.35);
  color: #ffffff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 18px 42px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.cta-button:hover, .cta-button:focus-visible {
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(17, 17, 17, 0.18);
  color: #06235c;
  transform: translateY(-4px);
}

.cta-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
  transform: scale(0);
  animation: cta-ripple 0.65s ease-out;
}

.cta-image {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex: 0 0 45%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.cta-image img {
  display: block;
  width: 100%;
  max-width: 540px;
  filter: drop-shadow(0 20px 45px rgba(17, 17, 17, 0.25));
  animation: cta-float 5s ease-in-out infinite;
  transform: translateY(30px);
}

@keyframes cta-float {
  0%, 100% {
    transform: translateY(30px);
  }
  50% {
    transform: translateY(15px);
  }
}
@keyframes cta-ripple {
  to {
    opacity: 0;
    transform: scale(2.5);
  }
}
@media (max-width: 992px) {
  .cta-banner {
    min-height: auto;
    padding-block: 6rem;
  }
  .cta-content {
    flex-direction: column;
    text-align: center;
  }
  .cta-text {
    flex-basis: auto;
    max-width: 700px;
  }
  .cta-image {
    justify-content: center;
    flex-basis: auto;
  }
  .cta-image img {
    max-width: 460px;
    transform: none;
  }
}
@media (max-width: 768px) {
  .cta-banner {
    padding-block: 5rem 2.5rem;
  }
  .cta-text h2 {
    font-size: 2.625rem;
  }
  .cta-button {
    width: 100%;
    max-width: 320px;
  }
  .cta-image {
    margin-top: 2.5rem;
  }
  .cta-image img {
    max-width: 320px;
  }
}
@media (max-width: 480px) {
  .cta-text h2 {
    font-size: 2.125rem;
    line-height: 1.25;
  }
  .cta-button {
    font-size: 1rem;
    padding: 16px 30px;
  }
  .cta-image img {
    max-width: 260px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta-image img,
  .cta-ripple {
    animation: none;
  }
  .cta-text,
  .cta-image {
    opacity: 1;
    transform: none;
  }
}
.about-story {
  padding-block: 6rem;
  background: #ffffff;
  color: #101828;
}
.about-story__container {
  width: min(1280px, 100% - 48px);
  margin-inline: auto;
}
.about-story__header {
  max-width: 920px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  text-align: center;
}
.about-story__eyebrow {
  margin-bottom: 1rem;
  color: #16b9d4;
}
.about-story__title {
  margin: 0;
  font-size: clamp(1.75rem, 2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.12;
}
.about-story__content {
  display: grid;
  gap: 1.75rem;
  max-width: 1180px;
  margin-inline: auto;
  color: #101828;
  font-size: clamp(1.125rem, 1.45vw, 1.5625rem);
  line-height: 1.65;
  text-align: justify;
}
.about-story__content p {
  margin: 0;
}
.about-story__content strong {
  color: #06235c;
  font-weight: 800;
}

@media (max-width: 768px) {
  .about-story {
    padding-block: 4rem;
  }
  .about-story__container {
    width: min(1280px, 100% - 30px);
  }
  .about-story__header {
    margin-bottom: 2rem;
    text-align: left;
  }
  .about-story__content {
    gap: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.7;
    text-align: left;
  }
}
.blog-card {
  overflow: hidden;
  border-radius: 20px;
}
.blog-card__image {
  display: block;
  overflow: hidden;
}
.blog-card__image img {
  height: 260px;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card__image img {
  transform: scale(1.04);
}
.blog-card__content {
  padding: 1.75rem;
}
.blog-card__meta {
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.blog-card__category {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #16b9d4;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.45rem 1rem;
}
.blog-card__date {
  color: #c89c36;
  font-size: 0.875rem;
  font-weight: 600;
}
.blog-card h2,
.blog-card h3 {
  margin-bottom: 1rem;
  color: #06235c;
}
.blog-card h2 a,
.blog-card h3 a {
  color: inherit;
  text-decoration: none;
}
.blog-card h2 a:hover,
.blog-card h3 a:hover {
  color: #0f9bb3;
}
.blog-card p {
  color: #555555;
  line-height: 1.8;
}
.blog-card__button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: #16b9d4;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease, gap 0.3s ease;
}
.blog-card__button:hover {
  gap: 0.75rem;
  color: #06235c;
}
.blog-card--featured {
  display: grid;
  grid-column: span 2;
  grid-template-columns: 45% 55%;
}
.blog-card--featured .blog-card__image img {
  height: 100%;
  min-height: 420px;
}
.blog-card--featured .blog-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}
.blog-card--featured h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}
.blog-card--featured p {
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .blog-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .blog-card--featured .blog-card__image img {
    min-height: 280px;
  }
}
@media (max-width: 576px) {
  .blog-card {
    border-radius: 12px;
  }
  .blog-card__image img {
    height: 220px;
  }
  .blog-card__content, .blog-card--featured .blog-card__content {
    padding: 1.5rem;
  }
}
.blog-pagination,
.archive-page__pagination,
.events-archive__pagination {
  margin-top: 4rem;
  text-align: center;
}
.blog-pagination .nav-links,
.archive-page__pagination .nav-links,
.events-archive__pagination .nav-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.blog-pagination .page-numbers,
.archive-page__pagination .page-numbers,
.events-archive__pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding-inline: 1rem;
  border: 1px solid transparent;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: #06235c;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.blog-pagination .page-numbers:hover, .blog-pagination .page-numbers:focus-visible, .blog-pagination .page-numbers.current,
.archive-page__pagination .page-numbers:hover,
.archive-page__pagination .page-numbers:focus-visible,
.archive-page__pagination .page-numbers.current,
.events-archive__pagination .page-numbers:hover,
.events-archive__pagination .page-numbers:focus-visible,
.events-archive__pagination .page-numbers.current {
  border-color: #16b9d4;
  background: #16b9d4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  color: #ffffff;
  transform: translateY(-2px);
}
.blog-pagination .page-numbers.dots,
.archive-page__pagination .page-numbers.dots,
.events-archive__pagination .page-numbers.dots {
  background: transparent;
  box-shadow: none;
  color: #6b7280;
  pointer-events: none;
  transform: none;
}

@media (max-width: 576px) {
  .blog-pagination,
  .archive-page__pagination,
  .events-archive__pagination {
    margin-top: 2.5rem;
  }
  .blog-pagination .page-numbers,
  .archive-page__pagination .page-numbers,
  .events-archive__pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    padding-inline: 0.75rem;
  }
}
.single-event {
  background: #f7f8fa;
}
.single-event__overview, .single-event__body {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.single-event__body {
  padding-top: 0;
}
.single-event__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.single-event__media {
  overflow: hidden;
  border-radius: 20px;
}
.single-event__media img {
  aspect-ratio: 16/10;
  min-height: 420px;
}
.single-event__details {
  position: sticky;
  top: calc(1000 * 0px + 120px);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.single-event__details h2 {
  margin-bottom: 1.5rem;
  color: #06235c;
  font-size: clamp(1.5rem, 2vw, 2rem);
}
.single-event__date-badge {
  width: 78px;
  height: 88px;
  margin-bottom: 1.5rem;
  border-color: rgba(200, 156, 54, 0.25);
}
.single-event__date-badge span,
.single-event__date-badge strong {
  color: #c89c36;
  font-weight: 800;
}
.single-event__date-badge span {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
}
.single-event__date-badge strong {
  font-size: 2rem;
  line-height: 1;
}
.single-event__meta {
  display: grid;
  gap: 1rem;
  margin-bottom: 2rem;
}
.single-event__meta li {
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}
.single-event__meta span {
  display: block;
  margin-bottom: 0.25rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.single-event__meta strong,
.single-event__meta time {
  color: #06235c;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
}
.single-event__cta {
  width: 100%;
}
.single-event__share {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}
.single-event__share-label {
  display: block;
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.single-event__share-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.single-event__share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #002d62;
  box-shadow: 0 12px 28px rgba(0, 45, 98, 0.18);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.single-event__share-links a:hover, .single-event__share-links a:focus-visible {
  background: #d8a33c;
  box-shadow: 0 16px 32px rgba(216, 163, 60, 0.3);
  color: #111111;
  transform: translateY(-3px);
}
.single-event__share-links a i {
  font-size: 1rem;
  line-height: 1;
}
.single-event__content {
  max-width: 920px;
  margin-inline: auto;
  padding: clamp(2rem, 4vw, 4rem);
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.85;
}
.single-event__content > * + * {
  margin-top: 1.25rem;
}
.single-event__content h2,
.single-event__content h3,
.single-event__content h4 {
  color: #06235c;
  line-height: 1.2;
}
.single-event__content a {
  color: #c89c36;
  font-weight: 700;
}
.single-event__content a:hover, .single-event__content a:focus-visible {
  color: #06235c;
}
.single-event__content ul,
.single-event__content ol {
  padding-left: 1.5rem;
}
.single-event__content ul {
  list-style: disc;
}
.single-event__content ol {
  list-style: decimal;
}
.single-event__quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 920px;
  margin: 2rem auto 0;
}
.single-event__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 220px;
  min-height: 60px;
  padding: 0 1.75rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.06);
  color: #06235c;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.single-event__quick-link i {
  color: currentColor;
  font-size: 1.05rem;
  line-height: 1;
}
.single-event__quick-link:hover, .single-event__quick-link:focus-visible {
  border-color: #16b9d4;
  background: #16b9d4;
  box-shadow: 0 20px 40px rgba(22, 185, 212, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}
.single-event__quick-link--home {
  border-color: #d8a33c;
  background: #d8a33c;
  box-shadow: 0 18px 34px rgba(216, 163, 60, 0.28);
  color: #111111;
}
.single-event__quick-link--home:hover, .single-event__quick-link--home:focus-visible {
  border-color: #c89c36;
  background: #c89c36;
  box-shadow: 0 22px 42px rgba(216, 163, 60, 0.34);
  color: #111111;
}
.single-event__navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 920px;
  margin: 2rem auto 0;
}
.single-event__nav-link a {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  color: #06235c;
  font-weight: 700;
  padding: 14px 22px;
}
.single-event__nav-link a:hover, .single-event__nav-link a:focus-visible {
  border-color: #d8a33c;
  background: #d8a33c;
  color: #111111;
}

@media (max-width: 992px) {
  .single-event__grid {
    grid-template-columns: 1fr;
  }
  .single-event__details {
    position: static;
  }
}
@media (max-width: 768px) {
  .single-event__media img {
    min-height: 280px;
  }
  .single-event__content {
    font-size: 1rem;
  }
  .single-event__share {
    text-align: center;
  }
  .single-event__share-links {
    justify-content: center;
  }
  .single-event__quick-links {
    align-items: stretch;
    flex-direction: column;
  }
  .single-event__quick-link {
    width: 100%;
  }
  .single-event__navigation {
    align-items: stretch;
    flex-direction: column;
  }
  .single-event__nav-link a {
    width: 100%;
  }
}
.single-gallery-page {
  background: #f7f8fa;
}
.single-gallery-page__container {
  width: min(1120px, 100% - 40px);
  margin-inline: auto;
}
.single-gallery-page__gallery {
  padding-block: clamp(3rem, 7vw, 6rem);
}
.single-gallery-page__collage {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 86px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}
.single-gallery-page__item {
  position: relative;
  display: block;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 0;
  background: #f7f8fa;
  cursor: zoom-in;
  isolation: isolate;
}
.single-gallery-page__item::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 27, 77, 0) 55%, rgba(0, 27, 77, 0.16) 100%);
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.single-gallery-page__item img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  transition: filter 0.5s ease, transform 0.5s ease;
}
.single-gallery-page__item:hover::after {
  opacity: 1;
}
.single-gallery-page__item:hover img {
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.035);
}
.single-gallery-page__item:focus-visible {
  outline: 4px solid rgba(25, 183, 202, 0.45);
  outline-offset: 4px;
}
.single-gallery-page__item:nth-child(1) {
  grid-column: 1/span 8;
  grid-row: 1/span 4;
}
.single-gallery-page__item:nth-child(2) {
  grid-column: 9/span 4;
  grid-row: 1/span 4;
}
.single-gallery-page__item:nth-child(3) {
  grid-column: 1/span 4;
  grid-row: 5/span 3;
}
.single-gallery-page__item:nth-child(4) {
  grid-column: 1/span 4;
  grid-row: 8/span 3;
}
.single-gallery-page__item:nth-child(5) {
  grid-column: 5/span 8;
  grid-row: 5/span 6;
}
.single-gallery-page__item:nth-child(n+6) {
  grid-column: span 4;
  grid-row: span 3;
}
.single-gallery-page__content {
  padding-block: 0 5rem;
}
.single-gallery-page__share {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  text-align: center;
}
.single-gallery-page__share-label {
  color: #06235c;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.single-gallery-page__share-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.single-gallery-page__share-list a,
.single-gallery-page__share-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: #002d62;
  box-shadow: 0 12px 28px rgba(0, 27, 77, 0.16);
  color: #ffffff;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.single-gallery-page__share-list a:hover, .single-gallery-page__share-list a:focus-visible,
.single-gallery-page__share-list button:hover,
.single-gallery-page__share-list button:focus-visible {
  background: #d8a33c;
  box-shadow: 0 18px 34px rgba(216, 163, 60, 0.3);
  color: #111111;
  transform: translateY(-3px);
}
.single-gallery-page__share-status {
  width: 100%;
  min-height: 1.2em;
  color: #19b7ca;
  font-size: 0.875rem;
  font-weight: 700;
}
.single-gallery-page__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.single-gallery-page__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 54px;
  padding: 0 1.75rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.single-gallery-page__action i {
  font-size: 0.95rem;
}
.single-gallery-page__action:hover, .single-gallery-page__action:focus-visible {
  transform: translateY(-3px);
}
.single-gallery-page__action--primary {
  background: #d8a33c;
  box-shadow: 0 16px 34px rgba(216, 163, 60, 0.28);
  color: #111111;
}
.single-gallery-page__action--primary:hover, .single-gallery-page__action--primary:focus-visible {
  background: #c89c36;
  box-shadow: 0 22px 42px rgba(216, 163, 60, 0.34);
  color: #111111;
}
.single-gallery-page__action--secondary {
  border: 1px solid rgba(0, 45, 98, 0.16);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(0, 27, 77, 0.08);
  color: #06235c;
}
.single-gallery-page__action--secondary:hover, .single-gallery-page__action--secondary:focus-visible {
  border-color: #19b7ca;
  background: #19b7ca;
  box-shadow: 0 22px 42px rgba(25, 183, 202, 0.24);
  color: #ffffff;
}
.single-gallery-page__content-card {
  max-width: 980px;
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid rgba(229, 231, 235, 0.78);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  color: #101828;
  font-size: 1.125rem;
  line-height: 1.85;
}
.single-gallery-page__content-card > * + * {
  margin-top: 1.25rem;
}
.single-gallery-page__content-card p {
  margin: 0;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 1.25rem;
  padding: clamp(1rem, 3vw, 2.5rem);
  background: rgba(0, 27, 77, 0.92);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.gallery-lightbox.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.gallery-lightbox__figure {
  position: relative;
  width: min(100%, 1180px);
  margin: 0 auto;
}
.gallery-lightbox__image {
  display: block;
  width: 100%;
  max-height: calc(100vh - 150px);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(17, 17, 17, 0.35);
  object-fit: contain;
}
.gallery-lightbox__counter {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: center;
}
.gallery-lightbox__close, .gallery-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.gallery-lightbox__close:hover, .gallery-lightbox__close:focus-visible, .gallery-lightbox__nav:hover, .gallery-lightbox__nav:focus-visible {
  background: #d8a33c;
  color: #111111;
  transform: translateY(-2px);
}
.gallery-lightbox__close {
  position: absolute;
  top: clamp(1rem, 3vw, 2rem);
  right: clamp(1rem, 3vw, 2rem);
  z-index: 2;
  width: 52px;
  height: 52px;
  font-size: 1.25rem;
}
.gallery-lightbox__nav {
  width: 58px;
  height: 58px;
  font-size: 1.25rem;
}
.gallery-lightbox__nav--prev {
  justify-self: end;
}
.gallery-lightbox__nav--next {
  justify-self: start;
}

@media (max-width: 992px) {
  .single-gallery-page__container {
    width: min(920px, 100% - 36px);
  }
  .single-gallery-page__collage {
    grid-auto-rows: 92px;
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }
  .single-gallery-page__item:nth-child(1) {
    grid-column: 1/span 5;
    grid-row: 1/span 4;
  }
  .single-gallery-page__item:nth-child(2) {
    grid-column: 6/span 3;
    grid-row: 1/span 4;
  }
  .single-gallery-page__item:nth-child(3) {
    grid-column: 1/span 3;
    grid-row: 5/span 3;
  }
  .single-gallery-page__item:nth-child(4) {
    grid-column: 1/span 3;
    grid-row: 8/span 3;
  }
  .single-gallery-page__item:nth-child(5) {
    grid-column: 4/span 5;
    grid-row: 5/span 6;
  }
  .single-gallery-page__item:nth-child(n+6) {
    grid-column: span 4;
    grid-row: span 3;
  }
}
@media (max-width: 768px) {
  .gallery-lightbox {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "image image" "prev next";
    align-content: center;
    gap: 1rem;
  }
  .gallery-lightbox__figure {
    grid-area: image;
  }
  .gallery-lightbox__image {
    max-height: calc(100vh - 180px);
  }
  .gallery-lightbox__nav {
    width: 52px;
    height: 52px;
  }
  .gallery-lightbox__nav--prev {
    grid-area: prev;
    justify-self: end;
  }
  .gallery-lightbox__nav--next {
    grid-area: next;
    justify-self: start;
  }
}
@media (max-width: 768px) {
  .gallery-lightbox__figure {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  .gallery-lightbox__nav--prev {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
  .gallery-lightbox__nav--next {
    -ms-grid-row: 3;
    -ms-grid-column: 3;
  }
}
@media (max-width: 576px) {
  .single-gallery-page__container {
    width: min(100% - 28px, 1120px);
  }
  .single-gallery-page__gallery {
    padding-block: 2.5rem;
  }
  .single-gallery-page__collage {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
    border-radius: 20px;
  }
  .single-gallery-page__item, .single-gallery-page__item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4/3;
  }
  .single-gallery-page__share {
    align-items: center;
    flex-direction: column;
    margin-top: 1.5rem;
  }
  .single-gallery-page__actions {
    align-items: stretch;
    flex-direction: column;
  }
  .single-gallery-page__action {
    width: 100%;
    padding-inline: 1.25rem;
  }
}
.single-post-page {
  background: #f7f8fa;
}
.single-post-page__overview {
  padding-block: 2rem 1.75rem;
}
.single-post-page__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  max-width: 1040px;
  margin-inline: auto;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 700;
}
.single-post-page__meta time,
.single-post-page__meta span {
  display: inline-flex;
  align-items: center;
}
.single-post-page__category {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  border-radius: 999px;
  background: #16b9d4;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(22, 185, 212, 0.22);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  padding: 0.65rem 1.5rem;
  text-decoration: none;
  white-space: nowrap;
}
.single-post-page__category:hover, .single-post-page__category:focus-visible {
  background: #0f9bb3;
  color: #ffffff;
}
.single-post-page__body {
  padding-block: 0 5rem;
}
.single-post-page__content {
  max-width: 1080px;
  margin-inline: auto;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 6vw, 5.5rem);
  border: 1px solid rgba(229, 231, 235, 0.78);
  border-radius: clamp(12px, 2vw, 20px);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  color: #101828;
  font-size: clamp(1.0625rem, 1.1vw, 1.25rem);
  line-height: 1.9;
}
.single-post-page__content > * + * {
  margin-top: 1.5rem;
}
.single-post-page__content h2,
.single-post-page__content h3,
.single-post-page__content h4,
.single-post-page__content h5,
.single-post-page__content h6 {
  margin-bottom: 1rem;
  color: #06235c;
  font-weight: 800;
  line-height: 1.2;
}
.single-post-page__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
}
.single-post-page__content h3 {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
}
.single-post-page__content p {
  margin: 0;
  max-width: 82ch;
}
.single-post-page__content p + p {
  margin-top: 1.5rem;
}
.single-post-page__content p:first-child {
  font-size: clamp(1.125rem, 1.25vw, 1.35rem);
  line-height: 1.85;
}
.single-post-page__content br {
  display: block;
  content: "";
  margin-top: 1rem;
}
.single-post-page__content .wp-block-heading,
.single-post-page__content h2,
.single-post-page__content h3,
.single-post-page__content h4 {
  margin-top: 2rem;
}
.single-post-page__content a {
  color: #c89c36;
  font-weight: 700;
}
.single-post-page__content a:hover, .single-post-page__content a:focus-visible {
  color: #06235c;
}
.single-post-page__content blockquote {
  margin: 2rem 0;
  padding: 1.5rem;
  border-left: 4px solid #d8a33c;
  border-radius: 12px;
  background: #fbfcfd;
  color: #06235c;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
}
.single-post-page__content ul,
.single-post-page__content ol {
  display: grid;
  gap: 0.75rem;
  padding-left: 1.5rem;
  color: #101828;
}
.single-post-page__content ul {
  list-style: disc;
}
.single-post-page__content ol {
  list-style: decimal;
}
.single-post-page__content .wp-block-image img,
.single-post-page__content figure img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.single-post-page__page-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}
.single-post-page__tags {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 920px;
  margin: 2rem auto 0;
  color: #6b7280;
  font-weight: 700;
}
.single-post-page__tags a {
  display: inline-flex;
  align-items: center;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: #06235c;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
}
.single-post-page__tags a:hover, .single-post-page__tags a:focus-visible {
  border-color: #d8a33c;
  background: #d8a33c;
  color: #111111;
}
.single-post-page__share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1080px;
  margin: 2rem auto 0;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.78);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
}
.single-post-page__share-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-width: 0;
}
.single-post-page__share-label {
  color: #06235c;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.single-post-page__share-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.single-post-page__share-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #002d62;
  box-shadow: 0 12px 28px rgba(0, 45, 98, 0.18);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.single-post-page__share-links a:hover, .single-post-page__share-links a:focus-visible {
  background: #d8a33c;
  box-shadow: 0 16px 32px rgba(216, 163, 60, 0.3);
  color: #111111;
  transform: translateY(-3px);
}
.single-post-page__share-links a i {
  font-size: 1rem;
  line-height: 1;
}
.single-post-page__quick-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1rem;
}
.single-post-page__quick-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 210px;
  min-height: 60px;
  padding: 0 1.75rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 999px;
  background: #ffffff;
  color: #06235c;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.06);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.single-post-page__quick-links a i {
  color: currentColor;
  font-size: 1.05rem;
  line-height: 1;
}
.single-post-page__quick-links a:hover, .single-post-page__quick-links a:focus-visible {
  border-color: #16b9d4;
  background: #16b9d4;
  box-shadow: 0 20px 40px rgba(22, 185, 212, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}
.single-post-page__quick-links .single-post-page__quick-link--home {
  border-color: #d8a33c;
  background: #d8a33c;
  box-shadow: 0 18px 34px rgba(216, 163, 60, 0.28);
  color: #111111;
}
.single-post-page__quick-links .single-post-page__quick-link--home:hover, .single-post-page__quick-links .single-post-page__quick-link--home:focus-visible {
  border-color: #c89c36;
  background: #c89c36;
  box-shadow: 0 22px 42px rgba(216, 163, 60, 0.34);
  color: #111111;
}
.single-post-page__quick-links .single-post-page__quick-link--blog {
  background: #ffffff;
}
.single-post-page__navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1080px;
  margin: 2.5rem auto 0;
}
.single-post-page__nav-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 174px;
  min-height: 58px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.04);
  color: #06235c;
  font-size: 1rem;
  font-weight: 800;
  padding: 0 1.5rem;
  text-align: center;
  text-decoration: none;
}
.single-post-page__nav-link a:hover, .single-post-page__nav-link a:focus-visible {
  border-color: #16b9d4;
  background: #16b9d4;
  box-shadow: 0 16px 34px rgba(22, 185, 212, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}
.single-post-page__comments {
  max-width: 1080px;
  margin: 2.5rem auto 0;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.5rem, 6vw, 5.5rem);
  border: 1px solid rgba(229, 231, 235, 0.78);
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}
.single-post-page__comments .comments-title,
.single-post-page__comments .comment-reply-title {
  margin: 0 0 0.75rem;
  color: #06235c;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
}
.single-post-page__comments .comment-notes,
.single-post-page__comments .logged-in-as,
.single-post-page__comments .comment-form-cookies-consent,
.single-post-page__comments .comment-awaiting-moderation {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.7;
}
.single-post-page__comments .comment-notes,
.single-post-page__comments .logged-in-as {
  margin-bottom: 2rem;
}
.single-post-page__comments .comment-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}
.single-post-page__comments .comment-form-comment,
.single-post-page__comments .comment-form-url,
.single-post-page__comments .comment-form-cookies-consent,
.single-post-page__comments .form-submit {
  grid-column: 1/-1;
}
.single-post-page__comments .comment-form-comment label {
  align-self: flex-start;
}
.single-post-page__comments p {
  margin: 0;
}
.single-post-page__comments label {
  display: block;
  margin-bottom: 0.5rem;
  color: #06235c;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.single-post-page__comments input:not([type=submit]):not([type=checkbox]),
.single-post-page__comments textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: #101828;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.single-post-page__comments input:not([type=submit]):not([type=checkbox]):focus,
.single-post-page__comments textarea:focus {
  border-color: #16b9d4;
  box-shadow: 0 0 0 4px rgba(22, 185, 212, 0.16);
}
.single-post-page__comments input:not([type=submit]):not([type=checkbox]) {
  min-height: 56px;
  padding: 0 1.25rem;
}
.single-post-page__comments textarea {
  min-height: 190px;
  padding: 1.25rem;
  resize: vertical;
}
.single-post-page__comments .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.single-post-page__comments .comment-form-cookies-consent input {
  width: 18px;
  height: 18px;
  margin-top: 0.35rem;
  accent-color: #16b9d4;
  flex: 0 0 18px;
}
.single-post-page__comments .comment-form-cookies-consent label {
  margin: 0;
  color: #6b7280;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.6;
}
.single-post-page__comments .form-submit {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.25rem;
}
.single-post-page__comments .submit,
.single-post-page__comments #submit,
.single-post-page__comments input[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 2rem;
  border: 0;
  border-radius: 999px;
  background: #16b9d4;
  box-shadow: 0 12px 28px rgba(22, 185, 212, 0.25);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-shadow: none;
}
.single-post-page__comments .submit:hover, .single-post-page__comments .submit:focus-visible,
.single-post-page__comments #submit:hover,
.single-post-page__comments #submit:focus-visible,
.single-post-page__comments input[type=submit]:hover,
.single-post-page__comments input[type=submit]:focus-visible {
  background: #06235c;
  color: #ffffff;
  transform: translateY(-2px);
}
.single-post-page__comments .comment-list {
  display: grid;
  gap: 1.25rem;
  margin: 0 0 2.5rem;
  padding: 0;
  list-style: none;
}
.single-post-page__comments .comment-body {
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fbfcfd;
}
.single-post-page__comments .comment-meta {
  margin-bottom: 1rem;
  color: #6b7280;
  font-size: 0.875rem;
}
.single-post-page__comments .comment-meta a {
  color: inherit;
  text-decoration: none;
}
.single-post-page__comments .comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
  color: #06235c;
  font-weight: 800;
}
.single-post-page__comments .comment-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.single-post-page__comments .reply a {
  color: #0f9bb3;
  font-weight: 800;
  text-decoration: none;
}
.single-post-page__comments .reply a:hover, .single-post-page__comments .reply a:focus-visible {
  color: #06235c;
}

@media (max-width: 768px) {
  .single-post-page__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-content: stretch;
    gap: 0.75rem 1.25rem;
    width: min(100% - 32px, 1080px);
    margin-inline: auto;
    font-size: 1rem;
  }
  .single-post-page__meta time,
  .single-post-page__meta span {
    justify-self: start;
  }
  .single-post-page__category {
    grid-column: 1/-1;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    padding: 0.75rem 1.35rem;
    font-size: 1rem;
  }
  .single-post-page__content {
    font-size: 1rem;
  }
  .single-post-page__share {
    align-items: stretch;
    flex-direction: column;
    padding: 1.25rem;
    text-align: center;
  }
  .single-post-page__share-content {
    align-items: center;
    flex-direction: column;
    gap: 1rem;
  }
  .single-post-page__share-links {
    justify-content: center;
  }
  .single-post-page__quick-links {
    justify-content: center;
  }
  .single-post-page__quick-links a {
    width: 100%;
  }
  .single-post-page__navigation {
    align-items: stretch;
    flex-direction: column;
  }
  .single-post-page__nav-link a {
    width: 100%;
  }
  .single-post-page__comments {
    padding: 2rem 1.5rem;
  }
  .single-post-page__comments .comment-form {
    grid-template-columns: 1fr;
  }
  .single-post-page__comments .submit {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .single-post-page__meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
  }
  .single-post-page__meta time,
  .single-post-page__meta span {
    justify-self: start;
  }
}
.faqs-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: #ffffff;
}
.faqs-section__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  align-items: start;
  gap: clamp(1.75rem, 4vw, 2.625rem);
  width: min(1480px, 100% - 48px);
  margin-inline: auto;
}
.faqs-section__media {
  position: sticky;
  top: 2rem;
  min-height: 520px;
  overflow: hidden;
  border-radius: 8px;
  background: #f7f8fa;
}
.faqs-section__media img {
  min-height: 720px;
}

.faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faqs-accordion__item {
  overflow: hidden;
  border: 2px solid #06235c;
  border-radius: 12px;
  background: #ffffff;
}
.faqs-accordion__item.is-active .faqs-accordion__button {
  background: #06235c;
  color: #ffffff;
}
.faqs-accordion__item.is-active .faqs-accordion__icon {
  transform: rotate(0deg);
}
.faqs-accordion__item:not(.is-active) .faqs-accordion__icon {
  transform: rotate(180deg);
}
.faqs-accordion__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  min-height: 76px;
  padding: 1.25rem 1.5rem;
  border: 0;
  background: #ffffff;
  color: #101828;
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.25;
  text-align: left;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.faqs-accordion__button:focus-visible {
  outline: 3px solid #16b9d4;
  outline-offset: -6px;
}
.faqs-accordion__icon {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: transform 0.2s ease;
}
.faqs-accordion__panel {
  background: #ffffff;
}
.faqs-accordion__body {
  padding: 1.5rem;
  color: #101828;
  font-size: clamp(1.125rem, 1.2vw, 1.4375rem);
  line-height: 1.45;
}

@media (max-width: 1200px) {
  .faqs-section {
    padding-block: 4rem;
  }
  .faqs-section__container {
    grid-template-columns: 1fr;
  }
  .faqs-section__media {
    position: relative;
    top: auto;
    min-height: 360px;
  }
  .faqs-section__media img {
    min-height: 360px;
  }
}
@media (max-width: 576px) {
  .faqs-section__container {
    width: min(1480px, 100% - 28px);
    gap: 1.75rem;
  }
  .faqs-section__media {
    min-height: 280px;
  }
  .faqs-section__media img {
    min-height: 280px;
  }
  .faqs-accordion {
    gap: 0.75rem;
  }
  .faqs-accordion__button {
    min-height: 64px;
    padding: 1rem 1.25rem;
    font-size: 1.125rem;
  }
  .faqs-accordion__body {
    padding: 1.25rem;
    font-size: 1rem;
  }
}
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  visibility: hidden;
}
.search-overlay--active {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
}
body.admin-bar .search-overlay {
  top: 32px;
}
.search-overlay p {
  margin: 0 0 1rem;
  color: #555555;
  line-height: 1.7;
}
.search-overlay .container {
  width: min(1400px, 92%);
  margin-inline: auto;
}
.search-overlay__top {
  position: sticky;
  top: 0;
  z-index: 5;
  padding-block: 1.5rem;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(14px);
}
.search-overlay__top .container {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.search-overlay__icon {
  color: #06235c;
  font-size: 1.8rem;
}
.search-overlay__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(6, 35, 92, 0.08);
  color: #06235c;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.search-overlay__close:hover, .search-overlay__close:focus-visible {
  background: #d8a33c;
  color: #111111;
  transform: rotate(90deg);
}
.search-overlay__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding-block: 2.5rem;
}
.search-overlay__section {
  min-width: 0;
}
.search-overlay__section-title {
  margin: 0 0 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(216, 163, 60, 0.35);
  color: #06235c;
  font-size: 1.5rem;
  font-weight: 800;
}
.search-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.search-overlay__item {
  padding-block: 1rem;
  border-bottom: 1px solid #ececec;
}
.search-overlay__item a {
  color: #06235c;
  font-weight: 800;
  text-decoration: none;
}
.search-overlay__item a:hover, .search-overlay__item a:focus-visible {
  color: #19b7ca;
}
.search-overlay__item p {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.search-overlay__message {
  padding: 1.25rem;
  border-radius: 12px;
  background: #f7f8fa;
}

.search-term {
  flex: 1;
  width: 100%;
  min-width: 0;
  padding: 0.75rem 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #06235c;
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 600;
}
.search-term::placeholder {
  color: rgba(6, 35, 92, 0.45);
}

.body-no-scroll {
  overflow: hidden;
}

.spinner-loader {
  width: 54px;
  height: 54px;
  margin: 3rem auto;
  border: 5px solid rgba(25, 183, 202, 0.18);
  border-top-color: #19b7ca;
  border-radius: 50%;
  animation: search-spin 0.8s linear infinite;
}

@keyframes search-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 992px) {
  .search-overlay__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .search-overlay__top {
    padding-block: 1rem;
  }
  .search-overlay__grid {
    grid-template-columns: 1fr;
    padding-block: 2rem;
  }
  .search-overlay__icon {
    font-size: 1.4rem;
  }
  .search-overlay__close {
    width: 42px;
    height: 42px;
    font-size: 1.25rem;
  }
  .search-term {
    font-size: 1.1rem;
  }
}
@media (max-width: 782px) {
  body.admin-bar .search-overlay {
    top: 46px;
  }
}
.health-journey {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5.625rem, 9vw, 7.5rem);
  background: #eef5fb;
}
.health-journey::before {
  position: absolute;
  inset: 140px 0 120px;
  z-index: 0;
  content: "";
  background: #003f88;
}
.health-journey .container {
  position: relative;
  z-index: 2;
  width: min(1320px, 100% - 40px);
  margin-inline: auto;
}
.health-journey.animate .health-journey__content,
.health-journey.animate .healthJourneySlider {
  opacity: 1;
  transform: translateY(0);
}

.health-journey__wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(3rem, 6vw, 5rem);
}

.health-journey__content {
  position: relative;
  z-index: 2;
  padding-block: 5rem;
  color: #ffffff;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.health-journey__subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #9ee9f5;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.health-journey__title {
  margin: 0 0 1.5rem;
  color: #ffffff;
  font-size: clamp(2.125rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
}

.health-journey__text {
  max-width: 560px;
  margin: 0 0 2.5rem;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  line-height: 1.9;
}

.health-journey__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border-radius: 999px;
  background: #ffffff;
  color: #003f88;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.health-journey__button:hover, .health-journey__button:focus-visible {
  background: #19b7ca;
  box-shadow: 0 15px 35px rgba(17, 17, 17, 0.15);
  color: #ffffff;
  transform: translateY(-3px);
}

.health-journey__slider {
  position: relative;
  z-index: 5;
  min-width: 0;
}

.healthJourneySlider {
  width: 100%;
  max-width: 430px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 25px 60px rgba(17, 17, 17, 0.18);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.healthJourneySlider img {
  height: 580px;
}
.healthJourneySlider .swiper-button-next,
.healthJourneySlider .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #003f88;
  transition: background 0.3s ease, color 0.3s ease;
}
.healthJourneySlider .swiper-button-next::after,
.healthJourneySlider .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 800;
}
.healthJourneySlider .swiper-button-next:hover, .healthJourneySlider .swiper-button-next:focus-visible,
.healthJourneySlider .swiper-button-prev:hover,
.healthJourneySlider .swiper-button-prev:focus-visible {
  background: #19b7ca;
  color: #ffffff;
}
.healthJourneySlider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #ffffff;
  opacity: 0.5;
}
.healthJourneySlider .swiper-pagination-bullet-active {
  background: #19b7ca;
  opacity: 1;
}

@media (max-width: 992px) {
  .health-journey {
    padding-block: clamp(4rem, 8vw, 6rem);
  }
  .health-journey::before {
    inset: 3rem 0;
  }
  .health-journey__wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .health-journey__content {
    max-width: 760px;
    margin-inline: auto;
    padding: 2.5rem 0 0;
    text-align: center;
  }
  .health-journey__text {
    margin-inline: auto;
    margin-bottom: 2rem;
  }
  .healthJourneySlider {
    max-width: min(560px, 100%);
    margin-inline: auto;
  }
  .healthJourneySlider img {
    height: clamp(360px, 62vw, 520px);
  }
}
@media (max-width: 576px) {
  .health-journey {
    padding-block: 3rem;
    background: #003f88;
  }
  .health-journey::before {
    display: none;
  }
  .health-journey .container {
    width: min(100% - 28px, 1320px);
  }
  .health-journey__wrapper {
    gap: 2rem;
  }
  .health-journey__content {
    padding: 0;
    text-align: left;
  }
  .health-journey__subtitle {
    margin-bottom: 1rem;
    padding: 9px 16px;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
  }
  .health-journey__title {
    margin-bottom: 1rem;
    font-size: clamp(2rem, 10vw, 2.625rem);
    line-height: 1.12;
  }
  .health-journey__text {
    max-width: none;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.75;
  }
  .health-journey__button {
    width: 100%;
    min-height: 54px;
    padding: 15px 24px;
  }
  .healthJourneySlider {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.2);
  }
  .healthJourneySlider img {
    height: clamp(280px, 82vw, 380px);
  }
  .healthJourneySlider .swiper-button-next,
  .healthJourneySlider .swiper-button-prev {
    width: 38px;
    height: 38px;
  }
  .healthJourneySlider .swiper-button-next {
    right: 10px;
  }
  .healthJourneySlider .swiper-button-prev {
    left: 10px;
  }
}
@media (max-width: 480px) {
  .health-journey {
    padding-block: 2.5rem;
  }
  .health-journey__title {
    font-size: clamp(1.85rem, 11vw, 2.25rem);
  }
  .health-journey__subtitle {
    max-width: 100%;
    white-space: normal;
  }
  .healthJourneySlider img {
    height: 260px;
  }
  .healthJourneySlider .swiper-button-next,
  .healthJourneySlider .swiper-button-prev {
    display: none;
  }
}
@media (max-width: 360px) {
  .health-journey__button {
    font-size: 0.875rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .health-journey__content,
  .healthJourneySlider {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.site-footer {
  position: relative;
  overflow: hidden;
  background: #001b4d;
  color: #ffffff;
}
.site-footer .footer-top,
.site-footer .footer-bottom {
  width: 92%;
  max-width: 1400px;
  margin-inline: auto;
}
.site-footer .footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.125rem);
  padding-block: 5rem 3rem;
}
.site-footer .footer-column {
  min-width: 0;
}
.site-footer .footer-column h4 {
  margin: 0 0 1.5rem;
  color: #d8a33c;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.2;
}
.site-footer .footer-column ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-footer .footer-column li {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}
.site-footer .footer-column li:last-child {
  margin-bottom: 0;
}
.site-footer .footer-column a {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-column a:hover, .site-footer .footer-column a:focus-visible, .site-footer .footer-column a.active {
  color: #d8a33c;
}
.site-footer .footer-column i {
  flex: 0 0 1rem;
  color: #d8a33c;
  line-height: 1;
}
.site-footer .brand p {
  max-width: 380px;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}
.site-footer .logo-link {
  display: inline-flex;
  color: #ffffff;
  text-decoration: none;
}
.site-footer .logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.site-footer .logo img {
  width: auto;
  max-width: 210px;
  max-height: 70px;
  object-fit: contain;
}
.site-footer .logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  color: #ffffff;
  text-align: center;
}
.site-footer .logo-main {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.05;
  text-align: center;
  white-space: nowrap;
}
.site-footer .logo-sub-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 2px;
  line-height: 1;
}
.site-footer .logo-sub-wrap::before, .site-footer .logo-sub-wrap::after {
  display: none;
  content: none;
}
.site-footer .logo-sub {
  display: block;
  width: 100%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
.site-footer .logo-sub::before {
  content: "-";
  margin-right: 0.15em;
}
.site-footer .logo-sub::after {
  content: "-";
  margin-left: 0.15em;
}
.site-footer .social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.site-footer .social-links li {
  margin: 0;
}
.site-footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.site-footer .social-links a:hover, .site-footer .social-links a:focus-visible {
  background: #d8a33c;
  color: #001b4d;
  transform: translateY(-2px);
}
.site-footer .social-links a i {
  color: currentColor;
}
.site-footer .contact-email {
  overflow-wrap: anywhere;
}
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
}
.site-footer .footer-bottom-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.site-footer .footer-bottom-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom-links a:hover, .site-footer .footer-bottom-links a:focus-visible, .site-footer .footer-bottom-links a.active {
  color: #d8a33c;
}
.site-footer .footer-bottom-links a.active {
  text-decoration: underline;
  text-decoration-color: #d8a33c;
  text-underline-offset: 0.25em;
}
.site-footer .developer {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer .developer:hover, .site-footer .developer:focus-visible {
  color: #d8a33c;
}

@media (max-width: 992px) {
  .site-footer .footer-column:last-child {
    grid-column: 1/-1;
  }
  .site-footer .footer-column:last-child h4 {
    margin-bottom: 1.25rem;
  }
  .site-footer .footer-column:last-child ul {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    width: 100%;
  }
  .site-footer .footer-column:last-child li {
    margin: 0;
    min-width: 0;
  }
  .site-footer .footer-column:last-child a {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 0.75rem;
    width: 100%;
    min-width: 0;
    color: rgba(255, 255, 255, 0.86);
    line-height: 1.5;
    overflow-wrap: normal;
    word-break: normal;
  }
  .site-footer .footer-column:last-child a > span {
    display: block;
    min-width: 0;
  }
  .site-footer .footer-column:last-child i {
    width: 22px;
    margin-top: 0.2em;
    color: #d8a33c;
    text-align: center;
  }
  .site-footer .footer-column:last-child .contact-email span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}
@media (max-width: 768px) {
  .site-footer .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem 1.25rem;
    padding-block: 3rem;
  }
  .site-footer .brand {
    grid-column: 1/-1;
  }
  .site-footer .brand p {
    max-width: none;
  }
  .site-footer .logo {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  .site-footer .logo img {
    width: 54px;
    max-width: 54px;
    max-height: 54px;
    flex: 0 0 54px;
  }
  .site-footer .logo-main {
    font-size: 1rem;
  }
  .site-footer .logo-sub {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
  }
  .site-footer .footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  .site-footer .footer-column li {
    margin-bottom: 0.75rem;
  }
  .site-footer .footer-column a {
    font-size: 0.875rem;
  }
  .site-footer .footer-column:last-child {
    grid-column: 1/-1;
  }
  .site-footer .footer-column:last-child h4 {
    margin-bottom: 1.25rem;
  }
  .site-footer .footer-column:last-child ul {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .site-footer .footer-column:last-child li {
    margin: 0;
  }
  .site-footer .footer-column:last-child a,
  .site-footer .footer-column:last-child span {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: start;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.875rem;
    line-height: 1.5;
    text-decoration: none;
    overflow-wrap: normal;
    word-break: normal;
  }
  .site-footer .footer-column:last-child i {
    width: 22px;
    margin-top: 0.2em;
    color: #d8a33c;
    font-size: 1rem;
    text-align: center;
  }
  .site-footer .footer-column:last-child .contact-email,
  .site-footer .footer-column:last-child .contact-email span {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  .site-footer .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding-block: 1.5rem;
    text-align: center;
  }
  .site-footer .footer-bottom p {
    width: 100%;
    margin: 0;
    text-align: center;
  }
  .site-footer .footer-bottom-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.75rem 1.25rem;
  }
}
@media (max-width: 480px) {
  .site-footer .footer-top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 1rem;
  }
  .site-footer .logo {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  .site-footer .logo img {
    width: 50px;
    max-width: 50px;
    max-height: 50px;
    flex-basis: 50px;
  }
  .site-footer .logo-main {
    font-size: 0.95rem;
  }
  .site-footer .logo-sub {
    font-size: 0.62rem;
  }
  .site-footer .footer-column:last-child a,
  .site-footer .footer-column:last-child span {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 0.75rem;
    font-size: 0.95rem;
  }
  .site-footer .footer-column:last-child i {
    width: 20px;
  }
  .site-footer a,
  .site-footer p,
  .site-footer li {
    overflow-wrap: anywhere;
  }
}
.error-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70vh;
  padding: 5rem 1.25rem;
  background: #f7f8fa;
  text-align: center;
}
.error-page .container {
  max-width: 700px;
  margin-inline: auto;
}
.error-page .error-code {
  display: block;
  margin-bottom: 1.25rem;
  color: rgba(216, 163, 60, 0.85);
  font-size: clamp(6rem, 15vw, 10rem);
  font-weight: 800;
  line-height: 1;
}
.error-page h1 {
  margin-bottom: 1.25rem;
  color: #06235c;
  font-size: clamp(2rem, 5vw, 3.5rem);
}
.error-page p {
  max-width: 550px;
  margin: 0 auto 2rem;
  color: #555555;
  font-size: 1.1rem;
  line-height: 1.8;
}
.error-page .error-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.error-page .btn-secondary {
  border: 1px solid #06235c;
  color: #06235c;
  font-weight: 700;
  padding: 14px 30px;
}
.error-page .btn-secondary:hover, .error-page .btn-secondary:focus-visible {
  background: #06235c;
  color: #ffffff;
}

@media (max-width: 576px) {
  .error-page {
    min-height: 60vh;
    padding-block: 4rem;
  }
}
.accessibility-page {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}
.accessibility-page__container {
  width: min(1240px, 100% - 40px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.accessibility-page__aside {
  position: sticky;
  top: 120px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.accessibility-page__aside p {
  margin: 0;
  color: #555555;
  line-height: 1.7;
}
.accessibility-page__eyebrow {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(25, 183, 202, 0.12);
  color: #19b7ca;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.accessibility-page__aside-title {
  margin: 0 0 1rem;
  color: #06235c;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
}
.accessibility-page__updated {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ececec;
}
.accessibility-page__updated span,
.accessibility-page__updated strong {
  display: block;
}
.accessibility-page__updated span {
  margin-bottom: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.accessibility-page__updated strong {
  color: #06235c;
  font-size: 1.125rem;
}
.accessibility-page__content {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.75);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.accessibility-page__header {
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, rgba(0, 27, 77, 0.96), rgba(0, 63, 136, 0.88)), linear-gradient(135deg, rgba(25, 183, 202, 0.2), transparent);
  color: #ffffff;
}
.accessibility-page__header h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
}
.accessibility-page__header p {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  line-height: 1.8;
}
.accessibility-page__body {
  padding: clamp(2rem, 5vw, 4rem);
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.85;
}
.accessibility-page__body > *:first-child {
  margin-top: 0;
}
.accessibility-page__body > *:last-child {
  margin-bottom: 0;
}
.accessibility-page__body h2,
.accessibility-page__body h3,
.accessibility-page__body h4 {
  color: #06235c;
  line-height: 1.2;
}
.accessibility-page__body h2 {
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid #ececec;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}
.accessibility-page__body h3 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
.accessibility-page__body p,
.accessibility-page__body ul,
.accessibility-page__body ol {
  margin: 0 0 1.25rem;
}
.accessibility-page__body ul,
.accessibility-page__body ol {
  padding-left: 1.75rem;
}
.accessibility-page__body li + li {
  margin-top: 0.5rem;
}
.accessibility-page__body a {
  color: #19b7ca;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.accessibility-page__body a:hover, .accessibility-page__body a:focus-visible {
  color: #06235c;
}
.accessibility-page__body strong {
  color: #101828;
}

@media (max-width: 992px) {
  .accessibility-page__container {
    grid-template-columns: 1fr;
  }
  .accessibility-page__aside {
    position: static;
  }
}
@media (max-width: 576px) {
  .accessibility-page__container {
    width: min(100% - 28px, 1240px);
  }
  .accessibility-page__body {
    font-size: 1rem;
  }
}
.blog-page {
  padding-block: clamp(3.5rem, 7vw, 5.625rem);
  background: #fbfcfd;
}
.blog-page .container {
  width: min(1400px, 92%);
  margin-inline: auto;
}
.blog-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 340px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

@media (max-width: 576px) {
  .blog-page__grid {
    gap: 1.5rem;
  }
}
.booking-page {
  background: #fbfcfd;
}
.booking-page__section {
  padding-block: clamp(4rem, 8vw, 7rem);
}
.booking-page__container {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
}
.booking-page__header {
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}
.booking-page__header h1 {
  margin: 1rem 0 1.25rem;
  color: #06235c;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
}
.booking-page__header p {
  max-width: 680px;
  margin-inline: auto;
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.8;
}
.booking-page__logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.booking-page__logo img {
  width: auto;
  max-width: 190px;
  max-height: 120px;
}
.booking-page__notice {
  margin: 0 auto 2rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  font-weight: 700;
  text-align: center;
}
.booking-page__notice--success {
  border-left: 5px solid #19b7ca;
  color: #06235c;
}
.booking-page__notice--error {
  border-left: 5px solid #c0392b;
  color: #c0392b;
}
.booking-page__panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

.booking-form {
  display: grid;
  gap: 2rem;
}

.booking-calendar__top {
  margin-bottom: 1.25rem;
}
.booking-calendar__top h2 {
  margin: 0 0 0.5rem;
  color: #06235c;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}
.booking-calendar__top p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}
.booking-calendar__top p strong {
  color: #06235c;
}
.booking-calendar__card {
  padding: 1.5rem;
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 20px;
  background: #fbfcfd;
}
.booking-calendar__month, .booking-calendar__weekdays, .booking-calendar__days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: center;
  text-align: center;
}
.booking-calendar__month {
  grid-template-columns: 42px 1fr 42px;
  margin-bottom: 1.25rem;
}
.booking-calendar__month strong {
  color: #06235c;
  font-size: 1.25rem;
  font-weight: 800;
}
.booking-calendar__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  color: #06235c;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.booking-calendar__nav:hover, .booking-calendar__nav:focus-visible {
  background: #d8a33c;
  color: #111111;
  transform: translateY(-2px);
}
.booking-calendar__weekdays {
  margin-bottom: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 800;
}
.booking-calendar__days {
  gap: 0.5rem;
}
.booking-calendar__days span {
  min-height: 42px;
}
.booking-calendar__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #06235c;
  cursor: pointer;
  font-weight: 800;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.booking-calendar__day:hover, .booking-calendar__day:focus-visible, .booking-calendar__day.is-selected {
  background: #19b7ca;
  color: #ffffff;
  transform: translateY(-2px);
}
.booking-calendar__day:disabled {
  color: rgba(107, 114, 128, 0.5);
  cursor: not-allowed;
  transform: none;
}
.booking-calendar__day.is-unavailable {
  text-decoration: line-through;
}

.booking-times {
  min-width: 0;
}
.booking-times__header {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: #555555;
  font-size: 1.25rem;
}
.booking-times__header strong {
  color: #06235c;
}
.booking-times__status {
  min-height: 1.4em;
  margin: 0 0 1rem;
  color: #c0392b;
  font-weight: 700;
}
.booking-times__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
.booking-times__group h3 {
  margin: 0 0 1rem;
  color: #06235c;
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
}
.booking-times__group > div {
  display: grid;
  gap: 0.75rem;
}
.booking-times__button {
  width: 100%;
  min-height: 58px;
  padding: 0 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #ffffff;
  color: #06235c;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 800;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.booking-times__button:hover, .booking-times__button:focus-visible, .booking-times__button.is-selected {
  border-color: #19b7ca;
  background: #19b7ca;
  box-shadow: 0 14px 34px rgba(25, 183, 202, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}
.booking-times__button:disabled {
  border-color: rgba(229, 231, 235, 0.75);
  background: #f7f8fa;
  box-shadow: none;
  color: #6b7280;
  cursor: not-allowed;
  transform: none;
}
.booking-times__button.is-booked {
  color: #c0392b;
}

.booking-details,
.booking-summary {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.06);
}

.booking-details h2 {
  margin: 0 0 1.5rem;
  color: #06235c;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
}
.booking-details__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.booking-details label {
  display: grid;
  grid-template-rows: auto auto 1.2em;
  align-content: start;
  gap: 0.5rem;
}
.booking-details label span {
  display: flex;
  align-items: flex-end;
  min-height: 1.5em;
  color: #06235c;
  font-size: 0.875rem;
  font-weight: 800;
}
.booking-details input,
.booking-details textarea {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fbfcfd;
  color: #101828;
  font: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.booking-details input:focus,
.booking-details textarea:focus {
  border-color: #19b7ca;
  box-shadow: 0 0 0 4px rgba(25, 183, 202, 0.14);
  outline: none;
}
.booking-details input.is-invalid, .booking-details input:user-invalid,
.booking-details textarea.is-invalid,
.booking-details textarea:user-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.1);
}
.booking-details input {
  min-height: 56px;
  padding-inline: 1rem;
}
.booking-details textarea {
  min-height: 140px;
  padding: 1rem;
  resize: vertical;
}
.booking-details__message {
  grid-column: 1/-1;
  grid-template-rows: auto auto;
}
.booking-details__error {
  min-height: 1.2em;
  color: #c0392b;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.booking-summary__details {
  display: grid;
  gap: 0.25rem;
}
.booking-summary__details span {
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booking-summary__details strong {
  color: #06235c;
  font-size: 1.25rem;
}
.booking-summary__button {
  min-height: 58px;
  padding: 0 2rem;
  border: 0;
  border-radius: 999px;
  background: #d8a33c;
  box-shadow: 0 16px 34px rgba(216, 163, 60, 0.28);
  color: #111111;
  cursor: pointer;
  font-weight: 900;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.booking-summary__button:hover, .booking-summary__button:focus-visible {
  background: #c89c36;
  box-shadow: 0 22px 42px rgba(216, 163, 60, 0.34);
  transform: translateY(-2px);
}
.booking-summary__button:disabled {
  background: #e5e7eb;
  box-shadow: none;
  color: #6b7280;
  cursor: not-allowed;
  transform: none;
}

@media (max-width: 992px) {
  .booking-page__panel {
    grid-template-columns: 1fr;
  }
  .booking-details__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .booking-page__container {
    width: min(100% - 28px, 1180px);
  }
  .booking-times__grid {
    grid-template-columns: 1fr;
  }
  .booking-summary {
    align-items: stretch;
    flex-direction: column;
  }
  .booking-summary__button {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .booking-calendar__card {
    padding: 1rem;
  }
  .booking-calendar__days {
    gap: 0.25rem;
  }
  .booking-calendar__day {
    min-height: 38px;
    font-size: 0.875rem;
  }
}
.category-archive {
  background: #f7f8fa;
}
.category-archive__header {
  padding: clamp(7rem, 12vw, 11rem) 0 clamp(3.5rem, 7vw, 6rem);
  background: linear-gradient(135deg, rgba(0, 27, 77, 0.96), rgba(0, 45, 98, 0.86)), linear-gradient(135deg, #001b4d, #003f88);
  color: #ffffff;
  text-align: center;
}
.category-archive__header .container {
  width: min(1400px, 92%);
  max-width: 920px;
  margin-inline: auto;
}
.category-archive__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  padding: 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #d8a33c;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.category-archive h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
}
.category-archive__description {
  max-width: 760px;
  margin: 1.5rem auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  line-height: 1.8;
}
.category-archive__description p {
  margin: 0;
}
.category-archive__content {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}
.category-archive__content .container {
  width: min(1400px, 92%);
  margin-inline: auto;
}
.category-archive .blog-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.category-archive .blog-card {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.category-archive .blog-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.category-archive__empty {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3rem);
  border: 1px solid #ececec;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
}
.category-archive__empty img {
  display: block;
  width: min(220px, 60vw);
  aspect-ratio: 1;
  margin: 0 auto 1.5rem;
  border-radius: 12px;
  object-fit: cover;
}
.category-archive__empty h2 {
  margin: 0 0 1rem;
  color: #06235c;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
}
.category-archive__empty p {
  max-width: 520px;
  margin: 0 auto 1.5rem;
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.7;
}
.category-archive__quick-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.5rem auto 0;
}
.category-archive__quick-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-width: 220px;
  min-height: 60px;
  padding: 0 1.75rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.06);
  color: #06235c;
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.category-archive__quick-link i {
  color: currentColor;
  font-size: 1.05rem;
  line-height: 1;
}
.category-archive__quick-link:hover, .category-archive__quick-link:focus-visible {
  border-color: #16b9d4;
  background: #16b9d4;
  box-shadow: 0 20px 40px rgba(22, 185, 212, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}
.category-archive__quick-link--home {
  border-color: #d8a33c;
  background: #d8a33c;
  box-shadow: 0 18px 34px rgba(216, 163, 60, 0.28);
  color: #111111;
}
.category-archive__quick-link--home:hover, .category-archive__quick-link--home:focus-visible {
  border-color: #c89c36;
  background: #c89c36;
  box-shadow: 0 22px 42px rgba(216, 163, 60, 0.34);
  color: #111111;
}

@media (max-width: 768px) {
  .category-archive__header {
    padding-top: 6.5rem;
    text-align: left;
  }
  .category-archive__eyebrow {
    font-size: 0.75rem;
  }
  .category-archive__description {
    font-size: 1rem;
  }
  .category-archive__quick-links {
    align-items: stretch;
    flex-direction: column;
  }
  .category-archive__quick-link {
    width: 100%;
  }
}
@media (prefers-reduced-motion: reduce) {
  .category-archive .blog-card {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
body.login {
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(0, 27, 77, 0.92), rgba(0, 45, 98, 0.72)), var(--gentle-angels-login-background) center/cover no-repeat;
  color: #555555;
  font-family: "Lato", Arial, sans-serif;
}
body.login::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: radial-gradient(circle at 16% 18%, rgba(216, 163, 60, 0.16), transparent 26%), radial-gradient(circle at 86% 72%, rgba(25, 183, 202, 0.16), transparent 28%);
  content: "";
  pointer-events: none;
}

.login #login {
  position: relative;
  z-index: 1;
  width: min(430px, 100% - 32px);
  padding: clamp(3rem, 8vh, 5.5rem) 0;
}
.login h1 {
  margin-bottom: 1.5rem;
}
.login h1 a {
  display: grid;
  grid-template-columns: 78px auto;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 292px;
  height: auto;
  min-height: 78px;
  margin-inline: auto;
  background: var(--gentle-angels-login-logo) left center/78px auto no-repeat;
  color: transparent;
  font-size: 0;
  line-height: 1;
  text-decoration: none;
  text-indent: 0;
  filter: drop-shadow(0 10px 18px rgba(17, 17, 17, 0.18));
}
.login h1 a::before, .login h1 a::after {
  grid-column: 2;
  display: block;
  text-align: left;
  text-indent: 0;
  white-space: nowrap;
}
.login h1 a::before {
  align-self: end;
  content: var(--gentle-angels-login-title, "Gentle Angels");
  color: #fff4c8;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.05;
}
.login h1 a::after {
  align-self: start;
  margin-top: 7px;
  content: "- " var(--gentle-angels-login-tagline, "HOME CARE") " -";
  color: #fff4c8;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
}
.login form {
  margin-top: 0;
  padding: clamp(2rem, 5vw, 2.75rem);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 28px 80px rgba(17, 17, 17, 0.22);
  backdrop-filter: blur(16px);
}
.login label {
  color: #06235c;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.login .input,
.login input[type=text],
.login input[type=password],
.login input[type=email] {
  min-height: 54px;
  margin-top: 0.5rem;
  padding: 0 1.25rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background-color: #ffffff;
  box-shadow: none;
  color: #101828;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.login .input:focus,
.login input[type=text]:focus,
.login input[type=password]:focus,
.login input[type=email]:focus {
  border-color: #19b7ca;
  box-shadow: 0 0 0 4px rgba(25, 183, 202, 0.14);
  outline: none;
}
.login .forgetmenot {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.login .forgetmenot label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #555555;
  font-weight: 600;
}
.login input[type=checkbox] {
  width: 18px;
  height: 18px;
  border-color: #e5e7eb;
  border-radius: 4px;
}
.login input[type=checkbox]:focus {
  border-color: #19b7ca;
  box-shadow: 0 0 0 3px rgba(25, 183, 202, 0.14);
  outline: none;
}
.login input[type=checkbox]:checked::before {
  margin: -2px 0 0 -3px;
  color: #19b7ca;
}
.login .wp-pwd {
  position: relative;
}
.login .button.wp-hide-pw {
  top: 7px;
  right: 8px;
  width: 40px;
  height: 40px;
  border: 0;
  color: #6b7280;
}
.login .button.wp-hide-pw:hover, .login .button.wp-hide-pw:focus {
  background: transparent;
  box-shadow: none;
  color: #19b7ca;
  outline: none;
}
.login .submit {
  margin-top: 1.5rem;
}
.login .button-primary {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background-color: #d8a33c;
  box-shadow: 0 14px 30px rgba(216, 163, 60, 0.28);
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  text-shadow: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.login .button-primary:hover, .login .button-primary:focus {
  background-color: #c89c36;
  box-shadow: 0 18px 40px rgba(216, 163, 60, 0.36);
  color: #111111;
  transform: translateY(-2px);
}
.login .button-primary:focus {
  outline: none;
}
.login #nav,
.login #backtoblog,
.login .privacy-policy-page-link {
  position: relative;
  z-index: 1;
  margin: 1.25rem 0 0;
  padding: 0;
  text-align: center;
}
.login #nav a,
.login #backtoblog a,
.login .privacy-policy-page-link a {
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  text-decoration: none;
  transition: color 0.3s ease;
}
.login #nav a:hover, .login #nav a:focus,
.login #backtoblog a:hover,
.login #backtoblog a:focus,
.login .privacy-policy-page-link a:hover,
.login .privacy-policy-page-link a:focus {
  color: #d8a33c;
}
.login .message,
.login .notice,
.login .success,
.login #login_error {
  position: relative;
  z-index: 1;
  margin-bottom: 1.25rem;
  border: 0;
  border-left: 4px solid #19b7ca;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.login #login_error {
  border-left-color: #c0392b;
}

@media (max-width: 480px) {
  .login #login {
    width: min(100% - 24px, 430px);
    padding-top: 2.5rem;
  }
  .login h1 a {
    grid-template-columns: 64px auto;
    min-width: 248px;
    min-height: 64px;
    background-size: 64px auto;
  }
  .login h1 a::before {
    font-size: 21px;
  }
  .login h1 a::after {
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: 0.16em;
  }
  .login form {
    padding: 1.5rem;
  }
}
.privacy-policy-page {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}
.privacy-policy-page__container {
  width: min(1240px, 100% - 40px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.privacy-policy-page__aside {
  position: sticky;
  top: 120px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.privacy-policy-page__aside p {
  margin: 0;
  color: #555555;
  line-height: 1.7;
}
.privacy-policy-page__eyebrow {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(25, 183, 202, 0.12);
  color: #19b7ca;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.privacy-policy-page__aside-title {
  margin: 0 0 1rem;
  color: #06235c;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
}
.privacy-policy-page__updated {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ececec;
}
.privacy-policy-page__updated span,
.privacy-policy-page__updated strong {
  display: block;
}
.privacy-policy-page__updated span {
  margin-bottom: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.privacy-policy-page__updated strong {
  color: #06235c;
  font-size: 1.125rem;
}
.privacy-policy-page__content {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.75);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.privacy-policy-page__header {
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, rgba(0, 27, 77, 0.96), rgba(0, 63, 136, 0.88)), linear-gradient(135deg, rgba(25, 183, 202, 0.15), transparent);
  color: #ffffff;
}
.privacy-policy-page__header h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
}
.privacy-policy-page__header p {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.125rem;
  line-height: 1.8;
}
.privacy-policy-page__body {
  padding: clamp(2rem, 5vw, 4rem);
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.85;
}
.privacy-policy-page__body > *:first-child {
  margin-top: 0;
}
.privacy-policy-page__body > *:last-child {
  margin-bottom: 0;
}
.privacy-policy-page__body h2,
.privacy-policy-page__body h3,
.privacy-policy-page__body h4 {
  color: #06235c;
  line-height: 1.2;
}
.privacy-policy-page__body h2 {
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid #ececec;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}
.privacy-policy-page__body h3 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
.privacy-policy-page__body p,
.privacy-policy-page__body ul,
.privacy-policy-page__body ol {
  margin: 0 0 1.25rem;
}
.privacy-policy-page__body ul,
.privacy-policy-page__body ol {
  padding-left: 1.75rem;
}
.privacy-policy-page__body li + li {
  margin-top: 0.5rem;
}
.privacy-policy-page__body a {
  color: #19b7ca;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.privacy-policy-page__body a:hover, .privacy-policy-page__body a:focus-visible {
  color: #06235c;
}
.privacy-policy-page__body strong {
  color: #101828;
}

@media (max-width: 992px) {
  .privacy-policy-page__container {
    grid-template-columns: 1fr;
  }
  .privacy-policy-page__aside {
    position: static;
  }
}
@media (max-width: 576px) {
  .privacy-policy-page__container {
    width: min(100% - 28px, 1240px);
  }
  .privacy-policy-page__body {
    font-size: 1rem;
  }
}
.terms-of-use-page {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: linear-gradient(180deg, #fbfcfd 0%, #ffffff 100%);
}
.terms-of-use-page__container {
  width: min(1240px, 100% - 40px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.terms-of-use-page__aside {
  position: sticky;
  top: 120px;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid rgba(229, 231, 235, 0.8);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.terms-of-use-page__aside p {
  margin: 0;
  color: #555555;
  line-height: 1.7;
}
.terms-of-use-page__eyebrow {
  display: inline-flex;
  margin-bottom: 1.25rem;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(216, 163, 60, 0.16);
  color: #06235c;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}
.terms-of-use-page__aside-title {
  margin: 0 0 1rem;
  color: #06235c;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
}
.terms-of-use-page__updated {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #ececec;
}
.terms-of-use-page__updated span,
.terms-of-use-page__updated strong {
  display: block;
}
.terms-of-use-page__updated span {
  margin-bottom: 0.5rem;
  color: #6b7280;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
}
.terms-of-use-page__updated strong {
  color: #06235c;
  font-size: 1.125rem;
}
.terms-of-use-page__content {
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.75);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.terms-of-use-page__header {
  padding: clamp(2rem, 5vw, 4rem);
  background: linear-gradient(135deg, rgba(0, 27, 77, 0.96), rgba(0, 63, 136, 0.88)), linear-gradient(135deg, rgba(216, 163, 60, 0.22), transparent);
  color: #ffffff;
}
.terms-of-use-page__header h1 {
  max-width: 820px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
}
.terms-of-use-page__header p {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.125rem;
  line-height: 1.8;
}
.terms-of-use-page__body {
  padding: clamp(2rem, 5vw, 4rem);
  color: #555555;
  font-size: 1.125rem;
  line-height: 1.85;
}
.terms-of-use-page__body > *:first-child {
  margin-top: 0;
}
.terms-of-use-page__body > *:last-child {
  margin-bottom: 0;
}
.terms-of-use-page__body h2,
.terms-of-use-page__body h3,
.terms-of-use-page__body h4 {
  color: #06235c;
  line-height: 1.2;
}
.terms-of-use-page__body h2 {
  margin: 3rem 0 1rem;
  padding-top: 2rem;
  border-top: 1px solid #ececec;
  font-size: clamp(1.65rem, 3vw, 2.25rem);
}
.terms-of-use-page__body h3 {
  margin: 2rem 0 0.75rem;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
.terms-of-use-page__body p,
.terms-of-use-page__body ul,
.terms-of-use-page__body ol {
  margin: 0 0 1.25rem;
}
.terms-of-use-page__body ul,
.terms-of-use-page__body ol {
  padding-left: 1.75rem;
}
.terms-of-use-page__body li + li {
  margin-top: 0.5rem;
}
.terms-of-use-page__body a {
  color: #19b7ca;
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.terms-of-use-page__body a:hover, .terms-of-use-page__body a:focus-visible {
  color: #06235c;
}
.terms-of-use-page__body strong {
  color: #101828;
}

@media (max-width: 992px) {
  .terms-of-use-page__container {
    grid-template-columns: 1fr;
  }
  .terms-of-use-page__aside {
    position: static;
  }
}
@media (max-width: 576px) {
  .terms-of-use-page__container {
    width: min(100% - 28px, 1240px);
  }
  .terms-of-use-page__body {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=index.css.map*/