/* O2Taxi Airport – brand colours taken from o2taxi.com */
:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --brand-yellow: #22c55e;
  --brand-dark: #1a1a2e;
  --brand-mid: #16213e;
  --brand-accent: #16a34a;
  --brand-light: #f0fdf4;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius: 8px;
  --shadow: 0 2px 16px rgba(0,0,0,0.08);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brand-dark);
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--brand-yellow);
  letter-spacing: -0.3px;
}

.nav-logo span { color: var(--white); font-weight: 400; font-size: 0.85rem; display: block; line-height: 1; }

.nav-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--brand-yellow); }

.nav-cta {
  background: var(--brand-yellow);
  color: var(--white) !important;
  font-weight: 600;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.88rem !important;
  transition: background 0.2s, transform 0.15s !important;
}

.nav-cta:hover { background: var(--brand-accent) !important; transform: translateY(-1px); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; border-radius: 2px; transition: 0.3s; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-mid) 60%, #0f3460 100%);
  color: var(--white);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '✈';
  position: absolute;
  font-size: 20rem;
  opacity: 0.04;
  top: -3rem;
  right: -3rem;
  line-height: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.4);
  color: var(--brand-yellow);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em { color: var(--brand-yellow); font-style: normal; }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-yellow);
  color: var(--white);
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover { background: var(--brand-accent); transform: translateY(-2px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  transition: background 0.2s;
}

.btn-secondary:hover { background: rgba(255,255,255,0.18); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--brand-yellow);
  padding: 0.9rem 1.5rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-bar span {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--black);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ── SECTIONS ── */
.section { padding: 4rem 1.5rem; }
.section-alt { background: var(--brand-light); }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--brand-accent);
  margin-bottom: 0.5rem;
}

h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-bottom: 2.5rem;
}

/* ── AIRPORTS GRID ── */
.airports-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.airport-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.airport-card:hover {
  border-color: var(--brand-yellow);
  box-shadow: 0 4px 20px rgba(245,197,24,0.2);
  transform: translateY(-3px);
}

.airport-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.airport-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.airport-card p { font-size: 0.82rem; color: var(--text-muted); }
.airport-code { font-size: 0.75rem; font-weight: 700; color: var(--brand-accent); letter-spacing: 1px; margin-bottom: 0.4rem; display: block; }

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.service-card:hover { border-color: var(--brand-yellow); box-shadow: var(--shadow); }
.service-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.9rem; color: var(--text-muted); }

/* ── AREAS / SEO TOWNS ── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 0.75rem;
}

.area-pill {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.7rem 1rem;
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  color: var(--black);
  text-decoration: none;
}

.area-pill:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: var(--white);
}

/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.why-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--brand-yellow);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25rem; }
.why-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ── BOOKING STRIP ── */
.booking-strip {
  background: var(--brand-dark);
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}

.booking-strip h2 { color: var(--white); margin-bottom: 0.5rem; }
.booking-strip p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }

.booking-strip .contact-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.15s, opacity 0.2s;
}

.contact-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.contact-btn.phone { background: var(--brand-yellow); color: var(--white); }
.contact-btn.whatsapp { background: #25d366; color: var(--white); }

/* ── TESTIMONIALS ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem;
}

.stars { color: var(--brand-yellow); font-size: 1rem; margin-bottom: 0.75rem; letter-spacing: 2px; }
.testimonial p { font-size: 0.92rem; color: #374151; line-height: 1.7; margin-bottom: 1rem; }
.testimonial cite { font-size: 0.82rem; color: var(--text-muted); font-style: normal; font-weight: 600; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.faq-item h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.5rem; }
.faq-item p { font-size: 0.92rem; color: var(--text-muted); }

/* ── FOOTER ── */
footer {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto 2rem;
}

.footer-brand { font-size: 1.3rem; font-weight: 700; color: var(--brand-yellow); margin-bottom: 0.75rem; }
.footer-col h4 { color: var(--white); font-size: 0.9rem; font-weight: 600; margin-bottom: 1rem; letter-spacing: 0.5px; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--brand-yellow); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-mid));
  color: var(--white);
  padding: 3rem 1.5rem;
  text-align: center;
}

.page-hero h1 { font-size: clamp(1.5rem, 4vw, 2.4rem); margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; }

/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: var(--brand-yellow); }
.breadcrumb span { margin: 0 0.4rem; }

/* ── PRICE TABLE ── */
.price-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.price-table th { background: var(--brand-dark); color: var(--white); padding: 0.85rem 1rem; text-align: left; font-size: 0.88rem; }
.price-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.price-table tr:nth-child(even) td { background: var(--brand-light); }
.price-table .price { font-weight: 700; color: var(--brand-dark); }

/* ── LOCAL PAGE AREA BOX ── */
.area-info-box {
  background: var(--brand-light);
  border-left: 4px solid var(--brand-yellow);
  padding: 1.25rem 1.5rem;
  border-radius: 0 8px 8px 0;
  margin: 1.5rem 0;
}

.area-info-box h3 { font-weight: 700; margin-bottom: 0.5rem; }
.area-info-box p { font-size: 0.92rem; color: #374151; }

/* ── SCHEMA / invisible SEO blocks ── */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--brand-dark);
    padding: 1rem 1.5rem 1.5rem;
    gap: 1rem;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .trust-bar { gap: 1rem; }
  .section { padding: 2.5rem 1.25rem; }
}
