/* ============================================================
   BGS TRAVEL & TOURISM — DESIGN SYSTEM
   Brand: Black & Gold | Travel Accent Palette
   Fonts: Cormorant (display) + Montserrat (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. CSS CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================================ */
:root {
  --bar-offset: 44px; /* announcement bar height — updated by JS */

  /* --- Core Brand: Black & Gold --- */
  --black:          #0A0A0A;
  --black-soft:     #111111;
  --navy:           #0D1B2A;
  --navy-mid:       #162336;
  --gold:           #E8941A;   /* matched to BGS logo orange-gold */
  --gold-light:     #F5A832;
  --gold-dark:      #C97810;
  --gold-muted:     rgba(232, 148, 26, 0.15);
  --white:          #FFFFFF;

  /* --- Page Backgrounds --- */
  --bg-page:        #FAF7F2;   /* Warm White — main bg */
  --bg-sand:        #F0EDE8;   /* Warm Sand — alternate sections */
  --bg-dark:        #0D1B2A;   /* Deep Navy — dark sections */
  --bg-earth:       #1A1209;   /* Deep Earth — Africa section */
  --bg-footer:      #080F18;   /* Very dark navy — footer */

  /* --- Text --- */
  --text-primary:   #0D1B2A;
  --text-muted:     #6B7280;
  --text-light:     rgba(255,255,255,0.85);
  --text-ghost:     rgba(255,255,255,0.55);

  /* --- Travel Accent Colours --- */
  --desert:         #D4956A;   /* Desert sand/UAE warmth */
  --desert-dark:    #B5733F;
  --oasis:          #2A9D8F;   /* Oasis teal / water */
  --oasis-dark:     #1F7A6E;
  --safari:         #264E36;   /* Safari deep green / Africa */
  --safari-light:   #3A7D52;
  --safari-earth:   #8B5E3C;   /* Earthy brown */
  --tropical:       #1E6FA8;   /* Ocean / SE Asia blue */
  --sunset:         #E07B5B;   /* Sunset coral */
  --whatsapp:       #25D366;   /* WhatsApp brand */
  --star:           #F59E0B;   /* Review stars */

  /* --- UI States --- */
  --border-light:   rgba(255,255,255,0.12);
  --border-sand:    #E5E0D8;
  --shadow-sm:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:      0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:      0 8px 40px rgba(0,0,0,0.16);
  --shadow-dark:    0 8px 40px rgba(0,0,0,0.40);

  /* --- Typography --- */
  --font-display:   'Cormorant', Georgia, serif;
  --font-body:      'Montserrat', system-ui, sans-serif;

  /* --- Sizing --- */
  --max-width:      1280px;
  --section-y:      80px;
  --section-y-sm:   48px;
  --radius-card:    8px;
  --radius-btn:     4px;
  --radius-pill:    50px;

  /* --- Transitions --- */
  --transition:     all 0.22s ease;
  --transition-slow: all 0.40s ease;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text-primary);
  background: var(--bg-page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================================================
   3. TYPOGRAPHY SCALE
   ============================================================ */

/* Display headings — Cormorant */
.h1, h1 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.25rem, 5vw, 4.5rem); line-height: 1.08; letter-spacing: -0.01em; }
.h2, h2 { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.12; }
.h3, h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(1.5rem, 2.5vw, 2rem); line-height: 1.2; }
.h4, h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; line-height: 1.3; }

/* Body — Montserrat */
.body-lg  { font-size: 1.125rem; line-height: 1.65; }
.body-md  { font-size: 1rem;     line-height: 1.65; }
.body-sm  { font-size: 0.875rem; line-height: 1.6; }
.body-xs  { font-size: 0.8125rem; line-height: 1.5; }

/* Eyebrow labels */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) { .container { padding: 0 40px; } }
@media (min-width: 1024px) { .container { padding: 0 60px; } }

.section {
  padding: var(--section-y-sm) 0;
}
@media (min-width: 768px) { .section { padding: var(--section-y) 0; } }

.section--dark  { background: var(--bg-dark); }
.section--sand  { background: var(--bg-sand); }
.section--earth { background: var(--bg-earth); }
.section--white { background: var(--white); }

/* Grid helpers */
.grid-2 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-3 { display: grid; gap: 24px; grid-template-columns: 1fr; }
.grid-4 { display: grid; gap: 24px; grid-template-columns: 1fr 1fr; }

