/* ============================================================
   TravelsSouth.com — Global Stylesheet
   Theme: Deep Burgundy · Warm Gold · Cream
   ============================================================ */

:root {
  --burgundy:       #7b1d3c;
  --burgundy-dark:  #4e1127;
  --burgundy-mid:   #9b2d52;
  --burgundy-light: #b8446b;
  --gold:           #c9963a;
  --gold-light:     #e8b25a;
  --gold-pale:      #fdf5e6;
  --cream:          #fdf8f2;
  --off-white:      #faf5f0;
  --white:          #ffffff;
  --text:           #2a1018;
  --text-muted:     #6b4050;
  --border:         #e8d0d8;
  --radius:         8px;
  --radius-lg:      14px;
  --shadow:         0 4px 18px rgba(123,29,60,.10);
  --shadow-md:      0 8px 32px rgba(123,29,60,.15);
  --transition:     .22s ease;
}

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

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 15.5px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── TOPBAR ─────────────────────────────────────────────── */
.topbar {
  background: var(--burgundy-dark);
  color: #d4a0b0;
  font-size: 13px;
  padding: 7px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-email, .topbar-phone {
  color: var(--gold-light);
  font-weight: 600;
  transition: color var(--transition);
}
.topbar-email:hover, .topbar-phone:hover { color: var(--white); }

/* ── HEADER ─────────────────────────────────────────────── */
header {
  background: var(--burgundy);
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(78,17,39,.35);
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(201,150,58,.4);
}
.logo-icon svg { width: 24px; height: 24px; fill: var(--white); }
.logo-text h1 { font-size: 19px; font-weight: 800; color: var(--white); letter-spacing: -.3px; }
.logo-text p  { font-size: 11px; color: var(--gold-light); font-weight: 500; }

nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
nav a {
  color: #e8c0cc;
  font-size: 13.5px;
  font-weight: 600;
  padding: 6px 13px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
nav a:hover, nav a.active {
  background: var(--burgundy-mid);
  color: var(--gold-light);
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 18px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: opacity var(--transition), box-shadow var(--transition);
  box-shadow: 0 3px 12px rgba(201,150,58,.4);
}
.cta-phone:hover { opacity: .88; box-shadow: 0 5px 18px rgba(201,150,58,.5); }
.cta-phone svg { width: 16px; height: 16px; fill: currentColor; }

/* ── HERO (HOME) ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--burgundy) 55%, var(--burgundy-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 88px 32px 110px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(201,150,58,.20) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 70%, rgba(255,255,255,.05) 0%, transparent 55%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.hero-badge {
  display: inline-block;
  background: rgba(201,150,58,.18);
  border: 1px solid rgba(201,150,58,.38);
  color: var(--gold-light);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h2 {
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -.5px;
}
.hero h2 span { color: var(--gold-light); }
.hero p { font-size: 1.08rem; color: #e0b8c8; max-width: 600px; margin: 0 auto 38px; }
.hero-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(201,150,58,.45);
  transition: opacity var(--transition);
}
.btn-hero-primary:hover { opacity: .88; }
.btn-hero-primary svg { width: 20px; height: 20px; fill: currentColor; }
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid rgba(201,150,58,.5);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}
.btn-hero-secondary:hover { background: rgba(201,150,58,.12); }

.hero-wave { position: absolute; bottom: -1px; left: 0; width: 100%; line-height: 0; }
.hero-wave svg { width: 100%; height: 55px; }

/* ── PAGE HERO (INNER PAGES) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy-mid));
  padding: 52px 32px 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(201,150,58,.15) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero h2 { font-size: 2rem; font-weight: 900; color: var(--white); position: relative; }
.page-hero p  { color: var(--gold-light); font-size: 13.5px; margin-top: 8px; position: relative; font-weight: 500; }
.ph-badge {
  display: inline-block;
  background: rgba(201,150,58,.2);
  border: 1px solid rgba(201,150,58,.35);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
  position: relative;
}

/* ── TRUST STRIP ─────────────────────────────────────────── */
.trust-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}
.trust-item svg { width: 18px; height: 18px; fill: var(--burgundy); }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.section { padding: 72px 32px; max-width: 1200px; margin: 0 auto; }
.section-title { text-align: center; margin-bottom: 44px; }
.section-title h3 { font-size: 1.75rem; font-weight: 900; color: var(--burgundy-dark); margin-bottom: 10px; }
.section-title p { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }
.gold-accent { color: var(--gold); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gold); }
.card-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 26px; height: 26px; fill: var(--burgundy); }
.card h4 { font-size: 1.05rem; font-weight: 800; color: var(--burgundy-dark); margin-bottom: 8px; }
.card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }
.card-link {
  font-size: 13.5px; font-weight: 700; color: var(--burgundy);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap var(--transition), color var(--transition);
}
.card:hover .card-link { gap: 8px; color: var(--gold); }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.steps-bg { background: var(--cream); padding: 72px 32px; }
.steps-inner { max-width: 1100px; margin: 0 auto; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-top: 44px;
}
.step {
  text-align: center; padding: 28px 20px;
  background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border);
}
.step-num {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-mid));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 20px; font-weight: 900; color: var(--white);
  box-shadow: 0 4px 14px rgba(123,29,60,.32);
}
.step h4 { font-size: 1rem; font-weight: 800; color: var(--burgundy-dark); margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--text-muted); }

