/* =======================================================
   AADI TOUR & TRAVEL — shared.css  FINAL v4
   ======================================================= */
:root {
  /* Core colours — both naming conventions defined */
  --deep-blue:   #0A2540;
  --blue:        #0A2540;
  --sky:         #2EC4FF;
  --sky-blue:    #2EC4FF;
  --gold:        #D4AF37;
  --gold-light:  #F0D060;
  --white:       #FFFFFF;
  --bg-white:    #F8FAFC;
  --bg:          #F8FAFC;
  --bg-soft:     #EFF4F9;
  --green:       #22c55e;
  --red:         #ef4444;

  /* Text */
  --text:        #0A2540;
  --text-dark:   #0A2540;
  --text2:       #3A5068;
  --text-mid:    #3A5068;
  --text3:       #8AA0B5;
  --text-light:  #8AA0B5;

  /* Shadows — both naming conventions */
  --shadow-sm:   0 2px 10px rgba(10,37,64,.07);
  --shadow:      0 6px 28px rgba(10,37,64,.11);
  --shadow-md:   0 6px 28px rgba(10,37,64,.11);
  --shadow-lg:   0 18px 56px rgba(10,37,64,.17);
  --shadow-gold: 0 6px 24px rgba(212,175,55,.28);

  /* Radii — both naming conventions */
  --r-sm:        8px;
  --r-md:        16px;
  --r-lg:        24px;
  --radius:      12px;

  /* Transitions */
  --ease:        all .32s cubic-bezier(.4,0,.2,1);
  --transition:  all .32s cubic-bezier(.4,0,.2,1);

  /* Nav height */
  --nav-height:  68px;
}

/* ── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
input, select, textarea, button { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ── PAGE INIT — prevent FOUC ───────────────────────── */
body { visibility: visible; }

/* ── LOADER ─────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--deep-blue);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}
#loader.hidden {
  opacity: 0; visibility: hidden; pointer-events: none;
}
.ld-inner { text-align: center; padding: 0 20px; }
.ld-logo {
  display: flex; align-items: baseline; gap: 3px;
  justify-content: center; margin-bottom: 20px;
}
.ld-a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px; font-weight: 700;
  color: var(--gold); line-height: 1;
  animation: ldPulse 1.4s ease-in-out infinite;
}
.ld-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; color: var(--white); letter-spacing: 1px;
}
.ld-bar {
  width: 180px; height: 3px;
  background: rgba(255,255,255,.12);
  border-radius: 99px; margin: 0 auto 12px; overflow: hidden;
}
.ld-fill {
  height: 100%; width: 0;
  background: linear-gradient(90deg, var(--sky), var(--gold));
  border-radius: 99px;
  animation: ldFill 1.5s ease-in-out forwards;
}
.ld-sub { color: var(--text-light); font-size: 11px; letter-spacing: 1px; }
@keyframes ldFill  { to { width: 100%; } }
@keyframes ldPulse { 0%,100%{opacity:1} 50%{opacity:.5} }

/* ── NAVBAR ─────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-height);
  transition: background .3s ease, box-shadow .3s ease;
}
#navbar.solid,
#navbar.scrolled {
  background: rgba(10,37,64,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.nav-wrap {
  max-width: 1220px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav-logo {
  display: flex; align-items: baseline; gap: 2px;
  flex-shrink: 0; z-index: 1001; position: relative;
}
.logo-a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1;
}
.logo-t {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; color: var(--white); letter-spacing: .3px;
}

/* Desktop nav links */
.nav-links {
  display: flex; align-items: center; gap: 2px;
  list-style: none; margin: 0; padding: 0;
}
.nav-links li a {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,.82);
  padding: 7px 13px; border-radius: 99px;
  transition: var(--ease); display: block; white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white); background: rgba(255,255,255,.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--deep-blue) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 99px !important;
  box-shadow: 0 3px 12px rgba(212,175,55,.4);
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
}

