/* ============================================================
   NEGUS AGENCY — GLOBAL STYLES
   Dark Corporate Theme | Navy + Gold | SEO-Optimized
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,400&display=swap');

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

:root {
  --navy:        #060A1C;
  --navy-mid:    #0B1029;
  --navy-light:  #131B3A;
  --navy-card:   #0E1530;
  --gold:        #F5A818;
  --gold-light:  #FFC245;
  --gold-dim:    rgba(245,168,24,0.10);
  --gold-glow:   rgba(245,168,24,0.22);
  --gold-border: rgba(245,168,24,0.20);
  --white:       #FFFFFF;
  --gray:        #8892a4;
  --gray-mid:    rgba(255,255,255,0.55);
  --gray-dim:    rgba(255,255,255,0.32);
  --border:      rgba(255,255,255,0.07);
  --font-head:   'Outfit', sans-serif;
  --font-body:   'DM Sans', sans-serif;
  --radius:      16px;
  --radius-sm:   10px;
  --tr:          0.36s cubic-bezier(0.4,0,0.2,1);
  --max-w:       1200px;
  --nav-h:       76px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: rgba(245,168,24,0.28); color: #fff; }

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: rgba(245,168,24,0.35); border-radius: 3px; }

/* ── SCROLL TO TOP ── */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 46px; height: 46px;
  background: var(--gold); color: var(--navy);
  border-radius: 12px; font-size: 1.1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 6px 24px rgba(245,168,24,0.38);
  opacity: 0; transform: translateY(20px); pointer-events: none;
  transition: opacity .3s, transform .3s, box-shadow .25s;
}
#scrollTop.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
#scrollTop:hover { box-shadow: 0 10px 32px rgba(245,168,24,0.55); transform: translateY(-3px); }

/* ============================================================
   NAVBAR
============================================================ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h); z-index: 900;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 14%;
  background: rgba(6,10,28,0.92);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.45); }

.nav-logo { display: flex; align-items: center; gap: 0.8rem; cursor: pointer; }
.nav-logo img { width: 40px; height: 40px; object-fit: contain; }
.logo-text-wrap {}
.logo-name { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
.logo-name span { color: var(--gold); }
.logo-tagline { font-size: 0.62rem; color: var(--gray-dim); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 1px; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; }
.nav-links a {
  font-size: 0.88rem; font-weight: 700; color: var(--gray-mid);
  padding: 0.45rem 0.85rem; border-radius: 8px;
  transition: color var(--tr), background var(--tr);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--gold); }

.nav-cta {
  margin-left: 0.6rem;
  background: var(--gold); color: var(--navy) !important;
  font-family: var(--font-head); font-weight: 700; font-size: 0.85rem !important;
  padding: 0.55rem 1.4rem !important; border-radius: 50px !important;
  transition: background var(--tr), transform var(--tr), box-shadow var(--tr) !important;
  box-shadow: 0 4px 16px rgba(245,168,24,0.3);
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-2px) !important; box-shadow: 0 8px 28px rgba(245,168,24,0.42) !important; }

#lang-btn {
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold); font-size: 0.76rem; font-weight: 700;
  padding: 0.38rem 0.85rem; border-radius: 50px;
  transition: background .3s, box-shadow .3s;
}
#lang-btn:hover { background: rgba(245,168,24,0.18); box-shadow: 0 4px 16px rgba(245,168,24,0.2); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 10px; cursor: pointer;
}
.hamburger span { display: block; height: 1.5px; background: var(--white); border-radius: 2px; transition: all .35s ease; }
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 16px; }
.hamburger span:nth-child(3) { width: 22px; }
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); width: 22px; }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); width: 22px; }

/* Mobile drawer */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.65); backdrop-filter: blur(4px); z-index: 901; }
.mob-overlay.open { display: block; }

.mob-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 85vw);
  background: #080D22; border-left: 1px solid var(--border);
  z-index: 902; transform: translateX(105%);
  transition: transform .42s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mob-drawer.open { transform: translateX(0); }

