/* =========================
   Wiki Jet – Global Styles
   Shared across all pages
   ========================= */

:root {
  /* Wiki Jet livery colors */
  --orange: #F36A21;
  --yellow: #FDB515;
  --teal: #16B6C6;
  --blue: #0B5EA8;

  --bg: #f6f9fc;
  --surface: #ffffff;
  --text: #1e2433;
  --muted: #6b728a;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* ===== Header ===== */
header {
  background: var(--surface);
  padding: 1.8rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

header h1 {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

nav a {
  margin-left: 2rem;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

nav a:hover {
  color: var(--text);
}

/* ===== Hero ===== */
.hero {
  max-width: 1300px;
  margin: auto;
  padding: 6rem 4rem 5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero h2 {
  font-size: 3.2rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
  color: var(--muted);
}

.hero-cta {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--yellow));
  color: white;
  text-decoration: none;
  font-weight: 600;
}

/* Space the primary button inside the hero content */
.hero .btn-primary {
  display: inline-block;
  margin-top: 1.2rem;
}


/* ===== Image Placeholder ===== */
.image-placeholder {
  background: linear-gradient(135deg, #f3f6fb, #e9eef7);
  border-radius: 18px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa3b2;
  font-size: 0.9rem;
  border: 1px dashed rgba(0,0,0,0.1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Content ===== */
main {
  max-width: 1300px;
  margin: auto;
  padding: 4rem 4rem 6rem;
}

.page-title {
  font-size: 2.4rem;
  margin-bottom: 0.8rem;
}

.page-intro {
  color: var(--muted);
  max-width: 700px;
  margin-bottom: 3rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.card {
  background: var(--surface);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 0.5rem;
}

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

/* ===== Footer ===== */
footer {
  background: var(--surface);
  border-top: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  padding: 3rem;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== FAQ Accordion ===== */

.faq-list {
  display: grid;
  gap: 1.2rem;
}

.faq-item {
  background: #ff7a00; /* same orange as buttons */
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  overflow: hidden;
  color: #ffffff; /* ensure text is readable */
}

/* Clickable question row */
.faq-question {
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
   color: #ffffff;
}

/* Chevron indicator */
.faq-question::after {
  content: "▼";
  font-size: 0.9rem;
  color: var(--muted);
  transition: transform .2s ease;
}

/* Answer container */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.6rem;
  color: #f5f5f5;
  font-size: 0.95rem;
  transition: max-height .25s ease, padding .25s ease;
}

/* When expanded */
.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 1rem 1.6rem 1.4rem;
}

.faq-item.open .faq-question::after {
  transform: rotate(-180deg);
}



/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.btn-primary {
  background: var(--orange);
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
  transition: transform .1s ease, box-shadow .1s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px rgba(0,0,0,0.12);
}

.airport-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
}

.airport-card {
  margin-bottom: 3rem;
}

.hero-image {
  margin-bottom: 3rem;
}

.image-placeholder {
  background:#eef2fa;
  border-radius:16px;
  height:260px;
  overflow:hidden;
}
