/* ============================================================
   WorldzTravel.com — Global Stylesheet
   Theme: Deep Charcoal · Vivid Teal · Warm Amber
   ============================================================ */

:root {
  --charcoal:       #1c2b3a;
  --charcoal-dark:  #0e1a26;
  --charcoal-mid:   #26394d;
  --charcoal-light: #344d63;
  --teal:           #0694a2;
  --teal-dark:      #047481;
  --teal-light:     #22d3ee;
  --teal-pale:      #e0f7fa;
  --amber:          #f59e0b;
  --amber-light:    #fbbf24;
  --amber-pale:     #fffbeb;
  --white:          #ffffff;
  --off-white:      #f4f8fb;
  --text:           #1c2b3a;
  --text-muted:     #4e6880;
  --border:         #d1e3ef;
  --radius:         8px;
  --radius-lg:      14px;
  --shadow:         0 4px 18px rgba(6,148,162,.10);
  --shadow-md:      0 8px 32px rgba(6,148,162,.14);
  --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(--charcoal-dark);
  color: #a8c2d8;
  font-size: 13px;
  padding: 7px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.topbar-email, .topbar-phone {
  color: var(--teal-light);
  font-weight: 600;
  transition: color var(--transition);
}
.topbar-email:hover, .topbar-phone:hover { color: var(--amber-light); }

/* ── HEADER ─────────────────────────────────────────────── */
header {
  background: var(--charcoal);
  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(0,0,0,.28);
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  flex-shrink: 0;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(6,148,162,.35);
}
.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(--teal-light); font-weight: 500; }

nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
nav a {
  color: #b0c8dc;
  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(--charcoal-mid);
  color: var(--teal-light);
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  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(6,148,162,.35);
}
.cta-phone:hover { opacity: .88; box-shadow: 0 5px 18px rgba(6,148,162,.45); }
.cta-phone svg { width: 16px; height: 16px; fill: currentColor; }

/* ── HERO (HOME) ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--charcoal-dark) 0%, var(--charcoal) 55%, var(--charcoal-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(6,148,162,.22) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 70%, rgba(245,158,11,.10) 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(6,148,162,.18);
  border: 1px solid rgba(6,148,162,.38);
  color: var(--teal-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(--teal-light); }
.hero p {
  font-size: 1.08rem;
  color: #8aafc8;
  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(--teal), var(--teal-dark));
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  padding: 14px 30px;
  border-radius: var(--radius);
  box-shadow: 0 6px 22px rgba(6,148,162,.4);
  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(6,148,162,.5);
  color: var(--teal-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(6,148,162,.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(--charcoal-dark), var(--charcoal-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(6,148,162,.18) 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(--teal-light);
  font-size: 13.5px;
  margin-top: 8px;
  position: relative;
  font-weight: 500;
}
.ph-badge {
  display: inline-block;
  background: rgba(6,148,162,.2);
  border: 1px solid rgba(6,148,162,.35);
  color: var(--teal-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(--off-white);
  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(--charcoal);
}
.trust-item svg { width: 18px; height: 18px; fill: var(--teal); }

/* ── 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(--charcoal);
  margin-bottom: 10px;
}
.section-title p { color: var(--text-muted); font-size: 15px; max-width: 560px; margin: 0 auto; }
.teal-accent { color: var(--teal); }

.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(--teal);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-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(--teal); }
.card h4 { font-size: 1.05rem; font-weight: 800; color: var(--charcoal); 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(--teal);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition), color var(--transition);
}
.card:hover .card-link { gap: 8px; color: var(--teal-dark); }

/* ── PROCESS STEPS ───────────────────────────────────────── */
.steps-bg { background: var(--off-white); 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(--teal), var(--teal-dark));
  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(6,148,162,.32);
}
.step h4 { font-size: 1rem; font-weight: 800; color: var(--charcoal); margin-bottom: 8px; }
.step p { font-size: 13.5px; color: var(--text-muted); }

