/* assets/css/ije-airport-transfer.css */

/* Move this :root to ije-brand.css later if you want one shared brand file. */


/* =========================================================
   AIRPORT TRANSFER PAGE
   ========================================================= */

.ije-airport-page {
  overflow: hidden;

  background:
    linear-gradient(
      180deg,
      #fffdf8 0%,
      #ffffff 44%,
      #f8fbff 100%
    );

  color: var(--ije-text);
}


/* =========================================================
   HERO
   ========================================================= */

.ije-airport-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  color: #fff;
  background-image: var(--ije-hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.ije-airport-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    radial-gradient(
      circle at top left,
      rgba(0, 168, 232, .22),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 16%,
      rgba(254, 209, 0, .10),
      transparent 25%
    ),
    linear-gradient(
      90deg,
      rgba(7, 24, 39, .92) 0%,
      rgba(7, 24, 39, .72) 48%,
      rgba(7, 24, 39, .36) 100%
    );
}

.ije-airport-hero .container {
  position: relative;
  z-index: 2;
  max-width: 980px;
  text-align: center;
}

.ije-airport-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 999px;
  padding: .42rem .78rem;
  color: #fff;
  font-weight: 800;
  margin-bottom: 1rem;
  font-size: .9rem;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.ije-airport-hero h1 {
  max-width: 900px;
  margin: 0 auto .85rem;
  color: #fff;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 900;
  font-size: clamp(2.6rem, 5vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.ije-airport-hero p {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, .9);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.ije-airport-hero-actions {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.55rem;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.ije-airport-btn-primary,
.ije-airport-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  padding: .82rem 1.15rem;
}

.ije-airport-btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--ije-yellow),
      var(--ije-orange)
    );

  color: var(--ije-navy) !important;
  border: 0;
}

.ije-airport-btn-secondary {
  background: rgba(255, 255, 255, .1);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, .28);
}


/* =========================================================
   SECTIONS
   New IJE ambient background standard
   ========================================================= */

.ije-airport-section {
  position: relative;
  overflow: hidden;

  padding: 4rem 0;
}

.ije-airport-section:not(.ije-airport-section-soft) {
  background:
    radial-gradient(
      circle at 7% 12%,
      rgba(254, 209, 0, .13),
      transparent 27%
    ),
    radial-gradient(
      circle at 95% 88%,
      rgba(0, 168, 232, .08),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #fffdf7 0%,
      #ffffff 46%,
      #f8fbff 100%
    );
}

.ije-airport-section-soft {
  background:
    radial-gradient(
      circle at 96% 10%,
      rgba(0, 168, 232, .075),
      transparent 29%
    ),
    radial-gradient(
      circle at 5% 92%,
      rgba(254, 209, 0, .09),
      transparent 27%
    ),
    linear-gradient(
      180deg,
      #f8fbff 0%,
      #ffffff 48%,
      #fffdf8 100%
    );

  border-top:
    1px solid rgba(7, 24, 39, .045);

  border-bottom:
    1px solid rgba(7, 24, 39, .045);
}

.ije-section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.ije-section-heading.text-center {
  margin-left: auto;
  margin-right: auto;
}

.ije-section-heading h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  color: var(--ije-navy);
  letter-spacing: -.035em;
  margin-bottom: .55rem;
}

.ije-section-heading p {
  color: var(--ije-muted);
  line-height: 1.7;
  margin-bottom: 0;
  font-size: 1.03rem;
}


/* =========================================================
   CARDS
   ========================================================= */

.ije-airport-card,
.ije-benefit-card,
.ije-faq-card {
  background: #fff;
  border: 1px solid var(--ije-line);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(7, 24, 39, .055);
  height: 100%;
}

.ije-airport-card {
  padding: 1.45rem;
}

.ije-airport-card-top {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-bottom: 1rem;
}

.ije-airport-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ije-yellow);
  color: var(--ije-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.ije-airport-card h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.08rem;
  color: var(--ije-navy);
  margin: 0;
}

.ije-airport-card p {
  color: var(--ije-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}

.ije-airport-card ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ije-muted);
  font-weight: 650;
}

.ije-airport-card li {
  margin-bottom: .35rem;
}

.ije-airport-selection-box {
  background: #fff;
  border: 1px solid var(--ije-line);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: 0 12px 30px rgba(7, 24, 39, .055);
}

.ije-benefit-card {
  padding: 1.35rem;
}

.ije-benefit-card i {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ije-yellow);
  color: var(--ije-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
}

.ije-benefit-card h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--ije-navy);
}

.ije-benefit-card p {
  color: var(--ije-muted);
  line-height: 1.65;
  margin-bottom: 0;
}


/* =========================================================
   CTA
   ========================================================= */

.ije-airport-cta {
  background:
    radial-gradient(
      circle at top right,
      rgba(255, 201, 40, .18),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      var(--ije-navy),
      #0b2238
    );

  color: #fff;
  border-radius: 26px;
  padding: 2rem;
  overflow: hidden;
}

.ije-airport-cta h2 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  letter-spacing: -.035em;
}

.ije-airport-cta p {
  color: rgba(255, 255, 255, .82);
  line-height: 1.7;
}

.ije-cta-trust {
  color: rgba(255, 255, 255, .72);
  font-weight: 700;
  font-size: .92rem;
  margin-top: 1rem;
}


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

.ije-faq-card {
  padding: 1.25rem;
}

.ije-faq-card h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-weight: 800;
  color: var(--ije-navy);
  font-size: 1rem;
}

.ije-faq-card p {
  color: var(--ije-muted);
  line-height: 1.65;
  margin-bottom: 0;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991.98px) {
  .ije-airport-hero {
    min-height: 480px;
  }

  .ije-airport-section {
    padding: 3rem 0;
  }
}

@media (max-width: 575.98px) {
  .ije-airport-hero {
    min-height: 500px;
  }

  .ije-airport-hero-actions,
  .ije-airport-btn-primary,
  .ije-airport-btn-secondary {
    width: 100%;
  }

  .ije-airport-cta {
    padding: 1.45rem;
    border-radius: 22px;
  }
}