.mob-drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.3rem 1.5rem; border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #080D22; z-index: 2;
}
.mob-close {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  color: var(--gray-mid); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; cursor: pointer;
  transition: background .3s, color .3s;
}
.mob-close:hover { background: var(--gold-dim); color: var(--gold); }

.mob-nav { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.25rem; }
.mob-nav a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.9rem 1rem; border-radius: 12px;
  font-family: var(--font-head); font-size: 1.05rem; font-weight: 700;
  color: rgba(255,255,255,0.55); border: 1px solid transparent;
  transition: all .28s;
}
.mob-nav a:hover { color: var(--white); background: rgba(255,255,255,0.04); }
.mob-nav a.active { color: var(--gold); background: var(--gold-dim); border-color: var(--gold-border); }
.mob-nav a .arr { font-size: 0.7rem; color: var(--gold); opacity: 0; transition: opacity .25s; }
.mob-nav a:hover .arr, .mob-nav a.active .arr { opacity: 1; }

.mob-foot {
  padding: 1.5rem; border-top: 1px solid var(--border); margin-top: auto;
}
.mob-cta {
  display: block; width: 100%; padding: 1rem; text-align: center;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-head); font-weight: 800; font-size: 0.95rem;
  border-radius: 14px; margin-bottom: 1rem;
  box-shadow: 0 6px 20px rgba(245,168,24,0.3);
  transition: filter .25s, transform .25s;
}
.mob-cta:hover { filter: brightness(1.08); transform: translateY(-2px); }
.mob-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.mob-contact-item { font-size: 0.8rem; color: var(--gray-dim); display: flex; align-items: center; gap: 0.6rem; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  transition: all var(--tr); cursor: pointer;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 12px 28px rgba(245,168,24,0.38); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold-border); }
.btn-gold-outline:hover { background: var(--gold-dim); transform: translateY(-2px); }

/* ============================================================
   PAGE HERO (shared)
============================================================ */
.page-hero {
  padding: calc(var(--nav-h) + 5rem) 5% 5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 60% at 20% 50%, rgba(245,168,24,0.055) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 80% 20%, rgba(80,100,255,0.04) 0%, transparent 55%);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }

.breadcrumb {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; color: var(--gray-dim); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--gold); transition: opacity .25s; }
.breadcrumb a:hover { opacity: 0.75; }
.breadcrumb span { color: var(--gray-dim); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--gold); border-radius: 1px; }

.page-title {
  font-family: var(--font-head); font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; line-height: 1.08; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 1.2rem;
}
.page-title .accent { color: var(--gold); }

.page-subtitle {
  font-size: 1.05rem; color: var(--gray-mid); line-height: 1.75;
  max-width: 600px; margin-bottom: 2.5rem;
}

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-wrap { max-width: var(--max-w); margin: 0 auto; padding: 6rem 5%; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-label::before { content: ''; width: 18px; height: 2px; background: var(--gold); border-radius: 1px; }
.section-title {
  font-family: var(--font-head); font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 900; line-height: 1.1; letter-spacing: -0.025em;
  margin-bottom: 1rem; color: var(--white);
}
.section-title .accent { color: var(--gold); }
.section-desc { font-size: 1rem; color: var(--gray-mid); line-height: 1.75; max-width: 580px; }

.section-header-centered { text-align: center; max-width: 680px; margin: 0 auto 4rem; }
.section-header-centered .section-label { justify-content: center; }
.section-header-centered .section-desc { margin: 0 auto; }

/* ============================================================
   CARD COMPONENTS
============================================================ */
.card {
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr), background var(--tr);
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 30px rgba(245,168,24,0.04);
  background: rgba(255,255,255,0.038);
}

