:root {
  --primary-color: #1f7ac4;
  --secondary-color: #34b1eb;
  --accent-color: #f5a623;
  --dark-color: #1a2a3a;
  --light-color: #f7fbff;
  --text-color: #333;
  --font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--text-color);
  background-color: #ffffff;
  line-height: 1.6;
}

html.js-enabled [data-animate] {
  --animate-duration: 720ms;
  --animate-delay: 0ms;
  opacity: 0;
  transform: translateY(32px);
  filter: blur(10px);
  will-change: opacity, transform, filter;
  transition:
    opacity var(--animate-duration) ease,
    transform var(--animate-duration) cubic-bezier(0.18, 0.89, 0.32, 1.08),
    filter var(--animate-duration) ease;
  transition-delay: var(--animate-delay, 0ms);
}

html.js-enabled [data-animate].is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

html.js-enabled [data-animate='fade-in'] {
  transform: none;
}

html.js-enabled [data-animate='fade-up'] {
  transform: translateY(32px);
}

html.js-enabled [data-animate='slide-left'] {
  transform: translateX(40px);
}

html.js-enabled [data-animate='slide-right'] {
  transform: translateX(-40px);
}

html.js-enabled [data-animate='zoom-in'] {
  transform: translateY(20px) scale(0.96);
}

@media (prefers-reduced-motion: reduce) {
  html.js-enabled [data-animate] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition-duration: 0.001ms !important;
  }
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #ffffff;
  font-size: 1.35rem;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(31, 122, 196, 0.32);
  transition: opacity 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.back-to-top span {
  line-height: 1;
}

.back-to-top:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.85);
  outline-offset: 3px;
}

.back-to-top:hover {
  box-shadow: 0 16px 40px rgba(31, 122, 196, 0.42);
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 600px) {
  .back-to-top {
    right: 1rem;
    bottom: 1rem;
  }
}

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

a:hover,
a:focus {
  color: var(--primary-color);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  background-color: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(26, 42, 58, 0.08);
  backdrop-filter: blur(0px);
  transition: box-shadow 0.2s ease, backdrop-filter 0.2s ease, border-color 0.2s ease;
}

.site-header.is-stuck {
  backdrop-filter: blur(12px);
  border-bottom-color: rgba(26, 42, 58, 0.04);
  box-shadow: 0 12px 32px rgba(16, 50, 90, 0.14);
}

.site-header.is-stuck .navbar {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

[data-header-sentinel] {
  display: block;
  height: 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.65rem 1.5rem;
  transition: padding 0.2s ease;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

@media (min-width: 961px) {
  .navbar {
    justify-content: flex-start;
  }

  .nav-group {
    flex: 1;
    margin-left: 2rem;
  }
}

.nav-toggle {
  border: none;
  background: none;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.4rem;
  border-radius: 12px;
  cursor: pointer;
  color: var(--dark-color);
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-toggle:focus,
.nav-toggle:hover {
  background: rgba(31, 122, 196, 0.08);
  color: var(--primary-color);
}

.nav-toggle-bars {
  display: inline-flex;
  flex-direction: column;
  gap: 0.25rem;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background-color: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(1) {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(13, 31, 45, 0.48);
  position: fixed;
  inset: 0;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

body.nav-open {
  overflow: hidden;
}

body.nav-open .nav-overlay {
  opacity: 1;
  pointer-events: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo img {
  width: clamp(72px, 7vw, 112px);
  height: clamp(72px, 7vw, 112px);
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-weight: 500;
  flex-wrap: wrap;
}

.nav-links .nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-links > .nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.25rem;
  border-bottom: 2px solid transparent;
  transition: all 0.2s ease;
}

.nav-links > .nav-item > .nav-link:hover,
.nav-links > .nav-item > .nav-link:focus {
  border-color: var(--primary-color);
}

.nav-dropdown > .nav-link::after {
  content: '▾';
  font-size: 0.75em;
  line-height: 1;
  transition: transform 0.2s ease;
}

.nav-dropdown .dropdown-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 200px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 26px 48px rgba(15, 65, 110, 0.16);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 1020;
}

.nav-dropdown .dropdown-panel a {
  display: block;
  padding: 0.6rem 1.25rem;
  color: var(--dark-color);
  font-weight: 500;
  transition: color 0.2s ease, background 0.2s ease;
  border-bottom: none;
}

.nav-dropdown .dropdown-panel a:hover,
.nav-dropdown .dropdown-panel a:focus {
  background: rgba(31, 122, 196, 0.08);
  color: var(--primary-color);
}

.nav-dropdown:hover > .nav-link::after,
.nav-dropdown:focus-within > .nav-link::after {
  transform: rotate(180deg);
}

.nav-dropdown:hover .dropdown-panel,
.nav-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
}

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

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: rgba(31, 122, 196, 0.08);
  color: var(--dark-color);
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease;
}

.header-phone:hover,
.header-phone:focus {
  background: var(--primary-color);
  color: #fff;
}

.header-actions .btn {
  width: auto;
}

.btn-small {
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
  box-shadow: 0 10px 20px rgba(31, 122, 196, 0.16);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  box-shadow: 0 12px 24px rgba(31, 122, 196, 0.18);
}

.btn:hover,
.btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(31, 122, 196, 0.24);
}

.btn.secondary {
  background: none;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  box-shadow: none;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: var(--primary-color);
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(
      to left,
      rgba(0, 0, 0, 0) 55%,
      rgba(0, 0, 0, 0.55) 85%,
      rgba(0, 0, 0, 0.8) 100%
    ),
    linear-gradient(
      120deg,
      rgba(31, 122, 196, 0.28),
      rgba(52, 177, 235, 0.24)
    ),
    url('https://i.imgur.com/6zTgPPs.png');
  background-size: cover;
  background-position:
    center,
    center,
    center top;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 1.5rem;
  color: #fff;
  min-height: clamp(420px, 54vw, 1040px);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 5rem);
  align-items: center;
  justify-items: start;
}

