/* ============================================================
   FareFlightTravels.us — Stylesheet
   Theme: Deep Indigo / Sky Blue / Gold
   ============================================================ */

:root {
  --indigo:       #2d1b69;
  --indigo-dark:  #1a0f3f;
  --indigo-mid:   #3f2894;
  --sky:          #06b6d4;
  --sky-light:    #22d3ee;
  --gold:         #f5a623;
  --gold-dark:    #d4881a;
  --white:        #ffffff;
  --off-white:    #f5f4fc;
  --text:         #1e1535;
  --text-muted:   #5b5375;
  --border:       #ddd8f0;
  --shadow:       rgba(45,27,105,0.12);
  --radius:       8px;
  --radius-lg:    14px;
  --transition:   0.25s 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.6; }
img { max-width: 100%; display: block; }
a { color: var(--indigo); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--indigo-mid); }
ul { list-style: none; }

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

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

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-mid));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 10px var(--shadow);
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--white); }
.logo-text h1 { font-size: 1.28rem; font-weight: 900; color: var(--indigo-dark); line-height: 1.1; }
.logo-text p  { font-size: 0.72rem; color: var(--text-muted); font-weight: 500; }

nav { display: flex; gap: 4px; flex-wrap: wrap; }
nav a {
  padding: 7px 13px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
nav a:hover, nav a.active {
  background: var(--off-white);
  color: var(--indigo);
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--white) !important;
  font-weight: 800;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px rgba(245,166,35,0.35);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.cta-phone svg { width: 18px; height: 18px; fill: var(--white); flex-shrink: 0; }
.cta-phone:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245,166,35,0.45);
  color: var(--white) !important;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(145deg, var(--indigo-dark) 0%, var(--indigo) 50%, var(--indigo-mid) 100%);
  color: var(--white);
  padding: 96px 32px 130px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(6,182,212,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 40px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,166,35,0.1) 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(--sky);
  color: var(--white);
  font-size: 0.78rem;
  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.13; margin-bottom: 18px; text-shadow: 0 2px 16px rgba(0,0,0,0.25); }
.hero h2 span { color: var(--gold); }
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 580px; margin: 0 auto 34px; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--white);
  font-weight: 800; font-size: 1.15rem;
  padding: 16px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(245,166,35,0.45);
  transition: background var(--transition), transform var(--transition);
}
.btn-hero-primary svg { width: 22px; height: 22px; fill: var(--white); }
.btn-hero-primary:hover { background: var(--gold-dark); transform: translateY(-2px); color: var(--white); }

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

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

/* ── Section ── */
section { padding: 74px 32px; }
.section-label {
  display: inline-block;
  color: var(--sky);
  font-size: 0.79rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.section-title { font-size: clamp(1.6rem, 3.5vw, 2.2rem); font-weight: 800; color: var(--indigo-dark); margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-header .section-sub { margin: 0 auto; }

/* ── Steps ── */
.how-it-works { background: var(--off-white); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; max-width: 940px; margin: 0 auto; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px 24px;
  text-align: center;
  box-shadow: 0 3px 16px var(--shadow);
  border-top: 4px solid var(--sky);
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px var(--shadow); }
.step-number {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--indigo), var(--sky));
  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.05rem; font-weight: 700; color: var(--indigo-dark); margin-bottom: 8px; }
.step-card p  { font-size: 0.9rem; color: var(--text-muted); }

/* ── Features ── */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover { box-shadow: 0 8px 26px var(--shadow); transform: translateY(-3px); }
.feat-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: var(--off-white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.feat-icon svg { width: 26px; height: 26px; fill: var(--indigo); }
.feature-card h4 { font-size: 1rem; font-weight: 700; color: var(--indigo-dark); margin-bottom: 6px; }
.feature-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* ── Airlines Strip ── */
.airlines-strip {
  background: linear-gradient(135deg, var(--indigo-dark), var(--indigo));
  padding: 48px 32px;
  text-align: center;
}
.airlines-strip h3 { font-size: 1.3rem; font-weight: 700; color: var(--white); margin-bottom: 28px; }
.airlines-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.airline-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  font-size: 0.85rem; font-weight: 600;
  padding: 8px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.2);
  transition: background var(--transition), border-color var(--transition);
}
.airline-tag:hover { background: rgba(6,182,212,0.25); border-color: var(--sky); }