@media (min-width: 640px)  { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius-btn);
  transition: var(--transition);
  white-space: nowrap;
}

/* Primary — Gold fill */
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(201,151,44,0.35);
}
.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201,151,44,0.50);
}
.btn--primary:active { transform: translateY(0); background: var(--gold-dark); }

/* Secondary — Navy fill */
.btn--secondary {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn--secondary:hover { background: var(--navy-mid); transform: translateY(-1px); }

/* Outline — Gold border */
.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn--outline:hover {
  background: var(--gold);
  color: var(--navy);
}

/* Outline White */
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* WhatsApp button */
.btn--whatsapp {
  background: var(--whatsapp);
  color: var(--white);
}
.btn--whatsapp:hover { background: #1ebe5d; transform: translateY(-1px); }

/* Sizes */
.btn--sm  { padding: 10px 20px; font-size: 0.75rem; }
.btn--lg  { padding: 18px 40px; font-size: 1rem; }
.btn--full { width: 100%; justify-content: center; }

/* ============================================================
   6. SECTION HEADER PATTERN
   ============================================================ */
.section-header {
  margin-bottom: 48px;
}
.section-header--center { text-align: center; }

.section-header .eyebrow { margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  font-size: 1.0625rem;
  color: var(--text-muted);
  max-width: 600px;
}
.section-header--center p { margin: 0 auto; }

/* ============================================================
   7. NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: var(--bar-offset, 44px); left: 0; right: 0;
  z-index: 1000;
  height: 72px;
  background: transparent;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
}

.nav.scrolled {
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.35);
}

.nav__inner {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) { .nav__inner { padding: 0 32px; } }
@media (min-width: 1280px) { .nav__inner { padding: 0 60px; } }

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav__logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
}

.nav__logo-text span {
  color: var(--gold);
}

/* Legacy fallback — kept for backward compat */
.nav__logo-mark {
  width: 42px; height: 42px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--navy);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.nav__links {
  display: none;
  align-items: center;
  gap: 20px;
}
@media (min-width: 1024px) { .nav__links { display: flex; } }
@media (min-width: 1280px) { .nav__links { gap: 28px; } }

.nav__link {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.22s ease;
}
.nav__link:hover { color: var(--white); }
.nav__link:hover::after { width: 100%; }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
@media (min-width: 1024px) { .nav__hamburger { display: none; } }
@media (min-width: 1024px) and (max-width: 1199px) { .nav__link { font-size: 0.8125rem; } }

.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0; right: -100%;
  width: min(360px, 100vw);
  height: 100vh;
  background: var(--navy);
  z-index: 1100;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto;
}
.nav__drawer.open { right: 0; }

.nav__drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.nav__drawer-close {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
}

.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.nav__drawer-link {
  font-size: 1.375rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav__drawer-link:hover { color: var(--gold); }

.nav__drawer-cta {
  margin-top: 32px;
}

/* ── Services dropdown (desktop) ── */
.nav__dropdown-wrap {
  position: relative;
}
.nav__link--dropdown {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
}
.nav__dropdown-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
  line-height: 1;
}
.nav__dropdown-wrap:hover .nav__dropdown-arrow,
.nav__link--dropdown[aria-expanded="true"] .nav__dropdown-arrow {
  transform: rotate(180deg);
}
.nav__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  min-width: 220px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 200;
  border-top: 3px solid var(--gold);
}
.nav__dropdown-wrap:hover .nav__dropdown,
.nav__dropdown-wrap:focus-within .nav__dropdown,
.nav__dropdown.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.nav__dropdown-item i { color: var(--gold); font-size: 1rem; width: 18px; }
.nav__dropdown-item:hover { background: var(--bg); color: var(--gold); }
.nav__dropdown-item--active { color: var(--gold); font-weight: 600; }

