/* ============================================================
   FareFlightTravels.us — Main Stylesheet
   Theme: Midnight Navy / Vivid Orange / White
   ============================================================ */

:root {
  --navy:        #0b1d3a;
  --navy-dark:   #060f20;
  --navy-mid:    #122a54;
  --orange:      #e85d04;
  --orange-light:#fb8500;
  --orange-pale: #fff4ec;
  --white:       #ffffff;
  --off-white:   #f6f8fc;
  --text:        #0d1b2e;
  --text-muted:  #4e6282;
  --border:      #dce5f0;
  --shadow:      rgba(11,29,58,0.13);
  --radius:      8px;
  --radius-lg:   14px;
  --transition:  0.24s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul   { list-style: none; }

/* ── Topbar ── */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.82);
  font-size: 0.81rem;
  padding: 7px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a.topbar-phone { color: var(--orange-light); font-weight: 700; letter-spacing: 0.3px; }
.topbar a.topbar-email { color: rgba(255,255,255,0.78); }
.topbar a:hover { opacity: 0.82; }

/* ── Header ── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: 0 2px 14px var(--shadow);
  border-bottom: 3px solid var(--orange);
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px var(--shadow);
}
.logo-icon svg { width: 25px; height: 25px; fill: var(--white); }
.logo-text h1 { font-size: 1.22rem; font-weight: 900; color: var(--navy-dark); line-height: 1.1; }
.logo-text p  { font-size: 0.7rem; color: var(--text-muted); font-weight: 500; letter-spacing: 0.2px; }

nav { display: flex; gap: 2px; flex-wrap: wrap; align-items: center; }
nav a {
  padding: 6px 11px;
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
nav a:hover, nav a.active { background: var(--off-white); color: var(--navy); }

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white) !important;
  font-weight: 800;
  font-size: 0.97rem;
  padding: 10px 18px;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(232,93,4,0.38);
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.cta-phone svg { width: 17px; height: 17px; fill: var(--white); }
.cta-phone:hover { background: var(--orange-light); transform: translateY(-1px); color: var(--white) !important; }

/* ── Hero ── */
.hero {
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 90px 32px 122px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(232,93,4,0.14) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 50px; left: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(251,133,0,0.09) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-wave { position: absolute; bottom: 0; left: 0; right: 0; }
.hero-wave svg { width: 100%; display: block; }

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.76rem; font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h2 { font-size: clamp(2rem, 5.5vw, 3.4rem); font-weight: 900; line-height: 1.12; margin-bottom: 18px; text-shadow: 0 2px 18px rgba(0,0,0,0.28); }
.hero h2 span { color: var(--orange-light); }
.hero p { font-size: 1.08rem; opacity: 0.9; max-width: 590px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800; font-size: 1.12rem;
  padding: 15px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 22px rgba(232,93,4,0.42);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary svg { width: 20px; height: 20px; fill: var(--white); }
.btn-primary:hover { background: var(--orange-light); transform: translateY(-2px); color: var(--white); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.11);
  color: var(--white);
  font-weight: 700; font-size: 1rem;
  padding: 15px 26px;
  border-radius: var(--radius-lg);
  border: 2px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.btn-secondary:hover { background: rgba(255,255,255,0.2); color: var(--white); }

/* ── Trust Strip ── */
.trust-strip {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 16px 28px;
  display: flex; gap: 28px;
  justify-content: center; align-items: center;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.86rem; font-weight: 600; color: var(--navy-dark); }
.trust-icon {
  width: 35px; height: 35px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 17px; height: 17px; fill: var(--white); }

/* ── Section Base ── */
section { padding: 72px 32px; }
.section-label {
  display: inline-block; color: var(--orange);
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.55rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--navy-dark); margin-bottom: 12px; }
.section-sub { font-size: 0.98rem; color: var(--text-muted); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Services Grid ── */
.services { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; max-width: 1100px; margin: 0 auto; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border-top: 4px solid var(--orange);
  box-shadow: 0 3px 14px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column; gap: 12px;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px var(--shadow); }
.service-card a { display: contents; }
.svc-icon {
  width: 50px; height: 50px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.svc-icon svg { width: 26px; height: 26px; fill: var(--orange); }
.service-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--navy-dark); }
.service-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; flex: 1; }
.svc-cta {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--orange); font-size: 0.86rem; font-weight: 700;
  margin-top: 4px;
}
.svc-cta svg { width: 14px; height: 14px; fill: var(--orange); }