/* ============================================================
   FOOTER
============================================================ */
/* ============================================================
   FOOTER
============================================================ */
footer {
  background: #07091a;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}

/* TOP BAND */
.footer-top-band {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.8rem 5%;
}
.footer-top-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer-contact-items { display: flex; gap: 2rem; flex-wrap: wrap; }
.footer-contact-item {
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.55);
  text-decoration: none; transition: color .25s;
}
.footer-contact-item:hover { color: var(--gold); }
.footer-contact-item svg { color: var(--gold); flex-shrink: 0; width: 15px; height: 15px; }
.footer-contact-item span { display: flex; align-items: center; gap: 0.65rem; }
.footer-avail {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.4);
  background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.18);
  padding: 0.35rem 0.9rem; border-radius: 50px;
}
.footer-avail-dot { display: none; }

/* MAIN GRID */
.footer-main { padding: 4.5rem 5% 3.5rem; }
.footer-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 4rem; padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* BRAND COL */
.footer-brand .footer-logo { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1.2rem; }
.footer-brand .logo-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 800; }
.footer-brand > p { font-size: 0.87rem; color: var(--gray-dim); line-height: 1.85; margin-bottom: 1.6rem; max-width: 280px; }

/* SOCIAL ROW */
.footer-socials { display: flex; gap: 0.55rem; margin-bottom: 1.8rem; }
.footer-social {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: background .25s, color .25s, border-color .25s, transform .25s;
  text-decoration: none;
}
.footer-social:hover { background: var(--gold-dim); color: var(--gold); border-color: var(--gold-border); transform: translateY(-2px); }
.footer-social svg { width: 16px; height: 16px; }