.hero-copy {
  max-width: 620px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.hero-panel {
  background: rgba(12, 28, 44, 0.82);
  border-radius: 28px;
  padding: clamp(2.25rem, 5vw, 3.1rem);
  box-shadow: 0 30px 45px rgba(10, 25, 40, 0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 1.5rem;
  justify-items: start;
  width: min(100%, 620px);
  margin-left: -20px;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  color: #fff;
}

.hero-description {
  margin: 0;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-copy h1,
.hero-copy p,
.hero-copy a {
  color: inherit;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
  color: #fff;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.hero-highlight {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}



.section {
  padding: 5rem 1.5rem;
}

.section.light {
  background-color: var(--light-color);
}

.section.cta {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 4.5rem) 1.5rem;
  background-image:
    linear-gradient(rgba(12, 28, 44, 0.7), rgba(12, 28, 44, 0.7)),
    url('https://i.imgur.com/6zTgPPs.png');
  background-size: cover;
  background-position: center top;
  color: #fff;
  min-height: clamp(380px, 54vw, 1040px);
}

.section.cta h2,
.section.cta .subtitle {
  color: rgba(255, 255, 255, 0.92);
}

.shiny-highlight {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.05em 0.4em;
  border-radius: 999px;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-shadow: 0 4px 12px rgba(12, 28, 44, 0.45);
  isolation: isolate;
}

.shiny-highlight::before,
.shiny-highlight::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.shiny-highlight::before {
  z-index: -2;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04) 45%, rgba(255, 255, 255, 0.32));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.25), 0 12px 24px rgba(0, 0, 0, 0.18);
}

.shiny-highlight::after {
  z-index: -1;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  transform: translateX(-85%);
  opacity: 0;
  animation: shiny-glint 4s ease-in-out infinite;
}

@keyframes shiny-glint {
  0%,
  20% {
    transform: translateX(-90%);
    opacity: 0;
  }
  35% {
    opacity: 0.7;
  }
  50% {
    transform: translateX(90%);
    opacity: 0.9;
  }
  65%,
  100% {
    transform: translateX(90%);
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .shiny-highlight::after {
    animation: none;
  }
}

.section.cta .subtitle {
  color: rgba(255, 255, 255, 0.8);
}

.section.cta .grid {
  background: rgba(12, 28, 44, 0.45);
  border-radius: 28px;
  padding: clamp(2.5rem, 6vw, 3.75rem);
  box-shadow: 0 24px 48px rgba(10, 25, 40, 0.45);
  backdrop-filter: blur(6px);
  width: min(100%, 1100px);
  margin: 0 auto;
}

.cta-panel {
  display: grid;
  gap: 1.75rem;
}

.cta-panel form {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  box-shadow: 0 18px 36px rgba(12, 28, 44, 0.28);
  color: var(--dark-color);
}

.cta-panel label span {
  color: var(--dark-color);
  font-weight: 600;
}

.cta-panel form .alert {
  color: var(--dark-color);
}

.section h2 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.92rem;
  color: #0d4d88;
  margin: 0 0 0.35rem;
}