/* ── AIRLINE STRIP ───────────────────────────────────────── */
.airline-strip { background: var(--burgundy-dark); padding: 22px 32px; text-align: center; }
.airline-strip p { font-size: 12px; color: #c090a0; font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px; }
.airline-names { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; }
.airline-names span { font-size: 13px; font-weight: 700; color: #e0b8c8; }

/* ── PHONE BANNER ────────────────────────────────────────── */
.phone-banner { background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy)); padding: 56px 32px; text-align: center; }
.phone-banner h3 { font-size: 1.65rem; font-weight: 900; color: var(--white); margin-bottom: 10px; }
.phone-banner p { color: rgba(255,255,255,.80); font-size: 15px; margin-bottom: 28px; }
.phone-big {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white);
  color: var(--burgundy-dark);
  font-size: 1.5rem; font-weight: 900;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
  transition: transform var(--transition), box-shadow var(--transition);
}
.phone-big:hover { transform: scale(1.02); box-shadow: 0 8px 30px rgba(0,0,0,.22); }
.phone-big svg { width: 26px; height: 26px; fill: currentColor; }

/* ── SERVICE PAGE LAYOUT ─────────────────────────────────── */
.service-wrap { max-width: 1100px; margin: 0 auto; padding: 64px 32px; }
.service-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-bottom: 52px; align-items: start;
}
.service-intro-text h3 { font-size: 1.4rem; font-weight: 800; color: var(--burgundy-dark); margin-bottom: 14px; }
.service-intro-text p { color: var(--text-muted); margin-bottom: 14px; font-size: 15px; }
.service-cta-box {
  background: linear-gradient(135deg, var(--burgundy-dark), var(--burgundy));
  border-radius: var(--radius-lg); padding: 32px 28px; text-align: center; color: var(--white);
  border: 1px solid var(--burgundy-mid);
}
.service-cta-box h4 { font-size: 1.15rem; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.service-cta-box p { color: #e8c0cc; font-size: 14px; margin-bottom: 22px; }
.phone-link {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 1.2rem; font-weight: 900;
  padding: 14px 22px; border-radius: var(--radius); margin-bottom: 14px;
  box-shadow: 0 4px 16px rgba(201,150,58,.4);
  transition: opacity var(--transition);
}
.phone-link:hover { opacity: .88; }
.phone-link svg { width: 22px; height: 22px; fill: currentColor; }
.email-link { display: block; color: var(--gold-light); font-size: 13px; font-weight: 600; transition: color var(--transition); }
.email-link:hover { color: var(--white); }

/* ── FEATURE LIST ────────────────────────────────────────── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-bottom: 44px;
}
.fl-item {
  background: var(--cream);
  border-left: 4px solid var(--burgundy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px; display: flex; gap: 16px; align-items: flex-start;
}
.fl-icon {
  width: 42px; height: 42px;
  background: var(--gold-pale); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.fl-icon svg { width: 22px; height: 22px; fill: var(--burgundy); }
.fl-item h4 { font-size: .95rem; font-weight: 800; color: var(--burgundy-dark); margin-bottom: 4px; }
.fl-item p  { font-size: 13.5px; color: var(--text-muted); }

/* ── FAQ ACCORDION ───────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--white); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left;
  padding: 16px 20px; font-size: 14.5px; font-weight: 700; color: var(--burgundy-dark);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--gold-pale); }
.faq-q.open  { background: var(--gold-pale); color: var(--burgundy); }
.faq-q svg { width: 20px; height: 20px; fill: var(--burgundy); flex-shrink: 0; transition: transform var(--transition); }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 14px 20px 16px; font-size: 14px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); }
.faq-a.show { display: block; }

/* ── TABLES ──────────────────────────────────────────────── */
table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 14px; border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 12px rgba(123,29,60,.07); }
thead th { background: var(--burgundy-dark); color: var(--white); padding: 13px 16px; text-align: left; font-size: 13px; font-weight: 700; letter-spacing: .3px; }
tbody tr:nth-child(even) { background: var(--cream); }
tbody tr:hover { background: var(--gold-pale); }
tbody td { padding: 13px 16px; color: var(--text); border-bottom: 1px solid var(--border); vertical-align: top; }

/* ── CALLOUT BOXES ───────────────────────────────────────── */
.info-box  { background: var(--gold-pale); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; font-size: 14px; color: var(--text); margin: 20px 0; line-height: 1.7; }
.warn-box  { background: #fffbeb; border-left: 4px solid #d97706; border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; font-size: 14px; color: var(--text); margin: 20px 0; }
.red-box   { background: #fff5f5; border-left: 4px solid #c53030; border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; font-size: 14px; color: var(--text); margin: 20px 0; }
.green-box { background: #f0fff4; border-left: 4px solid #2f855a; border-radius: 0 var(--radius) var(--radius) 0; padding: 16px 20px; font-size: 14px; color: var(--text); margin: 20px 0; }

/* ── CONTENT PAGES ───────────────────────────────────────── */
.content-wrap { max-width: 920px; margin: 0 auto; padding: 56px 32px 72px; }
.content-wrap h3 { font-size: 1.15rem; font-weight: 800; color: var(--burgundy-dark); margin: 36px 0 12px; padding-left: 14px; border-left: 4px solid var(--burgundy); }
.content-wrap p { font-size: 14.5px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.75; }
.content-wrap ul { list-style: disc; margin: 10px 0 14px 22px; }
.content-wrap ul li { font-size: 14px; color: var(--text-muted); margin-bottom: 7px; line-height: 1.7; }
.text-gold { color: var(--gold); font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--burgundy-dark); color: #c090a0; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 36px; padding: 52px 40px 40px;
  max-width: 1200px; margin: 0 auto;
}
.footer-col h5 { font-size: 13.5px; font-weight: 800; color: var(--white); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 18px; }
.footer-col p { font-size: 13px; color: #a07080; margin-bottom: 6px; line-height: 1.6; }
.footer-col a { color: #c090a0; font-size: 13px; transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 13px; display: inline-flex; align-items: center; gap: 5px; }
.footer-col ul li a::before { content: '→'; font-size: 11px; color: var(--gold); }

.footer-divider { height: 1px; background: rgba(255,255,255,.07); }
.footer-disclaimer { max-width: 1200px; margin: 0 auto; padding: 20px 40px; font-size: 12px; color: #7a5060; line-height: 1.75; }
.footer-disclaimer strong { color: #a07080; }
.disc-links { margin-top: 10px; display: flex; gap: 16px; flex-wrap: wrap; }
.disc-links a { font-size: 12px; color: var(--gold-light); font-weight: 600; transition: color var(--transition); }
.disc-links a:hover { color: var(--white); }

.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding: 16px 40px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: #5a3040; flex-wrap: wrap; gap: 10px;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 12px; color: #5a3040; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .service-intro { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 768px) {
  .topbar { flex-direction: column; gap: 4px; text-align: center; padding: 8px 16px; }
  header { padding: 12px 16px; gap: 12px; height: auto; flex-wrap: wrap; }
  nav { gap: 2px; flex-wrap: wrap; }
  nav a { font-size: 12px; padding: 5px 9px; }
  .cta-phone { font-size: 13px; padding: 8px 14px; }
  .hero { padding: 56px 20px 80px; }
  .section { padding: 48px 20px; }
  .steps-bg { padding: 48px 20px; }
  .service-wrap { padding: 40px 20px; }
  .content-wrap { padding: 36px 20px 52px; }
  .footer-top { grid-template-columns: 1fr; padding: 36px 20px 28px; }
  .footer-disclaimer, .footer-bottom { padding: 16px 20px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .feature-list { grid-template-columns: 1fr; }
  table { font-size: 13px; }
  thead th, tbody td { padding: 10px 12px; }
}
@media (max-width: 480px) {
  .hero h2 { font-size: 1.7rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; justify-content: center; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .phone-big { font-size: 1.05rem; }
}
