/* =========================================================
   ELITE ROUTE TRAVEL — MAIN STYLESHEET
   Vanilla CSS3 — Premium Navy / Gold UAE Travel Agency Theme
   ========================================================= */

:root{
  --navy: #0a1f44;
  --navy-deep: #071630;
  --navy-light: #123a75;
  --gold: #cfa15a;
  --gold-light: #e9c98a;
  --gold-dark: #a97e35;
  --sky: #eef7fd;
  --sky-2: #dff1fb;
  --white: #ffffff;
  --ink: #16233f;
  --muted: #5b6b8a;
  --border: #e4ebf5;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 16px rgba(10,31,68,.08);
  --shadow-md: 0 10px 30px rgba(10,31,68,.12);
  --shadow-lg: 0 20px 50px rgba(10,31,68,.18);
  --transition: .35s cubic-bezier(.25,.8,.25,1);
  --maxw: 1240px;
}

*,*::before,*::after{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

body{
  font-family:'Poppins', Arial, Helvetica, sans-serif;
  color:var(--ink);
  background:var(--white);
  line-height:1.65;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3,h4{
  font-family:'Playfair Display', Georgia, serif;
  color:var(--navy);
  line-height:1.2;
  font-weight:700;
}

img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ list-style:none; }
button{ font-family:inherit; cursor:pointer; }
.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 24px; }

:focus-visible{ outline:3px solid var(--gold); outline-offset:2px; }

/* ============ PAGE LOADER ============ */
#loader{
  position:fixed; inset:0; z-index:9999;
  background:linear-gradient(135deg,var(--navy-deep),var(--navy));
  display:flex; align-items:center; justify-content:center; flex-direction:column; gap:18px;
  transition:opacity .5s ease, visibility .5s ease;
}
#loader.loaded{ opacity:0; visibility:hidden; }
.loader-globe{
  width:70px; height:70px; border-radius:50%;
  border:3px solid rgba(207,161,90,.25);
  position:relative;
  box-shadow:inset 0 0 20px rgba(207,161,90,.3);
}
.loader-globe::before{
  content:''; position:absolute; inset:-9px;
  border-radius:50%;
  border:3px solid transparent;
  border-top-color:var(--gold);
  border-right-color:var(--gold-light);
  animation:spin 1s linear infinite;
}
.loader-plane{
  position:absolute; top:50%; left:50%; font-size:20px;
  transform-origin:0 0;
  animation:orbit 1.4s linear infinite;
}
@keyframes orbit{ from{ transform: rotate(0deg) translateX(45px) rotate(0deg);} to{ transform: rotate(360deg) translateX(45px) rotate(-360deg);} }
@keyframes spin{ to{ transform:rotate(360deg); } }
.loader-text{ color:var(--gold-light); font-family:'Playfair Display', serif; letter-spacing:3px; font-size:14px; text-transform:uppercase; }

