*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue: #6cc6ec;
      --blue-dark: #5ab8de;
      --orange: #f97316;
      --dark: #1d293d;
      --text: #45556c;
      --muted: #62748e;
      --light: #90a1b9;
      --bg: #f8fafc;
      font-family: 'Inter', sans-serif;
    }
    body { background: #fff; color: var(--dark); }
    img { display: block; }
    button { font-family: inherit; cursor: pointer; }
    input, textarea, select { font-family: inherit; }
    .container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
    .section { padding: 5rem 0; }
    .section-tag { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 2.4px; }
    .section-title { font-size: 48px; font-weight: 900; color: var(--dark); letter-spacing: -1px; line-height: 1.1; }
    .section-title .accent { color: var(--blue); }

    /* ─── HEADER ─────────────────────────────────────────────────── */
    header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background 0.3s, box-shadow 0.3s; }
    header.scrolled { background: rgba(255,255,255,0.96); backdrop-filter: blur(8px); box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
    .header-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 64px; }
    .logo { font-size: 20px; font-weight: 900; text-decoration: none; letter-spacing: -0.5px; }
    .logo .ak { color: #48c7fc; }
    .logo .tur { color: white; transition: color 0.3s; }
    header.scrolled .logo .tur { color: var(--dark); }
    nav { display: flex; gap: 2rem; }
    nav button { color: rgba(255,255,255,0.8); font-size: 14px; font-weight: 500; background: none; border: none; transition: color 0.2s; padding: 0; }
    nav button:hover { color: white; }
    header.scrolled nav button { color: var(--muted); }
    header.scrolled nav button:hover { color: var(--dark); }
    .header-book { color: white; font-size: 14px; font-weight: 700; background: none; border: none; transition: color 0.3s; }
    header.scrolled .header-book { color: var(--dark); }

    /* ─── HERO ───────────────────────────────────────────────────── */
    .hero { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
    .hero-bg { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; }
    .hero-bg.active { opacity: 1; }
    .hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); }
    .hero-ov1 { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.42), transparent 50%, rgba(16,44,56,0.16)); pointer-events: none; }
    .hero-ov2 { position: absolute; inset: 0; background: rgba(77,82,43,0.35); pointer-events: none; }
    .hero-blur { position: absolute; inset: 0; backdrop-filter: blur(2px); pointer-events: none; }
    .hero-content { position: relative; z-index: 10; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 80px 2rem 0; }
    .hero-badge { background: rgba(72,199,252,0.3); border: 1px solid rgba(72,199,252,0.5); border-radius: 9999px; padding: 8px 24px; color: white; font-size: 12px; font-weight: 700; letter-spacing: 2.16px; text-transform: uppercase; margin-bottom: 2rem; }
    .hero-title { font-size: clamp(52px, 6.5vw, 96px); font-weight: 900; line-height: 1.02; letter-spacing: -2.4px; margin-bottom: 1.5rem; }
    .hero-title .line { display: block; color: white; transition: color 0.7s; }
    .hero-title .line.hl { color: var(--blue); }
    .hero-sub { color: rgba(255,255,255,0.75); font-size: 20px; margin-bottom: 2.5rem; }
    .hero-sub strong { color: white; font-weight: 600; }
    .btn-primary { display: inline-flex; align-items: center; gap: 8px; background: #6bc6ec; color: white; border: none; border-radius: 12px; padding: 16px 32px; font-size: 16px; font-weight: 700; transition: background 0.2s; }
    .btn-primary:hover { background: var(--blue-dark); }
    .hero-dots { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 10; }
    .hero-dot { height: 8px; border-radius: 9999px; background: rgba(255,255,255,0.5); border: none; transition: all 0.3s; width: 8px; }
    .hero-dot.active { width: 24px; background: var(--blue); }

    /* ─── STATS ──────────────────────────────────────────────────── */
    .stats { background: var(--blue); padding: 2.5rem 0; }
    .stats-row { display: flex; }
    .stat { flex: 1; text-align: center; }
    .stat-val { font-size: 48px; font-weight: 900; color: white; line-height: 1; }
    .stat-lbl { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.7px; margin-top: 8px; }

    /* ─── TOURS ──────────────────────────────────────────────────── */
    #tours { padding: 5rem 0; background: white; }
    .tours-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; }
    .nav-arrows { display: flex; gap: 12px; }
    .nav-arr { width: 40px; height: 40px; border-radius: 50%; border: 1px solid #e2e8f0; background: white; display: flex; align-items: center; justify-content: center; transition: opacity 0.2s; }
    .nav-arr:disabled { opacity: 0.4; cursor: default; }
    .nav-arr svg { width: 20px; height: 20px; }
    .tours-grid { display: flex; gap: 20px; }
    .tour-card { flex: 1; background: white; border-radius: 16px; border: 1px solid #f1f5f9; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
    .tour-img { position: relative; height: 192px; overflow: hidden; background: #2d3e50; }
    .tour-img img { width: 100%; height: 100%; object-fit: cover; }
    .t-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.5), transparent); }
    .diff { position: absolute; top: 12px; left: 12px; padding: 4px 12px; border-radius: 9999px; font-size: 11px; font-weight: 600; }
    .tour-body { padding: 20px; }
    .tour-name { font-size: 18px; font-weight: 700; color: var(--dark); }
    .t-loc { display: flex; align-items: center; gap: 4px; margin-top: 4px; color: var(--light); font-size: 12px; }
    .t-loc svg { width: 12px; height: 12px; flex-shrink: 0; }
    .tour-chips { display: flex; gap: 8px; margin-top: 16px; }
    .t-chip { flex: 1; background: #f8fafc; border-radius: 12px; padding: 8px 4px; display: flex; flex-direction: column; align-items: center; gap: 4px; }
    .t-chip svg { width: 14px; height: 14px; }
    .t-chip span { font-size: 10px; color: var(--muted); text-align: center; }
    .tour-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
    .t-price-lbl { font-size: 10px; color: var(--light); }
    .t-price { font-size: 16px; font-weight: 900; color: var(--dark); }
    .btn-more { background: var(--orange); color: white; border: none; border-radius: 12px; padding: 8px 16px; font-size: 14px; font-weight: 600; transition: opacity 0.2s; }
    .btn-more:hover { opacity: 0.88; }
    .page-dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
    .p-dot { height: 8px; border-radius: 9999px; border: none; background: #d1d5db; transition: all 0.3s; }
    .p-dot.active { width: 24px !important; background: var(--blue); }
    .tour-detail { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 16px; padding: 24px; margin-top: 24px; }
    .td-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 16px; }
    .td-name { font-size: 20px; font-weight: 900; color: var(--dark); }
    .td-loc { display: flex; align-items: center; gap: 4px; margin-top: 4px; color: var(--light); font-size: 13px; }
    .td-loc svg { width: 12px; height: 12px; }
    .btn-close { background: none; border: none; color: var(--light); padding: 4px; transition: color 0.2s; line-height: 0; }
    .btn-close:hover { color: var(--dark); }
    .td-desc { font-size: 14px; color: var(--text); line-height: 1.625; margin-bottom: 24px; }
    .td-chips { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
    .td-chip { display: flex; align-items: center; gap: 8px; background: white; border: 1px solid #e2e8f0; border-radius: 14px; padding: 8px 16px; font-size: 13px; color: var(--muted); }
    .td-chip svg { width: 14px; height: 14px; flex-shrink: 0; }
    .btn-book { background: var(--blue); color: white; border: none; border-radius: 14px; padding: 12px 24px; font-size: 14px; font-weight: 700; transition: background 0.2s; }
    .btn-book:hover { background: var(--blue-dark); }

    /* ─── HOW IT WORKS ───────────────────────────────────────────── */
    #how-it-works { background: var(--bg); padding: 5rem 0; }
    .steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; margin-top: 4rem; }
    .step-icon-row { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
    .step-ico { width: 48px; height: 48px; background: var(--blue); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .step-ico svg { width: 20px; height: 20px; }
    .step-num { font-size: 36px; font-weight: 900; color: #bbc2c9; }
    .step-title { font-size: 20px; font-weight: 900; color: var(--dark); margin-bottom: 12px; }
    .step-desc { font-size: 14px; color: var(--muted); line-height: 1.625; }

    /* ─── DIRECTIONS ─────────────────────────────────────────────── */
    #directions { background: white; padding: 5rem 0; }
    .dir-sub { font-size: 16px; color: var(--muted); max-width: 560px; margin-top: 1rem; line-height: 1.6; }
    .sport-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 3rem; }
    .sport-card { position: relative; height: 288px; border-radius: 16px; overflow: hidden; }
    .sport-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
    .sport-bg { position: absolute; inset: 0; background: #2d3e50; }
    .sport-ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, transparent 100%); }
    .sport-txt { position: absolute; bottom: 0; left: 0; padding: 16px; }
    .sport-name { font-size: 15px; font-weight: 700; color: white; }
    .sport-loc { font-size: 11px; color: rgba(255,255,255,0.7); margin-top: 4px; display: flex; align-items: center; gap: 3px; }
    .sport-loc svg { width: 11px; height: 11px; }

    /* ─── PHOTO STRIP ────────────────────────────────────────────── */
    .photo-strip { height: 300px; overflow: hidden; position: relative; }
    .photo-strip img { width: 100%; height: 100%; object-fit: cover; }

    /* ─── REVIEWS ────────────────────────────────────────────────── */
    #reviews { background: white; padding: 5rem 0; position: relative; }
    .rev-inner { position: relative; z-index: 10; }
    .rev-head { text-align: center; margin-bottom: 3rem; }
    .rev-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
    .rev-card { background: white; border-radius: 16px; padding: 24px; border: 1px solid #f1f5f9; box-shadow: 0 1px 1.5px rgba(0,0,0,0.1); }
    .stars { display: flex; gap: 2px; margin-bottom: 16px; }
    .stars svg { width: 16px; height: 16px; }
    .rev-text { font-size: 14px; color: var(--text); line-height: 1.625; font-style: italic; }
    .rev-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; padding-top: 16px; border-top: 1px solid #f8fafc; }
    .av { width: 40px; height: 40px; border-radius: 50%; background: #e2e8f0; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; color: var(--muted); flex-shrink: 0; }
    .av-name { font-size: 14px; font-weight: 700; color: var(--dark); }
    .av-sport { font-size: 12px; font-weight: 500; color: var(--blue); margin-top: 2px; }

    /* ─── GALLERY ────────────────────────────────────────────────── */
    #gallery { background: var(--bg); padding: 5rem 0; }
    .gallery-wrap { position: relative; height: 560px; border-radius: 24px; overflow: hidden; margin: 2.5rem auto 0; max-width: 1280px; background: #d1d5db; }
    .g-item { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; }
    .g-item.active { opacity: 1; }
    .g-item img { width: 100%; height: 100%; object-fit: cover; }
    .g-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: #d1d5db; }
    .g-placeholder p { font-size: 16px; font-weight: 500; color: #6b7280; }
    .g-placeholder small { font-size: 13px; color: #9ca3af; margin-top: 8px; }
    .g-caption { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.4), transparent); padding: 2rem; }
    .g-caption p { color: white; font-size: 16px; font-weight: 500; }
    .g-dots { display: flex; justify-content: center; align-items: center; gap: 8px; margin-top: 20px; }
    .g-dot { height: 8px; border-radius: 9999px; border: none; background: #d1d5db; transition: all 0.3s; }
    .g-dot.active { width: 24px !important; background: var(--blue); }

    /* ─── FAQ ────────────────────────────────────────────────────── */
    #faq { position: relative; padding: 5rem 0; overflow: hidden; }
    .faq-bg { position: absolute; inset: 0; opacity: 0.3; height: 170%; }
    .faq-bg img { width: 100%; height: 100%; object-fit: cover; transform: translateY(0%);}
    .faq-ov { position: absolute; inset: 0; background: rgba(255,255,255,0.6); }
    .faq-inner { position: relative; z-index: 10; text-align: center; }
    .accordion { max-width: 672px; margin: 3rem auto 0; background: white; border-radius: 16px; border: 1px solid #f1f5f9; box-shadow: 0 1px 1.5px rgba(0,0,0,0.1); overflow: hidden; }
    .acc-item { border-bottom: 1px solid #f1f5f9; }
    .acc-item:last-child { border-bottom: none; }
    .acc-btn { width: 100%; padding: 20px 24px; display: flex; justify-content: space-between; align-items: center; background: none; border: none; text-align: left; transition: background 0.15s; }
    .acc-btn:hover { background: #f8fafc; }
    .acc-q { font-size: 16px; font-weight: 600; color: var(--dark); flex: 1; padding-right: 16px; }
    .acc-ico { flex-shrink: 0; transition: transform 0.3s; }
    .acc-ico svg { width: 20px; height: 20px; display: block; }
    .acc-item.open .acc-ico { transform: rotate(180deg); }
    .acc-ans { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
    .acc-item.open .acc-ans { max-height: 350px; }
    .acc-ans p { padding: 0 24px 20px; font-size: 14px; color: var(--muted); line-height: 1.625; text-align: left; }

    /* ─── NEWSLETTER ─────────────────────────────────────────────── */
    #newsletter { background: white; padding: 5rem 0; }
    .nl-box { background: var(--bg); border-radius: 24px; padding: 4rem 2rem; text-align: center; max-width: 1280px; margin: 0 auto; }
    .nl-icon { display: flex; justify-content: center; align-items: center; margin-bottom: 1.5rem; }
    .nl-title { font-size: 36px; font-weight: 900; color: var(--dark); letter-spacing: -0.9px; }
    .nl-sub { font-size: 14px; color: var(--muted); max-width: 448px; margin: 1rem auto 2rem; line-height: 1.6; }
    .nl-form { display: flex; gap: 12px; max-width: 448px; margin: 0 auto; align-items: flex-start; }
    .nl-wrap { flex: 1; }
    .nl-input { width: 100%; border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 16px; font-size: 14px; outline: none; background: white; box-shadow: 0 1px 2px rgba(0,0,0,0.05); transition: border-color 0.2s; }
    .nl-input:focus { border-color: var(--blue); }
    .nl-input.err { border-color: #ef4444; }
    .nl-submit { background: var(--blue); color: white; border: none; border-radius: 12px; padding: 12px 24px; font-size: 14px; font-weight: 700; white-space: nowrap; transition: background 0.2s; }
    .nl-submit:hover { background: var(--blue-dark); }
    .nl-submit:disabled { background: #93d6ef; cursor: default; }
    .f-err { font-size: 12px; color: #ef4444; margin-top: 4px; text-align: left; min-height: 16px; }

    /* ─── FOOTER ─────────────────────────────────────────────────── */
    footer { background: #1d293d; padding: 4rem 0; }
    .footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .f-logo { font-size: 20px; font-weight: 900; }
    .f-logo .ak { color: #6bc6ec; }
    .f-logo .tu { color: white; }
    .f-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; margin-top: 16px; max-width: 240px; }
    .f-col-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 2.4px; margin-bottom: 20px; }
    .f-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .f-list li { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
    .f-list li:hover { color: white; cursor: pointer; }
    .f-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
    .f-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
    .f-contact-item span { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.5; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; }
    .f-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
    .f-links { display: flex; gap: 20px; }
    .f-links a { font-size: 12px; color: rgba(255,255,255,0.3); text-decoration: none; }

    /* ─── BOOKING MODAL ──────────────────────────────────────────── */
    .modal-ov { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 16px; }
    .modal-ov.hidden { display: none; }
    .modal-box { background: white; border-radius: 16px; padding: 32px; width: 100%; max-width: 520px; max-height: 90vh; overflow-y: auto; }
    .modal-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
    .modal-title { font-size: 22px; font-weight: 900; color: var(--dark); }
    .modal-tour { font-size: 14px; font-weight: 500; color: var(--blue); margin-top: 4px; }
    .m-close { background: none; border: none; color: var(--light); line-height: 0; transition: color 0.2s; }
    .m-close:hover { color: var(--dark); }
    .m-form { display: flex; flex-direction: column; gap: 16px; }
    .m-group { display: flex; flex-direction: column; }
    .m-label { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
    .m-input { border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 16px; font-size: 14px; outline: none; background: #f8fafc; transition: border-color 0.2s; }
    .m-input:focus { border-color: var(--blue); }
    .m-input.err { border-color: #ef4444; }
    .m-select { border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 16px; font-size: 14px; background: #f8fafc; outline: none; }
    .m-textarea { border: 1px solid #e2e8f0; border-radius: 12px; padding: 12px 16px; font-size: 14px; background: #f8fafc; resize: none; outline: none; transition: border-color 0.2s; }
    .m-textarea:focus { border-color: var(--blue); }
    .m-note { font-size: 12px; color: var(--light); }
    .m-submit { background: var(--blue); color: white; border: none; border-radius: 12px; padding: 14px; font-size: 15px; font-weight: 700; width: 100%; transition: background 0.2s; }
    .m-submit:hover { background: var(--blue-dark); }
    .m-submit:disabled { background: #93d6ef; cursor: default; }

    /* ─── TOAST ──────────────────────────────────────────────────── */
    #toast { position: fixed; top: 24px; left: 50%; transform: translateX(-50%) translateY(-120px); background: white; border-radius: 12px; padding: 14px 20px; display: flex; align-items: center; gap: 12px; box-shadow: 0 4px 16px rgba(0,0,0,0.15); z-index: 3000; transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1); border: 1px solid #e2e8f0; min-width: 300px; }
    #toast.show { transform: translateX(-50%) translateY(0); }
    .toast-ico { width: 24px; height: 24px; background: #ecfdf5; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .toast-ico svg { width: 14px; height: 14px; }
    .toast-msg { font-size: 14px; font-weight: 500; color: var(--dark); }
    .icon-gold { stroke: #FFB900; fill: #FFB900; }

    /* ═══════════════════════════════════════════════════════════════
       BURGER BUTTON (hidden on desktop)
       ═══════════════════════════════════════════════════════════════ */
    .burger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      gap: 5px;
      z-index: 1001;
      position: relative;
    }
    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: white;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
    header.scrolled .burger span { background: var(--dark); }
    .burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    /* ═══════════════════════════════════════════════════════════════
       MOBILE MENU OVERLAY — separate from desktop nav
       ═══════════════════════════════════════════════════════════════ */
    .mobile-menu {
      display: none;
      position: fixed;
      inset: 0;
      background: #1d293d;
      flex-direction: column;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 5rem 1.5rem 1.5rem;
      gap: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      z-index: 2001;
      pointer-events: none;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      box-sizing: border-box;
    }
    .mobile-menu.open {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
    }
    .mobile-menu .mm-top {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 1rem;
      box-sizing: border-box;
    }
    .mobile-menu .mm-logo {
      font-size: 20px;
      font-weight: 900;
      text-decoration: none;
      letter-spacing: -0.5px;
    }
    .mobile-menu .mm-logo .ak { color: #48c7fc; }
    .mobile-menu .mm-logo .tu { color: white; }
    .mobile-menu .mm-close {
      width: 40px;
      height: 40px;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      padding: 0;
    }
    .mobile-menu .mm-link {
      color: rgba(255,255,255,0.85);
      font-size: 16px;
      font-weight: 500;
      padding: 1rem 0;
      width: 100%;
      text-align: left;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: color 0.2s;
      background: none;
      border-left: none;
      border-right: none;
      border-top: none;
    }
    .mobile-menu .mm-link:hover { color: #6cc6ec; }
    .mobile-menu .mm-book {
      width: 100%;
      margin-top: 1.5rem;
      background: #6cc6ec;
      color: white;
      font-size: 16px;
      font-weight: 700;
      padding: 14px 24px;
      border-radius: 12px;
      text-align: center;
      border: none;
      transition: background 0.2s;
      flex-shrink: 0;
    }
    .mobile-menu .mm-book:hover { background: #5ab8de; }

    /* ═══════════════════════════════════════════════════════════════
       ADAPTIVE — DESKTOP is default (above), below are mobile overrides
       ═══════════════════════════════════════════════════════════════ */

    /* ═══ TABLET: 768px – 1024px ══════════════════════════════════ */
    @media (min-width: 768px) and (max-width: 1024px) {
      .container { padding: 0 1.5rem; }
      .header-inner { padding: 0 1.5rem; }
      nav { gap: 1.25rem; }
      nav button { font-size: 13px; }
      .header-book { font-size: 13px; }
      .hero-content { padding: 80px 1.5rem 0; }
      .hero-title { font-size: clamp(44px, 8vw, 72px); }
      .hero-sub { font-size: 18px; }
      .stat-val { font-size: 36px; }
      .stat-lbl { font-size: 12px; }
      .sport-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
      .sport-card { height: 240px; }
      .steps { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
      .step-num { font-size: 30px; }
      .step-title { font-size: 17px; }
      .tours-grid { gap: 16px; }
      .tour-img { height: 160px; }
      .tour-body { padding: 16px; }
      .tour-name { font-size: 16px; }
      .tour-chips { gap: 6px; margin-top: 12px; }
      .t-chip { padding: 6px 2px; }
      .t-chip span { font-size: 9px; }
      .tour-foot { margin-top: 16px; }
      .t-price { font-size: 14px; }
      .btn-more { padding: 7px 14px; font-size: 13px; }
      .tour-detail { padding: 20px; }
      .td-chips { gap: 8px; }
      .photo-strip { height: 240px; }
      .rev-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
      .rev-card { padding: 20px; }
      .rev-text { font-size: 13px; }
      .rev-card:last-child { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
      .gallery-wrap { height: 420px; border-radius: 20px; }
      .accordion { max-width: 100%; }
      .nl-box { padding: 3rem 1.5rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    }

    /* ═══ MOBILE: 360px – 767px ═══════════════════════════════════ */
    @media (max-width: 767px) {
      .container { padding: 0 1rem; }
      .section-title { font-size: 28px; letter-spacing: -0.5px; }

      /* Header */
      .header-inner { padding: 0 1rem; height: 56px; }
      .logo { font-size: 18px; }
      nav { display: none !important; } /* hide desktop nav */
      .header-book { display: none !important; }
      .burger { display: flex !important; }
      .mobile-menu { display: flex !important; } /* show mobile overlay */

      /* Hero */
      .hero { min-height: 100svh; }
      .hero-content { padding: 72px 1rem 0; }
      .hero-badge { font-size: 10px; padding: 6px 16px; letter-spacing: 1.5px; margin-bottom: 1.5rem; }
      .hero-title { font-size: 40px; letter-spacing: -1.5px; margin-bottom: 1rem; }
      .hero-sub { font-size: 16px; margin-bottom: 2rem; padding: 0 0.5rem; }
      .btn-primary { padding: 14px 28px; font-size: 15px; }
      .hero-dots { bottom: 1.5rem; }

      /* Stats */
      .stats { padding: 2rem 0; }
      .stats-row { flex-direction: column; gap: 1.5rem; }
      .stat-val { font-size: 36px; }

      /* Directions */
      #directions { padding: 3rem 0 !important; }
      .dir-sub { font-size: 15px; max-width: 100%; }
      .sport-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 2rem; }
      .sport-card { height: 220px; }

      /* How It Works */
      #how-it-works { padding: 3rem 0; }
      .steps { grid-template-columns: 1fr; gap: 2.5rem; margin-top: 2.5rem; }
      .step-num { font-size: 28px; }
      .step-title { font-size: 18px; }

      /* Tours */
      #tours { padding: 3rem 0; }
      .tours-head { flex-direction: column; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
      .tours-grid { flex-direction: column; gap: 16px; }
      .tour-img { height: 180px; }
      .nav-arrows { display: none; }
      .tour-detail { padding: 20px; margin-top: 20px; }
      .td-name { font-size: 18px; }
      .td-chips { gap: 8px; }
      .td-chip { padding: 6px 12px; font-size: 12px; }

      /* Photo Strip */
      .photo-strip { height: 180px; }

      /* Reviews */
      #reviews { padding: 3rem 0; }
      .rev-grid { grid-template-columns: 1fr; gap: 16px; }
      .rev-card { padding: 20px; }

      /* Gallery */
      #gallery { padding: 3rem 0; }
      .gallery-wrap { height: 280px; border-radius: 16px; margin-top: 1.5rem; }

      /* FAQ */
      #faq { padding: 3rem 0; }
      .accordion { margin-top: 2rem; border-radius: 12px; }
      .acc-btn { padding: 16px 20px; }
      .acc-q { font-size: 14px; }
      .acc-ans p { padding: 0 20px 16px; font-size: 13px; }

      /* Newsletter */
      #newsletter { padding: 3rem 0; }
      .nl-box { padding: 2.5rem 1rem; border-radius: 16px; }
      .nl-title { font-size: 24px; letter-spacing: -0.5px; }
      .nl-sub { font-size: 13px; margin-bottom: 1.5rem; }
      .nl-form { flex-direction: column; gap: 12px; align-items: stretch; }
      .nl-submit { width: 100%; }

      /* Footer */
      footer { padding: 2.5rem 0; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2rem; }
      .f-desc { max-width: 100%; }
      .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

      /* Modal */
      .modal-box { padding: 24px 20px; border-radius: 12px; max-height: 95vh; }
      .modal-title { font-size: 20px; }

      /* Toast */
      #toast { min-width: auto; width: calc(100% - 32px); max-width: 400px; }
    }

    /* ═══ SMALL MOBILE: below 360px ═══════════════════════════════ */
    @media (max-width: 359px) {
      .hero-title { font-size: 34px; }
      .section-title { font-size: 24px; }
      .stat-val { font-size: 30px; }
      .sport-card { height: 200px; }
    }