/* ── AirLux Travels — Mobile-First Luxury Theme ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

:root {
  --navy: #0B1628;
  --navy-mid: #162240;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-pale: #F5EDD6;
  --cream: #FAF7F2;
  --white: #FFFFFF;
  --gray-100: #F0EDE8;
  --gray-300: #C8C3BA;
  --gray-500: #8A8278;
  --gray-700: #4A4540;
  --text: #1A1612;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
  --radius: 4px;
  --shadow: 0 8px 40px rgba(11,22,40,0.12);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ── CONTAINER ── */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 16px; }
@media (min-width: 600px) { .container { padding: 0 24px; } }

/* ── TOPBAR ── */
.topbar {
  background: var(--navy);
  color: var(--gray-300);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 7px 0;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.topbar-left { display: none; }
@media (min-width: 600px) { .topbar-left { display: block; } }
.topbar a { color: var(--gold-light); }
.topbar-phone {
  font-weight: 600;
  font-size: 13px;
  color: var(--gold) !important;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

/* ── HEADER / NAV ── */
header {
  background: var(--navy-mid);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 12px;
}
.logo { display: flex; flex-direction: column; gap: 1px; }
.logo-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1;
}
.logo-name span { color: var(--gold); }
.logo-tagline {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

/* Desktop nav hidden on mobile */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
@media (min-width: 1000px) {
  .desktop-nav { display: flex; }
}
.desktop-nav a {
  font-size: 11px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gray-300);
  padding: 8px 11px;
  border-radius: var(--radius);
  transition: all 0.2s;
  font-weight: 500;
  white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a.active {
  color: var(--white);
  background: rgba(201,168,76,0.15);
}
.desktop-nav .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600 !important;
  padding: 9px 16px !important;
  border-radius: var(--radius) !important;
}
.desktop-nav .nav-cta:hover { background: var(--gold-light) !important; }

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 1001;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.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); }
@media (min-width: 1000px) { .hamburger { display: none; } }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  flex-direction: column;
  background: var(--navy);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 12px 0 20px;
}
.mobile-drawer.open { display: flex; }
@media (min-width: 1000px) { .mobile-drawer { display: none !important; } }
.mobile-drawer a {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  padding: 13px 20px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: all 0.15s;
}
.mobile-drawer a:hover, .mobile-drawer a.active {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}
.mobile-drawer .nav-cta-mobile {
  margin: 14px 16px 0;
  background: var(--gold);
  color: var(--navy) !important;
  font-weight: 600 !important;
  text-align: center;
  border-radius: var(--radius);
  padding: 14px 16px !important;
  font-size: 14px !important;
  border-bottom: none !important;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #1a2d4a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 52px 0 64px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px,
    transparent 1px, transparent 40px);
}
.hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 40px;
  background: var(--cream);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 720px; }
.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 8vw, 60px);
  font-weight: 300;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--white);
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-bottom: 30px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
  white-space: nowrap;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
  white-space: nowrap;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-full { width: 100%; }

/* ── DIVIDER ── */
.gold-divider { width: 50px; height: 2px; background: var(--gold); margin: 0 auto 16px; }
.gold-divider.left { margin: 0 0 16px; }

/* ── SECTION ── */
section { padding: 52px 0; }
@media (min-width: 768px) { section { padding: 72px 0; } }
.section-alt { background: var(--white); }
.section-dark { background: var(--navy); color: var(--white); }
.section-label {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 14px;
  color: var(--navy);
}
.section-dark .section-title { color: var(--white); }
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.8;
}
.section-dark .section-sub { color: rgba(255,255,255,0.6); }

/* ── SERVICE CARDS ── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
@media (min-width: 900px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) { .service-card { padding: 30px 22px; } }
.service-card::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
}
.service-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--navy);
}
.service-card p { font-size: 12px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.card-link {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.card-link:hover { color: var(--navy); }

/* ── AIRLINE GRID ── */
.airline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 36px;
}
@media (min-width: 480px) { .airline-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .airline-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; } }
@media (min-width: 1000px) { .airline-grid { grid-template-columns: repeat(5, 1fr); gap: 16px; } }
.airline-pill {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  padding: 14px 10px;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: block;
}
.airline-pill:hover { border-color: var(--gold); color: var(--gold); box-shadow: 0 4px 16px rgba(201,168,76,0.12); transform: translateY(-2px); }
.airline-pill span { display: block; font-size: 18px; margin-bottom: 6px; }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--gold-pale);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 22px 0;
}
.trust-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (min-width: 600px) { .trust-items { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; font-size: 11px; color: var(--gray-700); letter-spacing: 0.05em; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 24px; color: var(--navy); font-weight: 600; }

/* ── STEPS ── */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } }
.step { text-align: center; }
.step-num {
  width: 44px; height: 44px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
}
.step h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.step p { font-size: 12px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── GEO GRID ── */
.geo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 24px;
}
@media (min-width: 480px) { .geo-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .geo-grid { grid-template-columns: repeat(4, 1fr); } }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  padding: 48px 0;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 36px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 10px;
}
.cta-band p { color: rgba(255,255,255,0.6); font-size: 13px; margin-bottom: 20px; }
.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(24px, 6vw, 42px);
  color: var(--gold);
  font-weight: 600;
  display: block;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.cta-phone:hover { color: var(--gold-light); }

/* ── DISCLAIMER ── */
.disclaimer {
  background: var(--gray-100);
  border-left: 3px solid var(--gold);
  padding: 14px 16px;
  font-size: 11px;
  color: var(--gray-500);
  line-height: 1.7;
  border-radius: 0 4px 4px 0;
  margin: 20px 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 44px 0 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    45deg, rgba(201,168,76,0.03) 0px, rgba(201,168,76,0.03) 1px,
    transparent 1px, transparent 40px);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 6vw, 48px);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 12px;
}
.page-hero h1 em { color: var(--gold); font-style: italic; }
.page-hero p { font-size: 14px; color: rgba(255,255,255,0.7); }