/* ============ TOP BAR ============ */
.topbar{
  background:var(--navy-deep);
  color:#cdd9ef;
  font-size:.82rem;
}
.topbar .container{ display:flex; justify-content:space-between; align-items:center; padding-top:8px; padding-bottom:8px; flex-wrap:wrap; gap:6px; }
.topbar a{ color:#cdd9ef; transition:color .25s; }
.topbar a:hover{ color:var(--gold-light); }
.topbar-left{ display:flex; gap:22px; flex-wrap:wrap; }
.topbar-left span, .topbar-right span{ display:inline-flex; align-items:center; gap:6px; }
.topbar-right{ display:flex; gap:16px; align-items:center; }
.topbar-icon-link{ color:#cdd9ef; font-size:.95rem; }

/* ============ NAVBAR ============ */
.navbar{
  background:var(--white);
  position:sticky; top:0; z-index:1000;
  box-shadow:0 2px 12px rgba(10,31,68,.06);
  transition:box-shadow .3s ease, padding .3s ease;
}
.navbar.scrolled{ box-shadow:0 8px 24px rgba(10,31,68,.14); }
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:10px 24px; max-width:var(--maxw); margin:0 auto; gap:20px;
}
.brand{ display:flex; align-items:center; gap:10px; flex-shrink:0; }
.brand-logo{ height:52px; width:auto; transition:height .3s ease; }
.navbar.scrolled .brand-logo{ height:44px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.1; }
.brand-text .brand-name{ font-family:'Playfair Display', serif; font-weight:700; color:var(--navy); font-size:1.28rem; letter-spacing:.3px; }
.brand-text .brand-tag{ font-size:.65rem; letter-spacing:2px; color:var(--gold-dark); text-transform:uppercase; font-weight:600; }

.nav-menu{ display:flex; align-items:center; gap:6px; }
.nav-menu > li{ position:relative; }
.nav-link{
  display:flex; align-items:center; gap:6px;
  padding:12px 16px; font-weight:600; font-size:.94rem; color:var(--navy);
  border-radius:8px; transition:color .25s, background .25s;
}
.nav-link:hover, .nav-link.active{ color:var(--gold-dark); background:var(--sky); }
.nav-menu .caret{ font-size:.65rem; transition:transform .25s; }
.has-dropdown:hover .caret{ transform:rotate(180deg); }

.dropdown{
  position:absolute; top:calc(100% + 8px); left:0; min-width:300px;
  background:var(--white); border-radius:var(--radius-sm);
  box-shadow:var(--shadow-lg); border:1px solid var(--border);
  padding:10px; opacity:0; visibility:hidden; transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s ease;
  z-index:200;
}
.has-dropdown:hover .dropdown, .has-dropdown.open .dropdown{
  opacity:1; visibility:visible; transform:translateY(0);
}
.dropdown li a{
  display:flex; align-items:center; gap:10px;
  padding:10px 14px; border-radius:8px; font-size:.9rem; font-weight:500; color:var(--ink);
  transition:background .2s, color .2s, padding-left .2s;
}
.dropdown li a i{ color:var(--gold-dark); width:18px; text-align:center; }
.dropdown li a:hover{ background:var(--sky); color:var(--navy); padding-left:18px; }

.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-actions{ display:flex; align-items:center; gap:14px; }

.hamburger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:42px; height:42px; border:none; background:var(--sky); border-radius:8px; cursor:pointer;
  align-items:center;
}
.hamburger span{ display:block; width:20px; height:2px; background:var(--navy); transition:transform .3s, opacity .3s; }