/* ── Steps ── */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 26px; max-width: 950px; margin: 0 auto; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  text-align: center;
  box-shadow: 0 3px 14px var(--shadow);
  border-top: 4px solid var(--navy);
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  color: var(--white);
  font-size: 1.4rem; font-weight: 900;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 4px 12px var(--shadow);
}
.step-card h4 { font-size: 1.02rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 8px; }
.step-card p  { font-size: 0.88rem; color: var(--text-muted); }

/* ── Airlines Strip ── */
.airlines-strip {
  background: var(--navy-dark);
  padding: 44px 32px;
  text-align: center;
}
.airlines-strip h3 { font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 26px; }
.airlines-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.al-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.88);
  font-size: 0.83rem; font-weight: 600;
  padding: 7px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition), border-color var(--transition);
}
.al-tag:hover { background: rgba(232,93,4,0.22); border-color: var(--orange); }

/* ── Phone Banner ── */
.phone-banner {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--white);
  padding: 58px 32px;
  text-align: center;
}
.phone-banner h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 900; margin-bottom: 10px; }
.phone-banner p  { font-size: 1rem; opacity: 0.93; max-width: 520px; margin: 0 auto 28px; }
.phone-big {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white);
  color: var(--navy-dark);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 900;
  padding: 15px 38px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform var(--transition);
}
.phone-big svg { width: 28px; height: 28px; fill: var(--orange); }
.phone-big:hover { transform: scale(1.03); color: var(--navy-dark); }

/* ── Inner Page Hero ── */
.page-hero {
  background: linear-gradient(150deg, var(--navy-dark), var(--navy));
  color: var(--white);
  padding: 54px 32px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
}
.page-hero h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 10px; }
.page-hero p  { font-size: 0.98rem; opacity: 0.82; max-width: 560px; margin: 0 auto; }
.page-hero .ph-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-size: 0.74rem; font-weight: 700;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px;
}

/* ── Service Page Layout ── */
.service-wrap { max-width: 1000px; margin: 0 auto; padding: 60px 32px; }
.service-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; margin-bottom: 52px; }
.service-intro-text h3 { font-size: 1.6rem; font-weight: 800; color: var(--navy-dark); margin-bottom: 14px; }
.service-intro-text p  { color: var(--text-muted); font-size: 0.96rem; line-height: 1.75; margin-bottom: 14px; }
.service-cta-box {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  color: var(--white);
}
.service-cta-box p { font-size: 0.9rem; opacity: 0.82; margin-bottom: 18px; }
.service-cta-box h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.service-cta-box .phone-link {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.3rem; font-weight: 900;
  padding: 14px 26px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 16px rgba(232,93,4,0.4);
  margin-bottom: 12px;
  transition: background var(--transition), transform var(--transition);
}
.service-cta-box .phone-link svg { width: 22px; height: 22px; fill: var(--white); }
.service-cta-box .phone-link:hover { background: var(--orange-light); transform: translateY(-1px); color: var(--white); }
.service-cta-box .email-link { display: block; color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 8px; }
.service-cta-box .email-link:hover { color: var(--orange-light); }

