
    /* ── Reset & Base ─────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:        #0D2B55;
      --navy-dark:   #091e3a;
      --navy-light:  #163d70;
      --green:       #2E8B57;
      --green-light: #3aaa6b;
      --green-pale:  #e8f5ee;
      --white:       #ffffff;
      --gray-50:     #f8fafc;
      --gray-100:    #f1f5f9;
      --gray-200:    #e2e8f0;
      --gray-500:    #64748b;
      --gray-700:    #334155;
      --gray-900:    #0f172a;
      --radius:      10px;
      --shadow-sm:   0 1px 3px rgba(0,0,0,.10);
      --shadow-md:   0 4px 16px rgba(0,0,0,.12);
      --shadow-lg:   0 8px 32px rgba(0,0,0,.14);
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
      color: var(--gray-900);
      line-height: 1.6;
      background: var(--white);
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }

    .container {
      width: 100%;
      max-width: 1160px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ── Buttons ──────────────────────────────────────────── */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 30px;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: transform .18s, box-shadow .18s, background .18s;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
    .btn-primary {
      background: var(--green);
      color: var(--white);
    }
    .btn-primary:hover { background: var(--green-light); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 2px solid var(--white);
    }
    .btn-outline:hover { background: rgba(255,255,255,.12); }
    .btn-navy {
      background: var(--navy);
      color: var(--white);
    }
    .btn-navy:hover { background: var(--navy-light); }

    /* ── Section Headings ─────────────────────────────────── */
    .section-tag {
      display: inline-block;
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--green);
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(1.75rem, 3.5vw, 2.5rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1.05rem;
      color: var(--gray-500);
      max-width: 580px;
      margin-bottom: 52px;
    }

    /* ─────────────────────────────────────────────────────── */
    /* HEADER                                                  */
    /* ─────────────────────────────────────────────────────── */
    #header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--navy-dark);
      box-shadow: 0 2px 12px rgba(0,0,0,.20);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo-img {
      height: 48px;
      width: auto;
      background: #ffffff;
      padding: 7px 12px;
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,.18);
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }
    .logo-name {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--white);
      letter-spacing: -.01em;
    }
    .logo-tagline {
      font-size: .68rem;
      font-weight: 600;
      color: var(--green-light);
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    nav { display: flex; align-items: center; gap: 6px; }
    nav a {
      color: rgba(255,255,255,.82);
      font-size: .9rem;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 6px;
      transition: color .15s, background .15s;
    }
    nav a:hover { color: var(--white); background: rgba(255,255,255,.08); }
    .nav-cta {
      margin-left: 8px;
      padding: 10px 22px !important;
      background: var(--green) !important;
      color: var(--white) !important;
      border-radius: 50px !important;
      font-weight: 700 !important;
    }
    .nav-cta:hover { background: var(--green-light) !important; }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
    }
    .hamburger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: .25s;
    }
    .mobile-nav {
      display: none;
      flex-direction: column;
      background: var(--navy-dark);
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 12px 24px 20px;
      gap: 4px;
    }
    .mobile-nav a {
      color: rgba(255,255,255,.82);
      font-size: .95rem;
      font-weight: 500;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .mobile-nav a:last-child { border-bottom: none; }

    /* ─────────────────────────────────────────────────────── */
    /* HERO                                                    */
    /* ─────────────────────────────────────────────────────── */
    #hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1a4f3a 100%);
      color: var(--white);
      padding: 96px 0 80px;
      position: relative;
      overflow: hidden;
    }
    /* Background photo slideshow */
    .hero-slideshow {
      position: absolute;
      inset: 0;
      z-index: 0;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      animation: heroFade 24s infinite;
    }
    .hero-slide:nth-child(1) { animation-delay: 0s; }
    .hero-slide:nth-child(2) { animation-delay: 8s; }
    .hero-slide:nth-child(3) { animation-delay: 16s; }
    @keyframes heroFade {
      0%    { opacity: 0; transform: scale(1.08); }
      4%    { opacity: 1; }
      29%   { opacity: 1; }
      33%   { opacity: 0; }
      100%  { opacity: 0; transform: scale(1); }
    }
    /* Navy/green overlay so hero text stays readable over photos */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(115deg, rgba(9,30,58,.93) 0%, rgba(13,43,85,.80) 42%, rgba(26,79,58,.58) 100%),
        radial-gradient(ellipse 60% 60% at 80% 50%, rgba(46,139,87,.15) 0%, transparent 70%);
    }
    .hero-inner { z-index: 2; }
    .hero-inner {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(46,139,87,.25);
      border: 1px solid rgba(46,139,87,.45);
      color: #6ee7a8;
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 22px;
    }
    .hero-badge svg { flex-shrink: 0; }
    .hero-title {
      font-size: clamp(2.1rem, 4.5vw, 3.4rem);
      font-weight: 900;
      line-height: 1.12;
      margin-bottom: 22px;
      letter-spacing: -.02em;
    }
    .hero-title .accent { color: #6ee7a8; }
    .hero-desc {
      font-size: 1.1rem;
      color: rgba(255,255,255,.8);
      margin-bottom: 38px;
      max-width: 480px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
    .hero-stats {
      display: flex;
      gap: 36px;
      margin-top: 52px;
      padding-top: 36px;
      border-top: 1px solid rgba(255,255,255,.12);
    }
    .stat-num {
      font-size: 2rem;
      font-weight: 900;
      color: #6ee7a8;
      line-height: 1;
    }
    .stat-label {
      font-size: .82rem;
      color: rgba(255,255,255,.6);
      margin-top: 4px;
    }

    /* Hero Illustration */
    .hero-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .hero-card {
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 20px;
      padding: 32px;
      width: 100%;
      max-width: 360px;
    }
    .hero-card-title {
      font-size: .8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: #6ee7a8;
      margin-bottom: 20px;
    }
    .ride-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .ride-item:last-child { border-bottom: none; padding-bottom: 0; }
    .ride-icon {
      width: 40px;
      height: 40px;
      background: rgba(46,139,87,.25);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .ride-info { flex: 1; }
    .ride-name { font-size: .9rem; font-weight: 600; color: var(--white); }
    .ride-sub { font-size: .78rem; color: rgba(255,255,255,.5); margin-top: 2px; }
    .ride-status {
      font-size: .72rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 50px;
      background: rgba(46,139,87,.3);
      color: #6ee7a8;
    }

    /* ─────────────────────────────────────────────────────── */
    /* TRUST BAR                                               */
    /* ─────────────────────────────────────────────────────── */
    #trust {
      background: var(--navy);
      padding: 20px 0;
    }
    .trust-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,.75);
      font-size: .88rem;
      font-weight: 500;
    }
    .trust-item svg { color: var(--green-light); flex-shrink: 0; }

    /* ─────────────────────────────────────────────────────── */
    /* SERVICES                                                */
    /* ─────────────────────────────────────────────────────── */
    #services {
      padding: 96px 0;
      background: var(--gray-50);
    }
    .services-header { text-align: center; }
    .services-header .section-sub { margin: 0 auto 52px; }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--white);
      border: 1px solid var(--gray-200);
      border-radius: 16px;
      padding: 32px 28px;
      transition: transform .2s, box-shadow .2s, border-color .2s;
      position: relative;
      overflow: hidden;
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--navy), var(--green));
      opacity: 0;
      transition: opacity .2s;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: transparent;
    }
    .service-card:hover::before { opacity: 1; }
    .service-icon {
      width: 56px;
      height: 56px;
      background: var(--green-pale);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--green);
    }
    .service-title {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 10px;
    }
    .service-desc { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

    /* ─────────────────────────────────────────────────────── */
    /* COVERAGE                                                */
    /* ─────────────────────────────────────────────────────── */
    #coverage {
      padding: 96px 0;
      background: var(--white);
    }
    .coverage-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .coverage-map {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      min-height: 440px;
      background: var(--green-pale);
    }
    .coverage-map iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }
    .coverage-map img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    /* Fallback shown if the map image fails to load */
    .map-fallback {
      position: absolute;
      inset: 0;
      display: none;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 10px;
      background: linear-gradient(160deg, #0D2B55, #12356a);
      color: #fff;
      padding: 32px;
    }
    .map-fallback svg { color: var(--green-light); }
    .map-fallback p { color: rgba(255,255,255,.7); font-size: .9rem; max-width: 240px; }
    .coverage-map img.failed { display: none; }
    .coverage-map img.failed ~ .map-fallback { display: flex; }
    /* Marker pin overlaid on the map center */
    .map-pin {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -100%);
      z-index: 3;
      pointer-events: none;
    }
    .map-pin svg { filter: drop-shadow(0 4px 8px rgba(0,0,0,.35)); }
    .map-badge {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--navy);
      color: var(--white);
      padding: 10px 22px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: var(--shadow-md);
    }
    .coverage-content .section-sub { margin-bottom: 32px; }
    .area-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 16px;
      margin-bottom: 36px;
    }
    .area-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .9rem;
      color: var(--gray-700);
      font-weight: 500;
    }
    .area-item svg { color: var(--green); flex-shrink: 0; }
    .coverage-note {
      background: var(--green-pale);
      border-left: 4px solid var(--green);
      border-radius: 0 var(--radius) var(--radius) 0;
      padding: 14px 18px;
      font-size: .88rem;
      color: var(--gray-700);
    }

    /* ─────────────────────────────────────────────────────── */
    /* WHY CHOOSE US                                           */
    /* ─────────────────────────────────────────────────────── */
    #why {
      padding: 96px 0;
      background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
      color: var(--white);
    }
    .why-header { text-align: center; margin-bottom: 60px; }
    .why-header .section-tag { color: #6ee7a8; }
    .why-header .section-title { color: var(--white); }
    .why-header .section-sub { color: rgba(255,255,255,.65); margin: 0 auto; }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .feature-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px;
      padding: 28px 24px;
      text-align: center;
      transition: background .2s, transform .2s;
    }
    .feature-card:hover {
      background: rgba(255,255,255,.1);
      transform: translateY(-4px);
    }
    .feature-icon {
      width: 60px;
      height: 60px;
      background: rgba(46,139,87,.25);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      color: #6ee7a8;
    }
    .feature-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 10px;
    }
    .feature-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.65; }

    /* ─────────────────────────────────────────────────────── */
    /* TESTIMONIALS                                            */
    /* ─────────────────────────────────────────────────────── */
    #testimonials {
      padding: 96px 0;
      background: var(--gray-100);
    }
    .testimonials-header { text-align: center; }
    .testimonials-header .section-sub { margin: 0 auto 52px; }
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--white);
      border-radius: 16px;
      padding: 28px;
      box-shadow: var(--shadow-sm);
    }
    .stars { display: flex; gap: 3px; margin-bottom: 16px; color: #f59e0b; }
    .testimonial-text {
      font-size: .92rem;
      color: var(--gray-700);
      line-height: 1.7;
      margin-bottom: 20px;
      font-style: italic;
    }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .author-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
    }
    .author-name { font-size: .9rem; font-weight: 700; color: var(--navy); }
    .author-role { font-size: .78rem; color: var(--gray-500); }

    /* ─────────────────────────────────────────────────────── */
    /* CONTACT / BOOKING                                       */
    /* ─────────────────────────────────────────────────────── */
    #contact {
      padding: 96px 0;
      background: var(--white);
    }
    .contact-inner {
      display: grid;
      grid-template-columns: 1fr 1.1fr;
      gap: 72px;
      align-items: start;
    }
    .contact-info .section-sub { margin-bottom: 36px; }
    .contact-details { display: flex; flex-direction: column; gap: 20px; }
    .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .contact-icon {
      width: 44px;
      height: 44px;
      background: var(--green-pale);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--green);
      flex-shrink: 0;
    }
    .contact-label { font-size: .78rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
    .contact-value { font-size: 1rem; font-weight: 600; color: var(--navy); }

    .booking-form {
      background: var(--gray-50);
      border: 1px solid var(--gray-200);
      border-radius: 20px;
      padding: 40px;
    }
    .form-title {
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--navy);
      margin-bottom: 6px;
    }
    .form-sub { font-size: .88rem; color: var(--gray-500); margin-bottom: 28px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .form-group { margin-bottom: 16px; }
    .form-group label {
      display: block;
      font-size: .83rem;
      font-weight: 600;
      color: var(--gray-700);
      margin-bottom: 6px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      font-size: .92rem;
      color: var(--gray-900);
      background: var(--white);
      transition: border-color .15s, box-shadow .15s;
      font-family: inherit;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--green);
      box-shadow: 0 0 0 3px rgba(46,139,87,.12);
    }
    .form-group textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      width: 100%;
      padding: 15px;
      font-size: 1rem;
      border-radius: var(--radius);
      margin-top: 8px;
    }
    .form-disclaimer { font-size: .75rem; color: var(--gray-500); margin-top: 12px; text-align: center; }

    /* ─────────────────────────────────────────────────────── */
    /* FOOTER                                                  */
    /* ─────────────────────────────────────────────────────── */
    #footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,.7);
      padding: 64px 0 0;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.2fr;
      gap: 48px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .footer-brand .logo-name { font-size: 1.2rem; }
    .footer-logo-img {
      width: 100%;
      max-width: 240px;
      height: auto;
      background: #ffffff;
      padding: 14px 16px;
      border-radius: 12px;
    }
    .footer-brand p {
      font-size: .88rem;
      line-height: 1.7;
      margin-top: 14px;
      color: rgba(255,255,255,.55);
    }
    .footer-col h4 {
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      font-size: .88rem;
      color: rgba(255,255,255,.55);
      transition: color .15s;
    }
    .footer-col ul li a:hover { color: #6ee7a8; }
    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .88rem;
      color: rgba(255,255,255,.55);
      margin-bottom: 12px;
    }
    .footer-contact-item svg { color: var(--green-light); flex-shrink: 0; }
    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 0;
      font-size: .82rem;
      color: rgba(255,255,255,.35);
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom a { color: rgba(255,255,255,.45); transition: color .15s; }
    .footer-bottom a:hover { color: rgba(255,255,255,.75); }

    /* ─────────────────────────────────────────────────────── */
    /* MOBILE                                                  */
    /* ─────────────────────────────────────────────────────── */
    @media (max-width: 1024px) {
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    }

    @media (max-width: 768px) {
      nav { display: none; }
      .hamburger { display: flex; }

      /* Tighter vertical rhythm on phones */
      #hero { padding: 64px 0 56px; }
      #services, #coverage, #why, #testimonials, #contact { padding: 56px 0; }
      .section-sub { margin-bottom: 36px; }

      .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
      }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; }
      .hero-visual { display: none; }

      /* Full-width, thumb-friendly CTAs */
      .hero-actions .btn { flex: 1 1 100%; justify-content: center; }

      .services-grid { grid-template-columns: 1fr; }
      .coverage-inner { grid-template-columns: 1fr; gap: 36px; }
      .coverage-map { min-height: 300px; }
      .features-grid { grid-template-columns: 1fr; }
      .testimonials-grid { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 36px; }
      .footer-grid { grid-template-columns: 1fr; gap: 28px; }
      .form-row { grid-template-columns: 1fr; }

      /* Let long headings wrap naturally instead of forced line breaks */
      .section-title br, .hero-title br { display: none; }
    }

    @media (max-width: 480px) {
      .container { padding: 0 18px; }
      .logo-img { height: 40px; padding: 6px 9px; }
      .nav-cta { padding: 9px 16px !important; }

      #hero { padding: 52px 0 48px; }
      .hero-title { font-size: 1.95rem; }
      .hero-desc { font-size: 1rem; }
      .hero-badge { font-size: .72rem; padding: 5px 12px; }

      /* Stats in a tidy row that wraps cleanly */
      .hero-stats { gap: 20px 28px; flex-wrap: wrap; margin-top: 40px; padding-top: 28px; }
      .stat-num { font-size: 1.7rem; }

      .trust-inner { gap: 16px 24px; }
      .trust-item { font-size: .82rem; }

      .section-title { font-size: 1.6rem; }
      .booking-form { padding: 22px; }
      .form-title { font-size: 1.2rem; }
      .area-list { grid-template-columns: 1fr; }

      /* Comfortable tap targets */
      .form-group input, .form-group select, .form-group textarea { padding: 13px 14px; font-size: 16px; }
    }
  
    /* ── Multi-page nav dropdown ── */
    .nav-dropdown { position: relative; }
    .nav-drop-toggle { display: inline-flex; align-items: center; gap: 5px; }
    .nav-drop-toggle .chev { transition: transform .2s; }
    .nav-dropdown:hover .nav-drop-toggle .chev,
    .nav-dropdown:focus-within .nav-drop-toggle .chev { transform: rotate(180deg); }
    .nav-dropdown-menu {
      position: absolute; top: 100%; left: 0; margin-top: 2px;
      min-width: 250px; background: var(--navy-dark);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px; padding: 8px;
      box-shadow: 0 12px 32px rgba(0,0,0,.35);
      opacity: 0; visibility: hidden; transform: translateY(6px);
      transition: opacity .18s, transform .18s, visibility .18s; z-index: 1001;
    }
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
    .nav-dropdown-menu a {
      display: block; padding: 10px 14px; border-radius: 8px;
      color: rgba(255,255,255,.82); font-size: .88rem; font-weight: 500; white-space: nowrap;
    }
    .nav-dropdown-menu a:hover { background: rgba(255,255,255,.09); color: #fff; }
    .nav-dropdown-menu .dd-all {
      margin-top: 6px; border-top: 1px solid rgba(255,255,255,.1);
      color: var(--green-light); font-weight: 700; padding-top: 12px;
    }
    nav a.active { color: #fff; }
    nav a.active::after {
      content: ''; display: block; height: 2px; background: var(--green-light);
      border-radius: 2px; margin-top: 3px;
    }

    /* Mobile dropdown group */
    .mnav-group-label {
      color: rgba(255,255,255,.5); font-size: .72rem; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase; padding: 14px 0 4px;
    }
    .mobile-nav .mnav-sub { padding-left: 14px; font-size: .9rem; }

    /* ── Home page extra blocks ── */
    .cta-band { background: linear-gradient(160deg, var(--navy-dark), var(--navy)); color:#fff; padding: 72px 0; text-align:center; }
    .cta-band h2 { font-size: clamp(1.6rem,3.5vw,2.3rem); font-weight:800; margin-bottom:14px; }
    .cta-band p { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 28px; font-size:1.05rem; }
    .home-highlights { padding: 88px 0; background: var(--gray-50); }
    .home-highlights .services-header { text-align:center; }
    .home-highlights .services-header .section-sub { margin: 0 auto 52px; }
    .page-hero { background: linear-gradient(135deg, var(--navy-dark), var(--navy) 60%, #1a4f3a); color:#fff; padding: 72px 0; text-align:center; }
    .page-hero .section-tag { color: var(--green-light); }
    .page-hero h1 { font-size: clamp(2rem,4vw,2.8rem); font-weight:900; margin-bottom:14px; }
    .page-hero p { color: rgba(255,255,255,.78); max-width: 620px; margin: 0 auto; font-size:1.08rem; }

    @media (max-width: 768px) {
      .nav-dropdown { display: none; }
    }

/* ── Google PlaceAutocompleteElement (Book page) ── */
.pac-slot { width: 100%; }
.pac-slot:empty { display: none; }
.pac-slot gmp-place-autocomplete {
  width: 100%;
  display: block;
  --gmp-mat-color-surface: #ffffff;
}

/* ══════════════ Multi-step booking wizard ══════════════ */
.wizard-wrap { max-width: 640px; margin: 0 auto; }
.wiz-progress { margin-bottom: 28px; }
.wiz-progress-top { display: flex; justify-content: space-between; font-size: .82rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.wiz-progress-top #wizPercent { color: var(--green); }
.wiz-bar { height: 8px; background: var(--gray-200); border-radius: 50px; overflow: hidden; }
.wiz-bar-fill { height: 100%; width: 17%; background: linear-gradient(90deg, var(--navy), var(--green)); border-radius: 50px; transition: width .35s ease; }

.wiz-step { display: none; animation: wizFade .3s ease; }
.wiz-step.is-active { display: block; }
@keyframes wizFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.wiz-h { font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.wiz-sub { font-size: .95rem; color: var(--gray-500); margin-bottom: 24px; }

.choice-grid { display: grid; gap: 12px; }
.choice-card {
  display: flex; align-items: flex-start; gap: 14px;
  border: 2px solid var(--gray-200); border-radius: 14px; padding: 18px 20px;
  cursor: pointer; transition: border-color .15s, background .15s, box-shadow .15s; background: #fff;
}
.choice-card:hover { border-color: var(--green-light); }
.choice-card input { margin-top: 3px; width: 18px; height: 18px; accent-color: var(--green); flex-shrink: 0; }
.choice-card.selected { border-color: var(--green); background: var(--green-pale); box-shadow: 0 0 0 3px rgba(46,139,87,.10); }
.choice-body { display: flex; flex-direction: column; gap: 3px; }
.choice-title { font-size: 1.02rem; font-weight: 700; color: var(--navy); }
.choice-desc { font-size: .86rem; color: var(--gray-500); line-height: 1.5; }

.inline-check { display: flex; align-items: center; gap: 10px; margin-top: 6px; font-size: .92rem; color: var(--gray-700); font-weight: 500; cursor: pointer; }
.inline-check input { width: 18px; height: 18px; accent-color: var(--green); }

.day-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.day-chip { position: relative; }
.day-chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.day-chip span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 52px; padding: 9px 12px; border: 2px solid var(--gray-200);
  border-radius: 50px; font-size: .85rem; font-weight: 700; color: var(--gray-700);
  cursor: pointer; transition: .15s;
}
.day-chip input:checked + span { background: var(--green); border-color: var(--green); color: #fff; }

.btn-add {
  background: var(--green-pale); color: var(--green); border: 1.5px dashed var(--green);
  border-radius: 10px; padding: 11px 16px; font-size: .9rem; font-weight: 700; cursor: pointer;
  width: 100%; transition: background .15s;
}
.btn-add:hover { background: #dbeee3; }
.md-row { margin-bottom: 12px; }

.wiz-nav { display: flex; align-items: center; gap: 12px; margin-top: 32px; }
.wiz-nav .btn, .wiz-nav .btn-back { flex: 1; justify-content: center; }
.btn-back {
  background: transparent; color: var(--gray-700); border: 2px solid var(--gray-200);
  border-radius: 50px; padding: 13px 28px; font-size: 1rem; font-weight: 700; cursor: pointer;
  transition: border-color .15s, background .15s;
}
.btn-back:hover { border-color: var(--gray-500); background: var(--gray-50); }

.review-box { border: 1px solid var(--gray-200); border-radius: 14px; overflow: hidden; margin-bottom: 20px; }
.review-row { display: flex; padding: 13px 18px; border-bottom: 1px solid var(--gray-100); font-size: .92rem; }
.review-row:last-child { border-bottom: none; }
.review-k { flex: 0 0 130px; color: var(--gray-500); font-weight: 600; }
.review-v { flex: 1; color: var(--navy); font-weight: 600; }

.wiz-call { text-align: center; margin-top: 22px; font-size: .9rem; color: var(--gray-500); }
.wiz-call a { color: var(--green); font-weight: 700; }

.wiz-done { text-align: center; padding: 40px 20px; }
.wiz-done-icon { width: 72px; height: 72px; border-radius: 50%; background: var(--green); color: #fff; font-size: 2.2rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.wiz-done h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.wiz-done p { color: var(--gray-500); max-width: 420px; margin: 0 auto; line-height: 1.7; }
.wiz-done a { color: var(--green); font-weight: 700; }

@media (max-width: 480px) {
  .review-k { flex-basis: 100px; }
  .wiz-nav { flex-direction: column-reverse; }
  .wiz-nav .btn, .wiz-nav .btn-back { width: 100%; }
}