/* Mobile navigation must stay completely hidden on desktop */
.mobile-menu, .menu-overlay{ display:none; }
.hamburger.active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity:0; }
.hamburger.active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ============ BUTTONS ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:14px 28px; border-radius:50px; font-weight:600; font-size:.94rem;
  border:2px solid transparent; transition:all .3s ease; white-space:nowrap;
  cursor:pointer;
}
.btn-gold{
  background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
  color:var(--navy-deep); box-shadow:0 8px 20px rgba(207,161,90,.35);
}
.btn-gold:hover{ transform:translateY(-3px); box-shadow:0 14px 28px rgba(207,161,90,.45); }
.btn-outline{
  border-color:rgba(255,255,255,.6); color:var(--white); background:rgba(255,255,255,.05);
  backdrop-filter:blur(6px);
}
.btn-outline:hover{ background:var(--white); color:var(--navy); }
.btn-navy{ background:var(--navy); color:var(--white); }
.btn-navy:hover{ background:var(--navy-light); transform:translateY(-3px); }
.btn-whatsapp{ background:#25D366; color:var(--white); }
.btn-whatsapp:hover{ background:#1ebc59; transform:translateY(-3px); }
.btn-sm{ padding:10px 18px; font-size:.82rem; }
.btn-block{ width:100%; }

/* ============ HERO ============ */
.hero{
  position:relative; min-height:92vh; display:flex; align-items:center;
  overflow:hidden; color:var(--white);
}
.hero-bg{
  position:absolute; inset:0; background-size:cover; background-position:center;
  animation:heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom{ 0%{ transform:scale(1); } 100%{ transform:scale(1.12); } }
.hero-overlay{
  position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(7,22,48,.92) 10%, rgba(10,31,68,.78) 55%, rgba(10,31,68,.5) 100%);
}
.hero-content{ position:relative; z-index:2; max-width:var(--maxw); margin:0 auto; padding:100px 24px 70px; }
.hero-eyebrow{
  display:inline-flex; align-items:center; gap:8px; background:rgba(207,161,90,.15);
  border:1px solid rgba(207,161,90,.4); color:var(--gold-light); padding:8px 18px;
  border-radius:50px; font-size:.78rem; letter-spacing:2px; text-transform:uppercase; margin-bottom:22px;
  font-weight:600;
}
.hero h1{ color:var(--white); font-size:clamp(2.2rem,5vw,4rem); max-width:820px; margin-bottom:20px; }
.hero h1 span{ color:var(--gold-light); }
.hero p.lead{ font-size:1.15rem; max-width:640px; color:#dbe4f4; margin-bottom:36px; }
.hero-buttons{ display:flex; gap:16px; flex-wrap:wrap; }
.hero-floaters{ position:absolute; inset:0; pointer-events:none; z-index:1; }
.floater{ position:absolute; opacity:.85; animation:floatY 6s ease-in-out infinite; filter:drop-shadow(0 10px 20px rgba(0,0,0,.35)); }
.floater.f2{ animation-delay:1.2s; }
.floater.f3{ animation-delay:2.4s; }
@keyframes floatY{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-22px);} }
.hero-scroll{ position:absolute; bottom:26px; left:50%; transform:translateX(-50%); z-index:2; color:#cdd9ef; font-size:.75rem; text-align:center; letter-spacing:2px; text-transform:uppercase; }
.hero-scroll .dot{ width:6px; height:6px; background:var(--gold-light); border-radius:50%; margin:8px auto 0; animation:scrollDot 1.6s ease-in-out infinite; }
@keyframes scrollDot{ 0%,100%{ transform:translateY(0); opacity:1;} 50%{ transform:translateY(10px); opacity:.3;} }

/* smaller page hero */
.page-hero{
  position:relative; min-height:46vh; display:flex; align-items:center; color:var(--white);
  overflow:hidden;
}
.page-hero .hero-bg{ animation:heroZoom 26s ease-in-out infinite alternate; }
.page-hero .hero-content{ padding:120px 24px 60px; text-align:left; }
.page-hero h1{ color:var(--white); font-size:clamp(2rem,4.4vw,3.2rem); margin-bottom:14px; }
.breadcrumb{ display:flex; gap:8px; align-items:center; color:#cdd9ef; font-size:.9rem; margin-bottom:16px; }
.breadcrumb a{ color:var(--gold-light); }
.page-hero p.lead{ max-width:680px; color:#dbe4f4; }

/* ============ SECTION HELPERS ============ */
section{ padding:90px 0; position:relative; }
.section-sky{ background:linear-gradient(180deg,var(--sky) 0%, var(--white) 100%); }
.section-navy{ background:linear-gradient(135deg,var(--navy-deep),var(--navy)); color:var(--white); }
.section-navy h2, .section-navy h3{ color:var(--white); }
.eyebrow{
  display:inline-flex; align-items:center; gap:8px; color:var(--gold-dark); font-weight:700;
  letter-spacing:2.4px; text-transform:uppercase; font-size:.78rem; margin-bottom:14px;
}
.eyebrow::before{ content:''; width:26px; height:2px; background:var(--gold-dark); display:inline-block; }
.section-navy .eyebrow{ color:var(--gold-light); }
.section-navy .eyebrow::before{ background:var(--gold-light); }
.section-head{ max-width:720px; margin-bottom:52px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head h2{ font-size:clamp(1.7rem,3.4vw,2.6rem); margin-bottom:16px; }
.section-head p{ color:var(--muted); font-size:1.05rem; }
.section-navy .section-head p{ color:#c6d3ea; }

/* ============ GRID / CARDS ============ */
.grid{ display:grid; gap:28px; }
.grid-2{ grid-template-columns:repeat(2,1fr); }
.grid-3{ grid-template-columns:repeat(3,1fr); }
.grid-4{ grid-template-columns:repeat(4,1fr); }
.grid-6{ grid-template-columns:repeat(6,1fr); }

.card{
  background:var(--white); border-radius:var(--radius); border:1px solid var(--border);
  box-shadow:var(--shadow-sm); transition:transform var(--transition), box-shadow var(--transition);
  overflow:hidden;
}
.card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-lg); }

.service-card{ padding:34px 26px; text-align:left; position:relative; }
.service-card .icon-box{
  width:58px; height:58px; border-radius:14px;
  background:linear-gradient(135deg,var(--navy),var(--navy-light));
  display:flex; align-items:center; justify-content:center; color:var(--gold-light); font-size:1.5rem;
  margin-bottom:20px; transition:transform .3s;
}
.service-card:hover .icon-box{ transform:rotate(-8deg) scale(1.08); }
.service-card h3{ font-size:1.18rem; margin-bottom:10px; }
.service-card p{ color:var(--muted); font-size:.94rem; margin-bottom:18px; }
.service-card .card-links{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.service-card .card-links a{ font-weight:700; font-size:.85rem; color:var(--gold-dark); display:inline-flex; align-items:center; gap:6px; }
.service-card .card-links a:hover{ text-decoration:underline; }

.category-card{
  position:relative; border-radius:var(--radius); overflow:hidden; height:260px; box-shadow:var(--shadow-sm);
}
.category-card img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.category-card:hover img{ transform:scale(1.1); }
.category-card::after{ content:''; position:absolute; inset:0; background:linear-gradient(180deg, rgba(10,31,68,0) 30%, rgba(7,20,44,.92) 100%); }
.category-content{ position:absolute; left:0; right:0; bottom:0; padding:22px; z-index:2; color:var(--white); }
.category-content i{ color:var(--gold-light); font-size:1.6rem; margin-bottom:8px; }
.category-content h3{ color:var(--white); font-size:1.15rem; margin-bottom:4px; }
.category-content p{ font-size:.82rem; color:#dbe4f4; opacity:0; max-height:0; transition:opacity .3s, max-height .3s; }
.category-card:hover .category-content p{ opacity:1; max-height:60px; margin-top:6px; }

.destination-card{ position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); }
.destination-card .dest-img{ height:280px; overflow:hidden; }
.destination-card img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.destination-card:hover img{ transform:scale(1.12); }
.destination-card .dest-body{ padding:22px; }
.destination-card .dest-badge{
  position:absolute; top:16px; right:16px; background:rgba(207,161,90,.95); color:var(--navy-deep);
  padding:6px 14px; border-radius:50px; font-size:.75rem; font-weight:700; z-index:2; letter-spacing:.5px;
}
.destination-card h3{ font-size:1.2rem; margin-bottom:8px; }
.destination-card p{ color:var(--muted); font-size:.9rem; margin-bottom:16px; }
.dest-actions{ display:flex; gap:10px; flex-wrap:wrap; }

/* stat counters */
.stats-strip{ background:var(--navy-deep); color:var(--white); padding:56px 0; }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; text-align:center; }
.stat-num{ font-family:'Playfair Display', serif; font-size:clamp(2rem,4vw,2.8rem); color:var(--gold-light); font-weight:700; }
.stat-label{ color:#c6d3ea; font-size:.86rem; letter-spacing:1px; text-transform:uppercase; margin-top:6px; }

/* process steps */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; counter-reset:step; }
.step{ background:var(--white); border:1px solid var(--border); border-radius:var(--radius); padding:32px 24px; text-align:center; box-shadow:var(--shadow-sm); position:relative; }
.step-num{
  width:48px; height:48px; border-radius:50%; background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
  color:var(--navy-deep); display:flex; align-items:center; justify-content:center; font-weight:800; margin:0 auto 18px;
  font-family:'Playfair Display', serif; font-size:1.2rem;
}
.step h3{ font-size:1.05rem; margin-bottom:10px; }
.step p{ color:var(--muted); font-size:.9rem; }

/* testimonials */
.testimonial-card{ background:var(--white); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow-sm); border:1px solid var(--border); }
.testimonial-card .stars{ color:var(--gold); margin-bottom:14px; letter-spacing:2px; }
.testimonial-card p.quote{ color:var(--ink); font-style:italic; margin-bottom:20px; }
.testimonial-author{ display:flex; align-items:center; gap:12px; }
.testimonial-author .avatar{
  width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,var(--navy),var(--gold-dark));
  color:var(--white); display:flex; align-items:center; justify-content:center; font-weight:700;
}
.testimonial-author strong{ display:block; font-size:.92rem; color:var(--navy); }
.testimonial-author span{ font-size:.78rem; color:var(--muted); }

/* CTA banner */
.cta-banner{
  background:linear-gradient(120deg,var(--navy-deep),var(--navy) 60%, var(--navy-light));
  color:var(--white); border-radius:24px; padding:64px 48px; text-align:center;
  position:relative; overflow:hidden;
}
.cta-banner::before{
  content:''; position:absolute; inset:0; opacity:.15;
  background-image:radial-gradient(circle at 20% 30%, var(--gold-light) 0, transparent 40%), radial-gradient(circle at 80% 70%, var(--gold-light) 0, transparent 40%);
}
.cta-banner h2{ color:var(--white); margin-bottom:14px; position:relative; }
.cta-banner p{ color:#dbe4f4; max-width:600px; margin:0 auto 30px; position:relative; }
.cta-banner .hero-buttons{ justify-content:center; position:relative; }

/* about split */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:56px; align-items:center; }
.split img{ border-radius:var(--radius); box-shadow:var(--shadow-md); }
.split-media{ position:relative; }
.split-badge{
  position:absolute; bottom:-24px; left:-24px; background:var(--white); border-radius:16px; box-shadow:var(--shadow-md);
  padding:18px 22px; display:flex; align-items:center; gap:12px; border:1px solid var(--border);
}
.split-badge i{ color:var(--gold-dark); font-size:1.6rem; }
.split-badge strong{ display:block; color:var(--navy); font-size:1.15rem; }
.split-badge span{ font-size:.78rem; color:var(--muted); }
.check-list li{ display:flex; gap:10px; align-items:flex-start; margin-bottom:12px; color:var(--ink); }
.check-list i{ color:var(--gold-dark); margin-top:4px; }

/* value cards */
.value-card{ padding:30px; text-align:center; }
.value-card i{ font-size:2rem; color:var(--gold-dark); margin-bottom:16px; }

/* forms */
.form-box{ background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow-md); padding:38px; border:1px solid var(--border); }
.form-group{ margin-bottom:20px; }
.form-group label{ display:block; font-weight:600; font-size:.88rem; color:var(--navy); margin-bottom:8px; }
.form-group input, .form-group select, .form-group textarea{
  width:100%; padding:13px 16px; border:1.5px solid var(--border); border-radius:10px; font-family:inherit;
  font-size:.94rem; color:var(--ink); background:var(--sky); transition:border-color .25s, box-shadow .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none; border-color:var(--gold-dark); box-shadow:0 0 0 4px rgba(207,161,90,.15); background:var(--white);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }

/* contact cards */
.contact-info-card{ display:flex; gap:16px; align-items:flex-start; padding:26px; }
.contact-info-card i{
  width:48px; height:48px; border-radius:12px; background:linear-gradient(135deg,var(--navy),var(--navy-light));
  color:var(--gold-light); display:flex; align-items:center; justify-content:center; font-size:1.2rem; flex-shrink:0;
}
.contact-info-card h3{ font-size:1.02rem; margin-bottom:6px; }
.contact-info-card p, .contact-info-card a{ color:var(--muted); font-size:.9rem; }
.map-frame{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); border:1px solid var(--border); height:100%; min-height:360px; }
.map-frame iframe{ width:100%; height:100%; min-height:360px; border:0; }