/* ── Services accordion (mobile drawer) ── */
.nav__drawer-accordion {
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.nav__drawer-accordion-arrow {
  font-size: 1.1rem;
  transition: transform 0.25s ease;
}
.nav__drawer-accordion[aria-expanded="true"] .nav__drawer-accordion-arrow {
  transform: rotate(180deg);
}
.nav__drawer-subnav {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.nav__drawer-subnav.open { max-height: 320px; }
.nav__drawer-sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s;
}
.nav__drawer-sublink i { color: var(--gold); font-size: 1rem; width: 18px; }
.nav__drawer-sublink:hover { color: var(--gold); }
.nav__drawer-sublink--active { color: var(--gold); font-weight: 600; }

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1050;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.nav__overlay.show { opacity: 1; pointer-events: all; }

/* ============================================================
   8. HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video,
.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.06); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,27,42,0.25) 0%,
    rgba(13,27,42,0.60) 50%,
    rgba(13,27,42,0.90) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  padding-top: calc(72px + var(--bar-offset, 44px)); /* nav + announcement bar */
}
@media (min-width: 1024px) { .hero__content { padding: calc(72px + var(--bar-offset, 44px)) 60px 0; } }

.hero__eyebrow {
  margin-bottom: 20px;
}

.hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 720px;
}

.hero__headline em {
  font-style: italic;
  color: var(--gold-light);
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 40px;
}

/* Search bar */
.hero__search {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 40px rgba(0,0,0,0.22);
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  max-width: 820px;
  margin-bottom: 24px;
  overflow: hidden;
}

/* Individual field group */
.hero__search-group {
  flex: 1 1 0;
  min-width: 0;
  padding: 14px 18px;
  border-right: 1px solid #E5E0D8;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__search-group--dest { flex: 1.6 1 0; }
.hero__search-group--last { border-right: none; }

/* Label */
.hero__search-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888;
  display: block;
  margin-bottom: 4px;
  white-space: nowrap;
}

/* Select */
.hero__search-select {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: #0D1B2A;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9972C' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 2px center;
  padding-right: 18px;
}
.hero__search-select option,
.hero__search-select optgroup { color: #0D1B2A; background: #fff; }

/* Submit button */
.hero__search-submit {
  flex-shrink: 0;
  background: var(--gold);
  color: #0D1B2A;
  border: none;
  border-radius: 0;
  padding: 0 28px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  transition: background 0.2s;
  min-height: 64px;
}
.hero__search-submit:hover { background: var(--gold-light); }

/* Mobile: stack fields vertically */
@media (max-width: 640px) {
  .hero__search {
    flex-wrap: wrap;
    border-radius: var(--radius-card);
    overflow: visible;
  }
  .hero__search-group {
    flex: 1 1 calc(50% - 1px);
    border-bottom: 1px solid #E5E0D8;
  }
  .hero__search-group--dest {
    flex: 1 1 100%;
    border-right: none;
  }
  .hero__search-group--last { border-right: none; }
  .hero__search-submit {
    flex: 1 1 100%;
    justify-content: center;
    border-radius: 0 0 var(--radius-card) var(--radius-card);
    min-height: 52px;
  }
}

/* Hero trust strip */
.hero__trust-strip {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(201, 151, 44, 0.3);
  z-index: 10;
}
.hero__trust-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 28px;
  text-decoration: none;
  color: var(--white);
  transition: opacity 0.2s;
}
.hero__trust-item:hover { opacity: 0.8; }
.hero__trust-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 1px;
}
.hero__trust-score {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
}
.hero__trust-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}
.hero__trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(201, 151, 44, 0.35);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .hero__trust-inner { gap: 4px; justify-content: center; }
  .hero__trust-item { padding: 4px 12px; }
  .hero__trust-label { font-size: 0.72rem; }
  .hero__trust-divider { display: none; }
}

/* Quick pills */
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius-pill);
  color: var(--white);
  font-size: 0.8125rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}
.hero__pill:hover {
  background: var(--gold-muted);
  border-color: var(--gold);
  color: var(--gold-light);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.6875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================================
   9. TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  padding: 0;
  border-bottom: 1px solid var(--border-sand);
  border-top: 1px solid var(--border-sand);
}

.trust-bar__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

@media (min-width: 768px)  { .trust-bar__inner { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .trust-bar__inner { grid-template-columns: repeat(5, 1fr); } }

.trust-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
  border-right: 1px solid var(--border-sand);
  border-bottom: 1px solid var(--border-sand);
  gap: 4px;
}
.trust-bar__item:last-child { border-right: none; }

@media (min-width: 1024px) {
  .trust-bar__item { border-bottom: none; }
  .trust-bar__item:last-child { border-right: none; }
}

.trust-bar__icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 6px;
}

.trust-bar__number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.trust-bar__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   10. DESTINATION CARDS
   ============================================================ */
