:root {
      --navy: #0B1F3A;
      --navy-dark: #071528;
      --navy-mid: #12294D;
      --blue: #1A56DB;
      --blue-light: #3B82F6;
      --gold: #F59E0B;
      --gold-dark: #D97706;
      --white: #FFFFFF;
      --off-white: #F8FAFC;
      --gray-100: #F1F5F9;
      --gray-200: #E2E8F0;
      --gray-400: #94A3B8;
      --gray-600: #475569;
      --gray-800: #1E293B;
      --green: #10B981;
      --font-body: 'Plus Jakarta Sans', sans-serif;
      --font-display: 'Fraunces', serif;
      --radius: 12px;
      --radius-lg: 20px;
      --shadow: 0 4px 24px rgba(11,31,58,0.12);
      --shadow-lg: 0 12px 48px rgba(11,31,58,0.20);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--gray-800);
      line-height: 1.6;
      overflow-x: hidden;
    }

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

    /* ── TOP BAR ── */
    .topbar {
      background: var(--navy-dark);
      color: var(--gray-400);
      font-size: 0.8rem;
      padding: 8px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .topbar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .topbar a { color: var(--gray-400); transition: color 0.2s; }
    .topbar a:hover { color: var(--white); }
    .topbar-left { display: flex; gap: 20px; align-items: center; }
    .topbar-right { display: flex; gap: 16px; align-items: center; }
    .topbar-badge {
      background: var(--green);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 20px;
      letter-spacing: 0.5px;
    }

    /* ── HEADER ── */
    header {
      background: var(--navy);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .logo-icon {
      width: 38px;
      height: 38px;
      background: var(--gold);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
    }
    .logo-text {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 600;
      color: var(--white);
      line-height: 1.2;
    }
    .logo-sub {
      font-family: var(--font-body);
      font-size: 0.65rem;
      color: var(--gold);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 600;
    }
    nav { display: flex; gap: 4px; align-items: center; }
    nav a {
      color: rgba(255,255,255,0.8);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 8px 14px;
      border-radius: 8px;
      transition: all 0.2s;
    }
    nav a:hover { color: white; background: rgba(255,255,255,0.08); }
    nav a.active { color: var(--gold); }
    .header-cta {
      background: var(--gold);
      color: var(--navy-dark) !important;
      font-weight: 700 !important;
      padding: 10px 20px !important;
      border-radius: 8px !important;
      transition: all 0.2s !important;
    }
    .header-cta:hover {
      background: var(--gold-dark) !important;
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(245,158,11,0.4) !important;
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      color: white;
      font-size: 1.5rem;
      cursor: pointer;
      padding: 8px;
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
      position: relative;
      overflow: hidden;
      padding: 60px 0 0;
    }
    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .hero-rotator {
      position: absolute;
      inset: 0;
      z-index: 1;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center 30%;
      opacity: 0;
      transition: opacity 1.2s ease-in-out;
    }
    .hero-slide.active { opacity: 0.28; }



    .hero-dots {
      position: absolute;
      bottom: 60px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 10;
      display: flex;
      gap: 8px;
    }
    .hero-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,0.3);
      cursor: pointer;
      transition: all 0.3s;
      border: none;
      padding: 0;
    }
    .hero-dot.active {
      background: var(--gold);
      transform: scale(1.3);
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 20% 50%, rgba(26,86,219,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(245,158,11,0.08) 0%, transparent 50%);
    }
    .hero-grid {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }
    .hero-content {
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 48px;
      align-items: start;
    }
    .hero-text { padding-top: 20px; }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(16,185,129,0.15);
      border: 1px solid rgba(16,185,129,0.3);
      color: #34D399;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 6px 14px;
      border-radius: 20px;
      margin-bottom: 24px;
      letter-spacing: 0.3px;
    }
    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: #34D399;
      border-radius: 50%;
      flex-shrink: 0;
      animation: blink 1.5s ease-in-out infinite;
    }
    @keyframes blink {
      0%, 100% { opacity: 1; }
      50% { opacity: 0; }
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      font-weight: 600;
      color: var(--white);
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .hero h1 em {
      font-style: normal;
      color: var(--gold);
    }
    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.7);
      margin-bottom: 36px;
      max-width: 480px;
      line-height: 1.7;
    }
    .hero-features {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }
    .hero-feature {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.85);
      font-size: 0.92rem;
      font-weight: 500;
    }
    .hero-feature-icon {
      width: 22px;
      height: 22px;
      background: rgba(16,185,129,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
      flex-shrink: 0;
      color: #34D399;
    }
    .hero-phone {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: white;
      font-size: 1.3rem;
      font-weight: 700;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      padding: 12px 20px;
      border-radius: 10px;
      transition: all 0.2s;
    }
    .hero-phone:hover { background: rgba(255,255,255,0.14); }

    /* Booking Widget Box */
    .booking-box {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.4);
      margin-bottom: -40px;
    }
    .booking-box-header {
      background: var(--gold);
      padding: 16px 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .booking-box-header h2 {
      font-size: 1rem;
      font-weight: 700;
      color: var(--navy-dark);
    }
    .booking-box-header span {
      font-size: 0.8rem;
      color: rgba(7,21,40,0.6);
      font-weight: 500;
    }
    .booking-box-icon {
      width: 32px;
      height: 32px;
      background: var(--navy-dark);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .booking-widget-wrap {
      padding: 0;
      margin: 0;
      overflow: hidden;
    }
    .booking-widget-wrap iframe {
      width: 100%;
      border: none;
      display: block;
      min-width: 0;
    }
    .booking-secure {
      padding: 12px 24px;
      background: var(--gray-100);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      font-size: 0.78rem;
      color: var(--gray-600);
      font-weight: 500;
    }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--off-white);
      border-top: 1px solid var(--gray-200);
      border-bottom: 1px solid var(--gray-200);
      padding: 48px 0 32px;
      margin-top: 0;
    }
    .trust-bar-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 40px 24px 0;
    }
    .trust-items {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .trust-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
      padding: 24px 16px;
      background: white;
      border-radius: var(--radius);
      border: 1px solid var(--gray-200);
      transition: all 0.3s;
    }
    .trust-item:hover {
      border-color: var(--blue-light);
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }
    .trust-icon {
      width: 52px;
      height: 52px;
      background: linear-gradient(135deg, var(--navy), var(--navy-mid));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
    }
    .trust-item h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--navy);
    }
    .trust-item p {
      font-size: 0.82rem;
      color: var(--gray-600);
      line-height: 1.5;
    }

    /* ── VS SECTION ── */
    .vs-section {
      padding: 80px 0;
      background: var(--white);
    }
    .section-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-label {
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 600;
      color: var(--navy);
      margin-bottom: 16px;
      line-height: 1.2;
    }
    .section-sub {
      font-size: 1rem;
      color: var(--gray-600);
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 48px;
    }
    .vs-grid {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      gap: 24px;
      align-items: start;
    }
    .vs-card {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 2px solid var(--gray-200);
    }
    .vs-card.winner {
      border-color: var(--blue);
      box-shadow: 0 8px 32px rgba(26,86,219,0.15);
    }
    .vs-card-header {
      padding: 20px 24px;
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .vs-card.winner .vs-card-header {
      background: var(--navy);
    }
    .vs-card.loser .vs-card-header {
      background: var(--gray-100);
    }
    .vs-card-title {
      font-weight: 700;
      font-size: 1rem;
    }
    .vs-card.winner .vs-card-title { color: white; }
    .vs-card.loser .vs-card-title { color: var(--gray-600); }
    .vs-badge {
      margin-left: auto;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
    }
    .vs-card.winner .vs-badge { background: var(--gold); color: var(--navy-dark); }
    .vs-card.loser .vs-badge { background: var(--gray-200); color: var(--gray-600); }
    .vs-rows { padding: 8px 0; }
    .vs-row {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 24px;
      border-bottom: 1px solid var(--gray-100);
      font-size: 0.88rem;
    }
    .vs-row:last-child { border-bottom: none; }
    .vs-row-icon { font-size: 1rem; flex-shrink: 0; }
    .vs-row-text { color: var(--gray-700); line-height: 1.4; }
    .vs-row-text strong { color: var(--navy); display: block; font-size: 0.82rem; margin-bottom: 2px; }
    .vs-vs {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      background: var(--navy);
      color: white;
      font-weight: 800;
      font-size: 0.9rem;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 60px;
    }

    /* ── ROUTES SECTION ── */
    .routes-section {
      padding: 80px 0;
      background: var(--navy-dark);
    }
    .routes-section .section-label { color: var(--gold); }
    .routes-section .section-title { color: white; }
    .routes-section .section-sub { color: rgba(255,255,255,0.6); }
    .routes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .route-card {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: var(--radius);
      padding: 24px;
      transition: all 0.3s;
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
    .route-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--blue-light));
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    .route-card:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.2);
      transform: translateY(-3px);
    }
    .route-card:hover::before { transform: scaleX(1); }
    .route-from {
      font-size: 0.75rem;
      color: rgba(255,255,255,0.4);
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }
    .route-to {
      font-size: 1.05rem;
      font-weight: 700;
      color: white;
      margin-bottom: 12px;
    }
    .route-details {
      display: flex;
      gap: 16px;
      font-size: 0.82rem;
      color: rgba(255,255,255,0.5);
      margin-bottom: 16px;
    }
    .route-price {
      font-size: 1.4rem;
      font-weight: 800;
      color: var(--gold);
    }
    .route-price span {
      font-size: 0.78rem;
      font-weight: 500;
      color: rgba(255,255,255,0.4);
      display: block;
    }
    .route-book {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 16px;
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--gold);
      transition: gap 0.2s;
    }
    .route-card:hover .route-book { gap: 10px; }

    /* ── REVIEWS ── */
    .reviews-section {
      padding: 80px 0;
      background: var(--off-white);
    }
    .reviews-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 40px;
      gap: 24px;
      flex-wrap: wrap;
    }
    .reviews-score {
      display: flex;
      align-items: center;
      gap: 16px;
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 16px 24px;
    }
    .score-number {
      font-family: var(--font-display);
      font-size: 2.8rem;
      font-weight: 600;
      color: var(--navy);
      line-height: 1;
    }
    .score-stars { color: #F59E0B; font-size: 1.1rem; letter-spacing: 2px; }
    .score-label { font-size: 0.8rem; color: var(--gray-600); margin-top: 4px; }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .review-card {
      background: white;
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 24px;
      transition: all 0.3s;
    }
    .review-card:hover {
      border-color: var(--blue-light);
      box-shadow: var(--shadow);
      transform: translateY(-2px);
    }
    .review-stars { color: #F59E0B; font-size: 0.9rem; margin-bottom: 12px; }
    .review-text {
      font-size: 0.9rem;
      color: var(--gray-600);
      line-height: 1.6;
      margin-bottom: 16px;
      font-style: italic;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .review-avatar {
      width: 36px;
      height: 36px;
      background: var(--navy);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      font-weight: 700;
      color: white;
      flex-shrink: 0;
    }
    .review-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
    .review-date { font-size: 0.75rem; color: var(--gray-400); }
    .review-platform {
      margin-left: auto;
      font-size: 0.7rem;
      color: var(--gray-400);
      font-weight: 500;
    }

    /* ── FAQ ── */
    .faq-section {
      padding: 80px 0;
      background: white;
    }
    .faq-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }
    .faq-item {
      border: 1px solid var(--gray-200);
      border-radius: var(--radius);
      overflow: hidden;
    }
    .faq-q {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 20px 24px;
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--navy);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: background 0.2s;
    }
    .faq-q:hover { background: var(--gray-100); }
    .faq-q.open { background: var(--navy); color: white; }
    .faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.3s; }
    .faq-q.open .faq-icon { transform: rotate(45deg); }
    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
    }
    .faq-a.open { max-height: 200px; }
    .faq-a-inner {
      padding: 16px 24px;
      font-size: 0.88rem;
      color: var(--gray-600);
      line-height: 1.7;
      background: var(--gray-100);
    }

    /* ── APP SECTION ── */
    .app-section {
      padding: 80px 0;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      position: relative;
      overflow: hidden;
    }
    .app-section::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(26,86,219,0.2) 0%, transparent 70%);
      border-radius: 50%;
    }
    .app-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .app-text .section-title { color: white; }
    .app-text .section-sub { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
    .app-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
    .app-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      color: white;
      padding: 12px 20px;
      border-radius: 10px;
      font-size: 0.9rem;
      font-weight: 600;
      transition: all 0.2s;
    }
    .app-btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
    .app-btn-icon { font-size: 1.4rem; }
    .app-mockup {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 20px;
    }
    .app-phone {
      width: 160px;
      height: 280px;
      background: rgba(255,255,255,0.08);
      border: 2px solid rgba(255,255,255,0.15);
      border-radius: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
    }
    .app-phone.main {
      width: 180px;
      height: 320px;
      background: rgba(255,255,255,0.12);
      border-color: var(--gold);
    }

    /* ── FOOTER ── */
    footer {
      background: var(--navy-dark);
      color: rgba(255,255,255,0.6);
      padding: 60px 0 0;
    }
    .footer-grid {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand p {
      font-size: 0.88rem;
      line-height: 1.7;
      margin-top: 16px;
      max-width: 280px;
    }
    .footer-contact {
      margin-top: 20px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .footer-contact a {
      color: rgba(255,255,255,0.7);
      font-size: 0.88rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.2s;
    }
    .footer-contact a:hover { color: var(--gold); }
    .footer-col h4 {
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.4);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a {
      color: rgba(255,255,255,0.6);
      font-size: 0.88rem;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding: 20px 24px;
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 0.8rem;
    }
    .footer-license {
      display: flex;
      align-items: center;
      gap: 8px;
      background: rgba(16,185,129,0.1);
      border: 1px solid rgba(16,185,129,0.2);
      color: #34D399;
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 600;
    }

    /* ── WHATSAPP FLOAT ── */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 999;
      display: flex;
      align-items: center;
      gap: 0;
      cursor: pointer;
    }
    .whatsapp-label {
      background: var(--navy);
      color: white;
      font-size: 0.82rem;
      font-weight: 600;
      padding: 10px 16px 10px 20px;
      border-radius: 50px 0 0 50px;
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s;
      white-space: nowrap;
      box-shadow: var(--shadow);
    }
    .whatsapp-float:hover .whatsapp-label {
      opacity: 1;
      transform: translateX(0);
    }
    .whatsapp-btn {
      width: 58px;
      height: 58px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      transition: all 0.3s;
      flex-shrink: 0;
    }
    .whatsapp-float:hover .whatsapp-btn {
      transform: scale(1.08);
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    }
    .whatsapp-pulse {
      position: absolute;
      top: 0; right: 0;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: rgba(37,211,102,0.3);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0% { transform: scale(1); opacity: 0.8; }
      70% { transform: scale(1.5); opacity: 0; }
      100% { transform: scale(1.5); opacity: 0; }
    }

    /* ── CTA STRIP ── */
    .cta-strip {
      background: var(--gold);
      padding: 48px 0;
      text-align: center;
    }
    .cta-strip h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 600;
      color: var(--navy-dark);
      margin-bottom: 8px;
    }
    .cta-strip p {
      color: rgba(7,21,40,0.65);
      margin-bottom: 28px;
      font-size: 1rem;
    }
    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--navy);
      color: white;
      font-weight: 700;
      font-size: 1rem;
      padding: 16px 32px;
      border-radius: 10px;
      transition: all 0.2s;
    }
    .btn-primary:hover {
      background: var(--navy-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(11,31,58,0.3);
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .hero-content { grid-template-columns: 1fr; }
      .booking-box { margin-bottom: 40px; }
      .trust-items { grid-template-columns: repeat(2, 1fr); }
      .vs-grid { grid-template-columns: 1fr; }
      .vs-vs { display: none; }
      .routes-grid { grid-template-columns: repeat(2, 1fr); }
      .reviews-grid { grid-template-columns: 1fr; }
      .faq-grid { grid-template-columns: 1fr; }
      .app-inner { grid-template-columns: 1fr; }
      .app-mockup { display: none; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
      nav { display: none; }
      .mobile-menu-btn { display: block; }
    }
    @media (max-width: 600px) {
      .trust-items { grid-template-columns: 1fr; }
      .routes-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .topbar-left { display: none; }

      /* Hero — widget below text */
      .hero { padding: 40px 0 0; }
      .hero-inner { padding: 0 16px; }
      .booking-box { margin-bottom: 40px; }

      /* Services — 1 column */
      .section-inner > div[style*="grid-template-columns:repeat(3"] {
        display: flex !important;
        flex-direction: column !important;
      }

      /* Contact — form below info */
      .section-inner > div[style*="grid-template-columns:1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
      }

      /* Routes grid 1 col */
      .routes-grid { grid-template-columns: 1fr; }

      /* Table fleet — horizontal scroll */
      .section-inner > div[style*="overflow:hidden"] {
        overflow-x: auto !important;
      }

      /* Why us cards — 1 col */
      .section-inner > div[style*="grid-template-columns:repeat(3,1fr)"] {
        display: flex !important;
        flex-direction: column !important;
      }

      /* SEO text block — 1 col */
      .section-inner > div[style*="grid-template-columns:2fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
      }

      /* Transfers hero — 1 col */
      .section-inner > div[style*="grid-template-columns:1fr 420px"] {
        display: flex !important;
        flex-direction: column !important;
      }

      /* Font sizes mobile */
      .hero h1 { font-size: 2rem; }
      .section-title { font-size: 1.6rem; }
    }
/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
}
.mobile-nav.open {
  display: flex;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 8px 0 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 24px;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mobile-nav a:hover { color: white; background: rgba(255,255,255,0.06); }
.mobile-nav a.active { color: var(--gold); }

/* ── MOBILE GRID FIXES ── */
@media (max-width: 600px) {
  .grid-3col {
    grid-template-columns: 1fr !important;
  }
  .grid-2col {
    grid-template-columns: 1fr !important;
  }
  .grid-sidebar {
    grid-template-columns: 1fr !important;
  }
  .grid-hero {
    grid-template-columns: 1fr !important;
  }
  /* Fleet table scroll */
  .fleet-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Transfers hero mini booking box below */
  .transfers-hero-grid {
    grid-template-columns: 1fr !important;
  }
  /* Sticky sidebar not sticky on mobile */
  .sidebar-sticky {
    position: static !important;
  }
  /* Touch targets */
  .btn-primary, .header-cta, .app-btn {
    min-height: 48px;
  }
  /* Accessibility - contrast fix */
  .route-from { color: rgba(255,255,255,0.6); }
  .review-date { color: var(--gray-500); }
}

    /* ════════════════════════════════════════════════════
       v2.0 — MULTI-IDIOMA, ICONOS SVG, WIDGET
       ════════════════════════════════════════════════════ */

    /* ── Alineado de iconos SVG inline (sustituyen a los emojis) ── */
    .topbar svg, .footer-contact svg, .footer-license svg,
    .header-cta svg, .booking-secure svg, .lang-btn svg {
      vertical-align: -0.15em;
      flex-shrink: 0;
    }
    .topbar .tb-i, .topbar-badge, .footer-license {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .footer-contact a { display: flex; align-items: center; gap: 8px; }
    .booking-secure   { display: flex; align-items: center; justify-content: center; gap: 7px; }
    #backToTop svg    { display: block; margin: auto; }
    .whatsapp-btn     { display: flex; align-items: center; justify-content: center; }
    .mobile-menu-btn  { display: flex; align-items: center; justify-content: center; }

    /* ── SELECTOR DE IDIOMA (escritorio) ── */
    .lang-switch { position: relative; flex-shrink: 0; }
    .lang-btn {
      display: inline-flex; align-items: center; gap: 6px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.85);
      font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
      padding: 8px 12px; border-radius: 8px; cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
    }
    .lang-btn:hover  { background: rgba(255,255,255,0.15); }
    .lang-btn:focus-visible,
    .mobile-menu-btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
    .lang-menu {
      position: absolute; top: calc(100% + 8px); right: 0; z-index: 200;
      min-width: 160px; margin: 0; padding: 6px; list-style: none;
      background: var(--navy-dark);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px; box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    }
    .lang-menu[hidden] { display: none; }
    .lang-menu a {
      display: block; padding: 9px 12px; border-radius: 6px;
      color: rgba(255,255,255,0.8); font-size: 0.85rem; text-decoration: none;
    }
    .lang-menu a:hover               { background: rgba(255,255,255,0.1); color: #fff; }
    .lang-menu a[aria-current="true"]{ color: var(--gold); font-weight: 700; }

    /* ── SELECTOR DE IDIOMA (móvil, dentro del menú) ── */
    .mobile-lang {
      display: flex; flex-wrap: wrap; gap: 8px;
      padding: 14px 16px 18px;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 8px;
    }
    .mobile-lang a {
      padding: 7px 12px; border-radius: 6px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.75);
      font-size: 0.78rem; font-weight: 700; letter-spacing: 0.03em;
      text-decoration: none;
    }
    .mobile-lang a.on {
      background: var(--gold); border-color: var(--gold);
      color: var(--navy-dark);
    }

    /* ── TRUST ROW de book-now.php ── */
    .book-trust {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px; margin-top: 32px;
    }
    .book-trust-item {
      text-align: center; padding: 18px 12px; background: #fff;
      border-radius: var(--radius); border: 1px solid var(--gray-200);
      color: var(--navy);
    }
    .book-trust-item svg { color: var(--gold); margin-bottom: 8px; }
    .book-trust-t { font-size: 0.8rem;  font-weight: 700; color: var(--navy); }
    .book-trust-d { font-size: 0.75rem; color: var(--gray-600); margin-top: 2px; }

    /* ── Bloqueo de scroll con el menú móvil abierto ── */
    body.nav-open { overflow: hidden; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      /* Bug real de la guía: el selector empujaba el hamburger fuera de pantalla */
      .header-inner .lang-switch { display: none; }
      .header-inner { flex-wrap: nowrap; }
      .mobile-menu-btn { flex-shrink: 0; }
    }
    @media (max-width: 768px) {
      .book-trust { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 420px) {
      .book-trust { grid-template-columns: 1fr; }
    }

    /* ── Estrellas SVG (sustituyen a ★★★★★) ── */
    .stars { display: inline-flex; gap: 2px; color: var(--gold); vertical-align: -0.15em; }
    .score-stars, .review-stars { line-height: 1; }

    /* ── Iconos de la tabla comparativa ── */
    .vs-brand-ico   { display: inline-flex; vertical-align: -0.25em; margin-right: 6px; }
    .vs-row-icon    { display: inline-flex; align-items: center; }
    .vs-row-icon.ok   { color: #10B981; }
    .vs-row-icon.no   { color: #EF4444; }
    .vs-row-icon.warn { color: #F59E0B; }

    /* ── Iconos de tarjetas de contacto (sobre fondo de color) ── */
    .hero-feature-icon, .trust-icon, .booking-box-icon,
    .app-phone, .app-btn-icon { display: inline-flex; align-items: center; justify-content: center; }

    /* ════════════════════════════════════════════════════
       COLOR DE ICONOS SEGÚN EL FONDO
       Los SVG heredan currentColor; sin esto salen del color
       del texto del contenedor y se funden con el fondo.
       ════════════════════════════════════════════════════ */

    /* Cuadrados navy (tarjetas de confianza) → DORADO */
    .trust-icon {
      color: var(--gold) !important;
      background: var(--navy);
      width: 52px; height: 52px;
      border-radius: 14px;
      margin: 0 auto 14px;
    }

    /* Banda dorada (caja de reserva de la home) → NAVY OSCURO */
    .booking-box-icon {
      color: var(--navy-dark) !important;
      width: 38px; height: 38px;
      border-radius: 10px;
      background: rgba(11,31,58,0.12);
    }

    /* Iconos sobre fondo navy suelto (hero, footer, topbar) → DORADO */
    .hero-feature-icon { color: var(--gold); }
    .topbar svg, .footer-contact svg, .footer-license svg { color: var(--gold); }

    /* Iconos sobre tarjeta blanca → AZUL */
    .book-trust-item svg,
    .route-card svg, .vs-card svg:not(.vs-row-icon svg) { color: var(--blue, #1A56DB); }

    /* Tarjetas de contacto: cuadrado de color, icono BLANCO */
    .contact-card-ico { color: #fff !important; }

    /* Botón dorado con icono → navy */
    .header-cta svg, .btn-gold svg { color: var(--navy-dark); }
