/* Base styles */
:root {
  --primary: #0054a6;
  --primary-dark: #003b75;
  --accent: #ffb400;
  --bg-light: #f5f7fb;
  --text-main: #222;
  --text-muted: #555;
  --danger: #c0392b;
  --radius-lg: 14px;
  --shadow-soft: 0 10px 25px rgba(0,0,0,0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Top notice / header */
.top-bar {
  background: var(--primary-dark);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-bar strong {
  margin-right: 0.4rem;
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #ffffffd9;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand span.logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
}

.header-phone .number {
  font-weight: 700;
  white-space: nowrap;
}

.btn-call-header {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.btn-call-header span.icon {
  font-size: 1.1rem;
}

main {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 1rem 3rem;
}

/* HERO SECTION WITH BACKGROUND IMAGE */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;

  background-image:
    linear-gradient(to bottom right, rgba(0, 40, 90, 0.75), rgba(0, 90, 160, 0.65)),
    url("/assets/images/airplane.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  border-radius: 0 0 24px 24px;
  padding: 2rem 2rem;
  color: #ffffff;
}

/* MOBILE FRIENDLY HERO */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 2.2rem 1.2rem;
    text-align: center;
  }

  .hero-left,
  .hero-right {
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-right {
    margin-top: 1.5rem;
  }

  .header-inner {
    flex-direction: column;
    gap: 0.4rem;
  }

  .header-phone {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 1rem 2.4rem;
  }

  .hero-left h1 {
    font-size: 1.7rem;
  }

  .hero-left p.lead {
    font-size: 0.95rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-call-main {
    justify-content: center;
    width: 100%;
  }
}

/* Text styling for readability on image */
.hero-left h1 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.hero-left p.lead {
  font-size: 1rem;
  color: #e9f1ff;
  margin-bottom: 1rem;
}

.hero-note {
  font-size: 0.9rem;
  color: #f0f4ff;
}

.hero-note-small {
  margin-top: 0.35rem;
}

/* Offer badge softened for image background */
.badge-offer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 244, 214, 0.9);
  color: #8a5a00;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 226, 164, 0.8);
}

/* CTA button still pops over photo */
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.btn-call-main {
  background: var(--primary);
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: var(--shadow-soft);
}

.btn-call-main:hover {
  background: var(--primary-dark);
}

.btn-call-main .icon {
  font-size: 1.2rem;
}

/* Right side card now stands out over the background photo */
.hero-right {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
  color: var(--text-main);
}

.hero-right h2 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  color: #1a1a1a;
}

.hero-right ul {
  list-style: none;
  margin-top: 0.5rem;
}

.hero-right li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.92rem;
  color: #333333;
}

.hero-right li span.bullet {
  font-size: 1rem;
  margin-top: 0.15rem;
}

/* Sections */
section {
  margin-bottom: 2.5rem;
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 0.9rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

.step-card {
  border-radius: var(--radius-lg);
  border: 1px solid #e3e6f0;
  padding: 1rem;
  background: #fff;
}

.step-number {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.step-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 1rem;
  text-align: left;
}

.service-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Airlines row (balanced sizing & spacing) */
.airlines-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem; /* More space between logos */
  align-items: center;
  justify-content: center;
  margin-top: 1.2rem;
}

.airlines-row img {
  height: 44px;        /* Better size — not big, not tiny */
  max-height: 44px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  filter: saturate(1.05);
  transition: transform 0.15s ease;
  padding: 2px;        /* Slight internal padding */
}

.airlines-row img:hover {
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .airlines-row {
    gap: 1.8rem;
  }

  .airlines-row img {
    height: 36px;      /* Slightly smaller on phones */
    max-height: 36px;
  }
}

/* FAQ */
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 900px) {
  .faq-list {
    grid-template-columns: 1fr;
  }
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid #e3e6f0;
  padding: 1rem;
  background: #fff;
}

.faq-item h3 {
  font-size: 0.98rem;
  margin-bottom: 0.3rem;
}

.faq-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Disclaimer & footer */
.disclaimer {
  border-radius: var(--radius-lg);
  border: 1px solid #f1d0d0;
  background: #fff5f5;
  padding: 1rem;
  font-size: 0.88rem;
  color: #6b2525;
  margin-bottom: 2rem;
}

.final-cta {
  text-align: center;
  margin-bottom: 1rem;
}

footer {
  border-top: 1px solid #e3e6f0;
  padding-top: 1rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
}

footer a {
  color: var(--primary-dark);
  font-weight: 500;
}

/* Policy pages */
.policy {
  max-width: 800px;
  margin: 2rem auto 3rem;
  padding: 0 1rem;
}

.policy h1 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.policy h2 {
  font-size: 1.3rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.policy p,
.policy li {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.policy ul {
  padding-left: 1.2rem;
}
