
    :root {
      --navy: #0f2347;
      --navy-mid: #162d58;
      --navy-light: #122050;
      --gold: #c8972a;
      --gold-light: #f5c96e;
      --gold-dim: rgba(200,151,42,0.15);
      --cream: #f5f0e8;
      --white: #ffffff;
      --gray: #7a7f9a;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--navy);
      color: var(--white);
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position:fixed; top:0; left:0; right:0; z-index:1000;
      padding:1.4rem 4rem;
      display:flex; align-items:center; justify-content:space-between;
      background:linear-gradient(to bottom,rgba(15,35,71,.96) 0%,transparent 100%);
      transition:background .3s, padding .3s;
    }
    nav.scrolled { background:rgba(15,35,71,.97); backdrop-filter:blur(16px); padding:1rem 4rem; border-bottom:1px solid rgba(200,151,42,.1); }
    .nav-logo { text-decoration:none; display:flex; align-items:center; }
    .nav-logo img { height:50px; width:auto; object-fit:contain; }
    .nav-links { display:flex; gap:2.5rem; list-style:none; }
    .nav-links a { color:rgba(255,255,255,.75); text-decoration:none; font-size:.72rem; font-weight:500; letter-spacing:.15em; text-transform:uppercase; transition:color .2s; }
    .nav-links a:hover { color:var(--gold-light); }
    .nav-cta { background:transparent; border:1px solid var(--gold); color:var(--gold-light); padding:.6rem 1.5rem; font-family:'Montserrat',sans-serif; font-size:.68rem; font-weight:500; letter-spacing:.14em; text-transform:uppercase; cursor:pointer; transition:all .3s; text-decoration:none; }
    .nav-cta:hover { background:var(--gold); color:var(--navy); }

    /* ── HERO ── */
    .hero { height:100vh; position:relative; overflow:hidden; display:flex; align-items:center; justify-content:center; }
    #three-canvas { position:absolute; inset:0; z-index:1; }
    .hero-bg {
      position:absolute; inset:0; z-index:0;
      background:url('https://images.pexels.com/photos/19035808/pexels-photo-19035808.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover no-repeat;
    }
    .hero-overlay { position:absolute; inset:0; z-index:2; background:linear-gradient(135deg,rgba(15,35,71,.82) 0%,rgba(15,35,71,.55) 55%,rgba(15,35,71,.78) 100%); }
    .hero-content { position:relative; z-index:3; text-align:center; max-width:920px; padding:2rem; }
    .hero-eyebrow { font-size:.65rem; font-weight:500; letter-spacing:.4em; text-transform:uppercase; color:var(--gold); margin-bottom:1.5rem; opacity:0; animation:fadeUp .8s .3s forwards; }
    .hero-title { font-family:'Cormorant Garamond',serif; font-size:clamp(3.2rem,8.5vw,7.5rem); font-weight:300; line-height:1.04; color:var(--white); margin-bottom:1.5rem; opacity:0; animation:fadeUp .9s .5s forwards; }
    .hero-title em { font-style:italic; color:var(--gold-light); }
    .hero-title .line3d {
      display:inline-block;
      text-shadow: 0 2px 0 rgba(200,151,42,.2), 0 4px 0 rgba(200,151,42,.1), 0 6px 12px rgba(0,0,0,.5);
    }
    .hero-sub { font-size:.85rem; font-weight:300; letter-spacing:.07em; color:rgba(255,255,255,.72); max-width:520px; margin:0 auto 3rem; line-height:1.85; opacity:0; animation:fadeUp .9s .7s forwards; }
    .hero-btns { display:flex; gap:1.5rem; justify-content:center; flex-wrap:wrap; opacity:0; animation:fadeUp .9s .9s forwards; }
    .btn-primary { background:var(--gold); color:var(--navy); padding:1rem 2.5rem; font-size:.72rem; font-weight:600; letter-spacing:.15em; text-transform:uppercase; text-decoration:none; transition:all .3s; cursor:pointer; clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px)); }
    .btn-primary:hover { background:var(--gold-light); transform:translateY(-3px); box-shadow:0 15px 40px rgba(200,151,42,.35); }
    .btn-secondary { border:1px solid rgba(255,255,255,.35); color:var(--white); padding:1rem 2.5rem; font-size:.72rem; font-weight:400; letter-spacing:.15em; text-transform:uppercase; text-decoration:none; transition:all .3s; cursor:pointer; }
    .btn-secondary:hover { border-color:var(--gold); color:var(--gold-light); }
    .hero-scroll { position:absolute; bottom:2.5rem; left:50%; transform:translateX(-50%); z-index:3; display:flex; flex-direction:column; align-items:center; gap:.5rem; opacity:.6; }
    .hero-scroll span { font-size:.58rem; letter-spacing:.28em; text-transform:uppercase; }
    .scroll-line { width:1px; height:50px; background:linear-gradient(to bottom,var(--gold),transparent); animation:scrollPulse 1.6s ease-in-out infinite; }

    /* Floating 3D gems in hero */
    .hero-gem {
      position:absolute; z-index:3; pointer-events:none;
      opacity:0; animation:gemFloat 3s ease-out forwards;
    }
    .hero-gem svg { filter:drop-shadow(0 0 8px rgba(200,151,42,.6)); }

    @keyframes fadeUp { from{opacity:0;transform:translateY(28px)} to{opacity:1;transform:translateY(0)} }
    @keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:1} }
    @keyframes gemFloat { 0%{opacity:0;transform:translateY(20px) rotate(0deg)} 100%{opacity:.7;transform:translateY(0) rotate(15deg)} }

    /* ── SECTION COMMON ── */
    section { padding:7rem 4rem; }
    .section-label { font-size:.62rem; font-weight:500; letter-spacing:.38em; text-transform:uppercase; color:var(--gold); margin-bottom:1rem; }
    .section-title { font-family:'Cormorant Garamond',serif; font-size:clamp(2.2rem,5vw,4rem); font-weight:300; line-height:1.12; color:var(--white); }
    .section-title em { font-style:italic; color:var(--gold-light); }
    .gold-divider { width:60px; height:1px; background:var(--gold); margin:1.5rem 0; }

    /* ── ABOUT ── */
    .about { background:linear-gradient(160deg,var(--navy-mid) 0%,var(--navy) 100%); }
    .about-inner { display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; max-width:1200px; margin:0 auto; }
    .about-text p { font-size:.88rem; line-height:1.95; color:rgba(255,255,255,.72); margin-bottom:1.2rem; }
    .about-stats { display:flex; gap:3rem; margin-top:2.5rem; }
    .stat-num { font-family:'Cormorant Garamond',serif; font-size:3rem; font-weight:300; color:var(--gold-light); line-height:1; }
    .stat-label { font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gray); margin-top:.3rem; }
    .memberships { margin-top:2.5rem; }
    .memberships-label { font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; color:var(--gray); margin-bottom:1rem; }
    .badges { display:flex; gap:1.5rem; flex-wrap:wrap; }
    .badge { border:1px solid rgba(200,151,42,.3); padding:.9rem 1.4rem; display:flex; flex-direction:column; align-items:center; gap:.25rem; transition:all .3s; min-width:90px; background:rgba(200,151,42,.04); }
    .badge:hover { border-color:var(--gold); background:rgba(200,151,42,.1); transform:translateY(-3px); }
    .badge-acronym { font-family:'Cormorant Garamond',serif; font-size:1.6rem; font-weight:600; color:var(--gold-light); }
    .badge-full { font-size:.52rem; letter-spacing:.1em; text-transform:uppercase; color:var(--gray); text-align:center; line-height:1.5; }
    .about-image { position:relative; }
    .about-image img { width:100%; height:560px; object-fit:cover; display:block; }
    .about-image::before { content:''; position:absolute; top:-20px; left:-20px; right:20px; bottom:20px; border:1px solid rgba(200,151,42,.2); z-index:-1; }

    /* ── FLOWING GALLERY ── */
    .gallery-section { background:var(--navy-mid); padding:5rem 0; overflow:hidden; }
    .gallery-header { text-align:center; padding:0 4rem 4rem; }
    .gallery-track-wrap { overflow:hidden; margin-bottom:1.5rem; }
    .gallery-track { display:flex; gap:1.5rem; width:max-content; }
    .gallery-track.forward { animation:scrollLeft 35s linear infinite; }
    .gallery-track.reverse { animation:scrollRight 40s linear infinite; }
    @keyframes scrollLeft { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
    @keyframes scrollRight { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
    .gallery-track-wrap:hover .gallery-track { animation-play-state:paused; }
    .gallery-card { width:380px; height:260px; flex-shrink:0; overflow:hidden; }
    .gallery-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .7s ease; }
    .gallery-card:hover img { transform:scale(1.1); }

    /* ── SERVICES — FLOWING 3D TILT ── */
    .services { background:var(--navy); overflow:hidden; }
    .services-inner { max-width:100%; }
    .services-header { max-width:1220px; margin:0 auto; padding:0 4rem; margin-bottom:4rem; }
    .services-flow-wrap { overflow:hidden; padding-bottom:2rem; }
    .services-flow-track { display:flex; gap:2rem; width:max-content; padding:1rem 4rem 1.5rem; animation:scrollLeft 36s linear infinite; perspective:1200px; }
    .services-flow-wrap:hover .services-flow-track { animation-play-state:paused; }
    .services-grid { display:flex; gap:2rem; perspective:1200px; }
    .service-card {
      background:linear-gradient(145deg,rgba(18,32,80,.9) 0%,rgba(22,45,88,.95) 100%);
      border:1px solid rgba(200,151,42,.14);
      padding:2.8rem 2.4rem;
      position:relative; overflow:hidden;
      transform-style:preserve-3d;
      transition:transform .08s linear, box-shadow .3s, border-color .3s;
      will-change:transform;
    }
    .service-card::before {
      content:''; position:absolute; bottom:0; left:0; right:0; height:2px;
      background:linear-gradient(to right,var(--gold),var(--gold-light));
      transform:scaleX(0); transform-origin:left; transition:transform .4s;
    }
    .service-card::after {
      content:''; position:absolute; top:0; right:0;
      width:80px; height:80px;
      background:radial-gradient(circle at top right,rgba(200,151,42,.12) 0%,transparent 70%);
      pointer-events:none;
    }
    .service-card:hover { border-color:rgba(200,151,42,.4); box-shadow:0 30px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(200,151,42,.1); }
    .service-card:hover::before { transform:scaleX(1); }
    .service-card-inner { transform:translateZ(20px); }
    .service-icon-wrap { width:52px; height:52px; border:1px solid rgba(200,151,42,.25); display:flex; align-items:center; justify-content:center; margin-bottom:1.8rem; position:relative; }
    .service-icon-wrap svg { width:24px; height:24px; stroke:var(--gold); fill:none; stroke-width:1.5; }
    .service-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.65rem; font-weight:400; color:var(--white); margin-bottom:1rem; }
    .service-card p { font-size:.8rem; line-height:1.85; color:rgba(255,255,255,.6); margin-bottom:1.8rem; }
    .service-links { display:flex; flex-direction:column; gap:.6rem; }
    .service-link { color:var(--gold); font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; text-decoration:none; display:flex; align-items:center; gap:.5rem; transition:color .2s, gap .2s; width:fit-content; }
    .service-link:hover { color:var(--gold-light); gap:.8rem; }
    .service-link svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; }
    .service-link-ext { color:rgba(200,151,42,.65); font-size:.68rem; letter-spacing:.1em; text-transform:uppercase; text-decoration:none; display:flex; align-items:center; gap:.5rem; transition:color .2s, gap .2s; width:fit-content; }
    .service-link-ext:hover { color:var(--gold-light); gap:.8rem; }
    .service-link-ext svg { width:14px; height:14px; stroke:currentColor; fill:none; stroke-width:2; flex-shrink:0; }

    /* ── DESTINATIONS FLOWING PANEL ── */
    .destinations { background:linear-gradient(160deg,var(--navy-mid) 0%,var(--navy) 100%); padding:7rem 0; overflow:hidden; }
    .dest-panel-header { padding:0 4rem 4rem; max-width:1220px; margin:0 auto; }
    .dest-panel-wrap { overflow:hidden; }
    .dest-panel-track { display:flex; gap:1.2rem; width:max-content; }
    .dest-panel-track.forward { animation:scrollLeft 60s linear infinite; }
    .dest-panel-wrap:hover .dest-panel-track { animation-play-state:paused; }
    .dest-panel-card { width:320px; height:480px; flex-shrink:0; position:relative; overflow:hidden; cursor:pointer; }
    .dest-panel-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .8s ease; }
    .dest-panel-card:hover img { transform:scale(1.08); }
    .dest-panel-card::after { content:''; position:absolute; inset:0; border:1px solid transparent; transition:border-color .4s; pointer-events:none; }
    .dest-panel-card:hover::after { border-color:rgba(200,151,42,.45); }

    /* ── EXPERIENCE ── */
    .experience { background:var(--navy); }
    .experience-inner { max-width:1220px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:6rem; align-items:center; }
    .experience-list { margin-top:2rem; }
    .exp-item { display:flex; gap:1.5rem; padding:1.5rem 0; border-bottom:1px solid rgba(255,255,255,.05); transition:all .3s; }
    .exp-item:hover { padding-left:.8rem; border-bottom-color:rgba(200,151,42,.3); }
    .exp-item:last-child { border-bottom:none; }
    .exp-num { font-family:'Cormorant Garamond',serif; font-size:2.2rem; color:rgba(200,151,42,.25); font-weight:300; line-height:1; flex-shrink:0; transition:color .3s; }
    .exp-item:hover .exp-num { color:rgba(200,151,42,.6); }
    .exp-content h4 { font-size:.83rem; font-weight:600; letter-spacing:.06em; margin-bottom:.4rem; }
    .exp-content p { font-size:.76rem; color:rgba(255,255,255,.52); line-height:1.75; }
    .experience-visual { position:relative; }

    /* 3D floating image stack */
    .img-3d-stack { position:relative; height:500px; perspective:800px; }
    .img-3d-stack .img-card {
      position:absolute;
      border:1px solid rgba(200,151,42,.15);
      overflow:hidden;
      box-shadow:0 20px 60px rgba(0,0,0,.5);
      transition:transform .4s ease, box-shadow .4s ease;
    }
    .img-3d-stack .img-card img { width:100%; height:100%; object-fit:cover; display:block; }
    .img-card-1 { width:78%; height:300px; top:0; left:0; transform:rotateY(-8deg) rotateX(4deg) translateZ(0px); }
    .img-card-2 { width:60%; height:220px; bottom:10%; right:0; transform:rotateY(6deg) rotateX(-3deg) translateZ(40px); }
    .img-card-3 { width:45%; height:160px; bottom:0; left:5%; transform:rotateY(4deg) rotateX(2deg) translateZ(80px); }
    .img-3d-stack:hover .img-card-1 { transform:rotateY(-12deg) rotateX(6deg) translateZ(10px); box-shadow:0 30px 80px rgba(0,0,0,.6); }
    .img-3d-stack:hover .img-card-2 { transform:rotateY(10deg) rotateX(-5deg) translateZ(60px); }
    .img-3d-stack:hover .img-card-3 { transform:rotateY(6deg) rotateX(4deg) translateZ(110px); }

    /* ── CONTACT ── */
    .contact { background:linear-gradient(160deg,var(--navy-mid) 0%,var(--navy-light) 100%); }
    .contact-inner { max-width:700px; margin:0 auto; text-align:center; }
    .contact-inner p.sub { font-size:.84rem; color:rgba(255,255,255,.62); line-height:1.85; margin-bottom:3rem; }
    .contact-form { display:grid; grid-template-columns:1fr 1fr; gap:1.2rem; text-align:left; }
    .form-field { display:flex; flex-direction:column; gap:.4rem; }
    .form-field.full { grid-column:span 2; }
    .form-field label { font-size:.6rem; letter-spacing:.22em; text-transform:uppercase; color:var(--gray); }
    .form-field input, .form-field select, .form-field textarea {
      background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.09);
      color:var(--white); padding:.9rem 1rem;
      font-family:'Montserrat',sans-serif; font-size:.8rem;
      transition:border-color .2s, background .2s; outline:none; resize:none;
    }
    .form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color:var(--gold); background:rgba(200,151,42,.04); }
    .form-field select option { background:var(--navy-mid); }
    .form-submit { grid-column:span 2; text-align:center; margin-top:1rem; }
    .form-submit button { background:var(--gold); color:var(--navy); border:none; padding:1rem 3rem; font-family:'Montserrat',sans-serif; font-size:.72rem; font-weight:600; letter-spacing:.16em; text-transform:uppercase; cursor:pointer; transition:all .3s; clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px)); }
    .form-submit button:hover { background:var(--gold-light); transform:translateY(-3px); box-shadow:0 12px 36px rgba(200,151,42,.3); }

        /* ── FOOTER ── */
    footer { background:#030913; padding:4rem; border-top:1px solid rgba(200,151,42,.08); }
    .footer-inner { max-width:1200px; margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; }
    .footer-brand .nav-logo { display:inline-flex; margin-bottom:1.2rem; }
    .footer-brand .nav-logo img { height:42px; }
    .footer-brand p { font-size:.76rem; color:var(--gray); line-height:1.85; max-width:260px; }
    .footer-col h4 { font-size:.6rem; letter-spacing:.28em; text-transform:uppercase; color:var(--gold); margin-bottom:1.3rem; }
    .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:.75rem; }
    .footer-col ul a { color:var(--gray); text-decoration:none; font-size:.78rem; transition:color .2s; }
    .footer-col ul a:hover { color:var(--white); }
    .footer-bottom { max-width:1200px; margin:3rem auto 0; padding-top:2rem; border-top:1px solid rgba(255,255,255,.05); display:flex; justify-content:space-between; align-items:center; }
    .footer-bottom p { font-size:.7rem; color:var(--gray); }

    /* ── REVEAL ── */
    .reveal { opacity:0; transform:translateY(32px); transition:opacity .75s ease,transform .75s ease; }
    .reveal.visible { opacity:1; transform:translateY(0); }
    .reveal-delay-1 { transition-delay:.1s; }
    .reveal-delay-2 { transition-delay:.22s; }
    .reveal-delay-3 { transition-delay:.34s; }

    /* ── RESPONSIVE ── */
    @media(max-width:1024px) {
      nav { padding:1.2rem 2rem; }
      nav.scrolled { padding:.9rem 2rem; }
      section { padding:5rem 2rem; }
      .about-inner { grid-template-columns:1fr; gap:3rem; }
      .services-grid { grid-template-columns:1fr 1fr; }
      .dest-grid { grid-template-columns:1fr 1fr; height:auto; }
      .dest-flip.featured { grid-row:span 1; }
      .experience-inner { grid-template-columns:1fr; gap:3rem; }
      .footer-inner { grid-template-columns:1fr 1fr; gap:2rem; }
    }
    @media(max-width:640px) {
      .nav-links { display:none; }
      .services-grid { grid-template-columns:1fr; }
      .dest-grid { grid-template-columns:1fr; }
      .contact-form { grid-template-columns:1fr; }
      .form-field.full,.form-submit { grid-column:span 1; }
      .footer-inner { grid-template-columns:1fr; }
      .hero-btns { flex-direction:column; align-items:center; }
      .about-stats { flex-wrap:wrap; gap:1.5rem; }
      .img-3d-stack { height:320px; }
    }
  
  .nav-toggle{display:none;background:none;border:none;cursor:pointer;padding:.4rem;flex-direction:column;gap:5px;z-index:1001;position:relative}
  .nav-toggle span{display:block;width:24px;height:2px;background:var(--gold-light,#f5c96e);transition:all .3s}
  .nav-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
  .nav-toggle.open span:nth-child(2){opacity:0}
  .nav-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
  .nav-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);z-index:999}
  .nav-overlay.open{display:block}
  @media(max-width:768px){
    .nav-toggle{display:flex}
    .nav-links{display:none !important;position:fixed;top:0;right:0;bottom:0;width:78vw;max-width:320px;background:var(--navy,#0f2347);flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:0;padding:6rem 2rem 2rem;box-shadow:-8px 0 40px rgba(0,0,0,.5);overflow-y:auto;z-index:1000}
    .nav-links.mobile-open{display:flex !important}
    .nav-links li{list-style:none;width:100%}
    .nav-links a{display:block;width:100%;padding:.9rem 0;border-bottom:1px solid rgba(255,255,255,.08);font-size:.78rem}
  }

.whatsapp-float{position:fixed;bottom:28px;right:28px;z-index:9999;background:#25D366;width:58px;height:58px;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(37,211,102,.45);transition:transform .2s,box-shadow .2s;text-decoration:none;}.whatsapp-float:hover{transform:scale(1.1);box-shadow:0 6px 28px rgba(37,211,102,.6);}.whatsapp-float svg{width:30px;height:30px;}