.destination-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--black);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  transition: transform 0.30s ease, box-shadow 0.30s ease;
}
.destination-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.destination-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.40s ease;
}
.destination-card:hover .destination-card__img { transform: scale(1.06); }

.destination-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,27,42,0.88) 0%, rgba(13,27,42,0.10) 60%, transparent 100%);
  transition: var(--transition-slow);
}
.destination-card:hover .destination-card__overlay {
  background: linear-gradient(to top, rgba(13,27,42,0.95) 0%, rgba(13,27,42,0.35) 100%);
}

.destination-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px;
  transform: translateY(0);
  transition: var(--transition);
}

.destination-card__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  margin-bottom: 8px;
}

.destination-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.destination-card__tagline {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.70);
  margin-bottom: 12px;
}

.destination-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  font-size: 0.8125rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: var(--transition);
}
.destination-card:hover .destination-card__cta {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   11. EXPERIENCE CARDS (Circular)
   ============================================================ */
.experience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.experience-card__circle {
  position: relative;
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 14px;
  border: 2.5px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.experience-card:hover .experience-card__circle {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201,151,44,0.20);
}

.experience-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.experience-card:hover .experience-card__img { transform: scale(1.10); }

.experience-card__name {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--white);
  margin-bottom: 4px;
}

.experience-card__price {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gold);
}

.experiences-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (min-width: 640px) { .experiences-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .experiences-grid { grid-template-columns: repeat(5, 1fr); gap: 32px; } }

/* ============================================================
   12. PACKAGE CARDS
   ============================================================ */
.package-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  display: flex;
  flex-direction: column;
}
.package-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.package-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.package-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.40s ease;
}
.package-card:hover .package-card__img { transform: scale(1.05); }

.package-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 3px;
}

.package-card__body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.package-card__category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.package-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.package-card__stars {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.8125rem;
}

.package-card__stars .stars { color: var(--star); letter-spacing: 1px; }
.package-card__stars .count { color: var(--text-muted); margin-left: 4px; }

.package-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.package-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-top: 1px solid var(--border-sand);
  margin-top: auto;
}

.package-card__price {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
}
.package-card__price span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border-sand);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}
.filter-tab:hover { border-color: var(--navy); color: var(--navy); }
.filter-tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ============================================================
   13. USP / WHY BGS
   ============================================================ */
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 640px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }

.usp-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.usp-item__icon {
  width: 52px; height: 52px;
  background: var(--gold-muted);
  border-radius: var(--radius-card);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1.5rem;
  border: 1px solid rgba(201,151,44,0.20);
}

.usp-item__title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.usp-item__body {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   14. REVIEWS / TESTIMONIALS
   ============================================================ */
.review-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-card__stars { color: var(--star); font-size: 1rem; letter-spacing: 2px; }

.review-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-primary);
  flex: 1;
}
.review-card__quote::before { content: '\201C'; }
.review-card__quote::after  { content: '\201D'; }

.review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-card__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-muted), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  flex-shrink: 0;
}

.review-card__name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-primary);
}
.review-card__trip {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* ============================================================
   15. AFRICA SECTION CARDS
   ============================================================ */
.africa-card {
  border-radius: var(--radius-card);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.africa-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.africa-card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.africa-card__body {
  padding: 20px;
}

.africa-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.africa-card__tagline {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.africa-card__highlights {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 12px;
}

.africa-card__price {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.africa-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.africa-card__link:hover { gap: 10px; }

/* ============================================================
   16. BLOG CARDS
   ============================================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.blog-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }

.blog-card__img-wrap { overflow: hidden; }

.blog-card__body { padding: 20px; }

.blog-card__category {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.blog-card:hover .blog-card__title { color: var(--gold); }

.blog-card__meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: gap 0.2s;
}
.blog-card__link:hover { color: var(--gold); gap: 10px; }

/* ============================================================
   17. LEAD CAPTURE / WHATSAPP SECTION
   ============================================================ */
.lead-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 820px;
  margin: 32px auto 0;
}

.lead-form__input {
  flex: 1 1 200px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-btn);
  color: var(--white);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}
.lead-form__input::placeholder { color: rgba(255,255,255,0.45); }
.lead-form__input:focus { border-color: var(--gold); }

/* ============================================================
   18. PARTNERS BAR
   ============================================================ */
.partners-bar {
  padding: 40px 0;
  background: var(--bg-sand);
  text-align: center;
}

.partners-bar__label {
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.partners-bar__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.partners-bar__logo {
  height: 32px;
  opacity: 0.45;
  filter: grayscale(100%);
  transition: var(--transition);
}
.partners-bar__logo:hover { opacity: 1; filter: grayscale(0%); }

/* ============================================================
   19. FOOTER
   ============================================================ */
.footer {
  background: var(--bg-footer);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
@media (min-width: 640px) { .footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1.2fr; } }

.footer__col-heading {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}

.footer__about-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer__contact-item a:hover { color: var(--gold); }

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer__social-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  transition: var(--transition);
}
.footer__social-icon:hover { background: var(--gold); color: var(--navy); }

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__link:hover { color: var(--gold); }

.footer__newsletter-text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.50);
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer__newsletter-form {
  display: flex;
  gap: 8px;
}

.footer__newsletter-input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-btn);
  color: var(--white);
  font-size: 0.875rem;
  outline: none;
}
.footer__newsletter-input:focus { border-color: var(--gold); }
.footer__newsletter-input::placeholder { color: rgba(255,255,255,0.30); }