/* NEGUS TRAVEL MINI CARD */
.footer-travel-card {
  display: flex; align-items: center; gap: 0.8rem;
  background: rgba(34,197,94,0.07); border: 1px solid rgba(34,197,94,0.18);
  border-radius: 12px; padding: 0.9rem 1.1rem;
  text-decoration: none; transition: background .25s, border-color .25s;
}
.footer-travel-card:hover { background: rgba(34,197,94,0.12); border-color: rgba(34,197,94,0.35); }
.footer-travel-icon { font-size: 1.4rem; flex-shrink: 0; }
.footer-travel-text strong { display: block; font-family: var(--font-head); font-size: 0.85rem; font-weight: 700; color: #22c55e; }
.footer-travel-text span { font-size: 0.75rem; color: rgba(255,255,255,0.4); }

/* NAV COLS */
.footer-col h4 {
  font-family: var(--font-head); font-size: 0.72rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.9);
  margin-bottom: 1.4rem; position: relative; padding-bottom: 0.8rem;
}
.footer-col h4::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 20px; height: 2px; background: var(--gold); border-radius: 1px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.85rem; font-weight: 700; color: var(--gray-dim);
  text-decoration: none; transition: color .22s, gap .22s;
}
.footer-col ul li a:hover { color: var(--white); gap: 0.75rem; }
.footer-col ul li a svg { width: 13px; height: 13px; color: rgba(245,168,24,0.5); flex-shrink: 0; transition: color .22s; }
.footer-col ul li a:hover svg { color: var(--gold); }
.footer-col ul li a.travel-link { color: #22c55e; }
.footer-col ul li a.travel-link svg { color: rgba(34,197,94,0.5); }
.footer-col ul li a.travel-link:hover { color: #4ade80; }
.footer-col ul li a.travel-link:hover svg { color: #22c55e; }

/* CONTACT COL */
.footer-contact-list { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-contact-row {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.83rem; color: var(--gray-dim); text-decoration: none;
  transition: color .22s;
}
.footer-contact-row:hover { color: var(--white); }
.footer-contact-row .fc-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: rgba(245,168,24,0.08); border: 1px solid rgba(245,168,24,0.15);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
  transition: background .25s;
}
.footer-contact-row:hover .fc-icon { background: var(--gold-dim); }
.footer-contact-row .fc-icon svg { width: 13px; height: 13px; color: var(--gold); }
.footer-contact-row .fc-text strong { display: block; font-size: 0.72rem; font-weight: 700; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 1px; }

/* BOTTOM */
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 1.8rem 5%;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom-left { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: var(--gold); text-decoration: none; font-weight: 700; }
.footer-bottom a:hover { text-decoration: underline; }
.footer-bottom-badge {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  padding: 0.3rem 0.8rem; border-radius: 50px;
}

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-contact-items { gap: 1.2rem; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-top-inner { flex-direction: column; align-items: flex-start; }
  .footer-contact-items { flex-direction: column; gap: 0.8rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   UTILITIES
============================================================ */
.text-gold { color: var(--gold); }
.text-gray { color: var(--gray-mid); }
.badge {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 50px;
}
.badge-gold { background: var(--gold-dim); color: var(--gold); border: 1px solid var(--gold-border); }
.badge-green { background: rgba(74,222,128,0.08); color: #4ade80; border: 1px solid rgba(74,222,128,0.2); }
.badge-blue { background: rgba(80,130,255,0.08); color: #6b9bff; border: 1px solid rgba(80,130,255,0.18); }
.badge-purple { background: rgba(168,85,247,0.08); color: #c084fc; border: 1px solid rgba(168,85,247,0.2); }

.divider { height: 1px; background: var(--border); margin: 0; }

/* Fade-in animations */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Stats items */
.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden;
}
.stat-cell { padding: 1.2rem 1rem; background: var(--navy); text-align: center; transition: background .3s; }
.stat-cell:hover { background: var(--navy-card); }
.stat-num { font-family: var(--font-head); font-size: 2.5rem; font-weight: 900; color: var(--gold); display: block; line-height: 1; }
.stat-lbl { font-size: 0.8rem; color: var(--gray-dim); margin-top: 0.4rem; }
@media (max-width: 768px) { .stats-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) { .stats-wrap { transform: translateY(-30px) !important; padding: 0 4%; box-sizing: border-box; } }
@media (max-width: 480px) { .stats-wrap { transform: translateY(-20px) !important; } .stats-row { grid-template-columns: 1fr 1fr; gap: 1px; } }
@media (max-width: 768px) {
  .stats-row { grid-template-columns: repeat(4, 1fr) !important; }
  .stat-num { font-size: 1.4rem !important; }
  .stat-lbl { font-size: 0.65rem !important; }
  .stat-cell { padding: 0.9rem 0.4rem !important; }
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(135deg, var(--navy-light) 0%, var(--navy-card) 100%);
  border: 1px solid var(--gold-border); border-radius: 24px;
  padding: 4rem 3rem; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; border-radius: 24px; pointer-events: none;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(245,168,24,0.05) 0%, transparent 70%);
}
.cta-band::after { content: ''; position: absolute; top: 0; left: 15%; right: 15%; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.cta-band h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; margin-bottom: 1rem; position: relative; }
.cta-band p { color: var(--gray-mid); margin-bottom: 2.5rem; max-width: 500px; margin-left: auto; margin-right: auto; position: relative; }
.cta-band .btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }

/* WHATSAPP FLOAT */
.wa-float {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 998;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  transition: transform .3s, box-shadow .3s;
}
.wa-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.wa-float svg { width: 24px; height: 24px; fill: white; }

/* ── CONTAINER UTILITY ── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 5%; }

/* ── BUTTON VARIANTS (missing) ── */
.btn-secondary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 10px; font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all .25s;
  text-decoration: none;
  background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.2);
}
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-green {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 10px; font-family: var(--font-head);
  font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all .25s;
  text-decoration: none;
  background: var(--travel-green, #22c55e); color: #fff; border: none;
}
.btn-green:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,0.35); }

/* ── PAGE BADGE (hero eyebrow pill) ── */
.page-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--gold-dim); border: 1px solid var(--gold-border);
  color: var(--gold); padding: 0.4rem 1.2rem; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1.5rem;
}

/* ── WHATSAPP FLOAT ALIAS ── */
.whatsapp-float {
  position: fixed; bottom: 5.5rem; right: 2rem; z-index: 998;
  width: 52px; height: 52px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  transition: transform .3s, box-shadow .3s;
}
.whatsapp-float:hover { transform: scale(1.12); box-shadow: 0 10px 32px rgba(37,211,102,0.55); }
.whatsapp-float svg { width: 24px; height: 24px; fill: white; }
