:root {
      --green: #2C5F4A;
      --green-mid: #3D7A61;
      --green-light: #6BAE96;
      --gold: #D48B3A;
      --gold-light: #E8B068;
      --white: #FFFFFF;
      --cream: #F7F4EF;
      --dark: #1A2E24;
      --gray: #7A8591;
      --gray-light: #F0EDE8;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--dark);
      background: var(--white);
      overflow-x: hidden;
      width: 100%;
    }
    h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(11, 30, 19, 0.92);
      backdrop-filter: blur(12px);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 160px;
      border-bottom: 1px solid rgba(244,164,27,0.2);
    }
    .nav-logo img {
      height: 140px; width: auto;
      transition: transform 0.25s;
    }
    .nav-logo img:hover { transform: scale(1.04); }
    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a {
      position: relative;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 500;
      letter-spacing: 0.03em;
      padding: 0.55rem 0.15rem;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      left: 0; right: 0; bottom: -4px;
      height: 3px;
      background: var(--gold);
      border-radius: 2px;
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.28s ease;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { transform: scaleX(0.5); }
    .nav-links a.active {
      color: var(--gold);
      font-weight: 600;
    }
    .nav-links a.active::after { transform: scaleX(1); }
    .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 5px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: white; transition: all 0.3s; }
    .mobile-menu {
      display: none; position: fixed; top: 160px; left: 0; right: 0;
      background: var(--dark); z-index: 999;
      padding: 1.5rem 5%; flex-direction: column; gap: 1rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      color: white; text-decoration: none; font-size: 1.1rem;
      padding: 0.7rem 0.9rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      border-left: 3px solid transparent;
      border-radius: 0 6px 6px 0;
      transition: all 0.2s;
    }
    .mobile-menu a:hover { color: var(--gold); background: rgba(244,164,27,0.05); }
    /* Active page indicator — use high specificity to win the cascade */
    .mobile-menu > a.active,
    .mobile-menu a.active {
      color: var(--gold) !important;
      font-weight: 700 !important;
      background: rgba(244,164,27,0.15) !important;
      border-left: 4px solid var(--gold) !important;
      padding-left: 1rem !important;
    }
    .mobile-menu > a.active::before,
    .mobile-menu a.active::before {
      content: '▸ ';
      color: var(--gold);
      font-weight: 700;
    }
    .mobile-lang {
      display: flex; gap: 0.5rem; padding-top: 0.5rem;
      border-top: 1px solid rgba(255,255,255,0.15); margin-top: 0.3rem;
    }

    /* ─── LANG TOGGLE ─── */
    .lang-toggle { display: flex; gap: 0.3rem; align-items: center; }
    .lang-btn {
      background: none; border: 1px solid rgba(255,255,255,0.3);
      color: rgba(255,255,255,0.7); padding: 0.3rem 0.65rem;
      border-radius: 6px; cursor: pointer; font-size: 0.8rem;
      transition: all 0.2s; font-family: 'DM Sans', sans-serif;
      display: inline-flex; align-items: center; gap: 0.35rem;
      line-height: 1;
    }
    .lang-btn .flag {
      font-size: 0.95rem;
      line-height: 1;
      filter: saturate(1.15);
    }
    .lang-btn.active, .lang-btn:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }

    /* ─── PAGES ─── */
    .page { display: none; padding-top: 160px; min-height: 100vh; }
    .page.active { display: block; }
    /* Home hero covers the full viewport including under the fixed nav */
    body.page-home .page { padding-top: 0; }

    /* ─── HERO (VIDEO) ─── */
    .hero {
      position: relative; height: 100vh; min-height: 600px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #0D2218 0%, #1B4332 50%, #2D6A4F 100%);
      overflow: hidden;
    }
    .hero-bg::after {
      content: '';
      position: absolute;
      bottom: 0; right: 0;
      width: 280px; height: 90px;
      background: radial-gradient(ellipse at bottom right, rgba(13,34,24,0.95) 0%, rgba(13,34,24,0.7) 45%, transparent 80%);
      pointer-events: none;
      z-index: 1;
    }
    .hero-bg video {
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.6; position: absolute; inset: 0;
      transform: scale(1.28);
      transform-origin: center center;
    }
    .hero-bg img {
      width: 100%; height: 100%; object-fit: cover;
      opacity: 0.55; position: absolute; inset: 0;
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(13,34,24,0.35) 0%, rgba(13,34,24,0.65) 100%);
    }
    .hero-content {
      position: relative; z-index: 2; text-align: center;
      max-width: 800px; padding: 0 2rem;
      animation: fadeUp 1s ease both;
    }
    .hero-badge {
      display: inline-block;
      background: rgba(244,164,27,0.2);
      border: 1px solid rgba(244,164,27,0.5);
      color: var(--gold);
      padding: 0.4rem 1rem; border-radius: 50px;
      font-size: 0.85rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-size: clamp(2.5rem, 6vw, 5rem);
      color: white; line-height: 1.1;
      margin-bottom: 1rem;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .hero h1 em { color: var(--gold); font-style: normal; }
    .hero p {
      color: rgba(255,255,255,0.85);
      font-size: clamp(1rem, 2vw, 1.25rem);
      margin-bottom: 2.5rem; line-height: 1.6;
    }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    .btn-primary {
      background: var(--gold);
      color: var(--dark);
      padding: 0.85rem 2rem; border-radius: 50px;
      font-weight: 600; font-size: 1rem;
      text-decoration: none; border: none; cursor: pointer;
      transition: all 0.25s; display: inline-block;
      box-shadow: 0 4px 20px rgba(244,164,27,0.4);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(244,164,27,0.5); }

    .btn-secondary {
      background: transparent;
      color: white; border: 2px solid rgba(255,255,255,0.6);
      padding: 0.85rem 2rem; border-radius: 50px;
      font-weight: 500; font-size: 1rem;
      text-decoration: none; cursor: pointer;
      transition: all 0.25s; display: inline-block;
    }
    .btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: white; transform: translateY(-2px); }

    .hero-scroll {
      position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
      color: rgba(255,255,255,0.6); font-size: 0.8rem; text-align: center;
      animation: bounce 2s infinite;
    }
    .hero-scroll::before { content: '↓'; display: block; font-size: 1.5rem; color: var(--gold); }

    /* ─── SECTIONS ─── */
    section { padding: 5rem 5%; }
    .section-tag {
      display: inline-block;
      color: var(--green-light); font-size: 0.85rem;
      font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
      margin-bottom: 0.75rem;
    }
    .section-title {
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      color: var(--green); line-height: 1.2; margin-bottom: 1rem;
    }
    .section-title span { color: var(--gold); }
    .section-subtitle {
      color: var(--gray); font-size: 1.05rem; line-height: 1.7;
      max-width: 600px;
    }
    .section-header { margin-bottom: 3rem; }
    .section-header.center { text-align: center; }
    .section-header.center .section-subtitle { margin: 0 auto; }

    /* ─── WHY US ─── */
    .why-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem; margin-top: 3rem;
    }
    .why-card {
      background: var(--cream);
      border-radius: 16px; padding: 2rem;
      border: 1px solid rgba(27,67,50,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .why-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(27,67,50,0.12); }
    .why-icon {
      width: 56px; height: 56px; background: var(--green);
      border-radius: 14px; display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; margin-bottom: 1.2rem;
    }
    .why-card h3 { font-size: 1.1rem; color: var(--green); margin-bottom: 0.5rem; }
    .why-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.6; }

    /* ─── TOUR CARDS ─── */
    .tours-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.75rem;
      justify-content: center;
    }
    .tours-grid > .tour-card {
      flex: 1 1 300px;
      max-width: 380px;
      min-width: 280px;
    }
    @media (min-width: 1100px) {
      .tours-grid > .tour-card { flex-basis: calc(25% - 1.5rem); max-width: calc(25% - 1.5rem); }
    }
    @media (min-width: 800px) and (max-width: 1099px) {
      .tours-grid > .tour-card { flex-basis: calc(33.333% - 1.2rem); max-width: calc(33.333% - 1.2rem); }
    }
    @media (min-width: 560px) and (max-width: 799px) {
      .tours-grid > .tour-card { flex-basis: calc(50% - 0.9rem); max-width: calc(50% - 0.9rem); }
    }
    @media (max-width: 559px) {
      .tours-grid > .tour-card { flex-basis: 100%; max-width: 100%; }
    }
    .tours-filter-bar {
      display: flex; flex-wrap: wrap; gap: 0.6rem; align-items: center;
      background: white; border: 1px solid rgba(44,95,74,0.12);
      border-radius: 14px; padding: 0.9rem 1.2rem; margin-bottom: 1.75rem;
    }
    .tours-filter-bar select {
      border: 1.5px solid rgba(44,95,74,0.18); border-radius: 50px;
      padding: 0.4rem 0.9rem; font-size: 0.8rem; font-family: 'DM Sans',sans-serif;
      color: var(--dark); background: var(--cream); cursor: pointer; outline: none;
      transition: border-color 0.2s; min-width: 115px;
    }
    .tours-filter-bar select:focus { border-color: var(--green); }
    .tours-filter-sep { width: 1px; height: 24px; background: rgba(44,95,74,0.12); flex-shrink: 0; }
    .tours-results-count { font-size: 0.8rem; color: var(--gray); margin-left: auto; white-space: nowrap; }
    .tours-results-count strong { color: var(--green); }

    .tour-card {
      background: white; border-radius: 18px;
      overflow: hidden; box-shadow: 0 2px 12px rgba(0,0,0,0.05);
      border: 1px solid rgba(44,95,74,0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
    }
    .tour-card:hover { transform: translateY(-7px); box-shadow: 0 18px 48px rgba(27,67,50,0.14); }
    .tour-img {
      height: 220px; overflow: hidden; position: relative;
      background: linear-gradient(135deg, #1B4332, #52B788);
      display: flex; align-items: center; justify-content: center;
    }
    .tour-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s;
    }
    .tour-card:hover .tour-img img { transform: scale(1.06); }
    .tour-img-placeholder {
      text-align: center; color: rgba(255,255,255,0.7);
      font-size: 0.8rem; padding: 1rem;
    }
    .tour-img-placeholder .icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
    .tour-badge {
      position: absolute; top: 0.85rem; left: 0.85rem;
      background: var(--gold); color: var(--dark);
      padding: 0.28rem 0.75rem; border-radius: 50px;
      font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.05em; z-index: 2;
    }
    .tour-badge.badge-topseller { background: var(--gold); color: var(--dark); }
    .tour-badge.badge-fullday   { background: var(--dark); color: white; }
    .tour-badge.badge-adventure { background: #7B3228; color: white; }
    .tour-badge.badge-sunset    { background: #B85C1A; color: white; }
    .tour-badge.badge-halfday   { background: var(--green); color: white; }
    .tour-badge.badge-multiday  { background: #1B4D8A; color: white; }
    .tour-badge.badge-marine    { background: #0E7490; color: white; }
    .tour-disc {
      position: absolute; top: 0.85rem; right: 0.85rem;
      background: #B83232; color: white;
      padding: 0.22rem 0.6rem; border-radius: 50px;
      font-size: 0.68rem; font-weight: 700; z-index: 2;
    }
    .tour-body { padding: 1.1rem 1.2rem 1.3rem; }
    .tour-category {
      font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--green-light); margin-bottom: 0.35rem;
    }
    .tour-meta {
      display: flex; gap: 1rem; margin-bottom: 0.7rem;
      flex-wrap: wrap;
    }
    .tour-meta span {
      font-size: 0.77rem; color: var(--gray);
      display: flex; align-items: center; gap: 0.3rem;
    }
    .tour-body h3 { font-size: 1.08rem; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.35; }
    .tour-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; margin-bottom: 0.85rem; }
    .tour-price-row {
      display: flex; align-items: baseline; gap: 0.45rem; margin-bottom: 0.35rem; flex-wrap: wrap;
    }
    .tour-price-orig { font-size: 0.78rem; color: var(--gray); text-decoration: line-through; }
    .tour-price-final { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 700; color: var(--green); }
    .tour-price-usd { font-size: 0.72rem; color: var(--gray); }
    .tour-next-date { font-size: 0.73rem; color: var(--gray); margin-bottom: 0.9rem; }
    .tour-next-date span { color: var(--green-mid); font-weight: 600; }
    .tour-includes {
      display: flex; flex-wrap: wrap; gap: 0.35rem; margin-bottom: 1rem;
    }
    .tag {
      background: rgba(27,67,50,0.07); color: var(--green-mid);
      padding: 0.2rem 0.6rem; border-radius: 50px;
      font-size: 0.73rem; font-weight: 500;
    }

    /* ─── TOUR DETAIL OVERLAY (G ADVENTURES STYLE) ─── */
    .tour-detail-overlay {
      display: none; position: fixed; inset: 0; z-index: 11000;
      background: white; overflow-y: auto;
      animation: fadeIn 0.22s ease;
    }
    .tour-detail-overlay.open { display: block; }
    .tdo-inner { max-width: 1100px; margin: 0 auto; padding: 0 5% 4rem; }
    .tdo-hero {
      height: 380px; position: relative; overflow: hidden;
      background: linear-gradient(135deg, var(--dark), var(--green));
    }
    .tdo-hero img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
    .tdo-hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(13,34,24,0.85) 0%, rgba(13,34,24,0.2) 65%);
    }
    .tdo-back {
      position: absolute; top: 1.1rem; left: 1.1rem; z-index: 3;
      background: rgba(255,255,255,0.14); border: 1px solid rgba(255,255,255,0.28);
      color: white; border-radius: 50px; padding: 0.4rem 1rem;
      font-size: 0.82rem; font-weight: 500; cursor: pointer; transition: background 0.2s;
    }
    .tdo-back:hover { background: rgba(255,255,255,0.24); }
    .tdo-hero-content {
      position: absolute; bottom: 1.8rem; left: 5%; right: 5%; z-index: 2;
    }
    .tdo-hero-badge {
      display: inline-block; background: var(--gold); color: var(--dark);
      border-radius: 50px; padding: 0.28rem 0.85rem; font-size: 0.72rem;
      font-weight: 700; text-transform: uppercase; margin-bottom: 0.6rem;
      letter-spacing: 0.06em;
    }
    .tdo-hero-route { color: var(--gold-light); font-size: 0.95rem; font-weight: 600; margin-bottom: 0.4rem; letter-spacing: 0.03em; }
    .tdo-hero-title { font-family: 'Playfair Display', serif; color: white; font-size: clamp(1.8rem,4.5vw,2.8rem); line-height: 1.15; margin-bottom: 0.7rem; }
    .tdo-hero-meta { display: flex; flex-wrap: wrap; gap: 1.4rem; }
    .tdo-hero-meta span { color: rgba(255,255,255,0.85); font-size: 0.88rem; display: flex; align-items: center; gap: 0.35rem; }

    .tdo-body { display: grid; grid-template-columns: 1fr 320px; gap: 2.5rem; padding-top: 2.5rem; }
    @media (max-width: 860px) { .tdo-body { grid-template-columns: 1fr; } }

    .tdo-tabs { display: flex; border-bottom: 2px solid var(--gray-light); margin-bottom: 1.6rem; flex-wrap: wrap; }
    .tdo-tab {
      padding: 0.7rem 1.2rem; font-size: 0.86rem; font-weight: 600;
      color: var(--gray); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px;
      transition: color 0.2s, border-color 0.2s; white-space: nowrap;
    }
    .tdo-tab.active { color: var(--green); border-bottom-color: var(--green); }
    .tdo-tab:hover { color: var(--green-mid); }
    .tdo-panel { display: none; }
    .tdo-panel.active { display: block; }
    .tdo-desc { font-size: 0.95rem; line-height: 1.85; color: #4a5a52; margin-bottom: 1.5rem; }

    /* "Is this tour for me?" section */
    .tdo-fitme { background: var(--cream); border-radius: 14px; padding: 1.5rem; margin-bottom: 1.5rem; border: 1px solid rgba(44,95,74,0.08); }
    .tdo-fitme-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--green); margin-bottom: 1rem; }
    .tdo-fitme-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    @media (max-width: 600px) { .tdo-fitme-grid { grid-template-columns: 1fr; } }
    .tdo-fitme-item { padding: 0.6rem 0; }
    .tdo-fitme-label { font-size: 0.7rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 0.2rem; display: block; }
    .tdo-fitme-val { font-size: 0.88rem; color: var(--dark); font-weight: 600; display: block; margin-bottom: 0.15rem; }
    .tdo-fitme-desc { font-size: 0.78rem; color: var(--gray); line-height: 1.5; }

    .tdo-includes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-top: 0.7rem; }
    @media (max-width: 500px) { .tdo-includes-grid { grid-template-columns: 1fr; } }
    .tdo-include-item { background: rgba(44,95,74,0.05); border-radius: 9px; padding: 0.5rem 0.8rem; font-size: 0.82rem; display: flex; gap: 0.5rem; align-items: flex-start; }
    .tdo-include-check { color: var(--green); font-weight: 700; font-size: 0.74rem; flex-shrink: 0; margin-top: 2px; }

    .tdo-section-title { font-size: 0.82rem; font-weight: 700; color: var(--green); text-transform: uppercase; letter-spacing: 0.07em; display: block; margin: 1.2rem 0 0.7rem; }

    /* Itinerary - day by day */
    .tdo-itin-list { display: flex; flex-direction: column; gap: 1.3rem; }
    .tdo-itin-day {
      border-left: 3px solid var(--gold);
      padding: 0.3rem 0 0.3rem 1.2rem;
      position: relative;
    }
    .tdo-itin-day::before {
      content: ''; position: absolute; left: -8px; top: 0.5rem;
      width: 13px; height: 13px; border-radius: 50%;
      background: var(--gold); border: 3px solid white; box-shadow: 0 0 0 2px var(--gold);
    }
    .tdo-itin-daynum { font-size: 0.7rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.2rem; }
    .tdo-itin-daytitle { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--dark); margin-bottom: 0.4rem; }
    .tdo-itin-daydesc { font-size: 0.85rem; color: var(--gray); line-height: 1.65; }

    /* Places visited */
    .tdo-places-grid { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.6rem; }
    .tdo-place-tag { background: rgba(212,139,58,0.12); color: #8B5A1F; border: 1px solid rgba(212,139,58,0.3); border-radius: 50px; padding: 0.3rem 0.85rem; font-size: 0.78rem; font-weight: 600; }

    /* Sidebar */
    .tdo-price-card {
      background: white; border: 1px solid rgba(44,95,74,0.1);
      border-radius: 18px; padding: 1.4rem;
      box-shadow: 0 6px 28px rgba(27,67,50,0.09); margin-bottom: 1rem;
      position: sticky; top: 90px;
    }
    .tdo-price-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.09em; color: var(--gray); margin-bottom: 0.15rem; }
    .tdo-price-main { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1; }
    .tdo-price-orig-row { display: flex; align-items: center; gap: 0.45rem; margin-bottom: 0.15rem; }
    .tdo-price-orig { font-size: 0.8rem; color: var(--gray); text-decoration: line-through; }
    .tdo-price-disc-badge { background: #B83232; color: white; border-radius: 50px; padding: 0.12rem 0.5rem; font-size: 0.67rem; font-weight: 700; }
    .tdo-price-sub { font-size: 0.7rem; color: var(--gray); margin-bottom: 0.7rem; }
    .tdo-next-date { background: rgba(44,95,74,0.06); border-radius: 9px; padding: 0.6rem 0.8rem; margin-bottom: 0.75rem; font-size: 0.8rem; display: flex; align-items: center; gap: 0.45rem; }
    .tdo-next-date strong { color: var(--green); }
    .tdo-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
    .tdo-review-note { font-size: 0.72rem; color: var(--gray); margin-bottom: 0.85rem; }
    .tdo-cta { display: block; width: 100%; text-align: center; background: var(--gold); color: var(--dark); border: none; border-radius: 50px; padding: 0.9rem; font-size: 0.95rem; font-weight: 700; cursor: pointer; transition: background 0.2s; margin-bottom: 0.5rem; }
    .tdo-cta:hover { background: var(--gold-light); }
    .tdo-wa { display: block; width: 100%; text-align: center; background: #25D366; color: white; border: none; border-radius: 50px; padding: 0.78rem; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
    .tdo-wa:hover { background: #1ebe5a; }
    .tdo-offers-card { background: var(--cream); border: 1px solid rgba(44,95,74,0.1); border-radius: 12px; padding: 1.1rem 1.2rem; }
    .tdo-offers-title { font-size: 0.78rem; font-weight: 700; color: var(--green); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }
    .tdo-offer-item { font-size: 0.78rem; color: var(--green-mid); padding: 0.25rem 0; display: flex; gap: 0.4rem; }
    .tdo-offer-item::before { content: '✓'; color: var(--green); font-weight: 700; }

    /* ─── BTN GREEN ─── */
    .btn-green {
      background: var(--green); color: white;
      padding: 0.65rem 1.5rem; border-radius: 50px;
      font-weight: 600; font-size: 0.9rem;
      text-decoration: none; cursor: pointer; border: none;
      transition: all 0.25s; display: inline-block;
    }
    .btn-green:hover { background: var(--green-mid); transform: translateY(-2px); }
    .btn-outline-green {
      background: transparent; color: var(--green);
      border: 2px solid var(--green);
      padding: 0.65rem 1.5rem; border-radius: 50px;
      font-weight: 600; font-size: 0.9rem;
      text-decoration: none; cursor: pointer;
      transition: all 0.25s; display: inline-block;
    }
    .btn-outline-green:hover { background: var(--green); color: white; }

    /* ─── TESTIMONIALS ─── */
    .testi-section { background: var(--green); }
    .testi-section .section-title { color: white; }
    .testi-section .section-tag { color: var(--gold-light); }
    .testi-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem; margin-top: 3rem;
    }
    .testi-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 16px; padding: 1.8rem;
    }
    .testi-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 1rem; }
    .testi-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; font-style: italic; }
    .testi-author { color: var(--gold-light); font-weight: 600; font-size: 0.9rem; }
    .testi-country { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

    /* ─── PARTNERS / ALIANZAS ─── */
    .partners-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
      gap: 1.75rem;
      margin-top: 3rem;
    }
    .partner-card {
      background: white;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(44,95,74,0.12);
      box-shadow: 0 4px 20px rgba(27,67,50,0.06);
      transition: transform 0.3s, box-shadow 0.3s;
      display: flex; flex-direction: column;
    }
    .partner-card:hover { transform: translateY(-6px); box-shadow: 0 16px 44px rgba(27,67,50,0.13); }
    .partner-banner {
      height: 160px;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
      position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .partner-banner img.partner-banner-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
    }
    .partner-banner::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.45) 100%);
      z-index: 1;
    }
    .partner-banner.banner-relax    { background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%); }
    .partner-banner.banner-tfp      { background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%); }
    .partner-banner.banner-monkeys  { background: linear-gradient(135deg, #B45309 0%, #F59E0B 100%); }
    .partner-banner-icon {
      font-size: 3rem;
      position: relative; z-index: 2;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
    }
    .partner-discount-badge {
      position: absolute; top: 0.85rem; right: 0.85rem;
      background: var(--gold); color: var(--dark);
      padding: 0.32rem 0.85rem; border-radius: 50px;
      font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em;
      z-index: 3;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .partner-body { padding: 1.4rem 1.4rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .partner-category {
      font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--green-light); margin-bottom: 0.4rem;
    }
    .partner-card h3 { font-size: 1.15rem; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.3; }
    .partner-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.65; margin-bottom: 1rem; }
    .partner-perk {
      background: rgba(44,95,74,0.06);
      border-left: 3px solid var(--gold);
      padding: 0.7rem 0.9rem;
      border-radius: 8px;
      font-size: 0.84rem;
      color: var(--green);
      margin-bottom: 1.1rem;
    }
    .partner-perk strong { color: var(--gold); }
    .partner-actions { display: flex; gap: 0.6rem; margin-top: auto; flex-wrap: wrap; }
    .partner-btn {
      flex: 1; min-width: 120px;
      padding: 0.65rem 0.9rem; border-radius: 50px;
      font-size: 0.82rem; font-weight: 600; text-decoration: none;
      text-align: center; transition: all 0.2s;
      border: none; cursor: pointer;
    }
    .partner-btn-primary { background: var(--green); color: white; }
    .partner-btn-primary:hover { background: var(--green-mid); }
    .partner-btn-wa { background: #25D366; color: white; }
    .partner-btn-wa:hover { background: #1ebe5d; }

    .alliance-howto {
      background: var(--cream);
      border-radius: 18px;
      padding: 2rem;
      margin-top: 3rem;
      border: 1px solid rgba(44,95,74,0.1);
    }
    .alliance-howto h3 { color: var(--green); margin-bottom: 1rem; font-size: 1.3rem; }
    .alliance-howto-steps {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1.2rem; margin-top: 1.2rem;
    }
    .alliance-step {
      background: white; border-radius: 12px; padding: 1.2rem;
      border: 1px solid rgba(44,95,74,0.08);
    }
    .alliance-step-num {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--gold); color: var(--dark);
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: 0.95rem; margin-bottom: 0.6rem;
    }
    .alliance-step strong { color: var(--green); display: block; margin-bottom: 0.3rem; font-size: 0.95rem; }
    .alliance-step p { color: var(--gray); font-size: 0.83rem; line-height: 1.55; margin: 0; }

    /* ─── TRIP PLANNER ─── */
    .trip-planner-card {
      background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
      border-radius: 22px;
      padding: 2.5rem;
      margin-bottom: 3rem;
      color: white;
      position: relative;
      overflow: hidden;
      box-shadow: 0 12px 40px rgba(27,67,50,0.2);
    }
    .trip-planner-card::before {
      content: ''; position: absolute;
      top: -50%; right: -10%;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(244,164,27,0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .trip-planner-tag {
      display: inline-block;
      background: rgba(244,164,27,0.25);
      border: 1px solid var(--gold);
      color: var(--gold-light);
      padding: 0.32rem 0.95rem;
      border-radius: 50px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 0.85rem;
    }
    .trip-planner-card h2 {
      color: white;
      font-size: clamp(1.4rem, 3vw, 2rem);
      margin-bottom: 0.7rem;
      line-height: 1.2;
      position: relative;
    }
    .trip-planner-card > p {
      color: rgba(255,255,255,0.85);
      margin-bottom: 1.8rem;
      max-width: 600px;
      font-size: 0.95rem;
      line-height: 1.6;
      position: relative;
    }
    .tp-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
      position: relative;
    }
    .tp-form-grid .form-group { gap: 0.45rem; }
    .tp-form-grid label {
      color: rgba(255,255,255,0.95);
      font-size: 0.85rem;
      font-weight: 600;
    }
    .tp-form-grid input,
    .tp-form-grid select,
    .tp-form-grid textarea {
      background: rgba(255,255,255,0.95);
      border: 1.5px solid rgba(255,255,255,0.3);
      color: var(--dark);
      border-radius: 10px;
      padding: 0.7rem 0.9rem;
    }
    .tp-form-grid .full { grid-column: 1 / -1; }
    .tp-actions { display: flex; gap: 0.75rem; margin-top: 1.4rem; flex-wrap: wrap; position: relative; }
    .tp-actions button { flex: 1; min-width: 200px; }
    @media (max-width: 768px) {
      .tp-form-grid { grid-template-columns: 1fr; }
      .trip-planner-card { padding: 1.6rem 1.3rem; }
    }

    /* ─── FLEET ─── */
    .fleet-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem; margin-top: 2rem;
    }
    .fleet-card {
      border-radius: 16px; overflow: hidden;
      border: 2px solid rgba(27,67,50,0.1);
      transition: all 0.3s;
    }
    .fleet-card:hover { border-color: var(--green); transform: translateY(-4px); }
    .fleet-img {
      height: 160px; background: linear-gradient(135deg, #1B4332, #52B788);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.78rem; color: rgba(255,255,255,0.7); text-align: center; padding: 1rem;
    }
    .fleet-img img { width: 100%; height: 100%; object-fit: cover; }
    .fleet-img .icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
    .fleet-info { padding: 1.2rem; }
    .fleet-info h4 { color: var(--green); font-size: 1.05rem; margin-bottom: 0.3rem; }
    .fleet-info p { color: var(--gray); font-size: 0.85rem; }
    .fleet-cap {
      display: inline-block; margin-top: 0.5rem;
      background: rgba(27,67,50,0.08); color: var(--green);
      padding: 0.2rem 0.7rem; border-radius: 50px; font-size: 0.75rem; font-weight: 600;
    }

    /* ─── HOW IT WORKS ─── */
    .steps {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem; margin-top: 3rem; position: relative;
    }
    .step { text-align: center; padding: 1.5rem; }
    .step-num {
      width: 60px; height: 60px; background: var(--gold);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700;
      color: var(--dark); margin: 0 auto 1rem;
    }
    .step h3 { color: var(--green); margin-bottom: 0.5rem; }
    .step p { color: var(--gray); font-size: 0.9rem; line-height: 1.6; }

    /* ─── FORM ─── */
    .booking-section { background: var(--cream); overflow: hidden; }
    .booking-wrap {
      max-width: 720px; width: 100%; margin: 0 auto;
      background: white; border-radius: 24px;
      padding: 2.5rem; box-shadow: 0 8px 40px rgba(27,67,50,0.1);
      border: 1px solid rgba(27,67,50,0.07);
      box-sizing: border-box; overflow: hidden;
    }
    .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; width: 100%; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; min-width: 0; }
    .form-group.full { grid-column: 1 / -1; }
    label { font-size: 0.85rem; font-weight: 600; color: var(--green); }
    input, select, textarea {
      width: 100%; box-sizing: border-box;
      padding: 0.8rem 1rem; border-radius: 10px;
      border: 1.5px solid rgba(27,67,50,0.15);
      font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
      color: var(--dark); background: white;
      transition: border-color 0.2s;
      outline: none; min-width: 0;
    }
    input:focus, select:focus, textarea:focus { border-color: var(--green); }
    textarea { resize: vertical; min-height: 110px; }
    .form-note { text-align: center; color: var(--gray); font-size: 0.85rem; margin-top: 1rem; }

    /* ─── CONTACT ─── */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start;
    }
    .contact-info-card {
      background: var(--green); border-radius: 20px; padding: 2.5rem; color: white;
    }
    .contact-info-card h3 { color: var(--gold); margin-bottom: 1.5rem; font-size: 1.5rem; }
    .contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
    .contact-item .ci-icon {
      width: 44px; height: 44px; background: rgba(255,255,255,0.1);
      border-radius: 10px; display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem; flex-shrink: 0;
    }
    .contact-item p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 0.2rem; }
    .contact-item a { color: white; font-weight: 500; text-decoration: none; word-break: break-word; }
    .map-placeholder {
      height: 240px; background: rgba(255,255,255,0.05); border-radius: 12px;
      overflow: hidden; margin-top: 1.5rem;
    }
    .map-placeholder iframe { width: 100%; height: 100%; border: 0; }

    /* ─── FAQ ─── */
    .faq-section { background: var(--cream); }
    .faq-list { max-width: 700px; margin: 2rem auto 0; }
    .faq-item { border-bottom: 1px solid rgba(27,67,50,0.1); padding: 1.2rem 0; }
    .faq-q {
      display: flex; justify-content: space-between; align-items: center;
      cursor: pointer; color: var(--green); font-weight: 600;
      font-family: 'Playfair Display', serif; font-size: 1rem;
    }
    .faq-q .arrow { transition: transform 0.3s; font-size: 1.2rem; color: var(--gold); }
    .faq-item.open .faq-q .arrow { transform: rotate(180deg); }
    .faq-a { display: none; color: var(--gray); font-size: 0.92rem; line-height: 1.7; padding-top: 0.8rem; }
    .faq-item.open .faq-a { display: block; }

    /* ─── TRANSPORT SERVICES ─── */
    .service-cards {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
    }
    .service-card {
      padding: 2rem; border-radius: 16px;
      background: var(--cream); border: 1px solid rgba(27,67,50,0.08);
      text-align: center; transition: all 0.3s;
    }
    .service-card:hover { background: var(--green); }
    .service-card:hover h3, .service-card:hover p { color: white; }
    .service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
    .service-card h3 { color: var(--green); font-size: 1.05rem; margin-bottom: 0.5rem; }
    .service-card p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }

    /* ─── PAGE HERO ─── */
    .page-hero {
      background: linear-gradient(135deg, var(--dark) 0%, var(--green) 100%);
      padding: 6rem 5% 4rem;
      text-align: center; position: relative; overflow: hidden;
    }
    .page-hero h1 { color: white; font-size: clamp(2rem, 5vw, 3.5rem); position: relative; }
    .page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; margin-top: 1rem; position: relative; max-width: 600px; margin-left: auto; margin-right: auto; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark); color: rgba(255,255,255,0.7);
      padding: 3rem 5% 1.5rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem;
      margin-bottom: 2rem;
    }
    .footer-brand img { height: 100px; margin-bottom: 1rem; filter: brightness(1.2); }
    .footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 260px; }
    .footer-col h4 {
      color: var(--gold); font-family: 'DM Sans', sans-serif;
      font-size: 0.85rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 0.5rem; }
    .footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; word-break: break-word; }
    .footer-col ul li a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 1.2rem; display: flex; justify-content: space-between;
      align-items: center; flex-wrap: wrap; gap: 1rem;
      font-size: 0.8rem; color: rgba(255,255,255,0.4);
    }

    /* ─── FLOATING BUTTONS ─── */
    .floating-btns {
      position: fixed; bottom: 2rem; right: 1.5rem;
      display: flex; flex-direction: column; gap: 0.8rem;
      z-index: 9999;
    }
    .float-btn {
      width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      text-decoration: none; font-size: 1.5rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.25);
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .float-btn:hover { transform: scale(1.12); box-shadow: 0 8px 28px rgba(0,0,0,0.3); }
    .float-wa { background: #25D366; }
    .float-ig { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
    @keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }

    /* ─── LEGAL MODALS ─── */
    .legal-modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 12000;
      background: rgba(13,34,24,0.7); backdrop-filter: blur(8px);
      align-items: center; justify-content: center; padding: 1rem;
    }
    .legal-modal-overlay.open { display: flex; animation: fadeIn 0.22s ease; }
    .legal-modal-box {
      background: white; border-radius: 18px; max-width: 720px; width: 100%;
      max-height: 88vh; overflow: hidden; display: flex; flex-direction: column;
      box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    }
    .legal-modal-header {
      padding: 1.5rem 1.8rem 1rem; border-bottom: 1px solid var(--gray-light);
      display: flex; justify-content: space-between; align-items: center;
    }
    .legal-modal-header h3 { color: var(--green); font-size: 1.3rem; }
    .legal-modal-close {
      background: var(--gray-light); border: none; cursor: pointer;
      width: 34px; height: 34px; border-radius: 50%; font-size: 1rem;
      display: flex; align-items: center; justify-content: center; color: var(--gray);
      transition: all 0.2s;
    }
    .legal-modal-close:hover { background: var(--green); color: white; }
    .legal-modal-body { padding: 1.5rem 1.8rem 2rem; overflow-y: auto; color: var(--dark); font-size: 0.92rem; line-height: 1.7; }
    .legal-modal-body p { margin-bottom: 0.85rem; }
    .legal-modal-body h4 { color: var(--green); margin: 1.2rem 0 0.5rem; font-size: 1.05rem; }
    .legal-modal-body ul { padding-left: 1.4rem; margin-bottom: 0.85rem; }
    .legal-modal-body ul li { margin-bottom: 0.35rem; }

    /* ─── TOUR BOOKING MODAL ─── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 11500;
      background: rgba(13,34,24,0.7); backdrop-filter: blur(8px);
      align-items: flex-start; justify-content: center; padding: 5rem 1rem 2rem; overflow-y: auto;
    }
    .modal-overlay.open { display: flex; animation: fadeIn 0.22s ease; }
    .modal-box {
      background: white; border-radius: 20px; max-width: 720px; width: 100%;
      padding: 2rem 1.8rem; position: relative; box-shadow: 0 24px 80px rgba(0,0,0,0.3);
    }
    .modal-close {
      position: absolute; top: 1.2rem; right: 1.2rem;
      background: var(--gray-light); border: none; cursor: pointer;
      width: 34px; height: 34px; border-radius: 50%;
      font-size: 1.1rem; display: flex; align-items: center; justify-content: center;
      color: var(--gray); transition: all 0.2s;
    }
    .modal-close:hover { background: var(--green); color: white; }
    .modal-tour-banner {
      display: flex; align-items: center; gap: 1rem;
      background: var(--cream); border-radius: 14px;
      padding: 1rem 1.2rem; margin-bottom: 1.8rem;
      border-left: 4px solid var(--green);
    }
    .modal-tour-icon { font-size: 2.2rem; }
    .modal-tour-name { font-family: 'Playfair Display',serif; font-size: 1.1rem; color: var(--green); font-weight: 700; }
    .modal-tour-meta { font-size: 0.8rem; color: var(--gray); margin-top: 0.2rem; }
    .modal-title { font-size: 1.4rem; color: var(--dark); margin-bottom: 0.4rem; }
    .modal-subtitle { color: var(--gray); font-size: 0.9rem; margin-bottom: 1.8rem; }
    .modal-send-btns { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

    /* ─── SUCCESS MSG ─── */
    .success-msg {
      display: none; background: #f0fdf4; border: 1px solid #86efac;
      border-radius: 12px; padding: 1.5rem; text-align: center;
      color: #16a34a; font-weight: 600; margin-top: 1rem;
    }

    /* ─── STEP INDICATOR ─── */
    .steps-indicator { display: flex; align-items: center; justify-content: center; margin-bottom: 2.5rem; gap: 0; width: 100%; overflow: hidden; }
    .step-dot { display: flex; flex-direction: column; align-items: center; gap: 0.4rem; cursor: default; flex-shrink: 0; }
    .dot-num { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--gray-light); color: var(--gray); font-weight: 700; font-size: 1rem; transition: all 0.3s; border: 2px solid transparent; flex-shrink: 0; }
    .dot-label { font-size: 0.78rem; color: var(--gray); font-weight: 500; white-space: nowrap; }
    .step-dot.active .dot-num { background: var(--green); color: white; border-color: var(--green); }
    .step-dot.active .dot-label { color: var(--green); font-weight: 700; }
    .step-dot.done .dot-num { background: var(--gold); color: white; border-color: var(--gold); }
    .step-line { flex: 1; height: 2px; background: var(--gray-light); max-width: 80px; min-width: 20px; margin: 0 0.4rem; margin-bottom: 1.2rem; transition: background 0.3s; flex-shrink: 1; }
    .step-line.done { background: var(--gold); }

    /* ─── FORM STEPS ─── */
    .form-step { display: none; width: 100%; overflow: hidden; }
    .form-step.active { display: block; animation: fadeUp 0.35s ease; }
    .step-title { font-family: 'DM Sans',sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--green); margin-bottom: 1.5rem; }
    .step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 2rem; gap: 1rem; flex-wrap: wrap; }

    .btn-secondary-dark {
      background: transparent; color: var(--green);
      border: 2px solid rgba(44,95,74,0.3);
      padding: 0.75rem 1.5rem; border-radius: 50px;
      font-weight: 600; font-size: 0.95rem; cursor: pointer;
      transition: all 0.25s;
    }
    .btn-secondary-dark:hover { border-color: var(--green); background: rgba(44,95,74,0.05); }
    .btn-whatsapp {
      background: #25D366; color: white;
      padding: 0.85rem 1.5rem; border-radius: 50px;
      font-weight: 600; font-size: 0.95rem; cursor: pointer;
      border: none; transition: all 0.25s; text-align: center;
      box-shadow: 0 4px 15px rgba(37,211,102,0.3);
    }
    .btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); }

    .radio-group { display: flex; gap: 1rem; flex-wrap: wrap; }
    .radio-opt {
      display: flex; align-items: center; gap: 0.5rem;
      padding: 0.7rem 1.2rem; border-radius: 50px;
      border: 2px solid rgba(44,95,74,0.15); cursor: pointer;
      transition: all 0.2s; font-weight: 500; font-size: 0.9rem;
    }
    .radio-opt input[type="radio"] { accent-color: var(--green); width: 16px; height: 16px; }
    .radio-opt:has(input:checked) { border-color: var(--green); background: rgba(44,95,74,0.06); color: var(--green); }

    .vehicle-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.8rem; margin-top: 0.4rem; }
    @media(max-width:600px){ .vehicle-grid { grid-template-columns: repeat(2,1fr); } }
    .vehicle-opt {
      border: 2px solid rgba(44,95,74,0.15); border-radius: 14px;
      padding: 1rem 0.5rem; text-align: center; cursor: pointer;
      transition: all 0.2s; display: flex; flex-direction: column;
      align-items: center; gap: 0.3rem;
    }
    .vehicle-opt:hover { border-color: var(--green-mid); background: rgba(44,95,74,0.03); }
    .vehicle-opt.selected { border-color: var(--green); background: rgba(44,95,74,0.08); }
    .vehicle-opt.disabled { opacity: 0.35; pointer-events: none; }
    .v-icon { font-size: 1.8rem; }
    .vehicle-opt strong { font-size: 0.9rem; color: var(--dark); }
    .v-cap { font-size: 0.72rem; color: var(--gray); }
    .vehicle-note { font-size: 0.8rem; color: var(--gold); font-weight: 600; margin-top: 0.5rem; min-height: 1.2em; }

    .extras-grid { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(44,95,74,0.1); border-radius: 16px; overflow: hidden; margin-bottom: 1.5rem; }
    .extra-item { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.2rem; border-bottom: 1px solid rgba(44,95,74,0.07); background: white; transition: background 0.2s; }
    .extra-item:last-child { border-bottom: none; }
    .extra-item:hover { background: var(--cream); }
    .extra-icon { font-size: 1.7rem; flex-shrink: 0; }
    .extra-info { flex: 1; display: flex; flex-direction: column; gap: 0.15rem; }
    .extra-info strong { font-size: 0.92rem; color: var(--dark); }
    .extra-info span { font-size: 0.78rem; color: var(--gray); }
    .extra-qty { display: flex; align-items: center; gap: 0.6rem; }
    .extra-qty button {
      width: 30px; height: 30px; border-radius: 50%;
      border: 2px solid rgba(44,95,74,0.2); background: white;
      font-size: 1.1rem; cursor: pointer; transition: all 0.2s;
      display: flex; align-items: center; justify-content: center; color: var(--green); font-weight: 700;
    }
    .extra-qty button:hover { background: var(--green); color: white; border-color: var(--green); }
    .extra-qty span { font-size: 1rem; font-weight: 700; min-width: 20px; text-align: center; color: var(--dark); }

    .booking-summary { background: var(--cream); border-radius: 14px; padding: 1.5rem; border-left: 4px solid var(--green); margin-top: 1rem; }
    .booking-summary h4 { font-family: 'DM Sans',sans-serif; font-weight: 700; color: var(--green); margin-bottom: 1rem; font-size: 0.95rem; }
    #summary-content { font-size: 0.88rem; color: var(--gray); line-height: 1.9; }

    .terms-check { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.85rem; color: var(--gray); }
    .terms-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green); flex-shrink: 0; }
    .terms-check label { font-size: 0.85rem; color: var(--gray); font-weight: 400; line-height: 1.5; }
    .terms-check a { color: var(--green); text-decoration: underline; cursor: pointer; }

    /* ─── COOKIE BANNER ─── */
    #cookie-banner {
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 13000;
      background: rgba(13,34,24,0.97); backdrop-filter: blur(10px);
      padding: 1.2rem 5%; transform: translateY(100%); transition: transform 0.4s ease;
      border-top: 2px solid var(--gold);
    }
    #cookie-banner.visible { transform: translateY(0); }
    .cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
    .cookie-text { color: rgba(255,255,255,0.85); font-size: 0.85rem; line-height: 1.6; flex: 1; min-width: 280px; }
    .cookie-text a { color: var(--gold); text-decoration: underline; cursor: pointer; }
    .cookie-btns { display: flex; gap: 0.6rem; }
    .cookie-btn-decline, .cookie-btn-accept {
      padding: 0.6rem 1.2rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; cursor: pointer; border: none; font-family: 'DM Sans',sans-serif;
    }
    .cookie-btn-decline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.3); }
    .cookie-btn-accept { background: var(--gold); color: var(--dark); }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
      .tours-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .fleet-grid { grid-template-columns: repeat(2, 1fr); }
      .service-cards { grid-template-columns: repeat(2, 1fr); }
      .steps { grid-template-columns: repeat(3, 1fr); }
      .vehicle-grid { grid-template-columns: repeat(4, 1fr); }
      .transport-split { grid-template-columns: 1fr 1fr !important; gap: 2rem; }
    }
    @media (max-width: 768px) {
      .nav-links { display: none; }
      .lang-toggle { display: none; }
      .hamburger { display: flex; }
      nav { padding: 0 4%; height: 130px; }
      .nav-logo img { height: 100px; }
      .page { padding-top: 130px; }
      .mobile-menu { top: 130px; }
      .hero { min-height: 100svh; }
      .hero h1 { font-size: 2.4rem; }
      .hero p { font-size: 1rem; }
      .hero-btns { flex-direction: column; align-items: center; }
      .hero-btns a { width: 100%; max-width: 300px; text-align: center; }
      section { padding: 3.5rem 5%; }
      .section-title { font-size: 1.8rem; }
      .why-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
      .why-card { padding: 1.4rem; }
      .tours-grid { grid-template-columns: 1fr; }
      .transport-split { grid-template-columns: 1fr !important; }
      .transport-split > div:last-child { height: 220px; }
      .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
      .service-cards { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
      .steps { grid-template-columns: 1fr; gap: 1.5rem; }
      .step { padding: 1rem; }
      .booking-section { padding: 2rem 4% !important; }
      .booking-wrap { padding: 1.5rem 1rem; border-radius: 16px; width: 100%; }
      .form-grid { grid-template-columns: 1fr; gap: 1rem; }
      .form-group.full { grid-column: 1; }
      .step-nav { flex-direction: column-reverse; gap: 0.75rem; }
      .step-nav > * { width: 100%; text-align: center; }
      .vehicle-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; }
      input, select, textarea { font-size: 16px; }
      .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
      .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; align-items: center; }
      .page-hero { padding: 5rem 5% 3rem; }
      .page-hero h1 { font-size: 2rem; }
      .testi-grid { grid-template-columns: 1fr; max-width: 480px; margin: 2rem auto 0; }
      .floating-btns { bottom: 1.2rem; right: 1rem; gap: 0.6rem; }
      .float-btn { width: 46px; height: 46px; font-size: 1.3rem; }
      .modal-box { padding: 1.5rem 1.2rem; border-radius: 16px; }
      .booking-summary { padding: 1rem; }
    }
    @media (max-width: 600px) {
      .why-grid { grid-template-columns: 1fr; }
      .fleet-grid { grid-template-columns: 1fr 1fr; }
      .service-cards { grid-template-columns: 1fr 1fr; }
      .tours-grid { grid-template-columns: 1fr; }
      .form-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      nav { height: 110px; }
      .page { padding-top: 110px; }
      .mobile-menu { top: 110px; }
      .nav-logo img { height: 80px; }
      .hero h1 { font-size: 2rem; line-height: 1.15; }
      .hero p { font-size: 0.95rem; }
      .hero-badge { font-size: 0.75rem; padding: 0.3rem 0.8rem; }
      section { padding: 3rem 4%; }
      .section-title { font-size: 1.6rem; }
      .section-subtitle { font-size: 0.95rem; }
      .why-grid { grid-template-columns: 1fr; gap: 0.9rem; }
      .why-icon { width: 48px; height: 48px; font-size: 1.3rem; }
      .tour-img { height: 190px; }
      .tour-body { padding: 1.2rem; }
      .tour-body h3 { font-size: 1.05rem; }
      .fleet-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
      .fleet-img { height: 130px; }
      .service-cards { grid-template-columns: 1fr; }
      .service-card { padding: 1.4rem; }
      .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
      .footer-brand p { font-size: 0.85rem; }
      .footer-col h4 { font-size: 0.8rem; }
      .booking-section { padding: 1.5rem 3% !important; }
      .booking-wrap { padding: 1.2rem 0.9rem; }
      .dot-num { width: 34px; height: 34px; font-size: 0.9rem; }
      .dot-label { font-size: 0.65rem; }
      .step-line { max-width: 30px; }
      .step-title { font-size: 1rem; }
      .vehicle-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
      .vehicle-opt { padding: 0.8rem 0.3rem; }
      .v-icon { font-size: 1.5rem; }
      .vehicle-opt strong { font-size: 0.8rem; }
      .v-cap { font-size: 0.65rem; }
      .radio-group { gap: 0.6rem; }
      .radio-opt { padding: 0.6rem 0.9rem; font-size: 0.85rem; }
      .extra-item { gap: 0.7rem; padding: 0.8rem; }
      .extra-info strong { font-size: 0.85rem; }
      .extra-info span { font-size: 0.72rem; }
    }

/* ─── Refactor overrides ─── */
a.lang-btn { text-decoration: none; display: inline-block; }
a.nav-logo { display: flex; align-items: center; text-decoration: none; gap: 0.5rem; }

/* ─── Footer nav active state ─── */
.footer-nav a.active {
  color: var(--gold) !important;
  font-weight: 700 !important;
  position: relative;
  padding-left: 0.9rem;
}
.footer-nav a.active::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}


/* ─── FIXES URGENTES v7 ─── */
/* Logo: fondo sólido blanco circular para legibilidad sobre cualquier fondo */


/* Footer nav active - más específico */
.footer-col ul.footer-nav li a.active,
.footer-col ul li a.active {
  color: var(--gold) !important;
  font-weight: 700 !important;
  padding-left: 1rem !important;
  position: relative;
  display: inline-block;
}
.footer-col ul li a.active::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* Mobile menu active — fuerza bruta */
.mobile-menu a.active {
  color: var(--gold) !important;
  font-weight: 700 !important;
  background: rgba(244,164,27,0.18) !important;
  border-left: 4px solid var(--gold) !important;
  padding-left: 1rem !important;
}