/* Hamburger — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  cursor: pointer;
  background: none; border: none;
  padding: 4px;
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--gold), #c49b20);
  color: var(--deep-blue); font-weight: 700; font-size: 14px;
  padding: 12px 26px; border-radius: 99px;
  transition: var(--ease); box-shadow: var(--shadow-gold);
  cursor: pointer; border: none; white-space: nowrap;
  text-decoration: none;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(212,175,55,.45); }
.btn-primary.sm { padding: 9px 18px; font-size: 13px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12); color: var(--white);
  font-weight: 600; font-size: 14px; padding: 12px 26px;
  border-radius: 99px; border: 1px solid rgba(255,255,255,.25);
  transition: var(--ease); text-decoration: none;
}
.btn-secondary:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--gold); font-weight: 600; font-size: 14px;
  padding: 11px 26px; border-radius: 99px;
  border: 1.5px solid rgba(212,175,55,.5); transition: var(--ease);
  text-decoration: none;
}
.btn-outline:hover { background: rgba(212,175,55,.1); border-color: var(--gold); transform: translateY(-2px); }

.btn-dark {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--text); font-weight: 600; font-size: 13px;
  padding: 10px 22px; border-radius: 99px;
  border: 1.5px solid rgba(10,37,64,.22); transition: var(--ease);
  cursor: pointer; text-decoration: none;
}
.btn-dark:hover { background: var(--deep-blue); color: var(--white); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: var(--white); font-weight: 600; font-size: 14px;
  padding: 12px 24px; border-radius: 99px; transition: var(--ease);
  box-shadow: 0 4px 14px rgba(37,211,102,.3); text-decoration: none;
}
.btn-wa:hover { background: #1eba57; transform: translateY(-2px); }
.btn-wa.sm { padding: 9px 18px; font-size: 13px; }

/* ── LAYOUT ──────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 22px; }
.section-pad { padding: 88px 0; }
.sec { padding: 88px 0; }
.bg-dark { background: var(--deep-blue); }
.bg-soft { background: var(--bg-soft); }

.section-header { text-align: center; margin-bottom: 52px; }
.sec-header     { text-align: center; margin-bottom: 52px; }

.eyebrow {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--sky); margin-bottom: 10px;
}
.eyebrow.gold { color: var(--gold); }

.section-title,
.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4.5vw, 50px);
  font-weight: 700; color: var(--text); line-height: 1.15; margin-bottom: 14px;
}
.section-title em,
.sec-title em { font-style: italic; color: var(--sky); }
.section-title.light,
.sec-title.light { color: var(--white); }
.section-title.light em,
.sec-title.light em { color: var(--gold); }

.section-sub,
.sec-sub { font-size: 15px; color: var(--text-mid); max-width: 500px; margin: 0 auto; }
.section-sub.light,
.sec-sub.light { color: rgba(255,255,255,.6); }

/* ── PAGE HERO ───────────────────────────────────────── */
.page-hero {
  position: relative; height: 340px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; margin-top: var(--nav-height);
}
.page-hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.page-hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,37,64,.88), rgba(10,37,64,.62));
}
.page-hero-cnt { position: relative; z-index: 2; text-align: center; padding: 0 20px; }
.breadcrumb {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: rgba(255,255,255,.52);
  justify-content: center; margin-bottom: 12px;
}
.breadcrumb a { color: rgba(255,255,255,.65); transition: var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb i { font-size: 9px; }
.page-hero-cnt h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 5.5vw, 62px);
  font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 10px;
}
.page-hero-cnt h1 em { font-style: italic; color: var(--sky); }
.page-hero-cnt p { font-size: 14px; color: rgba(255,255,255,.72); max-width: 460px; margin: 0 auto; }

/* ── SCROLL REVEAL ───────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .65s cubic-bezier(.4,0,.2,1),
              transform .65s cubic-bezier(.4,0,.2,1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── FORM FIELDS ─────────────────────────────────────── */
.fg { margin-bottom: 14px; }
.fg label {
  display: block; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .9px;
  color: var(--text-light); margin-bottom: 6px;
}
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid rgba(10,37,64,.13);
  border-radius: var(--r-sm); font-size: 13px;
  color: var(--text); background: var(--bg);
  transition: var(--ease); outline: none;
  font-family: 'Poppins', sans-serif;
  -webkit-appearance: none; appearance: none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--sky);
  box-shadow: 0 0 0 3px rgba(46,196,255,.1);
  background: var(--white);
}
.fg textarea { resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ── FILTER BUTTONS ──────────────────────────────────── */
.filter-row { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px; }
.filter-btn {
  font-size: 12px; font-weight: 600; padding: 7px 18px;
  border-radius: 99px; border: 1.5px solid rgba(10,37,64,.18);
  color: var(--text-mid); background: var(--white);
  cursor: pointer; transition: var(--ease); font-family: 'Poppins', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--deep-blue); color: var(--white); border-color: var(--deep-blue);
}

/* ── CHECK LIST ──────────────────────────────────────── */
.check-list { display: flex; flex-direction: column; gap: 10px; margin: 18px 0 26px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-mid); }
.check-list li i { color: var(--sky); font-size: 15px; flex-shrink: 0; }