/* ── BREADCRUMB ── */
.breadcrumb { font-size: 11px; color: var(--gray-500); margin-bottom: 10px; letter-spacing: 0.03em; }
.breadcrumb a { color: var(--gold); }

/* ── TWO COLUMN LAYOUT (service pages) ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
@media (min-width: 900px) {
  .two-col { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* ── FORM CARD ── */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 24px 20px;
  box-shadow: var(--shadow);
}
@media (min-width: 600px) { .form-card { padding: 36px 32px; } }
.form-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-sub { font-size: 12px; color: var(--gray-500); margin-bottom: 22px; line-height: 1.6; }
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 500px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-700);
  font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text);
  background: var(--cream);
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  padding: 11px 13px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
.form-group select {
  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='%238A8278' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit { margin-top: 6px; width: 100%; font-size: 12px; padding: 15px; letter-spacing: 0.12em; }

/* ── CONTENT BLOCK ── */
.content-block { max-width: 100%; }
.content-block h2 {
  font-family: var(--font-display);
  font-size: clamp(20px, 4vw, 28px);
  font-weight: 600;
  color: var(--navy);
  margin: 28px 0 10px;
}
.content-block p { color: var(--gray-700); line-height: 1.8; margin-bottom: 12px; font-size: 14px; }
.content-block ul { list-style: none; margin-bottom: 12px; }
.content-block ul li {
  padding: 5px 0 5px 18px;
  color: var(--gray-700);
  position: relative;
  font-size: 13px;
}
.content-block ul li::before { content: '—'; color: var(--gold); position: absolute; left: 0; }

/* ── INFO CARDS ── */
.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}
.info-card {
  background: var(--gold-pale);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  padding: 18px 14px;
}
.info-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.info-card p { font-size: 12px; color: var(--gray-700); line-height: 1.7; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding: 52px 0 0;
  border-top: 1px solid rgba(201,168,76,0.25);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand .logo-name { font-size: 20px; margin-bottom: 8px; display: block; }
.footer-brand p { font-size: 12px; line-height: 1.8; margin: 12px 0; color: rgba(255,255,255,0.5); }
.footer-contact { font-size: 12px; line-height: 2.2; }
.footer-contact a { color: var(--gold-light); }
.footer-contact a:hover { color: var(--white); }
.footer-col h5 {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 12px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 600px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--gold); }

/* ── AIRLINES PAGE ── */
.airline-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}
@media (min-width: 600px) { .airline-detail-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .airline-detail-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }
.airline-detail-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 22px 18px;
  transition: all 0.25s;
}
.airline-detail-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); border-color: rgba(201,168,76,0.3); }
.tier-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.t1 { background:#EEEDFE; color:#3C3489; }
.t2 { background:#E1F5EE; color:#085041; }
.t3 { background:#E6F1FB; color:#0C447C; }
.t4 { background:#FAEEDA; color:#633806; }
.airline-detail-card h3 { font-family: var(--font-display); font-size: 19px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.airline-product { font-size: 11px; color: var(--gold); font-weight: 500; letter-spacing: 0.05em; margin-bottom: 9px; }
.airline-detail-card p { font-size: 12px; color: var(--gray-500); line-height: 1.7; margin-bottom: 14px; }
.airline-links { display: flex; gap: 10px; flex-wrap: wrap; }
.airline-links a { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.airline-links a.primary { color: var(--gold); }
.airline-links a.secondary { color: var(--gray-500); }
.airline-links a:hover { color: var(--navy); }

/* ── AIRLINE DETAIL PAGE ── */
.product-specs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 22px 0;
}
@media (min-width: 480px) { .product-specs { grid-template-columns: 1fr 1fr; } }
.spec { background: var(--white); border: 1px solid var(--gray-100); border-radius: 6px; padding: 14px; }
.spec-label { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 5px; }
.spec-val { font-size: 12px; color: var(--text); line-height: 1.6; }
.tier-badge { display: inline-block; font-size: 9px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 4px 11px; border-radius: 3px; margin-bottom: 14px; }

/* ── ABOUT / CONTACT ── */
.contact-info-block { background: var(--navy); border-radius: 8px; padding: 28px 24px; color: var(--white); margin-bottom: 20px; }
.contact-detail-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 14px;
}
.contact-detail-item:last-child { margin-bottom: 0; }
.contact-detail-label { font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 8px; }

/* ── GEO PILLS ── */
.geo-pill {
  background: var(--gold-pale);
  color: var(--gray-700);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 4px;
  padding: 9px 12px;
  font-size: 11px;
  text-align: center;
  transition: all 0.2s;
}
.geo-pill:hover { border-color: var(--gold); color: var(--gold); }

/* ── CALL NOW STICKY (mobile only) ── */
.sticky-call {
  display: block;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--gold);
  color: var(--navy);
  text-align: center;
  padding: 16px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  z-index: 998;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-call:hover { background: var(--gold-light); color: var(--navy); }
@media (min-width: 1000px) { .sticky-call { display: none; } }
/* Add bottom padding to body on mobile so content doesn't hide behind sticky bar */
@media (max-width: 999px) { body { padding-bottom: 58px; } }

/* ── ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp 0.55s ease both; }
.fade-up-2 { animation: fadeUp 0.55s 0.12s ease both; }
.fade-up-3 { animation: fadeUp 0.55s 0.25s ease both; }