.hours-list{ display:flex; justify-content:space-between; padding:12px 0; border-bottom:1px dashed var(--border); font-size:.92rem; }
.hours-list:last-child{ border-bottom:none; }

/* ============ FOOTER ============ */
footer{ background:var(--navy-deep); color:#c6d3ea; padding-top:70px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:50px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-brand{ display:flex; align-items:center; gap:10px; margin-bottom:18px; }
.footer-logo{ height:48px; width:auto; }
.footer-brand strong{ color:var(--white); font-family:'Playfair Display', serif; font-size:1.2rem; }
footer p{ font-size:.9rem; line-height:1.7; }
footer h4{ color:var(--white); font-size:1rem; margin-bottom:20px; letter-spacing:.5px; }
.footer-links li{ margin-bottom:11px; }
.footer-links a{ font-size:.9rem; color:#c6d3ea; transition:color .25s, padding-left .25s; display:inline-block; }
.footer-links a:hover{ color:var(--gold-light); padding-left:5px; }
.footer-contact li{ display:flex; gap:10px; margin-bottom:16px; font-size:.9rem; align-items:flex-start; }
.footer-contact i{ color:var(--gold-light); margin-top:3px; }
.footer-social{ display:flex; gap:12px; margin-top:20px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; background:rgba(255,255,255,.08); display:flex; align-items:center;
  justify-content:center; color:var(--white); transition:background .25s, transform .25s;
}
.footer-social a:hover{ background:var(--gold-dark); transform:translateY(-3px); }
.footer-bottom{ padding:22px 0; display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:.82rem; color:#93a4c7; }
.footer-bottom a{ color:#93a4c7; }
.footer-bottom a:hover{ color:var(--gold-light); }

/* ============ FLOATING BUTTONS ============ */
.floating-buttons{
  position:fixed; right:22px; bottom:22px; display:flex; flex-direction:column; gap:14px; z-index:900;
}
.float-btn{
  width:56px; height:56px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:var(--white); font-size:1.5rem; box-shadow:0 8px 20px rgba(10,31,68,.3); transition:transform .3s, box-shadow .3s;
  position:relative;
}
.float-btn:hover{ transform:translateY(-4px) scale(1.06); }
.float-whatsapp{ background:#25D366; width:60px; height:60px; font-size:1.7rem; }
.float-whatsapp::before{
  content:''; position:absolute; inset:0; border-radius:50%; background:#25D366; opacity:.55;
  animation:pulseRing 2.2s ease-out infinite; z-index:-1;
}
@keyframes pulseRing{ 0%{ transform:scale(1); opacity:.55;} 100%{ transform:scale(1.8); opacity:0;} }
.float-fb{ background:#1877F2; }
.float-ig{ background:radial-gradient(circle at 30% 110%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-call{ background:var(--navy); }
.social-mini{ display:flex; flex-direction:column; gap:12px; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal{ opacity:0; transform:translateY(34px); transition:opacity .8s ease, transform .8s ease; }
.reveal.in{ opacity:1; transform:translateY(0); }
.reveal.fade{ transform:none; }
.reveal.zoom{ transform:scale(.92); }
.reveal.zoom.in{ transform:scale(1); }
.reveal-delay-1{ transition-delay:.1s; }
.reveal-delay-2{ transition-delay:.22s; }
.reveal-delay-3{ transition-delay:.34s; }
.reveal-delay-4{ transition-delay:.46s; }

/* misc */
.badge-pill{ display:inline-block; background:var(--sky-2); color:var(--navy); padding:6px 16px; border-radius:50px; font-size:.78rem; font-weight:700; margin-bottom:14px; }
.text-gold{ color:var(--gold-dark); }
.mt-lg{ margin-top:50px; }
.text-center{ text-align:center; }
hr.divider{ border:none; height:1px; background:var(--border); margin:40px 0; }

/* ============ RESPONSIVE ============ */
@media (max-width:1200px){
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); gap:34px; }
}
@media (max-width:992px){
  .grid-4{ grid-template-columns:repeat(2,1fr); }
  .grid-3{ grid-template-columns:repeat(2,1fr); }
  .grid-6{ grid-template-columns:repeat(3,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .split{ grid-template-columns:1fr; }
  .split-media{ margin-bottom:40px; }
  .form-row{ grid-template-columns:1fr; }
  .topbar-left span:nth-child(3){ display:none; }
}
@media (max-width:860px){
  .nav-menu, .nav-actions .btn-gold{ display:none; }
  .mobile-menu, .menu-overlay{ display:block; }
  .hamburger{ display:flex; }
  .nav-inner{ padding:10px 20px; }

  .mobile-menu{
    position:fixed; top:0; right:-100%; width:82%; max-width:340px; height:100vh; background:var(--navy-deep);
    z-index:1100; transition:right .4s cubic-bezier(.25,.8,.25,1); overflow-y:auto; box-shadow:-10px 0 40px rgba(0,0,0,.3);
    padding:26px 22px 40px;
  }
  .mobile-menu.open{ right:0; }
  .mobile-menu-header{ display:flex; justify-content:space-between; align-items:center; margin-bottom:30px; }
  .mobile-close{ background:rgba(255,255,255,.1); color:var(--white); border:none; width:38px; height:38px; border-radius:50%; font-size:1.1rem; }
  .mobile-menu a{ color:#e5ecf9; }
  .mobile-menu > ul > li{ border-bottom:1px solid rgba(255,255,255,.08); }
  .mobile-menu .m-link{ display:flex; justify-content:space-between; align-items:center; padding:16px 4px; font-weight:600; font-size:1rem; }
  .mobile-submenu{ max-height:0; overflow:hidden; transition:max-height .4s ease; padding-left:12px; }
  .mobile-submenu.open{ max-height:600px; padding-bottom:12px; }
  .mobile-submenu li a{ display:flex; gap:10px; align-items:center; padding:10px 6px; font-size:.9rem; color:#c6d3ea; }
  .mobile-submenu li a i{ color:var(--gold-light); width:16px; }
  .m-caret{ transition:transform .3s; color:var(--gold-light); }
  .m-link.open .m-caret{ transform:rotate(180deg); }
  .mobile-menu-footer{ margin-top:24px; display:flex; flex-direction:column; gap:12px; }
  .menu-overlay{ position:fixed; inset:0; background:rgba(6,14,32,.6); z-index:1050; opacity:0; visibility:hidden; transition:opacity .35s, visibility .35s; }
  .menu-overlay.show{ opacity:1; visibility:visible; }

  .hero-content{ padding-top:80px; text-align:center; margin:0 auto; }
  .hero-buttons{ justify-content:center; }
  .hero p.lead{ margin-left:auto; margin-right:auto; }
  .hero-eyebrow{ margin-left:auto; margin-right:auto; }
}
@media (max-width:768px){
  section{ padding:64px 0; }
  .grid-2, .grid-3, .grid-4{ grid-template-columns:1fr; }
  .grid-6{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .cta-banner{ padding:44px 24px; }
  .footer-grid{ grid-template-columns:1fr; gap:32px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
  .topbar-left span:nth-child(2){ display:none; }
  .form-box{ padding:26px; }
}
@media (max-width:576px){
  .container{ padding:0 18px; }
  .brand-logo{ height:42px; }
  .brand-text .brand-name{ font-size:1.05rem; }
  .brand-text .brand-tag{ font-size:.58rem; }
  .hero{ min-height:88vh; }
  .hero h1{ font-size:1.9rem; }
  .hero p.lead{ font-size:1rem; }
  .btn{ padding:13px 22px; font-size:.88rem; }
  .float-btn{ width:50px; height:50px; font-size:1.3rem; }
  .float-whatsapp{ width:54px; height:54px; }
  .floating-buttons{ right:14px; bottom:14px; gap:10px; }
  .page-hero .hero-content{ padding-top:100px; }
  .split-badge{ position:static; margin-top:16px; }
}

/* Elite Route exact transparent logo */
.brand-logo{height:72px!important;width:auto!important;object-fit:contain!important;background:transparent!important;}
.footer-logo{height:78px!important;width:auto!important;object-fit:contain!important;background:transparent!important;}
@media(max-width:768px){.brand-logo{height:58px!important}.footer-logo{height:64px!important}}

/* ===== Final visibility + logo refinements ===== */
.brand-logo{height:84px!important;width:auto!important;object-fit:contain!important;background:transparent!important;}
.footer-logo{height:92px!important;width:auto!important;object-fit:contain!important;background:transparent!important;}
.mobile-menu-header img{height:52px!important;width:auto!important;object-fit:contain!important;}

.category-content{ text-shadow:0 2px 10px rgba(0,0,0,.45); }
.category-content p{ opacity:1!important; max-height:none!important; margin-top:6px!important; }
.category-card::after{ background:linear-gradient(180deg, rgba(10,31,68,0.08) 18%, rgba(7,20,44,.92) 100%)!important; }
.service-card p,
.destination-card p,
.section-head p,
.contact-info-card p,
.contact-info-card a,
.split-badge span,
.hours-list,
footer p,
footer a{ opacity:1; }

@media(max-width:768px){
  .brand-logo{height:66px!important}
  .footer-logo{height:74px!important}
  .mobile-menu-header img{height:46px!important}
}

/* ===== Visibility fixes + equal image sizing ===== */
.section-navy p,
.section-navy .check-list li,
.section-navy .check-list li a,
.section-navy .split-badge span{
  color:#dbe4f4 !important;
}
.section-navy .check-list i{
  color:var(--gold-light) !important;
}
.split{
  align-items:stretch;
}
.split-media,
.split > div{
  height:100%;
}
.split-media img,
.split img{
  width:100%;
  height:100%;
  min-height:460px;
  max-height:560px;
  object-fit:cover;
}
@media (max-width: 992px){
  .split-media img,
  .split img{
    min-height:340px;
    max-height:420px;
  }
}
@media (max-width: 576px){
  .split-media img,
  .split img{
    min-height:260px;
    max-height:320px;
  }
}