/* ── TOAST ───────────────────────────────────────────── */
.toast-msg {
  position: fixed; bottom: 80px; left: 50%;
  transform: translateX(-50%) translateY(14px);
  background: var(--deep-blue); color: var(--white);
  padding: 11px 24px; border-radius: 99px; font-size: 13px; font-weight: 500;
  z-index: 9990; opacity: 0; pointer-events: none; transition: all .35s ease;
  border: 1px solid rgba(46,196,255,.25); box-shadow: var(--shadow-md);
  white-space: nowrap;
}
.toast-msg.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast-msg.ok  { border-color: rgba(37,211,102,.4); background: #0a2218; }
.toast-msg.err { border-color: rgba(255,80,80,.4);  background: #220a0a; }

/* ── WA FLOAT ────────────────────────────────────────── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 980;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--ease); animation: waPulse 2.8s ease-in-out infinite;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-tip {
  position: absolute; right: 64px;
  background: var(--deep-blue); color: var(--white);
  font-size: 12px; font-weight: 600; padding: 5px 13px;
  border-radius: 99px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: var(--ease); transform: translateX(6px);
}
.wa-float:hover .wa-tip { opacity: 1; transform: translateX(0); }
@keyframes waPulse {
  0%,100%{box-shadow:0 6px 24px rgba(37,211,102,.45),0 0 0 0 rgba(37,211,102,.35)}
  50%{box-shadow:0 6px 24px rgba(37,211,102,.45),0 0 0 13px rgba(37,211,102,0)}
}

/* ── SCROLL TOP ──────────────────────────────────────── */
.scroll-top {
  position: fixed; bottom: 24px; left: 24px; z-index: 980;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--deep-blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; box-shadow: var(--shadow-md);
  transition: var(--ease); opacity: 0; pointer-events: none;
  cursor: pointer; border: none;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--sky); transform: translateY(-2px); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: #060f1d; color: rgba(255,255,255,.65); }
.footer-top { padding: 64px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.3fr;
  gap: 36px;
}
.f-brand p {
  font-size: 13px; line-height: 1.8;
  margin: 13px 0 16px; color: rgba(255,255,255,.44); max-width: 230px;
}
.verified-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 600; color: var(--gold);
  border: 1px solid rgba(212,175,55,.28);
  padding: 5px 15px; border-radius: 99px;
  background: rgba(212,175,55,.07); margin-bottom: 16px;
  transition: var(--ease);
}
.verified-link:hover { background: rgba(212,175,55,.15); }
.f-socials { display: flex; gap: 8px; flex-wrap: wrap; }
.f-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,.55); transition: var(--ease);
}
.f-socials a:hover { background: var(--gold); color: var(--deep-blue); border-color: var(--gold); transform: translateY(-2px); }
.f-col h4 {
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--white); margin-bottom: 16px;
}
.f-col ul { display: flex; flex-direction: column; gap: 9px; }
.f-col ul li a { font-size: 13px; color: rgba(255,255,255,.48); transition: var(--ease); }
.f-col ul li a:hover { color: var(--gold); padding-left: 3px; }
.f-contact-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 13px; color: rgba(255,255,255,.48); margin-bottom: 9px;
}
.f-contact-item i { color: var(--sky); margin-top: 3px; flex-shrink: 0; }
.f-contact-item a { color: rgba(255,255,255,.48); transition: var(--ease); }
.f-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: var(--sky); }
.footer-bottom a:hover { color: var(--gold); }

/* ── FORM SUCCESS ────────────────────────────────────── */
.form-success { text-align: center; padding: 40px 20px; }
.form-success i { font-size: 52px; color: #25D366; display: block; margin-bottom: 14px; }
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.form-success p { color: var(--text-mid); margin-bottom: 22px; font-size: 14px; }

/* ── SHARED NAV JS ───────────────────────────────────── */
/* (JS is inline in each page — see bottom of each HTML) */

/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 768px) {
  /* Show hamburger */
  .hamburger { display: flex !important; }

  /* Full-screen nav overlay */
  .nav-links {
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    width: 100% !important; height: 100vh !important;
    background: rgba(8, 22, 44, 0.98) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    z-index: 999 !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: opacity .28s ease !important;
    padding: 80px 0 40px !important;
    overflow-y: auto !important;
  }
  .nav-links.open {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .nav-links li { width: 100% !important; text-align: center !important; }
  .nav-links li a {
    font-size: 18px !important;
    padding: 16px 24px !important;
    color: rgba(255,255,255,.85) !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
    display: block !important;
    background: none !important;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    background: rgba(255,255,255,.08) !important;
    color: var(--white) !important;
  }
  .nav-cta {
    margin: 20px auto 0 !important;
    width: calc(100% - 48px) !important;
    border-radius: 99px !important;
    border-bottom: none !important;
    background: var(--gold) !important;
    color: var(--deep-blue) !important;
    font-size: 17px !important;
    padding: 14px 24px !important;
    display: block !important;
    text-align: center !important;
  }
  /* Keep navbar + hamburger above overlay */
  #navbar { z-index: 1000 !important; background: rgba(10,37,64,.97) !important; }
  .nav-logo { z-index: 1001 !important; position: relative !important; }
  .hamburger { z-index: 1001 !important; }

  .sec, .section-pad { padding: 56px 0; }
  .page-hero { height: 280px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .page-hero { height: 240px; }
  .page-hero-cnt h1 { font-size: 26px; }
  .container { padding: 0 14px; }
}
