/* ============================================================
   BookMeCheapest.online — Stylesheet
   Theme: Forest Green / Amber / White
   ============================================================ */

:root {
  --green:       #1b6b3a;
  --green-dark:  #0f4424;
  --green-light: #2a8f50;
  --amber:       #f5a623;
  --amber-dark:  #d4881a;
  --white:       #ffffff;
  --off-white:   #f4f9f6;
  --text:        #1c2b22;
  --text-muted:  #4a6054;
  --border:      #cde0d4;
  --shadow:      rgba(27,107,58,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(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-light); }
ul { list-style: none; }

/* ── Topbar ── */
.topbar {
  background: var(--green-dark);
  color: rgba(255,255,255,0.88);
  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(--amber); font-weight: 700; letter-spacing: 0.3px; }
.topbar a.topbar-email { color: rgba(255,255,255,0.82); }
.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 12px var(--shadow);
  border-bottom: 3px solid var(--green);
}

.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon {
  width: 46px; height: 46px;
  background: var(--green);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 3px 8px var(--shadow);
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--white); }
.logo-text h1 { font-size: 1.3rem; font-weight: 800; color: var(--green-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 14px;
  font-size: 0.88rem;
  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(--green);
}

.cta-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  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(--amber-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(245,166,35,0.45);
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, var(--green-light) 100%);
  color: var(--white);
  padding: 90px 32px 120px;
  text-align: center;
  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-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
}
.hero-wave svg { width: 100%; display: block; }
.hero-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero h2 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; line-height: 1.15; margin-bottom: 18px; text-shadow: 0 2px 12px rgba(0,0,0,0.18); }
.hero h2 span { color: var(--amber); }
.hero p { font-size: 1.12rem; opacity: 0.9; max-width: 580px; margin: 0 auto 32px; }
.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(--amber);
  color: var(--white);
  font-weight: 800; font-size: 1.15rem;
  padding: 16px 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 22px rgba(245,166,35,0.4);
  transition: background var(--transition), transform var(--transition);
}
.btn-hero-primary svg { width: 22px; height: 22px; fill: var(--white); }
.btn-hero-primary:hover { background: var(--amber-dark); transform: translateY(-2px); color: var(--white); }
.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15);
  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.4);
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.25); 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.88rem; font-weight: 600; color: var(--green-dark);
}
.trust-icon {
  width: 36px; height: 36px;
  background: var(--green);
  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: 72px 32px; }
.section-label {
  display: inline-block;
  color: var(--green);
  font-size: 0.8rem;
  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(--green-dark); margin-bottom: 12px; }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 560px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .section-sub { margin: 0 auto; }

/* ── How It Works ── */
.how-it-works { background: var(--off-white); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; max-width: 900px; margin: 0 auto; }
.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 3px 16px var(--shadow);
  border-top: 4px solid var(--green);
  transition: transform var(--transition);
}
.step-card:hover { transform: translateY(-4px); }
.step-number {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  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(--green-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 6px 22px 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(--green); }
.feature-card h4 { font-size: 1rem; font-weight: 700; color: var(--green-dark); margin-bottom: 6px; }
.feature-card p  { font-size: 0.88rem; color: var(--text-muted); line-height: 1.55; }

/* ── Airlines Strip ── */
.airlines-strip { background: var(--green-dark); padding: 44px 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);
}
.airline-tag:hover { background: rgba(255,255,255,0.18); }

/* ── Savings Section ── */
.savings { background: var(--off-white); }
.savings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto; }
.saving-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  text-align: center;
  box-shadow: 0 3px 14px var(--shadow);
  border-bottom: 4px solid var(--amber);
}
.saving-card .amount { font-size: 2.4rem; font-weight: 900; color: var(--green); margin-bottom: 6px; }
.saving-card p { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

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

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 56px 32px;
  text-align: center;
}
.page-hero h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 8px; }
.page-hero p  { font-size: 0.95rem; opacity: 0.85; }

/* ── Content Pages ── */
.content-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 56px 32px;
}
.content-wrap h3 {
  font-size: 1.2rem; font-weight: 800;
  color: var(--green-dark);
  margin: 36px 0 10px;
  padding-left: 14px;
  border-left: 4px solid var(--amber);
}
.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: 6px; font-size: 0.95rem; line-height: 1.65; }

/* ── Callout Boxes ── */
.info-box {
  background: #e8f5ee;
  border-left: 5px solid var(--green);
  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(--amber);
  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(--green-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 22px 26px;
  margin: 20px 0;
  font-size: 0.95rem;
}
.highlight-box a { color: var(--amber); }
.text-green { color: var(--green); }

/* ── Table ── */
table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.92rem; }
thead th { background: var(--green); 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(--green-dark);
  color: rgba(255,255,255,0.78);
  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.7); font-size: 0.88rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--amber); }
.footer-col a { color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-col a:hover { color: var(--amber); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.12); margin-bottom: 24px; }
.footer-disclaimer {
  max-width: 1100px;
  margin: 0 auto 24px;
  font-size: 0.8rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}
.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.8rem;
  color: rgba(255,255,255,0.45);
  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.5); font-size: 0.78rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--amber); }

/* ── 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: 60px 18px 90px; }
  section { padding: 50px 18px; }
  .content-wrap { padding: 40px 18px; }
  .trust-strip { padding: 14px 18px; gap: 18px; }
  .phone-banner { padding: 44px 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; }
}
@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; }
}
