/* Amari Voyages Ltd — Main Stylesheet */

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

    :root {
      --ivory: #F4F8F2;
      --bark: #1A2E1A;
      --clay: #2E6B3E;
      --savanna: #7DBF6E;
      --moss: #3A5C2A;
      --dusk: #5A7A52;
      --mist: #E2EFE0;
      --gold: #8FBF40;
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'Jost', sans-serif;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--ivory);
      color: var(--bark);
      font-family: var(--font-body);
      font-weight: 300;
      overflow-x: hidden;
    }

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

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.6rem 4rem;
      transition: background 0.4s, padding 0.4s;
    }
    nav.scrolled {
      background: rgba(244,248,242,0.97);
      backdrop-filter: blur(10px);
      padding: 1rem 4rem;
      box-shadow: 0 1px 20px rgba(26,46,26,0.10);
    }
    .nav-logo {
      font-family: var(--font-display);
      font-size: 1.6rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      color: var(--ivory);
      text-decoration: none;
      transition: color 0.4s;
    }
    nav.scrolled .nav-logo span { color: var(--bark); }
    nav.scrolled .nav-logo { color: var(--bark); }

    .nav-links { display: flex; gap: 2.4rem; list-style: none; }
    .nav-links a {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(249,244,236,0.85);
      text-decoration: none;
      transition: color 0.3s;
    }
    nav.scrolled .nav-links a { color: var(--dusk); }
    .nav-links a:hover { color: var(--savanna) !important; }

    .nav-cta {
      font-size: 0.75rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      padding: 0.7rem 1.6rem;
      border: 1px solid rgba(249,244,236,0.6);
      color: var(--ivory);
      text-decoration: none;
      transition: all 0.3s;
    }
    nav.scrolled .nav-cta {
      border-color: var(--clay);
      color: var(--clay);
    }
    .nav-cta:hover {
      background: var(--clay) !important;
      border-color: var(--clay) !important;
      color: var(--ivory) !important;
    }

    .hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      background: transparent; border: 0; padding: 0;
    }
    .hamburger span { width: 24px; height: 1.5px; background: var(--ivory); transition: all 0.3s; }
    nav.scrolled .hamburger span { background: var(--bark); }

    /* ─── HERO ─── */
    #hero,
    .hero {
      position: relative;
      height: 100vh;
      min-height: 700px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden;
      background:
        linear-gradient(to bottom, rgba(7, 20, 8, 0.82) 0%, rgba(7, 20, 8, 0.56) 44%, rgba(7, 20, 8, 0.9) 100%),
        radial-gradient(circle at center, rgba(6,18,8,0.46) 0%, rgba(6,18,8,0.18) 42%, rgba(6,18,8,0) 70%),
        url('/images/tours/pearl-grand-tour.jpg') center/cover no-repeat;
    }

    .hero-bg {
      position: absolute; inset: 0;
      background:
        linear-gradient(to bottom, rgba(10,28,10,0.58) 0%, rgba(8,24,10,0.46) 48%, rgba(12,34,14,0.82) 100%),
        radial-gradient(circle at center, rgba(6,18,8,0.42) 0%, rgba(6,18,8,0.18) 38%, rgba(6,18,8,0) 66%),
        url('https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1600&q=80') center/cover no-repeat;
      transform: scale(1.05);
      animation: heroZoom 18s ease-in-out infinite alternate;
    }
    @keyframes heroZoom {
      from { transform: scale(1.05); }
      to   { transform: scale(1.12); }
    }

    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      padding: 0 2rem;
      animation: fadeUp 1.2s ease both;
    }
    .hero-content::before {
      content: '';
      position: absolute;
      inset: -2rem -3rem;
      z-index: -1;
      background: radial-gradient(ellipse at center, rgba(3, 12, 4, 0.64) 0%, rgba(3, 12, 4, 0.34) 44%, rgba(3, 12, 4, 0) 72%);
      pointer-events: none;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #B7E6A3;
      margin-bottom: 1.4rem;
      text-shadow: 0 2px 12px rgba(0,0,0,0.45);
      animation: fadeUp 1.2s 0.2s ease both;
    }

    .hero h1,
    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(3rem, 6.8vw, 5.9rem);
      font-weight: 300;
      line-height: 1.08;
      color: #fff;
      margin-bottom: 1.6rem;
      max-width: 980px;
      text-wrap: balance;
      text-shadow: 0 4px 24px rgba(0,0,0,0.78);
      animation: fadeUp 1.2s 0.4s ease both;
    }
    .hero h1 {
      overflow-wrap: anywhere;
    }
    .hero-title em {
      font-style: italic;
      color: var(--savanna);
    }

    .hero-subtitle,
    .hero-sub {
      font-size: 1rem;
      font-weight: 400;
      color: #fff;
      max-width: 480px;
      margin: 0 auto 2.4rem;
      line-height: 1.7;
      text-shadow: 0 3px 16px rgba(0,0,0,0.78);
      animation: fadeUp 1.2s 0.6s ease both;
    }

    .hero-actions,
    .hero-btns {
      display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
      animation: fadeUp 0.8s 0.2s ease both;
    }

    .hero-trust {
      display: flex;
      justify-content: center;
      gap: 0.6rem;
      flex-wrap: wrap;
      margin-top: 1.2rem;
      animation: fadeUp 0.8s 0.3s ease both;
    }
    .hero-trust span {
      padding: 0.42rem 0.7rem;
      border: 1px solid rgba(249,244,236,0.22);
      background: rgba(8,24,10,0.26);
      color: rgba(249,244,236,0.82);
      font-size: 0.62rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      backdrop-filter: blur(4px);
    }

    .btn-primary {
      padding: 1rem 2.4rem;
      background: var(--clay);
      color: var(--ivory);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-primary:hover { background: #1e5430; transform: translateY(-2px); }

    .btn-outline {
      padding: 1rem 2.4rem;
      border: 1px solid rgba(249,244,236,0.55);
      background: rgba(8,24,10,0.28);
      backdrop-filter: blur(4px);
      color: var(--ivory);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      transition: all 0.3s;
    }
    .btn-outline:hover { background: rgba(249,244,236,0.1); transform: translateY(-2px); }

    .hero-scroll {
      position: absolute; bottom: 2.4rem; left: 50%; transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      color: rgba(249,244,236,0.6);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      animation: fadeUp 1.2s 1.2s ease both;
    }
    .scroll-line {
      width: 1px; height: 48px;
      background: linear-gradient(to bottom, transparent, rgba(249,244,236,0.5));
      animation: scrollPulse 2s ease-in-out infinite;
    }
    @keyframes scrollPulse {
      0%,100% { opacity: 0.4; }
      50% { opacity: 1; }
    }

    /* ─── STRIP ─── */
    .strip {
      background: var(--moss);
      padding: 1.4rem 4rem;
      display: flex; align-items: center; justify-content: center; gap: 3rem;
      flex-wrap: wrap;
    }
    .strip-item {
      display: flex; align-items: center; gap: 0.8rem;
      color: var(--ivory);
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
    .strip-item svg { opacity: 0.85; }

    /* ─── SECTION LAYOUT ─── */
    section { padding: 7rem 4rem; }

    .section-label {
      font-size: 0.7rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--clay);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3.4rem);
      font-weight: 300;
      line-height: 1.18;
      color: var(--bark);
    }
    .section-title em { font-style: italic; color: var(--clay); }

    /* ─── ABOUT ─── */
    #about {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .about-text p {
      color: var(--dusk);
      line-height: 1.85;
      margin-bottom: 1.2rem;
      font-size: 0.95rem;
    }

    .about-stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 2rem;
      margin-top: 2.8rem;
    }
    .stat-card {
      padding: 1.6rem;
      border-left: 3px solid var(--savanna);
    }
    .stat-num {
      font-family: var(--font-display);
      font-size: 3rem;
      font-weight: 300;
      color: var(--clay);
      line-height: 1;
    }
    .stat-label { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dusk); margin-top: 0.4rem; }

    .about-image {
      position: relative;
    }
    .about-img,
    .about-content {
      min-width: 0;
    }
    .about-img img {
      width: 100%;
      aspect-ratio: 4/5;
      object-fit: cover;
      display: block;
    }
    .about-image img {
      width: 100%; aspect-ratio: 4/5; object-fit: cover;
      display: block;
    }
    .about-image::before {
      content: '';
      position: absolute;
      top: -1.5rem; right: -1.5rem;
      width: 60%; height: 60%;
      border: 2px solid var(--savanna);
      z-index: -1;
    }
    .about-image::after {
      content: '';
      position: absolute;
      bottom: -1.5rem; left: -1.5rem;
      width: 50%; height: 40%;
      background: var(--mist);
      z-index: -1;
    }

    /* ─── DESTINATIONS ─── */
    #destinations {
      background: #132813;
      max-width: 100%;
      padding: 7rem 4rem;
    }
    #destinations .section-label { color: var(--savanna); }
    #destinations .section-title { color: var(--ivory); }
    #destinations .section-title em { color: var(--savanna); }

    .dest-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem;
      max-width: 1200px; margin-left: auto; margin-right: auto;
    }
    .dest-link {
      font-size: 0.75rem; letter-spacing: 0.16em; text-transform: uppercase;
      color: var(--savanna); text-decoration: none;
      border-bottom: 1px solid var(--savanna); padding-bottom: 2px;
    }

    .dest-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1200px; margin: 0 auto;
    }
    .dest-card {
      position: relative; overflow: hidden; cursor: pointer;
      background: #0f2410;
      border-radius: 8px;
    }
    .dest-card:first-child { grid-row: span 2; }

    .dest-card img {
      width: 100%;
      height: 100%;
      min-height: 280px;
      object-fit: cover;
      display: block;
      transition: transform 0.6s ease;
    }
    .dest-card:first-child img { min-height: 580px; }
    .dest-card:hover img { transform: scale(1.06); }

    .dest-overlay {
      position: absolute; inset: 0;
      background:
        linear-gradient(to top, rgba(5, 13, 6, 0.98) 0%, rgba(5, 13, 6, 0.88) 42%, rgba(5, 13, 6, 0.32) 78%, rgba(5, 13, 6, 0.14) 100%),
        linear-gradient(to right, rgba(5, 13, 6, 0.5) 0%, rgba(5, 13, 6, 0.08) 64%);
      display: flex; flex-direction: column; justify-content: flex-end;
      padding: 1.8rem;
    }
    .dest-tag,
    .dest-overlay span {
      font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: #B8E3A8; margin-bottom: 0.4rem;
      font-weight: 500;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
    }
    .dest-name,
    .dest-overlay h3 {
      font-family: var(--font-display);
      font-size: 1.8rem; font-weight: 500;
      color: var(--ivory); line-height: 1.15;
      overflow-wrap: anywhere;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78);
    }
    .dest-card:first-child .dest-name,
    .dest-card:first-child .dest-overlay h3 { font-size: 2.4rem; }
    .dest-desc,
    .dest-overlay p {
      font-size: 0.84rem; color: rgba(244,248,242,0.9);
      margin-top: 0.5rem; line-height: 1.6;
      max-width: 34rem;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
    }

    /* ─── EXPERIENCES ─── */
    #experiences {
      max-width: 1200px; margin: 0 auto;
    }
    #experiences header { text-align: center; margin-bottom: 4rem; }

    .exp-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
    }
    .exp-card {
      text-align: center; padding: 2.4rem 1.6rem;
      border: 1px solid var(--mist);
      transition: border-color 0.3s, transform 0.3s;
    }
    .exp-card:hover { border-color: var(--savanna); transform: translateY(-6px); }
    .exp-icon {
      width: 56px; height: 56px; margin: 0 auto 1.4rem;
      background: var(--mist); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
    }
    .exp-name {
      font-family: var(--font-display); font-size: 1.3rem;
      font-weight: 400; color: var(--bark); margin-bottom: 0.7rem;
    }
    .exp-text { font-size: 0.85rem; color: var(--dusk); line-height: 1.7; }

    /* ─── TOURS ─── */
    #tours { background: var(--mist); max-width: 100%; padding: 7rem 4rem; }
    #tours header { max-width: 1200px; margin: 0 auto 3.5rem; }

    .tours-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
      max-width: 1200px; margin: 0 auto;
    }
    .tour-card {
      background: var(--ivory); overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .tour-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(59,42,26,0.12); }

    .tour-img { position: relative; overflow: hidden; }
    .tour-img img { width: 100%; height: 240px; object-fit: cover; display: block; transition: transform 0.6s; }
    .tour-card:hover .tour-img img { transform: scale(1.06); }
    .tour-badge {
      position: absolute; top: 1rem; left: 1rem;
      background: var(--clay); color: var(--ivory);
      font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
      padding: 0.35rem 0.75rem;
    }

    .tour-body { padding: 1.8rem; }
    .tour-meta {
      display: flex; gap: 1.2rem; margin-bottom: 0.8rem;
      font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dusk);
    }
    .tour-meta span { display: flex; align-items: center; gap: 0.3rem; }
    .tour-title { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--bark); margin-bottom: 0.8rem; }
    .tour-desc { font-size: 0.85rem; color: var(--dusk); line-height: 1.7; margin-bottom: 1.4rem; }
    .tour-footer { display: flex; align-items: center; justify-content: space-between; }
    .tour-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--clay); }
    .tour-price span { font-size: 0.72rem; font-family: var(--font-body); color: var(--dusk); }
    .btn-sm {
      padding: 0.65rem 1.4rem; background: var(--bark);
      color: var(--ivory); font-size: 0.72rem;
      letter-spacing: 0.14em; text-transform: uppercase;
      text-decoration: none; transition: background 0.3s;
    }
    .btn-sm:hover { background: var(--clay); }

    /* ─── TESTIMONIALS ─── */
    #testimonials { max-width: 1200px; margin: 0 auto; text-align: center; }
    #testimonials header { margin-bottom: 3.5rem; }

    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .testi-card {
      padding: 2.4rem;
      border-top: 3px solid var(--savanna);
      background: var(--mist);
      text-align: left;
    }
    .testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 3px; }
    .testi-text { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; color: var(--bark); line-height: 1.7; margin-bottom: 1.4rem; }
    .testi-author { display: flex; flex-direction: column; gap: 0.25rem; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dusk); }
    .testi-author a { color: inherit; text-decoration: none; }
    .testi-author a:hover { color: var(--clay); }
    .testi-country { color: var(--clay); }
    .google-rating-strip {
      align-items: center;
      display: inline-flex;
      gap: 0.75rem;
      margin-top: 1.3rem;
      padding: 0.75rem 1rem;
      background: #fff;
      border: 1px solid rgba(59, 42, 26, 0.12);
      border-radius: 8px;
      box-shadow: 0 10px 28px rgba(59, 42, 26, 0.08);
      color: var(--dusk);
      font-size: 0.82rem;
    }
    .google-rating-strip strong {
      color: var(--bark);
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 500;
      line-height: 1;
    }
    .google-rating-strip .testi-stars { margin: 0; }
    .google-review-card {
      background: #fff;
      border: 1px solid rgba(59, 42, 26, 0.1);
      border-top: 3px solid var(--gold);
    }
    .google-attribution {
      align-items: center;
      display: flex;
      justify-content: center;
      gap: 0.8rem;
      margin-top: 1.5rem;
      color: #5e5e5e;
      font-family: Roboto, var(--font-body), sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0;
    }
    .google-attribution span {
      color: #5e5e5e;
      font-weight: 400;
    }
    .google-attribution a {
      color: var(--clay);
      text-decoration: none;
      border-bottom: 1px solid rgba(46, 107, 62, 0.35);
    }
    .google-review-note {
      color: var(--dusk);
      font-size: 0.85rem;
      margin-top: 1.5rem;
      text-align: center;
    }

    /* ─── GALLERY ─── */
    #gallery { padding: 7rem 4rem; background: #1A3A1A; }
    #gallery .section-label { color: var(--savanna); }
    #gallery .section-title { color: var(--ivory); }
    #gallery header { text-align: center; margin-bottom: 3.5rem; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      grid-template-rows: 220px 220px;
      gap: 0.6rem;
      max-width: 1200px; margin: 0 auto;
    }
    .gal-item { overflow: hidden; }
    .gal-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .gal-item:nth-child(4) { grid-column: span 2; }
    .gal-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
    .gal-item:hover img { transform: scale(1.08); }

    /* ─── CONTACT ─── */
    #contact {
      background: var(--ivory);
      display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start;
      max-width: 1200px; margin: 0 auto;
    }
    .contact-info .section-title { margin-bottom: 1.8rem; }
    .contact-info p { color: var(--dusk); line-height: 1.85; margin-bottom: 2rem; font-size: 0.95rem; }

    .contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
    .contact-row { display: flex; align-items: flex-start; gap: 1rem; }
    .contact-icon {
      width: 40px; height: 40px; flex-shrink: 0;
      background: var(--mist); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--clay);
    }
    .contact-label { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--dusk); }
    .contact-val { font-size: 0.9rem; color: var(--bark); margin-top: 0.2rem; }

    .contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
    .field label {
      display: block; font-size: 0.68rem; letter-spacing: 0.18em;
      text-transform: uppercase; color: var(--dusk); margin-bottom: 0.5rem;
    }
    .field input, .field select, .field textarea {
      width: 100%; padding: 0.85rem 1rem;
      border: 1px solid #DDD8CE;
      background: var(--ivory);
      color: var(--bark);
      font-family: var(--font-body);
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.3s;
    }
    .field input:focus, .field select:focus, .field textarea:focus { border-color: var(--clay); }
    .field textarea { resize: vertical; min-height: 120px; }
    .form-submit {
      padding: 1rem 2.4rem;
      background: var(--clay); color: var(--ivory);
      border: none; cursor: pointer;
      font-family: var(--font-body);
      font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
      transition: background 0.3s; align-self: flex-start;
    }
    .form-submit:hover { background: #1e5430; }

    /* ─── FOOTER ─── */
    footer {
      background: #0E1F0E;
      padding: 5rem 4rem 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
      max-width: 1200px; margin: 0 auto;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(249,244,236,0.1);
    }
    .footer-brand p { color: rgba(249,244,236,0.5); font-size: 0.85rem; line-height: 1.8; margin-top: 1rem; margin-bottom: 1.6rem; }
    .footer-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 600; color: var(--ivory); }

    .social-links { display: flex; gap: 0.8rem; }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(249,244,236,0.2);
      display: flex; align-items: center; justify-content: center;
      color: rgba(249,244,236,0.6);
      text-decoration: none; font-size: 0.85rem;
      transition: all 0.3s;
    }
    .social-link:hover { border-color: var(--savanna); color: var(--savanna); }

    .footer-col h4 {
      font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
      color: var(--savanna); margin-bottom: 1.4rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
    .footer-col a { color: rgba(249,244,236,0.55); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
    .footer-col a:hover { color: var(--ivory); }

    .footer-bottom {
      max-width: 1200px; margin: 2rem auto 0;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
      font-size: 0.75rem; color: rgba(249,244,236,0.3);
    }

    /* ─── MOBILE ─── */
    @media (max-width: 960px) {
      nav { padding: 1.4rem 2rem; }
      nav.scrolled { padding: 0.9rem 2rem; }
      .nav-links, .nav-cta { display: none; }
      nav .social-links { margin-left: auto; }
      .hamburger { display: flex; }

      #about { grid-template-columns: 1fr; gap: 3rem; }
      .about-image { order: -1; }
      .dest-grid { grid-template-columns: 1fr 1fr; }
      .dest-card:first-child { grid-column: span 2; }
      .exp-grid { grid-template-columns: repeat(2, 1fr); }
      .tours-grid { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      #contact { grid-template-columns: 1fr; gap: 3rem; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; }
      .gal-item:nth-child(1) { grid-column: span 2; }
      .gal-item:nth-child(4) { grid-column: span 1; }
      section { padding: 5rem 2rem; }
      #destinations, #tours, #gallery { padding: 5rem 2rem; }
    }

    @media (max-width: 600px) {
      nav { padding: 1rem 1rem; }
      nav.scrolled { padding: 0.75rem 1rem; }
      .nav-logo img { width: 38px !important; height: 38px !important; }
      .nav-logo span { font-size: 1.1rem !important; line-height: 1.05; max-width: 92px; }
      nav .social-links { gap: 0.45rem; margin-right: 0.25rem !important; }
      nav .social-icon { width: 30px; height: 30px; }
      nav .social-icon svg { width: 15px; height: 15px; }
      #hero,
      .hero {
        min-height: 0;
        height: auto;
        min-height: 100svh;
        align-items: flex-start;
        padding: 8.8rem 0 4rem;
      }
      .hero-bg { background-position: center; }
      .hero-content {
        width: 100%;
        padding: 0 1.2rem;
      }
      .hero-eyebrow {
        font-size: 0.62rem;
        letter-spacing: 0.18em;
        margin-bottom: 0.75rem;
      }
      .hero h1,
      .hero-title {
        font-size: 3rem;
        line-height: 1.04;
        margin-bottom: 1rem;
      }
      .hero-subtitle,
      .hero-sub {
        font-size: 0.94rem;
        line-height: 1.55;
        margin-bottom: 1.25rem;
      }
      .hero-actions,
      .hero-btns {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0.7rem;
        max-width: 280px;
        margin: 0 auto;
      }
      .hero-trust {
        max-width: 320px;
        margin: 0.95rem auto 0;
        gap: 0.45rem;
      }
      .hero-trust span {
        font-size: 0.56rem;
        letter-spacing: 0.08em;
        padding: 0.34rem 0.5rem;
      }
      .btn-primary,
      .btn-outline {
        width: 100%;
        padding: 0.9rem 1rem;
        text-align: center;
      }
      .hero-scroll { display: none; }
      section { padding: 4rem 1.25rem; }
      #destinations, #tours, #gallery { padding: 4rem 1.25rem; }
      .dest-grid { grid-template-columns: 1fr; }
      .dest-card:first-child { grid-column: span 1; }
      .exp-grid { grid-template-columns: 1fr; }
      .tours-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
      .gal-item:nth-child(1) { grid-column: span 2; }
      .strip { padding: 1.2rem 1.5rem; gap: 1.5rem; }
      .wa-float {
        width: 50px;
        height: 50px;
        right: 1.2rem;
        bottom: 1.2rem;
      }
    }

    /* ─── MOBILE MENU ─── */
    .mobile-menu {
      display: none;
      position: fixed; inset: 0; z-index: 250;
      background: rgba(26,46,26,0.98);
      flex-direction: column;
      align-items: center; justify-content: center; gap: 2.2rem;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-family: var(--font-display); font-size: 2.2rem;
      font-weight: 300; color: var(--ivory); text-decoration: none;
      transition: color 0.3s;
    }
    .mobile-menu a:hover { color: var(--savanna); }
    .mobile-close {
      position: absolute; top: 2rem; right: 2rem;
      background: none; border: none; cursor: pointer;
      color: var(--ivory); font-size: 1.4rem;
    }

    /* ─── FADE-IN ON SCROLL ─── */
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ─── INTL IMAGE HOVER ─── */
    .intl-wrap:hover .intl-img { transform: scale(1.06); }

    /* ─── WHATSAPP FLOAT ─── */
    .wa-float {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 200;
      width: 56px; height: 56px; border-radius: 50%;
      background: #25D366;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.45);
      text-decoration: none;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); }
    .wa-float svg { width: 28px; height: 28px; fill: white; }

    /* ─── SERVICES + INTL RESPONSIVE ─── */
    @media (max-width: 960px) {
      .svc-grid-4 { grid-template-columns: repeat(2,1fr) !important; }
      .intl-grid-3 { grid-template-columns: 1fr 1fr !important; }
      .intl-wrap { height: 300px !important; }
    }
    @media (max-width: 600px) {
      .svc-grid-4 { grid-template-columns: 1fr !important; }
      .intl-grid-3 { grid-template-columns: 1fr !important; }
    }

    /* ─── SOCIAL ICONS ─── */
    .social-links { display: flex; gap: 0.75rem; align-items: center; }
    .social-icon {
      display: flex; align-items: center; justify-content: center;
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }
    .social-icon:hover { background: var(--clay); border-color: var(--clay); color: var(--ivory); }
    nav.scrolled .social-icon { border-color: rgba(0,0,0,0.2); color: var(--bark); }
    nav.scrolled .social-icon:hover { background: var(--clay); border-color: var(--clay); color: var(--ivory); }
    .footer-socials { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
    .footer-socials .social-icon { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }
    .footer-socials .social-icon:hover { background: var(--clay); border-color: var(--clay); color: var(--ivory); }
