/* ============================================================
       LESS TAXI – Chennai Sri Lanka Tours  |  style.css
       ============================================================ */

    /* ---------- CSS Variables ---------- */
    :root {
      --teal:      #0abcb8;
      --teal-dark: #089a97;
      --green:     #25d366;
      --green-dark:#1da851;
      --orange:    #f97316;
      --orange-dk: #ea6b0c;
      --yellow:    #f5c842;
      --navy:      #0d1f2d;
      --navy-mid:  #132738;
      --dark:      #1e293b;
      --mid:       #475569;
      --light:     #f1f5f9;
      --white:     #ffffff;
      --card-bg:   #ffffff;
      --shadow:    0 4px 24px rgba(0,0,0,.08);
      --radius:    14px;
      --radius-sm: 8px;

      --font-head: 'Sora', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    /* ---------- Reset & Base ---------- */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--dark);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* ---------- Buttons ---------- */
    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: 8px;
      font-family: var(--font-head);
      font-weight: 600;
      font-size: .95rem;
      cursor: pointer;
      border: none;
      transition: all .2s ease;
      white-space: nowrap;
      justify-content: center;
    }
    .btn-orange  { background: var(--orange); color: #fff; }
    .btn-orange:hover { background: var(--orange-dk); transform: translateY(-1px); }
    .btn-dark    { background: rgba(255,255,255,.15); color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
    .btn-dark:hover { background: rgba(255,255,255,.25); }
    .btn-green   { background: var(--green); color: #fff; }
    .btn-green:hover { background: var(--green-dark); transform: translateY(-1px); }
    .btn-whatsapp { background: var(--green); color: #fff; }
    .btn-whatsapp:hover { background: var(--green-dark); }
    .btn-white-outline { background: transparent; color: #fff; border: 2px solid #fff; }
    .btn-white-outline:hover { background: #fff; color: var(--teal-dark); }
    .full-width  { width: 100%; }

    /* ---------- Section typography ---------- */
    .section-eyebrow {
      font-family: var(--font-head);
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: .12em;
      color: var(--teal);
      text-align: center;
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-head);
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      font-weight: 800;
      color: var(--navy);
      text-align: center;
      line-height: 1.2;
      margin-bottom: 14px;
    }
    .section-sub {
      text-align: center;
      color: var(--mid);
      font-size: 1rem;
      margin-bottom: 52px;
    }

    /* ============================================================
       NAVBAR
       ============================================================ */
    .navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 14px 0;
      transition: background .3s, box-shadow .3s;
    }
    .navbar.scrolled {
      background: var(--navy);
      box-shadow: 0 2px 20px rgba(0,0,0,.3);
    }
    .nav-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; }
    .logo-img  { height: 44px; width: auto; }

    .nav-links {
      display: flex;
      gap: 28px;
      margin-left: auto;
    }
    .nav-links a {
      font-family: var(--font-head);
      font-weight: 500;
      font-size: .9rem;
      color: rgba(255,255,255,.85);
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--teal); }

    .nav-wa { margin-left: 8px; font-size: .85rem; padding: 10px 18px; }

    .nav-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      margin-left: auto;
      padding: 4px;
    }
    .nav-toggle span {
      display: block;
      width: 24px; height: 2px;
      background: #fff;
      border-radius: 2px;
      transition: all .25s;
    }
    .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ============================================================
       HERO
       ============================================================ */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      background: url('https://dxk1acp76n912.cloudfront.net/images/chennai_hero.jpg') center/cover no-repeat;
      padding: 100px 20px 60px;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(10,30,50,.82) 0%, rgba(10,30,50,.55) 100%);
    }
    .hero-content {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      color: #fff;
      font-size: .82rem;
      font-family: var(--font-head);
      font-weight: 500;
      padding: 7px 16px;
      border-radius: 50px;
      margin-bottom: 24px;
      backdrop-filter: blur(8px);
    }
    .hero-title {
      font-family: var(--font-head);
      font-size: clamp(2rem, 5.5vw, 3.6rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .accent-teal   { color: var(--teal); }
    .accent-green  { color: var(--teal); }
    .accent-yellow { color: var(--yellow); }

    .hero-sub {
      color: rgba(255,255,255,.82);
      font-size: clamp(.95rem, 2vw, 1.1rem);
      line-height: 1.7;
      max-width: 560px;
      margin-bottom: 32px;
    }
    .hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

    .hero-stats {
      align-items: center;
      display: flex;
      gap: 32px;
      flex-wrap: wrap;
    }
    stat.ta-certified {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 12px;
  gap: 14px;
  backdrop-filter: blur(8px);
}

/* Inverts the black TripAdvisor logo to white so it looks clean on the dark background */
.ta-logo-img {
  height: 24px;
  opacity: 0.95;
  filter: brightness(0) invert(1);
}

.ta-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ta-bubbles {
  display: flex;
  gap: 3px;
}

/* The exact TripAdvisor green */
.ta-bubble {
  width: 14px; 
  height: 14px;
  background-color: #00aa6c; 
  border-radius: 50%;
}
    .stat {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255,255,255,.75);
    }
    .stat svg { opacity: .7; flex-shrink: 0; }
    .stat strong { display: block; color: #fff; font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; }
    .stat span   { font-size: .82rem; }

    /* ============================================================
       FEATURED PACKAGE
       ============================================================ */
    .featured-pkg {
      background: var(--navy-mid);
      padding: 64px 0;
    }
    .pkg-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius);
      display: flex;
      gap: 40px;
      padding: 40px;
      flex-wrap: wrap;
    }
    .pkg-left { flex: 1; min-width: 260px; }
    .pkg-badge {
      display: inline-block;
      background: rgba(249,115,22,.15);
      color: var(--orange);
      font-family: var(--font-head);
      font-size: .78rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 50px;
      margin-bottom: 18px;
    }
    .pkg-left h2 {
      font-family: var(--font-head);
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 800;
      color: #fff;
      margin-bottom: 12px;
    }
    .pkg-left > p { color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 24px; }

    .pkg-features {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .pkg-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,.8);
      font-size: .9rem;
    }
    .pkg-features li svg { color: var(--teal); flex-shrink: 0; }

    .pkg-right {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-sm);
      padding: 30px;
      min-width: 260px;
      flex: 0 0 320px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .offer-label {
      font-family: var(--font-head);
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .1em;
      color: var(--teal);
    }
    .pkg-right > p { color: rgba(255,255,255,.6); font-size: .9rem; }
    .offer-code {
      font-family: var(--font-head);
      font-size: 1.9rem;
      font-weight: 800;
      color: #fff;
      letter-spacing: .06em;
      padding: 10px 0;
    }
    .offer-note { font-size: .82rem; color: rgba(255,255,255,.5); }

    /* ============================================================
       WHY US & PACKAGES & ITINERARY
       ============================================================ */
    .why-us { padding: 80px 0; background: #fff; }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
    .feature-card { background: var(--light); border-radius: var(--radius); padding: 28px; transition: transform .2s, box-shadow .2s; }
    .feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
    .feature-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; color: #fff; }
    .feature-icon.teal { background: var(--teal); }
    .feature-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
    .feature-card p { color: var(--mid); font-size: .9rem; line-height: 1.6; }

    .packages { padding: 80px 0; background: var(--light); }
    .packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
    .package-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .25s, box-shadow .25s; }
    .package-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,.13); }
    .pkg-img-wrap { position: relative; }
    .pkg-img-wrap img { width: 100%; height: 210px; object-fit: cover; }
    .pkg-tag { position: absolute; top: 14px; left: 14px; padding: 5px 12px; border-radius: 50px; font-family: var(--font-head); font-size: .75rem; font-weight: 700; color: #fff; }
    .pkg-tag.bestseller { background: var(--orange); }
    .pkg-tag.cultural   { background: var(--teal); }
    .pkg-tag.luxury     { background: #9333ea; }
    .pkg-days { position: absolute; bottom: 14px; left: 14px; background: rgba(0,0,0,.6); backdrop-filter: blur(4px); color: #fff; font-size: .78rem; padding: 5px 12px; border-radius: 50px; }
    .pkg-body { padding: 24px; }
    .pkg-body h3 { font-family: var(--font-head); font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
    .pkg-route { font-size: .85rem; color: var(--mid); margin-bottom: 8px; }
    .pkg-best  { font-size: .85rem; color: var(--mid); margin-bottom: 20px; }
    .pkg-best span { color: var(--dark); font-weight: 600; }

    .itinerary { padding: 80px 0; background: #fff; }
    .timeline { position: relative; max-width: 820px; margin: 0 auto; }
    .timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--teal), var(--orange), var(--teal)); transform: translateX(-50%); }
    .timeline-item { display: flex; align-items: center; margin-bottom: 36px; position: relative; }
    .timeline-item.left  { flex-direction: row; }
    .timeline-item.right { flex-direction: row-reverse; }
    .timeline-content { background: var(--light); border-radius: var(--radius); padding: 18px 22px; width: calc(50% - 48px); box-shadow: 0 2px 12px rgba(0,0,0,.06); }
    .timeline-item.left  .timeline-content { text-align: right; margin-right: 24px; }
    .timeline-item.right .timeline-content { text-align: left;  margin-left: 24px; }
    .day-label { display: block; font-family: var(--font-head); font-size: .7rem; font-weight: 700; letter-spacing: .1em; color: var(--teal); margin-bottom: 6px; }
    .timeline-item.right .day-label { color: var(--teal); }
    .timeline-content p { font-family: var(--font-head); font-size: .9rem; font-weight: 600; color: var(--navy); line-height: 1.4; }
    .timeline-dot { position: absolute; left: 50%; transform: translateX(-50%); width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; z-index: 1; flex-shrink: 0; }
    .timeline-dot.teal   { background: var(--teal); }
    .timeline-dot.orange { background: var(--orange); }

    /* ============================================================
       NEW INQUIRY FORM INTEGRATION (FIXED CSS)
       ============================================================ */
    /* Form Heading */
    .form-title-new {
      font-family: var(--font-head);
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--navy);
      margin-top: 0;
      margin-bottom: 20px;
      padding-bottom: 15px;
      border-bottom: 1px solid #e2e8f0; /* Adds a nice subtle line separating the title from the form */
    }
    
    .inquiry-section-new {
      padding: 100px 0;
      background: var(--navy);
      color: #fff;
    }
    .inquiry-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      gap: 60px;
      align-items: center;
      flex-wrap: wrap;
    }
    .inquiry-left {
      flex: 1;
      min-width: 300px;
    }
    .section-label.light {
      display: inline-block;
      font-family: var(--font-head);
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--teal);
      margin-bottom: 15px;
    }
    .inquiry-heading {
      font-family: var(--font-head);
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
    }
    .inquiry-heading em {
      font-style: normal;
      color: var(--teal);
    }
    .inquiry-desc {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.8);
      line-height: 1.6;
      margin-bottom: 30px;
    }
    .inquiry-perks {
      list-style: none;
      margin-bottom: 40px;
    }
    .inquiry-perks li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1rem;
      margin-bottom: 12px;
      color: #fff;
    }
    .inquiry-perks i {
      color: var(--teal);
    }
    .trust-badges {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .trust-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.1);
      padding: 16px;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255, 255, 255, 0.15);
      font-size: 0.85rem;
      font-weight: 600;
      flex: 1;
    }
    .trust-badge i {
      font-size: 1.5rem;
      color: var(--yellow);
    }

    /* Right Side - Form Card */
    .inquiry-right {
      flex: 1;
      min-width: 320px;
    }
    .inquiry-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.2);
      color: var(--dark);
    }
    .promo-banner {
      background: rgba(10, 188, 184, 0.15);
      color: var(--teal-dark);
      padding: 12px 20px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 24px;
      font-size: 0.9rem;
      border: 1px dashed var(--teal);
    }
    /* Forms Steps as Grids */
    .form-step {
      display: none; /* Hidden by default */
      grid-template-columns: 1fr 1fr; /* Creates two equal columns */
      column-gap: 16px;
      row-gap: 18px;
    }
    .form-step.active {
      display: grid; /* Shows the active step as a grid */
    }
    
    /* Stacks the fields neatly back into one column on smaller screens */
    @media (max-width: 900px) {
      .form-step {
        grid-template-columns: 1fr;
      }
    }