/* ── Destinations ── */
.destinations { background: var(--off-white); }
.dest-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; max-width: 1100px; margin: 0 auto; }
.dest-card {
  background: linear-gradient(135deg, var(--indigo), var(--indigo-mid));
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  text-align: center;
  color: var(--white);
  box-shadow: 0 4px 16px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.dest-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px var(--shadow); }
.dest-icon { font-size: 2rem; margin-bottom: 12px; }
.dest-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.dest-card p  { font-size: 0.82rem; opacity: 0.8; }

/* ── Phone Banner ── */
.phone-banner {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  padding: 60px 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 30px; }
.phone-number-big {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--white);
  color: var(--indigo-dark);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  padding: 16px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
  transition: transform var(--transition);
}
.phone-number-big svg { width: 30px; height: 30px; fill: var(--indigo); }
.phone-number-big:hover { transform: scale(1.03); color: var(--indigo-dark); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(145deg, var(--indigo-dark), var(--indigo));
  color: var(--white);
  padding: 58px 32px;
  text-align: center;
}
.page-hero h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 900; margin-bottom: 8px; }
.page-hero p  { font-size: 0.95rem; opacity: 0.82; }

/* ── Content Pages ── */
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 32px;
}
.content-wrap h3 {
  font-size: 1.18rem; font-weight: 800;
  color: var(--indigo-dark);
  margin: 36px 0 10px;
  padding-left: 14px;
  border-left: 4px solid var(--sky);
}
.content-wrap h3:first-of-type { margin-top: 0; }
.content-wrap p  { color: var(--text-muted); margin-bottom: 14px; font-size: 0.96rem; line-height: 1.75; }
.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.95rem; line-height: 1.65; }

/* ── Callout Boxes ── */
.info-box {
  background: #eef4ff;
  border-left: 5px solid var(--indigo);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.warn-box {
  background: #fff8e6;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.red-box {
  background: #fff0f0;
  border-left: 5px solid #e05252;
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--text);
}
.highlight-box {
  background: var(--indigo-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 20px 0;
  font-size: 0.95rem;
}
.highlight-box a { color: var(--gold); }
.text-indigo { color: var(--indigo); }

/* ── Table ── */
table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.92rem; }
thead th { background: var(--indigo); 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(--indigo-dark);
  color: rgba(255,255,255,0.76);
  padding: 52px 32px 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto 36px;
}
.footer-col h5 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 14px; }
.footer-col p  { font-size: 0.88rem; line-height: 1.65; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.68); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-col a { color: rgba(255,255,255,0.68); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-disclaimer {
  max-width: 1100px;
  margin: 0 auto 24px;
  font-size: 0.79rem;
  line-height: 1.72;
  color: rgba(255,255,255,0.52);
}
.footer-disclaimer a { color: rgba(255,255,255,0.7); text-decoration: underline; }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.79rem;
  color: rgba(255,255,255,0.42);
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a { color: rgba(255,255,255,0.48); font-size: 0.78rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  header { padding: 12px 18px; }
  nav { display: none; }
  .hero { padding: 64px 18px 96px; }
  section { padding: 50px 18px; }
  .content-wrap { padding: 40px 18px; }
  .trust-strip { padding: 14px 18px; gap: 18px; }
  .phone-banner { padding: 46px 18px; }
  .airlines-strip { padding: 36px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .topbar { font-size: 0.75rem; padding: 6px 14px; }
  .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .logo-text h1 { font-size: 1.1rem; }
  .cta-phone { font-size: 0.88rem; padding: 9px 14px; }
  .phone-number-big { font-size: 1.5rem; padding: 14px 22px; }
  .dest-grid { grid-template-columns: 1fr; }
}