.section .subtitle {
  text-align: center;
  max-width: 720px;
  margin: 0.5rem auto 3rem;
  color: #556576;
}

.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card { 
  background-color: #fff; 
  border-radius: 20px; 
  padding: 2rem; 
  box-shadow: 0 16px 32px rgba(12, 70, 120, 0.08); 
  transition: transform 0.2s ease, box-shadow 0.2s ease; 
}

.card:hover { 
  transform: translateY(-6px); 
  box-shadow: 0 24px 45px rgba(12, 70, 120, 0.12); 
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: linear-gradient(135deg, rgba(31, 122, 196, 0.08), rgba(52, 177, 235, 0.12));
  position: relative;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-slideshow {
  position: relative;
}

.card-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.card-slideshow img.is-active {
  opacity: 1;
  z-index: 1;
}

.slideshow-dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.4rem;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(12, 28, 44, 0.45);
  box-shadow: 0 6px 12px rgba(12, 28, 44, 0.25);
}

.slideshow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.slideshow-dot.is-active {
  background: #fff;
  transform: scale(1.1);
}

.slideshow-dot:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.card-icon { 
  width: 56px; 
  height: 56px; 
  border-radius: 16px; 
  background: linear-gradient(135deg, rgba(31, 122, 196, 0.16), rgba(52, 177, 235, 0.22)); 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 1.75rem; 
  margin-bottom: 1rem; 
  color: var(--primary-color); 
}