/* Forces the submit button to span across both columns at the bottom */
.submit-new-btn {
  grid-column: 1 / -1;
  margin-top: 4px;
}

/* Reduces the card padding slightly to save vertical space */
.inquiry-card {
  padding: 32px; 
}
.promo-banner {
  margin-bottom: 20px;
}

/* Stacks the fields neatly back into one column on smaller screens */
@media (max-width: 900px) {
  .new-inquiry-form {
    grid-template-columns: 1fr;
  }
}
    .form-field { display: flex; flex-direction: column; gap: 6px;}
    .form-field label {
      display: flex;
      justify-content: space-between;
      font-family: var(--font-head);
      font-size: 0.85rem;
      font-weight: 700;
      color: var(--navy);
    }
    .form-field label em {
      font-style: normal;
      font-weight: 400;
      color: var(--mid);
      font-size: 0.75rem;
    }
    .field-input-wrap,
    .vehicle-select-wrap {
      position: relative;
      display: flex;
      align-items: center;
    }
    .field-icon {
      position: absolute;
      left: 14px;
      color: var(--teal);
      font-size: 1rem;
      z-index: 1;
      pointer-events: none;
    }
    
    /* CSS Fix: Padding adjusted properly based on presence of icon */
    .field-input-wrap input,
    .vehicle-select-new {
      width: 100%;
      padding: 14px 14px 14px 14px;
      border: 1.5px solid #e2e8f0;
      border-radius: var(--radius-sm);
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--dark);
      transition: all 0.2s;
      outline: none;
      background: var(--light);
    }
    /* Add padding only if there's an icon */
    .field-input-wrap.has-icon input,
    .vehicle-select-wrap select {
        padding-left: 40px;
    }
    
    .field-input-wrap input:focus,
    .vehicle-select-new:focus {
      border-color: var(--teal);
      background: #fff;
    }

    /* Custom Dropdown (Duration) */
    .custom-dropdown-new {
      position: relative;
      width: 100%;
      border: 1.5px solid #e2e8f0;
      border-radius: var(--radius-sm);
      background: var(--light);
      cursor: pointer;
      user-select: none;
    }
    .custom-dropdown-new.open { border-color: var(--teal); background: #fff;}
    .custom-dropdown-new .selected {
      padding: 14px;
      font-size: 0.95rem;
      color: var(--dark);
    }
    .custom-dropdown-new .arrow {
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 0; 
      height: 0; 
      border-left: 5px solid transparent;
      border-right: 5px solid transparent;
      border-top: 5px solid var(--mid);
      transition: transform 0.2s;
    }
    .custom-dropdown-new.open .arrow { transform: translateY(-50%) rotate(180deg); }
    .custom-dropdown-new .options {
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: #fff;
      border: 1px solid #e2e8f0;
      border-radius: var(--radius-sm);
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-top: 4px;
      max-height: 250px;
      overflow-y: auto;
      z-index: 10;
      display: none;
    }
    .custom-dropdown-new.open .options {
      display: block;
    }
    .custom-dropdown-new .options li {
      padding: 12px 14px;
      font-size: 0.95rem;
      transition: background 0.2s;
    }
    .custom-dropdown-new .options li:hover {
      background: rgba(10, 188, 184, 0.1);
      color: var(--teal-dark);
    }

    .vehicle-desc-new {
      margin-top: 8px;
      font-size: 0.8rem;
      color: var(--mid);
      line-height: 1.5;
      white-space: pre-line;
      display: none;
    }
    .vehicle-desc-new:not(:empty) { display: block; }

    /* intl-tel-input override fixes */
    .iti { width: 100%; }
    .iti__flag-container { z-index: 2; }

    /* Error Handling */
    .error-msg-new {
      color: #e74c3c;
      font-size: 0.8rem;
      margin-top: 6px;
      font-weight: 500;
    }

    /* Submit Button */
    .submit-new-btn {
      background: var(--green);
      color: #fff;
      border: none;
      padding: 16px;
      border-radius: var(--radius-sm);
      font-family: var(--font-head);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      transition: all 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 10px;
    }
    .submit-new-btn:hover {
      background: var(--green-dark);
      transform: translateY(-2px);
    }
    .submit-new-btn:disabled {
      background: var(--mid);
      cursor: not-allowed;
      transform: none;
    }

    /* ============================================================
       BOOK DIRECT & CTA BANNER
       ============================================================ */
    .book-direct { padding: 80px 0; background: var(--light); }
    .direct-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
    .direct-card { background: #fff; border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; box-shadow: 0 2px 12px rgba(0,0,0,.05); transition: transform .2s, box-shadow .2s; }
    .direct-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
    .direct-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; }
    .direct-card h4 { font-family: var(--font-head); font-size: .92rem; font-weight: 700; color: var(--teal-dark); margin-bottom: 6px; }
    .direct-card p { font-size: .85rem; color: var(--mid); line-height: 1.6; }

    .cta-banner { background: linear-gradient(135deg, var(--teal) 0%, #02a9a5 100%); padding: 80px 20px; }
    .cta-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 20px; }
    .cta-icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; }
    .cta-banner h2 { font-family: var(--font-head); font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; color: #fff; }
    .cta-banner p { color: rgba(255,255,255,.85); font-size: 1rem; line-height: 1.6; }
    .cta-note { font-size: .82rem; color: rgba(255,255,255,.7); }

    /* ============================================================
       FOOTER & WHATSAPP FLOAT
       ============================================================ */
    .footer { background: var(--navy); padding: 28px 0; }
    .footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
    .footer-brand { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.85); }
    .footer-brand strong { display: block; font-family: var(--font-head); font-size: .95rem; }
    .footer-brand small  { color: rgba(255,255,255,.45); font-size: .78rem; }
    .footer-copy { color: rgba(255,255,255,.4); font-size: .8rem; }

    .wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.5); transition: transform .2s, box-shadow .2s; }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.65); }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 900px) {
      .nav-links { display: none; flex-direction: column; gap: 0; }
      .nav-links.open { display: flex; position: absolute; top: 65px; left: 0; right: 0; background: var(--navy); padding: 16px 20px 24px; border-top: 1px solid rgba(255,255,255,.1); }
      .nav-links.open a { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,.07); font-size: 1rem; }
      .nav-toggle { display: flex; }
      .nav-wa { display: none; }
      .navbar { position: fixed; }
      .pkg-card { flex-direction: column; }
      .pkg-right { flex: unset; width: 100%; }
      .timeline::before { left: 32px; }
      .timeline-item { flex-direction: row !important; }
      .timeline-dot { left: 32px; position: absolute; }
      .timeline-content { width: calc(100% - 90px) !important; margin-left: 80px !important; margin-right: 0 !important; text-align: left !important; }
      .day-label { text-align: left !important; }
      .inquiry-wrapper { flex-direction: column; gap: 40px; }
      .footer-inner { flex-direction: column; text-align: center; }
    }

    @media (max-width: 600px) {
      .hero { padding: 90px 16px 48px; }
      .hero-cta { flex-direction: column; }
      .hero-cta .btn { width: 100%; }
      .hero-stats { flex-direction: column; gap: 16px; }
      .featured-pkg { padding: 48px 0; }
      .pkg-card { padding: 24px; }
      .pkg-features { grid-template-columns: 1fr; }
      .why-us, .packages, .itinerary, .inquiry-section-new, .book-direct, .cta-banner { padding: 56px 0; }
      .packages-grid { grid-template-columns: 1fr; }
      .inquiry-card { padding: 22px 16px; }
      .cta-banner { padding: 56px 16px; }
      .timeline-content { padding: 14px 16px; }
      .timeline-item { margin-bottom: 28px; }
      /* Force "Why Us" tiles into 2 columns on mobile */
      .features-grid, .direct-grid { 
        grid-template-columns: 1fr 1fr; 
        gap: 12px; 
      }

      /* Shrink the card padding and elements so they fit nicely side-by-side */
      .feature-card { 
        padding: 16px; 
      }
      .feature-icon { 
        width: 40px; 
        height: 40px; 
        margin-bottom: 12px; 
        border-radius: 10px;
      }
      .feature-icon svg {
        width: 20px;
        height: 20px;
      }
      .feature-card h3 { 
        font-size: 0.85rem; 
        margin-bottom: 6px; 
      }
      .feature-card p { 
        font-size: 0.75rem; 
        line-height: 1.4; 
      }
      /* Adjust Book Direct cards to fit 2-columns on mobile */
      .direct-card { 
        padding: 16px; 
        flex-direction: column; /* Stacks the icon above the text */
        gap: 10px;
      }
      .direct-grid .direct-card:last-child {
        grid-column: 1 / -1;
      }
      .direct-icon { 
        width: 38px; 
        height: 38px; 
      }
      .direct-icon svg {
        width: 18px;
        height: 18px;
      }
      .direct-card h4 { 
        font-size: 0.85rem; 
        margin-bottom: 4px; 
      }
      .direct-card p { 
        font-size: 0.75rem; 
        line-height: 1.4; 
      }
    }
  