:root {
      --sand: #f5ede0;
      --terra: #c7522a;
      --moss: #3a5a40;
      --sky: #1a3a5c;
      --gold: #d4a853;
      --cream: #fdf8f2;
      --dark: #0f1a12;
      --text: #2c2c2c;
      --light-terra: #f0d5c8;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAVBAR ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: transparent;
      transition: all 0.4s ease;
    }
    nav.scrolled {
      background: rgba(15,26,18,0.95);
      backdrop-filter: blur(12px);
      padding: 12px 60px;
      box-shadow: 0 2px 30px rgba(0,0,0,0.3);
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 900;
      color: #fff; letter-spacing: -0.5px;
      text-decoration: none;
    }
    .logo span { color: var(--gold); }
    .nav-links {
      display: flex; gap: 36px; list-style: none;
    }
    .nav-links a {
      color: rgba(255,255,255,0.85);
      text-decoration: none; font-size: 0.9rem;
      font-weight: 500; letter-spacing: 0.3px;
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute;
      bottom: -3px; left: 0; width: 0; height: 1.5px;
      background: var(--gold); transition: width 0.3s;
    }
    .nav-links a:hover { color: var(--gold); }
    .nav-links a:hover::after { width: 100%; }
    .nav-cta {
      background: var(--terra); color: #fff !important;
      padding: 9px 22px; border-radius: 50px;
      font-weight: 600 !important;
      transition: background 0.3s, transform 0.2s !important;
    }
    .nav-cta:hover { background: #a8411d !important; transform: translateY(-1px); }
    .nav-cta::after { display: none !important; }
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      cursor: pointer; padding: 5px;
    }
    .hamburger span {
      width: 24px; height: 2px; background: #fff;
      border-radius: 2px; transition: all 0.3s;
    }

    /* ── HERO ── */
    #hero {
      height: 100vh; position: relative;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, #0f2a1a 0%, #1a3a5c 50%, #2a1a0f 100%);
    }
    .hero-bg::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(212,168,83,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(199,82,42,0.2) 0%, transparent 60%);
    }
    .hero-pattern {
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center; padding: 0 20px;
      max-width: 900px;
    }
    .hero-tag {
      display: inline-block;
      background: rgba(212,168,83,0.2);
      border: 1px solid rgba(212,168,83,0.4);
      color: var(--gold);
      padding: 6px 20px; border-radius: 50px;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 2px; text-transform: uppercase;
      margin-bottom: 24px;
      animation: fadeUp 0.8s ease 0.2s both;
    }
    .hero-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 8vw, 6rem);
      font-weight: 900; color: #fff;
      line-height: 1.05; margin-bottom: 24px;
      animation: fadeUp 0.8s ease 0.4s both;
    }
    .hero-title em { color: var(--gold); font-style: italic; }
    .hero-subtitle {
      font-size: 1.1rem; color: rgba(255,255,255,0.7);
      line-height: 1.7; max-width: 560px; margin: 0 auto 40px;
      animation: fadeUp 0.8s ease 0.6s both;
    }
    .hero-actions {
      display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
      animation: fadeUp 0.8s ease 0.8s both;
    }
    .btn-primary {
      background: var(--terra); color: #fff;
      padding: 14px 32px; border-radius: 50px;
      font-size: 0.95rem; font-weight: 600;
      text-decoration: none; display: inline-flex;
      align-items: center; gap: 8px;
      transition: all 0.3s; border: none; cursor: pointer;
      letter-spacing: 0.3px;
    }
    .btn-primary:hover { background: #a8411d; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(199,82,42,0.4); }
    .btn-secondary {
      background: transparent; color: #fff;
      padding: 14px 32px; border-radius: 50px;
      font-size: 0.95rem; font-weight: 600;
      text-decoration: none; display: inline-flex;
      align-items: center; gap: 8px;
      border: 1.5px solid rgba(255,255,255,0.4);
      transition: all 0.3s;
    }
    .btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
    .hero-scroll {
      position: absolute; bottom: 40px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.5); font-size: 0.75rem;
      letter-spacing: 1px; text-transform: uppercase;
      animation: fadeUp 1s ease 1.2s both;
    }
    .scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
      animation: scrollPulse 2s ease infinite;
    }
    .hero-stats {
      position: absolute; bottom: 60px; right: 60px;
      display: flex; gap: 40px;
      animation: fadeUp 0.8s ease 1s both;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: 'Playfair Display', serif;
      font-size: 2.2rem; font-weight: 900; color: #fff;
    }
    .stat-label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 1px; text-transform: uppercase; }

    /* ── SEARCH BAR ── */
    .search-section {
      background: #fff;
      padding: 0 60px;
      box-shadow: 0 4px 40px rgba(0,0,0,0.08);
    }
    .search-bar {
      max-width: 1000px; margin: 0 auto;
      display: flex; align-items: stretch;
      transform: translateY(-50%);
      background: #fff;
      border-radius: 16px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.15);
      overflow: hidden;
    }
    .search-field {
      flex: 1; padding: 24px 28px;
      border: none; outline: none;
      border-right: 1px solid #f0ede8;
    }
    .search-field label {
      display: block; font-size: 0.7rem;
      font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase; color: var(--terra);
      margin-bottom: 4px;
    }
    .search-field input, .search-field select {
      border: none; outline: none; width: 100%;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem; color: var(--text);
      background: transparent;
      cursor: pointer;
    }
    .search-field select option { color: var(--text); }
    .search-btn {
      background: var(--terra); color: #fff;
      border: none; padding: 0 36px;
      font-family: 'DM Sans', sans-serif;
      font-size: 1rem; font-weight: 600;
      cursor: pointer; transition: background 0.3s;
      display: flex; align-items: center; gap: 8px;
    }
    .search-btn:hover { background: #a8411d; }

    /* ── SECTIONS COMMON ── */
    section { padding: 100px 60px; }
    .section-tag {
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--terra); margin-bottom: 12px;
    }
    .section-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 900; color: var(--sky);
      line-height: 1.15; margin-bottom: 16px;
    }
    .section-sub {
      font-size: 1rem; color: #6b7a8d;
      line-height: 1.7; max-width: 520px;
    }
    .section-header {
      display: flex; justify-content: space-between;
      align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 20px;
    }

    /* ── FEATURED DESTINATIONS ── */
    #destinations { background: var(--cream); }
    .destinations-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr;
      grid-template-rows: 320px 280px;
      gap: 16px;
    }
    .dest-card {
      position: relative; border-radius: 20px;
      overflow: hidden; cursor: pointer;
      transition: transform 0.4s ease;
    }
    .dest-card:hover { transform: scale(1.02); }
    .dest-card:first-child { grid-row: span 2; }
    .dest-img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
    .dest-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 28px;
    }
    .dest-badge {
      display: inline-block; background: var(--gold);
      color: #fff; padding: 4px 12px;
      border-radius: 20px; font-size: 0.7rem;
      font-weight: 700; letter-spacing: 1px;
      text-transform: uppercase; margin-bottom: 10px;
      width: fit-content;
    }
    .dest-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; font-weight: 700;
      color: #fff; margin-bottom: 4px;
    }
    .dest-card:first-child .dest-name { font-size: 2.2rem; }
    .dest-meta {
      display: flex; align-items: center; gap: 12px;
      color: rgba(255,255,255,0.8); font-size: 0.82rem;
    }
    .dest-rating { color: var(--gold); font-weight: 700; }
    .dest-heart {
      position: absolute; top: 18px; right: 18px;
      background: rgba(255,255,255,0.15);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%; width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; transition: all 0.3s; font-size: 1rem;
      color: #fff;
    }
    .dest-heart:hover, .dest-heart.liked { background: rgba(199,82,42,0.8); }

    /* ── CATEGORIES ── */
    #categories { background: var(--sky); padding: 80px 60px; }
    #categories .section-title { color: #fff; }
    #categories .section-tag { color: var(--gold); }
    #categories .section-sub { color: rgba(255,255,255,0.6); }
    .categories-scroll {
      display: flex; gap: 20px; overflow-x: auto;
      padding-bottom: 10px; scrollbar-width: none;
    }
    .categories-scroll::-webkit-scrollbar { display: none; }
    .cat-card {
      flex: 0 0 200px; background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 32px 24px;
      text-align: center; cursor: pointer;
      transition: all 0.3s; color: #fff;
    }
    .cat-card:hover, .cat-card.active {
      background: var(--terra);
      border-color: var(--terra);
      transform: translateY(-4px);
    }
    .cat-icon { font-size: 2.5rem; margin-bottom: 14px; }
    .cat-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
    .cat-count { font-size: 0.8rem; opacity: 0.6; }

    /* ── PACKAGES ── */
    #packages { background: #fff; }
    .packages-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    }
    .pkg-card {
      border-radius: 24px; overflow: hidden;
      box-shadow: 0 4px 30px rgba(0,0,0,0.08);
      transition: all 0.4s; background: #fff;
      border: 1px solid #f0ede8;
    }
    .pkg-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
    .pkg-img-wrap { position: relative; height: 220px; overflow: hidden; }
    .pkg-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
    .pkg-card:hover .pkg-img { transform: scale(1.08); }
    .pkg-tag {
      position: absolute; top: 16px; left: 16px;
      background: var(--moss); color: #fff;
      padding: 5px 14px; border-radius: 20px;
      font-size: 0.72rem; font-weight: 700;
      letter-spacing: 1px; text-transform: uppercase;
    }
    .pkg-wishlist {
      position: absolute; top: 16px; right: 16px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%; width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 1rem;
      transition: all 0.3s;
    }
    .pkg-wishlist:hover { background: var(--terra); color: #fff; }
    .pkg-body { padding: 24px; }
    .pkg-loc {
      font-size: 0.78rem; color: var(--terra);
      font-weight: 600; letter-spacing: 1px;
      text-transform: uppercase; margin-bottom: 8px;
      display: flex; align-items: center; gap: 4px;
    }
    .pkg-name {
      font-family: 'Playfair Display', serif;
      font-size: 1.25rem; font-weight: 700;
      color: var(--sky); margin-bottom: 12px; line-height: 1.3;
    }
    .pkg-features {
      display: flex; gap: 16px; flex-wrap: wrap;
      margin-bottom: 18px;
    }
    .pkg-feat {
      font-size: 0.78rem; color: #6b7a8d;
      display: flex; align-items: center; gap: 4px;
    }
    .pkg-footer {
      display: flex; align-items: center;
      justify-content: space-between;
      padding-top: 18px;
      border-top: 1px solid #f0ede8;
    }
    .pkg-price { display: flex; flex-direction: column; }
    .pkg-price-from { font-size: 0.7rem; color: #9aa8b5; }
    .pkg-price-num {
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 900; color: var(--terra);
    }
    .pkg-price-per { font-size: 0.75rem; color: #9aa8b5; }
    .pkg-stars { color: var(--gold); font-size: 0.85rem; }
    .pkg-book {
      background: var(--terra); color: #fff;
      border: none; padding: 10px 22px;
      border-radius: 50px; font-weight: 600;
      font-size: 0.85rem; cursor: pointer;
      transition: all 0.3s; font-family: 'DM Sans', sans-serif;
    }
    .pkg-book:hover { background: #a8411d; transform: translateY(-1px); }

    /* ── HOW IT WORKS ── */
    #how-it-works { background: var(--sand); }
    .steps-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
      margin-top: 60px;
    }
    .step { text-align: center; }
    .step-num {
      width: 64px; height: 64px; border-radius: 50%;
      background: var(--terra); color: #fff;
      font-family: 'Playfair Display', serif;
      font-size: 1.5rem; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
    }
    .step-icon { font-size: 2rem; margin-bottom: 12px; }
    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.15rem; font-weight: 700;
      color: var(--sky); margin-bottom: 10px;
    }
    .step-desc { font-size: 0.88rem; color: #6b7a8d; line-height: 1.7; }
    .steps-connector {
      display: flex; align-items: center; justify-content: center;
      gap: 0; position: relative;
    }

    /* ── GALLERY ── */
    #gallery { background: #fff; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: 200px 200px;
      gap: 12px;
    }
    .gallery-item {
      border-radius: 12px; overflow: hidden;
      position: relative; cursor: pointer;
    }
    .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gallery-item:nth-child(4) { grid-column: span 2; }
    .gallery-img {
      width: 100%; height: 100%;
      object-fit: cover; transition: transform 0.5s;
    }
    .gallery-item:hover .gallery-img { transform: scale(1.05); }
    .gallery-overlay {
      position: absolute; inset: 0;
      background: rgba(0,0,0,0.4); opacity: 0;
      transition: opacity 0.3s;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 2rem;
    }
    .gallery-item:hover .gallery-overlay { opacity: 1; }

    /* ── TESTIMONIALS ── */
    #testimonials { background: var(--cream); }
    .testimonials-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
    }
    .testi-card {
      background: #fff; border-radius: 20px;
      padding: 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.06);
      transition: transform 0.3s;
    }
    .testi-card:hover { transform: translateY(-4px); }
    .testi-quote {
      font-size: 3rem; color: var(--gold);
      font-family: 'Playfair Display', serif;
      line-height: 1; margin-bottom: 12px;
    }
    .testi-text {
      font-size: 0.93rem; color: #5a6a78;
      line-height: 1.8; margin-bottom: 24px;
      font-style: italic;
    }
    .testi-author { display: flex; align-items: center; gap: 12px; }
    .testi-avatar {
      width: 48px; height: 48px; border-radius: 50%;
      object-fit: cover; border: 2px solid var(--gold);
    }
    .testi-name { font-weight: 700; color: var(--sky); font-size: 0.9rem; }
    .testi-meta { font-size: 0.78rem; color: #9aa8b5; }
    .testi-stars { color: var(--gold); font-size: 0.85rem; margin-top: 4px; }

    /* ── NEWSLETTER ── */
    #newsletter {
      background: linear-gradient(135deg, var(--moss) 0%, var(--sky) 100%);
      text-align: center; position: relative; overflow: hidden;
    }
    #newsletter::before {
      content: '';
      position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    #newsletter .section-title { color: #fff; }
    #newsletter .section-tag { color: var(--gold); }
    #newsletter .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto 40px; }
    .newsletter-form {
      display: flex; gap: 0; max-width: 520px;
      margin: 0 auto; border-radius: 50px; overflow: hidden;
      box-shadow: 0 8px 40px rgba(0,0,0,0.2);
    }
    .newsletter-input {
      flex: 1; padding: 16px 24px;
      border: none; outline: none;
      font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
    }
    .newsletter-btn {
      background: var(--terra); color: #fff;
      border: none; padding: 16px 28px;
      font-family: 'DM Sans', sans-serif;
      font-weight: 700; font-size: 0.9rem;
      cursor: pointer; transition: background 0.3s;
    }
    .newsletter-btn:hover { background: #a8411d; }

    /* ── CONTACT ── */
    #contact { background: #fff; }
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px;
    }
    .contact-info h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem; color: var(--sky); margin-bottom: 20px;
    }
    .contact-item {
      display: flex; align-items: flex-start; gap: 16px;
      margin-bottom: 24px;
    }
    .contact-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--light-terra);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem; flex-shrink: 0;
    }
    .contact-detail strong { display: block; color: var(--sky); font-weight: 700; margin-bottom: 2px; }
    .contact-detail span { color: #6b7a8d; font-size: 0.9rem; }
    .contact-form { display: flex; flex-direction: column; gap: 18px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: 0.8rem; font-weight: 700; color: var(--sky); letter-spacing: 0.5px; }
    .form-group input, .form-group textarea, .form-group select {
      padding: 12px 16px; border: 1.5px solid #e8e0d8;
      border-radius: 10px; outline: none;
      font-family: 'DM Sans', sans-serif; font-size: 0.92rem;
      transition: border-color 0.3s; background: #fafaf9;
      color: var(--text);
    }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
      border-color: var(--terra);
      background: #fff;
    }
    .form-group textarea { resize: vertical; min-height: 110px; }
    .form-submit {
      background: var(--terra); color: #fff;
      border: none; padding: 15px 32px; border-radius: 50px;
      font-family: 'DM Sans', sans-serif; font-weight: 700;
      font-size: 1rem; cursor: pointer;
      transition: all 0.3s; align-self: flex-start;
    }
    .form-submit:hover { background: #a8411d; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(199,82,42,0.3); }

    /* ── FOOTER ── */
    footer {
      background: var(--dark); color: rgba(255,255,255,0.7);
      padding: 80px 60px 40px;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px; margin-bottom: 60px;
    }
    .footer-brand .logo { display: block; margin-bottom: 16px; }
    .footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }
    .footer-socials { display: flex; gap: 12px; }
    .social-btn {
      width: 40px; height: 40px; border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7); text-decoration: none;
      transition: all 0.3s; font-size: 0.9rem;
    }
    .social-btn:hover { background: var(--terra); color: #fff; }
    .footer-col h4 {
      color: #fff; font-weight: 700; font-size: 0.9rem;
      letter-spacing: 0.5px; margin-bottom: 20px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-links a {
      color: rgba(255,255,255,0.6); text-decoration: none;
      font-size: 0.88rem; transition: color 0.3s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 32px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { font-size: 0.82rem; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.3s; }
    .footer-bottom-links a:hover { color: var(--gold); }

    /* ── MODAL ── */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 9999;
      background: rgba(0,0,0,0.6); backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      padding: 20px; opacity: 0; pointer-events: none;
      transition: opacity 0.3s;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .modal {
      background: #fff; border-radius: 24px;
      max-width: 560px; width: 100%;
      overflow: hidden;
      transform: translateY(20px); transition: transform 0.3s;
    }
    .modal-overlay.open .modal { transform: translateY(0); }
    .modal-img { height: 240px; object-fit: cover; width: 100%; }
    .modal-body { padding: 28px 32px; }
    .modal-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; color: var(--sky); margin-bottom: 8px;
    }
    .modal-meta { color: #6b7a8d; font-size: 0.88rem; margin-bottom: 16px; }
    .modal-desc { color: #5a6a78; line-height: 1.7; margin-bottom: 24px; font-size: 0.93rem; }
    .modal-actions { display: flex; gap: 12px; }
    .modal-close {
      position: absolute; top: 16px; right: 16px;
      background: rgba(255,255,255,0.9); border: none;
      border-radius: 50%; width: 36px; height: 36px;
      cursor: pointer; font-size: 1.1rem; display: flex;
      align-items: center; justify-content: center;
    }

    /* ── BACK TO TOP ── */
    #back-top {
      position: fixed; bottom: 30px; right: 30px;
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--terra); color: #fff;
      border: none; cursor: pointer; font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(199,82,42,0.4);
      opacity: 0; transform: translateY(20px);
      transition: all 0.3s; z-index: 500;
    }
    #back-top.visible { opacity: 1; transform: translateY(0); }
    #back-top:hover { transform: translateY(-3px); }

    /* ── TOAST ── */
    .toast {
      position: fixed; bottom: 30px; left: 50%;
      transform: translateX(-50%) translateY(80px);
      background: var(--dark); color: #fff;
      padding: 12px 24px; border-radius: 50px;
      font-size: 0.88rem; font-weight: 500;
      z-index: 9999; transition: transform 0.4s;
      white-space: nowrap;
    }
    .toast.show { transform: translateX(-50%) translateY(0); }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes scrollPulse {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      nav { padding: 16px 30px; }
      section { padding: 80px 30px; }
      .destinations-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .dest-card:first-child { grid-row: span 1; }
      .packages-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .hero-stats { display: none; }
      .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    }
    @media (max-width: 768px) {
      nav { padding: 14px 20px; }
      .nav-links { display: none; }
      .hamburger { display: flex; }
      /* Full screen overlay menu */
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(15,26,18,0.98);
        backdrop-filter: blur(16px);
        align-items: center; justify-content: center;
        gap: 36px; z-index: 9998;
        animation: menuFadeIn 0.3s ease;
      }
      .nav-links.open li { list-style: none; }
      .nav-links.open a {
        font-size: 1.6rem; font-weight: 700;
        color: rgba(255,255,255,0.9);
        letter-spacing: 1px;
      }
      .nav-links.open a:hover { color: var(--gold); }
      /* Hamburger → X animation */
      .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
      .hamburger.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
      .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
      section { padding: 70px 20px; }
      .search-bar { flex-direction: column; transform: translateY(-30px); }
      .search-field { border-right: none; border-bottom: 1px solid #f0ede8; padding: 16px 20px; }
      .search-btn { padding: 18px; justify-content: center; }
      .destinations-grid { grid-template-columns: 1fr; }
      .packages-grid { grid-template-columns: 1fr; }
      .steps-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gallery-item:nth-child(1) { grid-column: span 2; height: 200px; }
      .gallery-item:nth-child(4) { grid-column: span 1; }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; }
      .form-row { grid-template-columns: 1fr; }
      .section-header { flex-direction: column; align-items: flex-start; }
    }

    /* Menu fade in */
    @keyframes menuFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Close button for mobile menu */
    .menu-close-btn {
      position: fixed; top: 24px; right: 24px;
      z-index: 9999; background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%; width: 44px; height: 44px;
      display: none; align-items: center; justify-content: center;
      color: #fff; font-size: 1.3rem; cursor: pointer;
      transition: background 0.3s;
    }
    .menu-close-btn:hover { background: var(--terra); }
    .menu-open .menu-close-btn { display: flex; }

    /* Tablet fixes */
    @media (max-width: 900px) {
      .destinations-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 280px 280px 280px;
      }
      .dest-card:first-child { grid-row: span 2; }
      .steps-grid { grid-template-columns: repeat(2,1fr); gap:24px; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: 180px 180px 180px; }
      .gallery-item:nth-child(1) { grid-column: span 2; }
      .gallery-item:nth-child(4) { grid-column: span 1; }
    }

    /* Extra small phones */
    @media (max-width: 400px) {
      .hero-title { font-size: 2.4rem; }
      .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.85rem; }
      section { padding: 60px 16px; }
      .section-title { font-size: 1.8rem; }
      .newsletter-form { flex-direction: column; border-radius: 12px; }
      .newsletter-input { border-radius: 12px 12px 0 0; }
      .newsletter-btn { border-radius: 0 0 12px 12px; }
    }