.footer__newsletter-btn {
  padding: 10px 16px;
  background: var(--gold);
  color: var(--navy);
  border-radius: var(--radius-btn);
  font-weight: 600;
  font-size: 0.8125rem;
  transition: background 0.2s;
  white-space: nowrap;
}
.footer__newsletter-btn:hover { background: var(--gold-light); }

.footer__license {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.30);
  margin-top: 16px;
}

.footer__bottom {
  padding: 18px 0;
  text-align: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.30);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.footer__bottom a:hover { color: var(--gold); }

/* ============================================================
   20. EXIT-INTENT POPUP
   ============================================================ */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13,27,42,0.92);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.30s ease;
}
.popup-overlay.show { opacity: 1; pointer-events: all; }

.popup {
  background: var(--white);
  border-radius: var(--radius-card);
  max-width: 520px;
  width: 100%;
  overflow: hidden;
  transform: scale(0.95) translateY(12px);
  transition: transform 0.30s ease;
}
.popup-overlay.show .popup { transform: scale(1) translateY(0); }

.popup__images {
  display: flex;
  height: 120px;
  overflow: hidden;
}
.popup__img { flex: 1; object-fit: cover; }

.popup__body {
  padding: 36px 36px 32px;
}

.popup__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.popup__close:hover { background: rgba(0,0,0,0.14); }

.popup__images-wrap { position: relative; }

.popup h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.popup p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.popup__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.popup__input {
  padding: 12px 16px;
  border: 1.5px solid var(--border-sand);
  border-radius: var(--radius-btn);
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}
.popup__input:focus { border-color: var(--gold); }

.popup__skip {
  display: block;
  text-align: center;
  margin-top: 12px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  cursor: pointer;
}
.popup__skip:hover { color: var(--text-primary); }

/* ============================================================
   21. STICKY MOBILE BAR
   ============================================================ */
.sticky-bar {
  display: flex;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--navy);
  height: 56px;
}
@media (min-width: 1024px) { .sticky-bar { display: none; } }

.sticky-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sticky-bar__btn--wa {
  background: var(--whatsapp);
  color: var(--white);
}

.sticky-bar__btn--plan {
  background: var(--gold);
  color: var(--navy);
}

/* Add padding to body on mobile to account for sticky bar */
@media (max-width: 1023px) { body { padding-bottom: 56px; } }

/* ============================================================
   22. UTILITY CLASSES
   ============================================================ */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }
.text-navy    { color: var(--navy); }

.mt-auto { margin-top: auto; }
.mb-0    { margin-bottom: 0; }
.mb-8    { margin-bottom: 8px; }
.mb-16   { margin-bottom: 16px; }
.mb-24   { margin-bottom: 24px; }
.mb-40   { margin-bottom: 40px; }

.flex         { display: flex; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.gap-8        { gap: 8px; }
.gap-16       { gap: 16px; }

.view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: gap 0.2s;
}
.view-all-link:hover { gap: 10px; color: var(--gold-dark); }

/* Hidden */
.hidden { display: none !important; }

/* ============================================================
   23. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-up:nth-child(2) { animation-delay: 0.1s; }
.animate-fade-up:nth-child(3) { animation-delay: 0.2s; }

/* ============================================================
   24. DESTINATION ACCENT COLOUR OVERRIDES
   ============================================================ */
