/* ============================================================
   FareBuzz Travel Assistance – Global Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary:     #1a56db;
  --primary-dark:#1340b0;
  --accent:      #f97316;
  --accent-dark: #ea6500;
  --text-dark:   #111827;
  --text-mid:    #374151;
  --text-light:  #6b7280;
  --bg-light:    #f9fafb;
  --bg-white:    #ffffff;
  --border:      #e5e7eb;
  --success:     #059669;
  --radius:      8px;
  --radius-lg:   14px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 16px rgba(0,0,0,.1);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --font:        'Inter', 'Segoe UI', Arial, sans-serif;
  --max-w:       1200px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: none; }
.btn, .btn:hover, .btn:focus,
.cta-banner a, .cta-banner a:hover,
.phone-big, .phone-big:hover,
.nav-phone, .nav-phone:hover { text-decoration: none; }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); font-weight: 600; line-height: 1.35; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--text-mid); }

/* ---------- Layout Helpers ---------- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.section-alt { background: var(--bg-light); }
.text-center { text-align: center; }
.flex       { display: flex; }
.flex-wrap  { flex-wrap: wrap; }
.gap-4      { gap: 16px; }
.gap-6      { gap: 24px; }
.gap-8      { gap: 32px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 24px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: var(--radius); font-size: 1rem;
  font-weight: 600; cursor: pointer; border: 2px solid transparent;
  transition: all .2s ease; text-decoration: none;
}
.btn-primary {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); text-decoration: none; color: #fff; }
.btn-accent {
  background: var(--accent); color: #fff; border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-dark); border-color: var(--accent-dark); text-decoration: none; color: #fff; }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; text-decoration: none; }
.btn-white {
  background: #fff; color: var(--primary); border-color: #fff;
}
.btn-white:hover { background: #f0f4ff; text-decoration: none; color: var(--primary-dark); }
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 10px 20px; font-size: .9rem; }
.btn-phone { background: var(--success); color: #fff; border-color: var(--success); }
.btn-phone:hover { background: #047857; border-color: #047857; text-decoration: none; color: #fff; }

/* ---------- Navigation ---------- */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--bg-white); border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
/* Restore Bootstrap navbar padding zeroed by global * reset */
.fb-navbar { padding-top: 8px !important; padding-bottom: 8px !important; }
/* Prevent global a:hover underline from affecting navbar links */
.fb-navbar a, .fb-navbar a:hover { text-decoration: none; }
/* Restore Bootstrap's navbar-brand padding */
.fb-navbar .navbar-brand { padding-top: 5px; padding-bottom: 5px; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: var(--max-w); margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px; background: var(--primary);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.4rem;
}
.nav-logo-text { font-size: 1.4rem; font-weight: 800; color: var(--text-dark); }
.nav-logo-text span { color: var(--primary); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a {
  padding: 8px 14px; border-radius: var(--radius);
  font-size: .95rem; font-weight: 500; color: var(--text-mid);
  transition: all .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary); background: #eff6ff; text-decoration: none;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  display: flex; align-items: center; gap: 6px;
  font-weight: 700; color: var(--primary); font-size: 1rem;
  padding: 8px 16px; border-radius: var(--radius);
  background: #eff6ff; border: 1px solid #bfdbfe;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: transparent;
}
.hamburger span { width: 24px; height: 2px; background: var(--text-dark); display: block; transition: .3s; }
.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  padding: 16px 20px; border-top: 1px solid var(--border);
  background: var(--bg-white);
}
.mobile-menu a {
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 500; color: var(--text-mid);
}
.mobile-menu a:hover { background: #eff6ff; color: var(--primary); text-decoration: none; }
.mobile-menu.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #1340b0 0%, #1a56db 50%, #2563eb 100%);
  color: #fff; padding: 90px 0 80px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 6px 16px; font-size: .85rem;
  font-weight: 600; color: #bfdbfe; margin-bottom: 20px;
}
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero-sub { font-size: 1.2rem; color: #bfdbfe; max-width: 560px; margin-bottom: 10px; }
.hero-disclaimer {
  display: inline-block; background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius);
  padding: 10px 18px; font-size: .82rem; color: #dbeafe; margin-bottom: 32px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-stats { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 48px; }
.hero-stat { }
.hero-stat strong { display: block; font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stat span { font-size: .9rem; color: #93c5fd; }

/* ---------- Disclaimer Banner ---------- */
.disclaimer-bar {
  background: #fef9c3; border-bottom: 2px solid #fde047;
  padding: 12px 20px; text-align: center;
  font-size: .85rem; color: #713f12; font-weight: 500;
}
.disclaimer-bar strong { font-weight: 700; }

/* ---------- Section Headers ---------- */
.section-tag {
  display: inline-block; background: #dbeafe; color: var(--primary);
  padding: 4px 14px; border-radius: 50px; font-size: .8rem;
  font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header { margin-bottom: 48px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.1rem; max-width: 600px; }
.section-header.center p { margin: 0 auto; }

/* ---------- Cards ---------- */
.card {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: box-shadow .2s, transform .2s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card-icon {
  width: 56px; height: 56px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 18px;
}
.icon-blue  { background: #dbeafe; }
.icon-green { background: #d1fae5; }
.icon-purple{ background: #ede9fe; }
.icon-orange{ background: #ffedd5; }
.icon-red   { background: #fee2e2; }
.icon-teal  { background: #ccfbf1; }
.card h3 { margin-bottom: 10px; }
.card p  { font-size: .95rem; }

/* ---------- Service Cards ---------- */
.service-card { border-top: 4px solid var(--primary); }
.service-card:hover { border-top-color: var(--accent); }

/* ---------- How It Works — 3D Flip Cards ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 20px; }
.step {
  height: 210px;
  perspective: 1000px;
  cursor: pointer;
}
.step-inner {
  position: relative; width: 100%; height: 100%;
  transform-style: preserve-3d;
  transition: transform .65s cubic-bezier(.4,0,.2,1);
}
.step:hover .step-inner { transform: rotateX(180deg); }
.step-front, .step-back {
  position: absolute; inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 24px 18px; text-align: center;
}
.step-front {
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
}
.step-back {
  background: linear-gradient(150deg, #0f2d80 0%, #1a56db 60%, #2563eb 100%);
  transform: rotateX(180deg);
  box-shadow: 0 8px 28px rgba(19,64,176,.3);
}
.step-num {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 1.2rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 14px rgba(26,86,219,.3);
}
.step-front h3 { font-size: .95rem; font-weight: 700; color: var(--text-dark); margin: 0; }
.step-back-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.2); color: #fff;
  font-size: .8rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 12px;
}
.step-back p { font-size: .82rem; color: #bfdbfe; line-height: 1.6; margin: 0; }
.step-connector { display: none; }

/* ---------- Testimonials ---------- */
.testimonial {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 12px; }
.testimonial p { font-size: .97rem; color: var(--text-mid); margin-bottom: 18px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.reviewer-name { font-weight: 600; font-size: .95rem; }
.reviewer-loc  { font-size: .82rem; color: var(--text-light); }

/* ---------- FAQ ---------- */
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: 12px;
}
.faq-q {
  padding: 18px 22px; font-weight: 600; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  background: var(--bg-white); user-select: none;
  transition: background .2s;
}
.faq-q:hover { background: #f0f4ff; }
.faq-q.open { background: #eff6ff; color: var(--primary); }
.faq-q .faq-icon { font-size: 1.4rem; font-weight: 400; transition: transform .3s; }
.faq-q.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  display: none; padding: 0 22px 18px;
  font-size: .95rem; color: var(--text-mid); line-height: 1.7;
}
.faq-a.open { display: block; }

/* ---------- Trust Badges ---------- */
.trust-bar {
  background: var(--bg-white); border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 32px; padding: 24px 20px;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600; color: var(--text-mid);
}
.trust-item span { font-size: 1.3rem; }

/* ---------- Airlines Section ---------- */
.airlines-grid {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; margin-top: 32px;
}
.airline-badge {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 12px 22px;
  font-size: .9rem; font-weight: 600; color: var(--text-mid);
  box-shadow: var(--shadow-sm);
}

/* ---------- CTA Section (matches index.html) ---------- */
.cta-section {
  background: linear-gradient(135deg, #0f2d80 0%, #1a56db 60%, #2563eb 100%);
  padding: 80px 0;
}
.cta-section h2 { color: #fff; margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.6); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-phone {
  font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 900; color: #fff;
  display: block; margin-bottom: 12px; text-decoration: none;
}
.cta-phone:hover { color: #fff; text-decoration: none; }

/* ---------- CTA Banner (legacy — kept for non-converted pages) ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1340b0, #1a56db);
  color: #fff; padding: 80px 0; text-align: center;
}
.cta-banner h2 { color: #fff; margin-bottom: 16px; }
.cta-banner p  { color: #bfdbfe; font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-banner .phone-big {
  display: block; font-size: 2.4rem; font-weight: 800; color: #fff;
  letter-spacing: .02em; margin-bottom: 10px;
}
.cta-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

/* ---------- Contact Form ---------- */
.contact-form {
  background: var(--bg-white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 40px;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: .9rem; font-weight: 600;
  margin-bottom: 6px; color: var(--text-dark);
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius); font-size: 1rem; color: var(--text-dark);
  background: var(--bg-light); transition: border-color .2s;
  font-family: var(--font);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: #fff;
  box-shadow: 0 0 0 3px rgba(26,86,219,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ---------- Info Boxes ---------- */
.info-box {
  background: #eff6ff; border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px; margin: 24px 0;
}
.info-box h4 { color: var(--primary); margin-bottom: 8px; }
.info-box p  { font-size: .95rem; color: var(--text-mid); }

/* Wrapper section for full-width notice banners — no extra bg or padding */
.section-notice { padding: 0; background: transparent; overflow: hidden; }

/* ---------- Warning Box — default card style ---------- */
.warning-box {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 0;
  margin-bottom: 0;
}
.warning-box h4 { color: #475569; margin-bottom: 8px; font-size: 1rem; }
.warning-box p  { color: #64748b; font-size: .93rem; margin-bottom: 0; }
.warning-box strong { color: #334155; }

/* Full-bleed variant — only when wrapped in .section-notice */
.section-notice .warning-box {
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  border-left: none;
  border-right: none;
  border-radius: 0;
  padding: 20px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.section-notice .warning-box > * {
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ---------- Footer ---------- */
.footer {
  background: #111827; color: #9ca3af;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
}
.footer-brand h3 { color: #fff; font-size: 1.4rem; margin-bottom: 14px; }
.footer-brand h3 span { color: #60a5fa; }
.footer-brand p { font-size: .9rem; line-height: 1.7; margin-bottom: 18px; }
.footer-disclaimer {
  background: #1f2937; border: 1px solid #374151;
  border-radius: var(--radius); padding: 14px 18px;
  font-size: .8rem; color: #9ca3af; line-height: 1.6;
}
.footer-col h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: #9ca3af; font-size: .9rem; transition: color .2s;
}
.footer-col ul li a:hover { color: #60a5fa; text-decoration: none; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: .9rem; }
.footer-contact-item .icon { color: #60a5fa; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid #1f2937; padding: 24px 20px;
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  font-size: .82rem;
}
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a { color: #6b7280; }
.footer-bottom-links a:hover { color: #9ca3af; text-decoration: none; }

/* ---------- Hero Lead Form (service pages) ---------- */
.page-hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: center; }
.hero-lead-form {
  background: #fff; border-radius: 16px; padding: 26px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
  position: relative;
}
.hero-lead-form h3 {
  font-size: 1.05rem; font-weight: 800; color: #111827;
  margin-bottom: 16px; text-align: center;
  padding-bottom: 14px; border-bottom: 1px solid #e5e7eb;
}
.hero-lead-form input, .hero-lead-form select {
  width: 100%; border: 1.5px solid #e5e7eb; border-radius: 8px;
  padding: 10px 12px; font-size: .875rem; color: #111827;
  background: #f9fafb; font-family: inherit; outline: none;
  transition: border-color .2s, background .2s;
}
.hero-lead-form input:focus, .hero-lead-form select:focus {
  border-color: #1a56db; background: #fff;
  box-shadow: 0 0 0 3px rgba(26,86,219,.1);
}
.hero-lead-form input.hlf-err { border-color: #ef4444; background: #fff5f5; }
.hlf-mb { margin-bottom: 10px; }
.hlf-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
#hlfSubmit {
  width: 100%; background: linear-gradient(135deg, #059669, #047857);
  color: #fff; border: none; border-radius: 9px;
  padding: 13px; font-size: .95rem; font-weight: 700;
  cursor: pointer; margin-top: 4px; font-family: inherit;
  transition: opacity .2s; box-shadow: 0 4px 14px rgba(5,150,105,.35);
}
#hlfSubmit:hover { opacity: .9; }
#hlfSubmit:disabled { background: #6ee7b7; box-shadow: none; cursor: not-allowed; }
.hlf-note { font-size: .7rem; color: #9ca3af; text-align: center; margin-top: 8px; margin-bottom: 0; }
#hlfSuccess {
  display: none; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; padding: 20px 10px;
}
.hlf-check {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #059669, #10b981);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff; margin: 0 auto 14px;
  box-shadow: 0 4px 16px rgba(5,150,105,.3);
}
#hlfSuccess h4 { font-size: 1.05rem; font-weight: 800; color: #111827; margin-bottom: 6px; }
#hlfSuccess p  { font-size: .82rem; color: #6b7280; margin: 0; }
@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; }
  .hero-lead-form { max-width: 480px; }
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1340b0, #2563eb);
  color: #fff; padding: 64px 0 56px;
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p  { color: #bfdbfe; font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: #93c5fd; margin-bottom: 16px;
}
.breadcrumb a { color: #93c5fd; }
.breadcrumb a:hover { color: #fff; text-decoration: none; }
.breadcrumb span { color: #bfdbfe; }

/* ---------- Checklist ---------- */
.checklist { margin: 16px 0; }
.checklist li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 6px 0; font-size: .97rem; color: var(--text-mid);
}
.checklist li::before {
  content: '✓'; color: var(--success); font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}

/* ---------- Number List ---------- */
.num-list { counter-reset: num; margin: 16px 0; }
.num-list li {
  counter-increment: num; display: flex; align-items: flex-start; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid var(--border); font-size: .97rem;
}
.num-list li:last-child { border-bottom: none; }
.num-list li::before {
  content: counter(num); display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; min-width: 32px; border-radius: 50%;
  background: var(--primary); color: #fff; font-weight: 700; font-size: .9rem;
}

/* ---------- Table ---------- */
.resp-table { overflow-x: auto; margin: 24px 0; }
.resp-table table { width: 100%; border-collapse: collapse; font-size: .95rem; }
.resp-table th {
  background: var(--primary); color: #fff;
  padding: 14px 18px; text-align: left; font-weight: 600;
}
.resp-table td { padding: 12px 18px; border-bottom: 1px solid var(--border); color: var(--text-mid); }
.resp-table tr:hover td { background: #f0f4ff; }

/* ---------- Privacy / Terms ---------- */
.legal-content h2 { margin: 40px 0 14px; color: var(--text-dark); font-size: 1.5rem; }
.legal-content h3 { margin: 28px 0 10px; color: var(--text-dark); font-size: 1.15rem; }
.legal-content p  { margin-bottom: 14px; font-size: .97rem; line-height: 1.8; }
.legal-content ul { margin: 14px 0 18px 22px; }
.legal-content ul li { list-style: disc; padding: 4px 0; font-size: .97rem; color: var(--text-mid); }

/* ---------- FB Footer (matches index.html) ---------- */
.fb-footer { background: #0f172a; color: #94a3b8; padding: 60px 0 0; }
.fb-footer h5 { color: #fff; font-size: .95rem; font-weight: 700; margin-bottom: 16px; }
.fb-footer ul li { margin-bottom: 8px; }
.fb-footer ul li a { color: #94a3b8; font-size: .875rem; transition: color .2s; }
.fb-footer ul li a:hover { color: #60a5fa; text-decoration: none; }
.fb-footer p { color: #94a3b8; }
.fb-footer-disc { background: #1e293b; border: 1px solid #334155; border-radius: 10px; padding: 14px 16px; font-size: .76rem; color: #94a3b8; line-height: 1.6; margin-top: 16px; }
.fb-footer-ci { display: flex; align-items: flex-start; gap: 9px; font-size: .85rem; margin-bottom: 11px; color: #94a3b8; }
.fb-footer-ci .ci-icon { color: #60a5fa; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

/* ---------- Sticky Call Button (mobile) ---------- */
.sticky-call { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 1050; background: #059669; padding: 12px 20px; }
.sticky-call a { color: #fff; font-weight: 700; font-size: .95rem; display: flex; align-items: center; justify-content: center; gap: 8px; text-decoration: none; }
.sticky-call a:hover { text-decoration: none; color: #fff; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(5,150,105,.5); } 70% { box-shadow: 0 0 0 12px rgba(5,150,105,0); } 100% { box-shadow: 0 0 0 0 rgba(5,150,105,0); } }
.pulse { animation: pulse 2.5s infinite; }

/* ---------- Inline Phone Button ---------- */
.phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  color: #15803d !important;
  border: 1.5px solid #86efac;
  border-radius: 6px;
  padding: 3px 10px 3px 8px;
  font-weight: 700;
  font-size: .9em;
  text-decoration: none !important;
  white-space: nowrap;
  transition: background .15s, border-color .15s, color .15s;
  vertical-align: middle;
}
.phone-btn::before { content: "📞"; font-size: .85em; }
.phone-btn:hover { background: #dcfce7; border-color: #4ade80; color: #166534 !important; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .form-row     { grid-template-columns: 1fr; }
}
@media (max-width: 767px) {
  .sticky-call { display: block; }
  body { padding-bottom: 52px; }
}
@media (max-width: 700px) {
  .nav-links, .nav-cta .btn  { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 50px; }
  .section { padding: 56px 0; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .hero-stats { gap: 20px; }
  .contact-form { padding: 24px 18px; }
}