/* ── Feature List ── */
.feature-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-bottom: 44px; }
.fl-item {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex; gap: 14px; align-items: flex-start;
  border-left: 4px solid var(--orange);
}
.fl-icon { width: 40px; height: 40px; min-width: 40px; background: var(--orange-pale); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.fl-icon svg { width: 22px; height: 22px; fill: var(--orange); }
.fl-item h4 { font-size: 0.97rem; font-weight: 700; color: var(--navy-dark); margin-bottom: 5px; }
.fl-item p  { font-size: 0.86rem; color: var(--text-muted); line-height: 1.55; }

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

/* ── Content Pages (Policy Pages) ── */
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 32px;
}
.content-wrap h3 {
  font-size: 1.15rem; font-weight: 800;
  color: var(--navy-dark);
  margin: 36px 0 10px;
  padding-left: 14px;
  border-left: 4px solid var(--orange);
}
.content-wrap h3:first-of-type { margin-top: 0; }
.content-wrap p  { color: var(--text-muted); margin-bottom: 14px; font-size: 0.95rem; line-height: 1.78; }
.content-wrap ul { margin: 10px 0 16px 22px; list-style: disc; }
.content-wrap ul li { color: var(--text-muted); margin-bottom: 7px; font-size: 0.94rem; line-height: 1.65; }

/* ── Callout Boxes ── */
.info-box {
  background: #edf3ff;
  border-left: 5px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 0.94rem; color: var(--text);
}
.warn-box {
  background: #fff7ed;
  border-left: 5px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 0.94rem; color: var(--text);
}
.red-box {
  background: #fff0f0;
  border-left: 5px solid #d62828;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 0.94rem; color: var(--text);
}
.green-box {
  background: #edfbee;
  border-left: 5px solid #2d9e3a;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px; margin: 20px 0;
  font-size: 0.94rem; color: var(--text);
}
.text-orange { color: var(--orange); }

/* ── Table ── */
table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.91rem; }
thead th { background: var(--navy); color: var(--white); padding: 12px 14px; text-align: left; font-weight: 700; }
tbody tr:nth-child(even) { background: var(--off-white); }
tbody td { padding: 11px 14px; border-bottom: 1px solid var(--border); color: var(--text-muted); vertical-align: top; }

/* ── Footer ── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.74);
  padding: 52px 32px 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.footer-col h5 { color: var(--white); font-size: 0.98rem; font-weight: 700; margin-bottom: 14px; }
.footer-col p  { font-size: 0.86rem; line-height: 1.65; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.65); font-size: 0.86rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange-light); }
.footer-col a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.footer-col a:hover { color: var(--orange-light); }

.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); max-width: 1100px; margin: 0 auto 22px; }
.footer-disclaimer {
  max-width: 1100px; margin: 0 auto 20px;
  font-size: 0.78rem; line-height: 1.72;
  color: rgba(255,255,255,0.48);
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-disclaimer a { color: rgba(255,255,255,0.68); text-decoration: underline; transition: color var(--transition); }
.footer-disclaimer a:hover { color: var(--orange-light); }
.footer-disclaimer .disc-links { margin-top: 8px; display: flex; gap: 18px; flex-wrap: wrap; }

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 0.78rem; color: rgba(255,255,255,0.38);
  padding: 14px 0 22px;
}
.footer-bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); font-size: 0.77rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--orange-light); }

/* ── Responsive ── */
@media (max-width: 1024px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px)  { .service-intro { grid-template-columns: 1fr; } }
@media (max-width: 768px) {
  header { padding: 10px 16px; }
  nav { display: none; }
  .hero { padding: 60px 18px 90px; }
  section { padding: 48px 18px; }
  .service-wrap { padding: 40px 18px; }
  .content-wrap { padding: 40px 18px; }
  .trust-strip { padding: 12px 16px; gap: 16px; }
  .phone-banner { padding: 42px 18px; }
  .airlines-strip { padding: 34px 18px; }
  .footer-top { grid-template-columns: 1fr; gap: 22px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar { font-size: 0.74rem; padding: 6px 14px; }
}
@media (max-width: 480px) {
  .logo-text h1 { font-size: 1.08rem; }
  .cta-phone  { font-size: 0.85rem; padding: 9px 12px; }
  .phone-big  { font-size: 1.45rem; padding: 14px 20px; }
}