/* Used on destination-specific pages */
.accent--dubai     { --accent: var(--desert); }
.accent--africa    { --accent: var(--safari); }
.accent--india     { --accent: var(--sunset); }
.accent--indonesia { --accent: var(--tropical); }
.accent--europe    { --accent: var(--oasis); }

/* ============================================================
   25. SERVICES GRID (homepage section)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-bottom-color: var(--gold);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(201, 151, 44, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}
.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}
.service-card:hover .service-card__cta { gap: 10px; }

/* ============================================================
   26. ANNOUNCEMENT BAR
   ============================================================ */
.announcement-bar {
  background: linear-gradient(90deg, #A0721A 0%, #C9972C 40%, #E8B84B 60%, #C9972C 80%, #A0721A 100%);
  border-bottom: 2px solid rgba(255,255,255,0.15);
  padding: 10px 16px;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1100;
  width: 100%;
}
.announcement-bar__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #1a0f00;
  font-family: var(--font-body);
  font-weight: 500;
}
.announcement-bar__icon { font-size: 1rem; }
.announcement-bar__text { flex: 1; text-align: center; }
.announcement-bar__link {
  color: #0D1B2A;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  margin-left: 6px;
}
.announcement-bar__link:hover { color: #fff; }
.announcement-bar__close {
  background: none;
  border: none;
  color: rgba(0,0,0,0.45);
  cursor: pointer;
  font-size: 1rem;
  padding: 4px 8px;
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.2s;
}
.announcement-bar__close:hover { color: #0D1B2A; }

/* ============================================================
   26. URGENCY BADGES & PRICE ANCHORING
   ============================================================ */
.urgency-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(201, 151, 44, 0.12);
  border: 1px solid rgba(201, 151, 44, 0.35);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 600;
  font-family: var(--font-body);
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.urgency-badge--limited {
  background: rgba(224, 123, 91, 0.12);
  border-color: rgba(224, 123, 91, 0.35);
  color: var(--sunset);
}
.urgency-badge--popular {
  background: rgba(42, 157, 143, 0.12);
  border-color: rgba(42, 157, 143, 0.35);
  color: var(--oasis);
}
.urgency-badge i { font-size: 0.8rem; }

.price-was {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.85em;
  margin-right: 4px;
  font-weight: 400;
}

/* ============================================================
   27. AZERBAIJAN SPOTLIGHT
   ============================================================ */
.az-spotlight {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: var(--white);
}
.az-spotlight__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-color: #0d1a2e;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.az-spotlight:hover .az-spotlight__bg { transform: scale(1); }
.az-spotlight__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(5,15,30,0.93) 0%, rgba(5,15,30,0.88) 50%, rgba(5,15,30,0.75) 100%);
}
.az-spotlight__shell {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 1024px) { .az-spotlight__shell { padding: 0 60px; } }

/* Top bar */
.az-top-bar {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.az-top-bar__new {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(201,151,44,0.2); border: 1px solid var(--gold);
  color: var(--gold); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px;
}
.az-top-bar__urgency {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(220,60,30,0.18); border: 1px solid rgba(220,100,80,0.5);
  color: #ff8a7a; font-size: 0.78rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px;
}

/* Inner grid */
.az-spotlight__inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}

/* Left column */
.az-country {
  display: flex; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
  margin-bottom: 12px;
}
.az-country i { color: var(--gold); }
.az-spotlight__left h2 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.05; color: var(--white);
  margin-bottom: 20px; font-family: var(--font-display);
}
.az-spotlight__left h2 em { color: var(--gold); font-style: italic; display: block; }
.az-spotlight__lead {
  font-size: 1rem; line-height: 1.75;
  color: rgba(255,255,255,0.72); margin-bottom: 32px; max-width: 500px;
}
.az-spotlight__lead strong { color: var(--white); }

.az-stats-row {
  display: flex; gap: 28px; margin-bottom: 32px; flex-wrap: wrap;
}
.az-stat { display: flex; flex-direction: column; gap: 2px; }
.az-stat__num { font-size: 1.4rem; font-weight: 800; color: var(--gold); font-family: var(--font-body); }
.az-stat__lbl { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.05em; }