.card-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card-link {
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.card-link::after {
  content: '›';
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.card-link:hover::after,
.card-link:focus::after {
  transform: translateX(3px);
}

.card-actions .btn {
  width: 100%;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 0 8px 18px rgba(18, 74, 110, 0.08);
  font-weight: 600;
}

.testimonials {
  position: relative;
}

.testimonial-track {
  display: flex;
  gap: 1.5rem;
  overflow: hidden;
}

.testimonial {
  min-width: 280px;
  flex: 1;
  padding: 2rem;
  border-radius: 18px;
  background-color: #fff;
  box-shadow: 0 16px 32px rgba(12, 70, 120, 0.08);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.25rem;
}

.testimonial .author {
  font-weight: 700;
  color: var(--dark-color);
}

.faq-item {
  border-radius: 16px;
  background-color: #fff;
  padding: 1.5rem;
  box-shadow: 0 10px 24px rgba(15, 70, 110, 0.08);
}

.faq-item summary {
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
}

.faq-item p {
  margin-top: 0.75rem;
  color: #4a5d6d;
}

form {
  display: grid;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

.form-row.two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

input,
select,
textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(31, 122, 196, 0.24);
  font-size: 1rem;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 122, 196, 0.16);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(10, 60, 110, 0.12);
}

.contact-info {
  display: grid;
  gap: 1.25rem;
}

.contact-info .info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-info .info-item span {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.footer {
  background-color: var(--dark-color);
  color: #dce7f3;
  padding: 3rem 1.5rem 2rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer a {
  color: #dce7f3;
}

.footer-bottom {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: #8ea6c1;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  transition: background 0.2s ease;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.24);
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.badge-card {
  background-color: #fff;
  border-radius: 18px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(10, 60, 110, 0.1);
}

.badge-card img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 0.75rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(12, 70, 120, 0.1);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(15, 70, 110, 0.12);
  text-align: left;
}

.alert {
  padding: 1rem;
  border-radius: 14px;
  background-color: rgba(31, 122, 196, 0.08);
  color: var(--dark-color);
  margin-top: 1rem;
  display: none;
}

.alert.success {
  display: block;
  border: 1px solid rgba(31, 196, 120, 0.4);
  background-color: rgba(31, 196, 120, 0.12);
}

.alert.error {
  display: block;
  border: 1px solid rgba(196, 31, 31, 0.4);
  background-color: rgba(196, 31, 31, 0.12);
}

.banner {
  text-align: center;
  padding: 0.85rem;
  background: linear-gradient(135deg, rgba(31, 122, 196, 0.16), rgba(52, 177, 235, 0.24));
  color: var(--dark-color);
  font-weight: 600;
}

.list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.list li span {
  margin-top: 0.2rem;
  color: var(--primary-color);
  font-size: 1.1rem;
}

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

@media (max-width: 960px) {
  .navbar {
    position: relative;
    padding: 0.65rem 1.25rem;
  }

  .mobile-header-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0 1.25rem 0.85rem;
    background-color: #ffffff;
    border-top: 1px solid rgba(26, 42, 58, 0.08);
  }

  .mobile-header-actions .header-phone {
    flex: 1;
    justify-content: flex-start;
    padding-left: 1rem;
  }

  .mobile-header-actions .btn {
    flex-shrink: 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    position: relative;
    z-index: 1400;
  }

  .nav-overlay {
    display: block;
  }

  .nav-group {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    margin: 0;
    width: min(92vw, 360px);
    background: #ffffff;
    border-radius: 0;
    box-shadow: -10px 0 40px rgba(16, 50, 90, 0.22);
    padding: 5.5rem 1.75rem 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.75rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(105%);
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 1300;
    height: 100vh;
    overflow-y: auto;
  }

  .nav-group.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-group .header-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: auto;
  }

  .nav-group .header-actions .header-phone {
    justify-content: center;
    padding-left: 0;
  }

  .nav-group .header-actions .btn {
    width: 100%;
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .nav-links .nav-item {
    width: 100%;
  }

  .nav-links > .nav-item > .nav-link {
    width: 100%;
    padding: 0.5rem 0;
    border-bottom: none;
  }

  .nav-dropdown > .nav-link::after {
    margin-left: auto;
  }

  .nav-dropdown .dropdown-panel {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: auto;
    box-shadow: none;
    padding: 0.25rem 0 0.75rem;
    border-radius: 0;
    width: 100%;
  }

  .nav-dropdown .dropdown-panel a {
    padding: 0.35rem 0 0.35rem 1rem;
    border-radius: 10px;
  }

  .header-actions {
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .header-phone,
  .header-actions .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .hero-content {
    padding: 4.25rem 1.25rem 3.5rem;
  }

  .hero-panel {
    padding: 1.85rem 1.65rem;
    gap: 1.15rem;
    margin-left: 0;
  }

  .section.cta {
    padding: 3.25rem 1rem;
  }

  .section.cta .grid {
    padding: 1.75rem 1.25rem;
  }

  .cta-panel form {
    padding: 1.5rem 1.25rem;
  }

  .hero-panel h1 {
    font-size: 1.9rem;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero-actions .btn,
  .hero-highlight .btn {
    width: 100%;
  }

  .hero-highlight {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }

  .section {
    padding: 3.75rem 1.25rem;
  }

  .grid {
    gap: 1.5rem;
  }

  .trust-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .testimonial-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1rem;
    padding-bottom: 0.5rem;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    -webkit-overflow-scrolling: touch;
  }

  .testimonial {
    min-width: 85%;
    scroll-snap-align: start;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

.hero--booking {
  padding-bottom: 3rem;
  background:
    linear-gradient(180deg, rgba(10, 23, 38, 0.75) 10%, rgba(10, 23, 38, 0.6) 55%, rgba(10, 23, 38, 0.8) 100%),
    url('https://cdn.prod.website-files.com/5e470d5af887ac1eb0d2b9f4/5f39570ba5fdcb464d17040c_person-taking-photo-of-gray-pendant-lamp-over-brown-wooden-709767.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
}

.hero--booking .hero-content {
  align-items: center;
  justify-items: center;
  text-align: center;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 2.5rem);
  color: inherit;
}

.hero--booking .hero-copy {
  max-width: 640px;
  padding: clamp(2rem, 5vw, 3rem);
  background: rgba(10, 23, 38, 0.58);
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(5, 14, 24, 0.3);
  backdrop-filter: blur(4px);
}

.hero--booking h1,
.hero--booking p,
.hero--booking .hero-checklist li {
  color: inherit;
}

.hero--booking .hero-highlight {
  align-items: center;
  justify-content: center;
}

.hero--booking .hero-checklist {
  justify-items: center;
}

.hero--booking .hero-checklist li {
  text-align: left;
}

@media (max-width: 900px) {
  .hero--booking .hero-content {
    padding: 3.25rem 1.5rem 3rem;
  }
}

@media (max-width: 600px) {
  .hero--booking .hero-content {
    padding: 3rem 1.25rem 2.75rem;
    gap: 1.75rem;
  }

  .hero--booking .hero-checklist {
    width: 100%;
  }

  .hero--booking .hero-copy {
    padding: 2.25rem 1.75rem;
  }
}

.hero-checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.hero-checklist li {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.hero-checklist li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: 600;
}

.booking-intro {
  padding-top: 0;
}

.booking-intro__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.booking-intro__step {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 18px 40px rgba(31, 122, 196, 0.1);
  border: 1px solid rgba(31, 122, 196, 0.1);
}

.booking-intro__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.booking-grid {
  max-width: 1080px;
  margin: 0 auto;
  align-items: flex-start;
  gap: 2.5rem;
}

.booking-grid > .card {
  margin-top: 3.5rem;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.stepper-step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(31, 122, 196, 0.08);
  color: rgba(26, 42, 58, 0.65);
  font-weight: 500;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.stepper-step.is-active {
  background: linear-gradient(135deg, rgba(31, 122, 196, 0.16), rgba(52, 177, 235, 0.24));
  color: var(--dark-color);
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(31, 122, 196, 0.12);
}

.stepper-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--primary-color);
  font-weight: 600;
}

.stepper-step__label {
  font-size: 0.95rem;
}

.form-step {
  display: none;
  border: none;
  padding: 0;
  margin: 0;
}

.form-step.is-active {
  display: block;
}

.form-step legend {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-step__description {
  margin-top: 0;
  margin-bottom: 1.5rem;
  color: rgba(26, 42, 58, 0.75);
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.option-card {
  position: relative;
  border-radius: 18px;
  border: 2px solid transparent;
  padding: 1.25rem 1.1rem;
  background: #f7fbff;
  cursor: pointer;
  display: flex;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  box-shadow: 0 10px 24px rgba(16, 50, 90, 0.08);
}

.option-card input {
  position: absolute;
  opacity: 0;
}

.option-card strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.option-card span + span,
.option-card__content span + span {
  font-size: 0.92rem;
  color: rgba(26, 42, 58, 0.7);
}

.option-card__content {
  display: grid;
  gap: 0.25rem;
}

.option-card:focus-within,
.option-card:hover {
  border-color: rgba(31, 122, 196, 0.4);
  box-shadow: 0 16px 36px rgba(31, 122, 196, 0.18);
  transform: translateY(-2px);
}

.option-card input:checked ~ .option-card__content {
  color: var(--dark-color);
}

.option-card input:checked ~ .option-card__content strong {
  color: var(--primary-color);
}

.extras {
  border: none;
  padding: 0;
  margin: 1.75rem 0 1.25rem;
}

.extras legend {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.extras__hint {
  margin-top: 0;
  margin-bottom: 0.85rem;
  color: rgba(26, 42, 58, 0.65);
}

.extras__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: rgba(31, 122, 196, 0.1);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
  font-size: 0.9rem;
}

.chip input {
  position: absolute;
  opacity: 0;
}

.chip:hover,
.chip:focus-within {
  border-color: rgba(31, 122, 196, 0.35);
}

.chip input:checked ~ span {
  font-weight: 600;
  color: var(--primary-color);
}

.checkbox-inline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(31, 122, 196, 0.2);
  background: linear-gradient(135deg, rgba(31, 122, 196, 0.08), rgba(52, 177, 235, 0.12));
  box-shadow: 0 16px 40px rgba(16, 50, 90, 0.12);
  font-size: 0.95rem;
  color: var(--dark-color);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.checkbox-inline:focus-within {
  border-color: rgba(31, 122, 196, 0.5);
  box-shadow: 0 18px 42px rgba(16, 50, 90, 0.16);
  transform: translateY(-1px);
}

.checkbox-inline input {
  -webkit-appearance: none;
  appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 6px;
  border: 2px solid rgba(31, 122, 196, 0.75);
  background-color: #ffffff;
  display: grid;
  place-content: center;
  margin: 0;
  flex-shrink: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.checkbox-inline input::before {
  content: '';
  width: 0.45rem;
  height: 0.75rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg) scale(0);
  transform-origin: bottom left;
  transition: transform 0.2s ease;
}

.checkbox-inline input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(31, 122, 196, 0.18);
}

.checkbox-inline input:checked::before {
  transform: rotate(45deg) scale(1);
}

.checkbox-inline input:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(31, 122, 196, 0.32);
}

.checkbox-inline span {
  font-weight: 600;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .checkbox-inline {
    margin-top: 1.25rem;
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }
}

.form-navigation {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: center;
  margin-top: 2rem;
}

.form-navigation .btn[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

.form-disclaimer {
  font-size: 0.85rem;
  color: rgba(26, 42, 58, 0.65);
  margin-top: 1rem;
}

.booking-summary {
  position: sticky;
  top: 6.5rem;
  border-radius: 24px;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(31, 122, 196, 0.08), rgba(52, 177, 235, 0.18));
  box-shadow: 0 18px 46px rgba(16, 50, 90, 0.12);
}

.booking-summary dl {
  margin: 1.5rem 0 0;
  display: grid;
  gap: 1.1rem;
}

.booking-summary dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(26, 42, 58, 0.6);
}

.booking-summary dd {
  margin: 0.25rem 0 0;
  font-weight: 600;
  color: var(--dark-color);
}

.booking-summary__hint {
  margin: 0.25rem 0 0.75rem;
  color: rgba(26, 42, 58, 0.65);
}

.booking-summary__help {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(31, 122, 196, 0.24);
  color: rgba(26, 42, 58, 0.8);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 18px 40px rgba(16, 50, 90, 0.12);
}

.process-card__icon {
  font-size: 1.85rem;
  display: inline-flex;
  margin-bottom: 0.75rem;
}

@media (max-width: 960px) {
  .booking-grid {
    grid-template-columns: 1fr;
  }

  .booking-summary {
    position: static;
  }
}

@media (max-width: 720px) {
  .stepper {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .stepper-step {
    padding: 0.75rem 0.8rem;
    font-size: 0.85rem;
  }

  .form-navigation {
    flex-direction: column;
    align-items: stretch;
  }

  .form-navigation .btn {
    width: 100%;
  }
}

@media (max-width: 540px) {
  .option-grid {
    grid-template-columns: 1fr;
  }

  .extras__grid {
    justify-content: flex-start;
  }

  .hero-checklist {
    font-size: 0.9rem;
  }

  .card {
    padding: 1.5rem;
  }

  form {
    width: 100%;
  }

  .form-row {
    gap: 1rem;
  }

  .form-row.two {
    grid-template-columns: 1fr;
  }
}


.modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(17, 27, 40, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal__dialog {
  position: relative;
  width: min(480px, 100%);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 30px 70px rgba(16, 50, 90, 0.2);
  padding: 2.5rem 2rem 2rem;
  transform: translateY(20px);
  transition: transform 0.28s ease;
}

.modal.is-visible .modal__dialog {
  transform: translateY(0);
}

.modal__close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  border: none;
  background: rgba(31, 122, 196, 0.08);
  color: var(--dark-color);
  font-size: 1.35rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.modal__close:hover,
.modal__close:focus-visible {
  background: rgba(31, 122, 196, 0.18);
  transform: scale(1.05);
}

.modal__body {
  text-align: left;
  color: var(--dark-color);
}

.modal__body h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: clamp(1.4rem, 4vw, 1.75rem);
}

.modal__body p {
  margin: 0.5rem 0;
  font-size: 0.95rem;
  color: rgba(26, 42, 58, 0.78);
}

.modal__actions {
  margin-top: 1.75rem;
  display: flex;
  justify-content: flex-end;
}

.modal__actions .btn {
  min-width: 150px;
}

body.modal-open {
  overflow: hidden;
}

@media (max-width: 600px) {
  .modal__dialog {
    padding: 2rem 1.5rem 1.75rem;
    border-radius: 20px;
  }

  .modal__actions {
    justify-content: center;
  }
}