/* ── AIRLINE STRIP ───────────────────────────────────────── */
.airline-strip {
  background: var(--charcoal-dark);
  padding: 22px 32px;
  text-align: center;
}
.airline-strip p {
  font-size: 12px;
  color: #6a8a9e;
  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: #8aafc8;
}

/* ── PHONE BANNER ────────────────────────────────────────── */
.phone-banner {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  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,.82); font-size: 15px; margin-bottom: 28px; }
.phone-big {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--teal-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(--charcoal);
  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(--charcoal-dark), var(--charcoal));
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  color: var(--white);
  border: 1px solid var(--charcoal-light);
}
.service-cta-box h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.service-cta-box p { color: #8aafc8; font-size: 14px; margin-bottom: 22px; }
.phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  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(6,148,162,.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(--teal-light);
  font-size: 13px;
  font-weight: 600;
  transition: color var(--transition);
}
.email-link:hover { color: var(--amber-light); }

/* ── FEATURE LIST ────────────────────────────────────────── */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 44px;
}
.fl-item {
  background: var(--off-white);
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fl-icon {
  width: 42px;
  height: 42px;
  background: var(--teal-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(--teal); }
.fl-item h4 { font-size: .95rem; font-weight: 800; color: var(--charcoal); 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(--charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background var(--transition);
}
.faq-q:hover { background: var(--teal-pale); }
.faq-q.open { background: var(--teal-pale); color: var(--teal-dark); }
.faq-q svg { width: 20px; height: 20px; fill: var(--teal); flex-shrink: 0; transition: transform var(--transition); }
.faq-q.open svg { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; color: var(--text-muted); line-height: 1.7; border-top: 1px solid var(--border); padding-top: 14px; }
.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(6,148,162,.07);
}
thead th {
  background: var(--charcoal);
  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(--off-white); }
tbody tr:hover { background: var(--teal-pale); }
tbody td { padding: 13px 16px; color: var(--text); border-bottom: 1px solid var(--border); vertical-align: top; }

/* ── CALLOUT BOXES ───────────────────────────────────────── */
.info-box {
  background: #e8f8fb;
  border-left: 4px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--charcoal);
  margin: 20px 0;
  line-height: 1.7;
}
.warn-box {
  background: #fffbeb;
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--charcoal);
  margin: 20px 0;
}
.red-box {
  background: #fff5f5;
  border-left: 4px solid #e53e3e;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--charcoal);
  margin: 20px 0;
}
.green-box {
  background: #f0fff4;
  border-left: 4px solid #38a169;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  font-size: 14px;
  color: var(--charcoal);
  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(--charcoal);
  margin: 36px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--teal);
}
.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-teal { color: var(--teal); font-weight: 600; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--charcoal-dark); color: #8aafc8; }

.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: #6a8a9e; margin-bottom: 6px; line-height: 1.6; }
.footer-col a { color: #8aafc8; font-size: 13px; transition: color var(--transition); }
.footer-col a:hover { color: var(--teal-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(--teal); }

.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: #506a7e;
  line-height: 1.75;
}
.footer-disclaimer strong { color: #7a9cb0; }
.disc-links {
  margin-top: 10px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.disc-links a {
  font-size: 12px;
  color: var(--teal-light);
  font-weight: 600;
  transition: color var(--transition);
}
.disc-links a:hover { color: var(--amber-light); }

.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: #4a6478;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 12px; color: #4a6478; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--teal-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: 0 16px; gap: 12px; height: auto; flex-wrap: wrap; padding: 12px 16px; }
  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; }
  .phone-big { font-size: 1.2rem; padding: 13px 24px; }
  .feature-list { grid-template-columns: 1fr; }
  table { font-size: 13px; }
  thead th, tbody td { padding: 10px 12px; }
  .airline-strip { padding: 18px 16px; }
}

@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; }
  .trust-strip { gap: 16px 24px; }
}