.az-highlights { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.az-highlights li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.8); font-size: 0.9rem;
}
.az-highlights li i { color: #4ade80; font-size: 1rem; flex-shrink: 0; }

/* Right column — Package card */
.az-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
}
.az-card__header {
  background: linear-gradient(135deg, #A0721A 0%, #C9972C 60%, #E8B84B 100%);
  padding: 20px 24px 18px;
}
.az-card__badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(0,0,0,0.25); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; padding: 4px 10px; border-radius: 50px;
  margin-bottom: 8px;
}
.az-card__title { font-size: 1.15rem; font-weight: 800; color: var(--white); }

.az-card__price-block {
  padding: 22px 24px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.az-card__price-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.07em; color: rgba(255,255,255,0.45); margin-bottom: 4px; }
.az-card__price { font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.6); line-height: 1; }
.az-card__price-num { font-size: 2.6rem; font-weight: 900; color: var(--gold); font-family: var(--font-body); }
.az-card__per { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 4px; }

.az-card__includes {
  list-style: none; padding: 20px 24px 16px; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.az-card__includes li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.82); }
.az-card__includes li i { color: var(--gold); font-size: 1.05rem; flex-shrink: 0; margin-top: 1px; }
.az-card__includes li span strong { color: var(--white); }

.az-card__urgency {
  margin: 14px 24px;
  background: rgba(220,60,30,0.15); border: 1px solid rgba(220,100,80,0.3);
  border-radius: 8px; padding: 10px 14px;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; color: #ff9d8f;
}
.az-card__urgency i { font-size: 1rem; flex-shrink: 0; }

.az-card__cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin: 0 24px 16px;
  background: #25D366; color: var(--white);
  font-size: 0.9rem; font-weight: 700;
  padding: 14px 20px; border-radius: 12px;
  text-decoration: none; letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}
.az-card__cta:hover { background: #1ebe5a; transform: translateY(-2px); }
.az-card__cta i { font-size: 1.2rem; }

.az-card__note {
  text-align: center; font-size: 0.72rem;
  color: rgba(255,255,255,0.35); padding: 0 24px 18px;
  display: flex; align-items: center; justify-content: center; gap: 5px;
  margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .az-spotlight__inner { grid-template-columns: 1fr; gap: 44px; }
  .az-card { max-width: 480px; }
}
@media (max-width: 600px) {
  .az-spotlight { padding: 60px 0; }
  .az-spotlight__left h2 { font-size: 2.6rem; }
  .az-card { max-width: 100%; }
  .az-stats-row { gap: 20px; }
}

/* ============================================================
   27. FAQ SECTION
   ============================================================ */
.faq { padding: var(--section-v) 0; background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
  margin-top: 40px;
}
.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 0 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  font-size: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer[aria-hidden="false"] { max-height: 400px; padding-bottom: 16px; }
.faq-answer p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; gap: 0; }
  .faq-item:nth-child(2) { border-top: none; }
}

/* ============================================================
   28. FLOATING WHATSAPP FAB
   ============================================================ */
.wa-fab {
  position: fixed;
  bottom: 88px;
  right: 20px;
  z-index: 1050;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp);
  color: var(--white);
  border-radius: 50px;
  padding: 12px 18px 12px 14px;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa-fab:hover {
  transform: scale(1.05) translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  color: var(--white);
}
.wa-fab__icon { font-size: 1.4rem; line-height: 1; }
.wa-fab__label { white-space: nowrap; }
.wa-fab__pulse {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 14px;
  height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
@media (max-width: 640px) {
  .wa-fab { bottom: 76px; right: 12px; padding: 12px 14px; }
  .wa-fab__label { display: none; }
  .wa-fab { border-radius: 50%; width: 52px; height: 52px; padding: 0; justify-content: center; }
}

/* ============================================================
   29. LIVE BOOKING NOTIFICATION
   ============================================================ */
.live-notif {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 1050;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 300px;
  border-left: 3px solid var(--gold);
  transform: translateY(120px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.34,1.56,.64,1), opacity 0.4s ease;
  pointer-events: none;
}
.live-notif.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.live-notif__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-alt);
}
.live-notif__avatar img { width: 100%; height: 100%; object-fit: cover; }
.live-notif__body { flex: 1; min-width: 0; }
.live-notif__name {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.live-notif__action {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
}
.live-notif__action strong { color: var(--gold); font-weight: 600; }
.live-notif__time {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin: 3px 0 0;
}
@media (max-width: 480px) {
  .live-notif { left: 12px; right: 12px; max-width: none; bottom: 16px; }
}
