 :root {
      --gold: #C9A84C;
      --gold-light: #E8C96F;
      --dark: #0D0D0D;
      --dark2: #141414;
      --dark3: #1A1A1A;
      --card-bg: #181818;
      --text: #F0EAE0;
      --muted: #888;
      --accent: #2A7B9B;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Outfit', sans-serif;
      background: var(--dark);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--dark2); }
    ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

    /* ── NAVBAR ── */
    #navbar {
      position: fixed; top: 0; width: 100%; z-index: 9999;
      padding: 1.2rem 0;
      transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
    }
    #navbar.scrolled {
      background: rgba(10,10,10,0.95);
      backdrop-filter: blur(12px);
      padding: 0.7rem 0;
      box-shadow: 0 2px 30px rgba(0,0,0,0.6);
      border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .navbar-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 700;
      color: var(--gold) !important;
      letter-spacing: 2px;
    }
    .navbar-brand span { color: var(--text); font-weight: 300; }
    .nav-link {
      color: var(--text) !important;
      font-size: 0.85rem;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      font-weight: 500;
      padding: 0.4rem 1rem !important;
      transition: color 0.3s;
      position: relative;
    }
    .nav-link::after {
      content: '';
      position: absolute; bottom: 0; left: 50%; right: 50%;
      height: 1px; background: var(--gold);
      transition: left 0.3s, right 0.3s;
    }
    .nav-link:hover { color: var(--gold) !important; }
    .nav-link:hover::after { left: 1rem; right: 1rem; }
    .btn-reserve {
      background: var(--gold);
      color: var(--dark) !important;
      border-radius: 0;
      font-size: 0.78rem;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 600;
      padding: 0.55rem 1.4rem !important;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-reserve:hover { background: var(--gold-light); transform: translateY(-2px); }

    /* ── HERO SLIDER ── */
    #heroSlider { position: relative; height: 100vh; overflow: hidden; }
    .slide {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0; transition: opacity 1.2s ease;
      display: flex; align-items: center; justify-content: center;
    }
    .slide.active { opacity: 1; }
    .slide-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.85) 100%);
    }
    .slide-content {
      position: relative; z-index: 2;
      text-align: center; padding: 0 1rem;
    }
    .slide-tag {
      display: inline-block;
      font-size: 0.72rem;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      border: 1px solid rgba(201,168,76,0.4);
      padding: 0.3rem 1rem;
      margin-bottom: 1.5rem;
      animation: fadeUp 1s 0.3s both;
    }
    .slide-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 9vw, 8rem);
      font-weight: 300;
      line-height: 1.05;
      color: #fff;
      animation: fadeUp 1s 0.5s both;
    }
    .slide-title strong { color: var(--gold); font-weight: 700; display: block; }
    .slide-sub {
      font-size: 1.05rem;
      color: rgba(255,255,255,0.75);
      margin: 1.2rem auto 2.5rem;
      max-width: 500px;
      animation: fadeUp 1s 0.7s both;
    }
    .slide-btns { animation: fadeUp 1s 0.9s both; }
    .btn-gold {
      background: var(--gold); color: var(--dark);
      border: none; border-radius: 0;
      font-size: 0.78rem; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 600;
      padding: 0.9rem 2.2rem;
      transition: all 0.3s;
    }
    .btn-gold:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 8px 25px rgba(201,168,76,0.35); }
    .btn-outline-gold {
      background: transparent;
      border: 1px solid rgba(255,255,255,0.5);
      color: #fff;
      border-radius: 0;
      font-size: 0.78rem; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 500;
      padding: 0.9rem 2.2rem;
      transition: all 0.3s;
    }
    .btn-outline-gold:hover { border-color: var(--gold); color: var(--gold); }

    /* Slider controls */
    .slider-controls {
      position: absolute; bottom: 2.5rem; left: 50%;
      transform: translateX(-50%);
      display: flex; align-items: center; gap: 0.6rem; z-index: 10;
    }
    .slider-dot {
      width: 8px; height: 8px;
      border-radius: 50%; background: rgba(255,255,255,0.35);
      cursor: pointer; transition: all 0.3s;
    }
    .slider-dot.active { background: var(--gold); transform: scale(1.3); }
    .slider-arrow {
      position: absolute; top: 50%; z-index: 10;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.15);
      color: #fff; width: 50px; height: 50px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.3s;
      backdrop-filter: blur(8px);
    }
    .slider-arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
    .slider-arrow.prev { left: 2rem; }
    .slider-arrow.next { right: 2rem; }

    /* scroll indicator */
    .scroll-hint {
      position: absolute; bottom: 2rem; right: 2rem;
      z-index: 10; display: flex; align-items: center; gap: 0.6rem;
      font-size: 0.7rem; letter-spacing: 2px; color: rgba(255,255,255,0.5);
      text-transform: uppercase;
    }
    .scroll-line {
      width: 40px; height: 1px;
      background: linear-gradient(to right, transparent, var(--gold));
      animation: pulse 2s infinite;
    }

    /* ── SEARCH BAR ── */
    .search-bar-wrap {
      position: relative; z-index: 100;
      margin-top: -60px;
    }
    .search-card {
      background: var(--dark2);
      border: 1px solid rgba(201,168,76,0.2);
      padding: 2rem 2.5rem;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .search-tab {
      background: none; border: none;
      color: var(--muted); font-size: 0.78rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 0.4rem 1rem;
      cursor: pointer; transition: color 0.3s;
    }
    .search-tab.active { color: var(--gold); border-bottom: 2px solid var(--gold); }
    .search-input-group label {
      font-size: 0.68rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.3rem;
    }
    .search-input-group input, .search-input-group select {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text); border-radius: 0;
      padding: 0.65rem 1rem; font-size: 0.9rem;
      width: 100%;
    }
    .search-input-group input:focus, .search-input-group select:focus {
      outline: none; border-color: var(--gold);
      background: rgba(201,168,76,0.05); color: var(--text);
      box-shadow: none;
    }
    .search-input-group select option { background: var(--dark2); }
    .btn-search {
      background: var(--gold); border: none; color: var(--dark);
      font-size: 0.78rem; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 700;
      width: 100%; padding: 0.75rem;
      transition: all 0.3s; border-radius: 0;
    }
    .btn-search:hover { background: var(--gold-light); }

    /* ── SECTIONS GLOBAL ── */
    section { padding: 6rem 0; }
    .section-label {
      font-size: 0.72rem; letter-spacing: 5px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 0.7rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3.5rem);
      font-weight: 300; line-height: 1.2;
      color: var(--text);
    }
    .section-title strong { color: var(--gold); font-weight: 700; }
    .divider {
      width: 50px; height: 2px;
      background: linear-gradient(to right, var(--gold), transparent);
      margin: 1.5rem 0;
    }

    /* ── DESTINATIONS ── */
    #destinations { background: var(--dark2); }
    .dest-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
    .filter-btn {
      background: none; border: 1px solid rgba(255,255,255,0.12);
      color: var(--muted); font-size: 0.75rem;
      letter-spacing: 1.5px; text-transform: uppercase;
      padding: 0.4rem 1.1rem; cursor: pointer;
      transition: all 0.3s; border-radius: 0;
    }
    .filter-btn.active, .filter-btn:hover {
      border-color: var(--gold); color: var(--gold);
    }
    .dest-card {
      position: relative; overflow: hidden;
      cursor: pointer; border: 1px solid rgba(255,255,255,0.06);
    }
    .dest-img {
      width: 100%; aspect-ratio: 3/4;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .dest-card.wide .dest-img { aspect-ratio: 4/3; }
    .dest-card:hover .dest-img { transform: scale(1.08); }
    .dest-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 50%);
      transition: all 0.4s;
    }
    .dest-card:hover .dest-overlay {
      background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 60%);
    }
    .dest-info {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1.5rem;
    }
    .dest-country {
      font-size: 0.68rem; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gold);
    }
    .dest-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem; font-weight: 600;
      color: #fff; line-height: 1.1;
    }
    .dest-badge {
      display: inline-flex; align-items: center; gap: 0.3rem;
      background: rgba(201,168,76,0.2);
      border: 1px solid rgba(201,168,76,0.4);
      font-size: 0.7rem; color: var(--gold);
      padding: 0.2rem 0.7rem;
      margin-top: 0.5rem;
    }
    .dest-hover-info {
      position: absolute; bottom: -60px;
      left: 1.5rem; right: 1.5rem;
      display: flex; justify-content: space-between;
      align-items: center;
      transition: bottom 0.4s ease;
      opacity: 0;
    }
    .dest-card:hover .dest-hover-info { bottom: 1.5rem; opacity: 1; }
    .dest-price { font-size: 0.85rem; color: #fff; }
    .dest-price strong { color: var(--gold); font-size: 1.1rem; }
    .dest-arrow {
      width: 36px; height: 36px;
      background: var(--gold); color: var(--dark);
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem;
    }

    /* ── STATS COUNTER ── */
    #stats {
      background: var(--dark3);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
      padding: 4rem 0;
    }
    .stat-item { text-align: center; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.5rem; font-weight: 700;
      color: var(--gold); line-height: 1;
    }
    .stat-num span { font-size: 2rem; }
    .stat-label {
      font-size: 0.78rem; letter-spacing: 2px;
      text-transform: uppercase; color: var(--muted);
      margin-top: 0.3rem;
    }
    .stat-divider {
      width: 1px; background: rgba(201,168,76,0.2);
      height: 60px; margin: 0 auto;
    }

    /* ── FEATURED TOURS ── */
    .tour-card {
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,0.06);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .tour-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
      border-color: rgba(201,168,76,0.2);
    }
    .tour-img-wrap { position: relative; overflow: hidden; }
    .tour-img {
      width: 100%; aspect-ratio: 16/10;
      object-fit: cover;
      transition: transform 0.5s;
    }
    .tour-card:hover .tour-img { transform: scale(1.06); }
    .tour-badge {
      position: absolute; top: 1rem; left: 1rem;
      background: var(--gold); color: var(--dark);
      font-size: 0.65rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 0.3rem 0.7rem;
    }
    .tour-rating {
      position: absolute; top: 1rem; right: 1rem;
      background: rgba(0,0,0,0.7);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.1);
      font-size: 0.75rem; color: var(--gold);
      padding: 0.25rem 0.6rem;
    }
    .tour-body { padding: 1.4rem; }
    .tour-meta {
      display: flex; gap: 1rem; margin-bottom: 0.8rem;
    }
    .tour-meta-item {
      font-size: 0.72rem; color: var(--muted);
      letter-spacing: 1px;
      display: flex; align-items: center; gap: 0.3rem;
    }
    .tour-meta-item i { color: var(--gold); font-size: 0.65rem; }
    .tour-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem; font-weight: 600;
      color: var(--text); line-height: 1.3;
      margin-bottom: 0.5rem;
    }
    .tour-desc { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin-bottom: 1.2rem; }
    .tour-footer {
      display: flex; align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 1rem;
    }
    .tour-price-label { font-size: 0.65rem; letter-spacing: 1px; color: var(--muted); text-transform: uppercase; }
    .tour-price { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--gold); font-weight: 700; }
    .tour-price small { font-size: 0.7rem; color: var(--muted); font-family: 'Outfit', sans-serif; }
    .btn-book {
      background: transparent;
      border: 1px solid rgba(201,168,76,0.4);
      color: var(--gold); font-size: 0.7rem;
      letter-spacing: 2px; text-transform: uppercase;
      padding: 0.5rem 1.2rem;
      transition: all 0.3s; border-radius: 0;
    }
    .btn-book:hover { background: var(--gold); color: var(--dark); }

    /* ── EXPERIENCES / POURQUOI ── */
    #why { background: var(--dark2); }
    .why-item {
      padding: 2rem;
      border: 1px solid rgba(255,255,255,0.06);
      transition: all 0.3s;
      height: 100%;
    }
    .why-item:hover {
      border-color: rgba(201,168,76,0.3);
      background: rgba(201,168,76,0.03);
      transform: translateY(-4px);
    }
    .why-icon {
      width: 52px; height: 52px;
      border: 1px solid rgba(201,168,76,0.3);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .why-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem; font-weight: 600;
      color: var(--text); margin-bottom: 0.5rem;
    }
    .why-text { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--dark); overflow: hidden; }
    .testimonial-track {
      display: flex; gap: 1.5rem;
      animation: scrollLeft 40s linear infinite;
      width: max-content;
    }
    .testimonial-track:hover { animation-play-state: paused; }
    .testi-card {
      width: 340px; min-width: 340px;
      background: var(--card-bg);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 2rem;
    }
    .testi-stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 1rem; letter-spacing: 3px; }
    .testi-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem; font-weight: 300;
      line-height: 1.7; color: var(--text);
      margin-bottom: 1.5rem;
    }
    .testi-author { display: flex; align-items: center; gap: 0.8rem; }
    .testi-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(201,168,76,0.3);
    }
    .testi-name { font-size: 0.85rem; font-weight: 600; color: var(--text); }
    .testi-meta { font-size: 0.72rem; color: var(--muted); }

    /* ── GALLERY ── */
    #gallery { background: var(--dark3); }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto;
      gap: 8px;
    }
    .gallery-grid > :nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-grid > :nth-child(4) { grid-column: span 2; }
    .gallery-item {
      overflow: hidden; cursor: pointer; position: relative;
    }
    .gallery-item img {
      width: 100%; height: 100%;
      object-fit: cover; display: block;
      transition: transform 0.5s;
      min-height: 180px;
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(201,168,76,0);
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s;
    }
    .gallery-item:hover .gallery-overlay { background: rgba(201,168,76,0.2); }
    .gallery-overlay i { color: #fff; font-size: 1.5rem; opacity: 0; transition: opacity 0.3s; }
    .gallery-item:hover .gallery-overlay i { opacity: 1; }

    /* ── NEWSLETTER ── */
    #newsletter {
      background: linear-gradient(135deg, rgba(201,168,76,0.08) 0%, rgba(42,123,155,0.08) 100%);
      border-top: 1px solid rgba(201,168,76,0.1);
      border-bottom: 1px solid rgba(201,168,76,0.1);
    }
    .newsletter-input {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      color: var(--text); border-radius: 0;
      padding: 0.85rem 1.2rem; font-size: 0.9rem;
    }
    .newsletter-input:focus {
      outline: none; border-color: var(--gold);
      box-shadow: none; background: rgba(201,168,76,0.05);
      color: var(--text);
    }
    .newsletter-input::placeholder { color: var(--muted); }

    /* ── FOOTER ── */
    footer {
      background: var(--dark2);
      border-top: 1px solid rgba(201,168,76,0.1);
      padding: 5rem 0 2rem;
    }
    .footer-brand {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem; color: var(--gold); font-weight: 700; letter-spacing: 2px;
    }
    .footer-brand span { color: var(--text); font-weight: 300; }
    .footer-tagline { font-size: 0.8rem; color: var(--muted); letter-spacing: 2px; text-transform: uppercase; margin-top: 0.3rem; }
    .footer-heading {
      font-size: 0.72rem; letter-spacing: 3px;
      text-transform: uppercase; color: var(--gold);
      margin-bottom: 1.2rem;
    }
    .footer-link {
      display: block; color: var(--muted); font-size: 0.85rem;
      text-decoration: none; margin-bottom: 0.6rem;
      transition: color 0.3s;
    }
    .footer-link:hover { color: var(--gold); padding-left: 4px; }
    .footer-social {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.12);
      display: inline-flex; align-items: center; justify-content: center;
      color: var(--muted); font-size: 0.8rem;
      transition: all 0.3s; text-decoration: none;
    }
    .footer-social:hover { border-color: var(--gold); color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      margin-top: 3rem; padding-top: 1.5rem;
      font-size: 0.78rem; color: var(--muted);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes pulse {
      0%, 100% { opacity: 0.4; } 50% { opacity: 1; }
    }
    @keyframes scrollLeft {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }

    /* ── BACK TO TOP ── */
    #backTop {
      position: fixed; bottom: 2rem; right: 2rem;
      width: 44px; height: 44px;
      background: var(--gold); color: var(--dark);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; z-index: 999;
      opacity: 0; transform: translateY(20px);
      transition: all 0.3s;
    }
    #backTop.show { opacity: 1; transform: translateY(0); }
    #backTop:hover { background: var(--gold-light); }

    /* Lightbox */
    #lightbox {
      display: none; position: fixed; inset: 0; z-index: 99999;
      background: rgba(0,0,0,0.95);
      align-items: center; justify-content: center;
    }
    #lightbox.open { display: flex; }
    #lightbox img { max-width: 90vw; max-height: 85vh; object-fit: contain; }
    #lightbox-close {
      position: absolute; top: 1.5rem; right: 1.5rem;
      color: #fff; font-size: 1.5rem; cursor: pointer; background: none; border: none;
    }

    /* responsive */
    @media (max-width: 768px) {
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid > :nth-child(1) { grid-column: span 1; grid-row: span 1; }
      .gallery-grid > :nth-child(4) { grid-column: span 1; }
      .slider-arrow { display: none; }
    }