/* ===== HERO ===== */
.fd-hero {
  position: relative;
  height: 600px;
  display: flex;
  overflow: hidden;
  background: var(--dark-blue);
  box-shadow: 0px 0x 18px 10px white inset;
}

.fd-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.45);
}

.fd-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.178);
  box-shadow: inset 0 -110px 40px -60px white;
}

.fd-hero__container {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fd-hero__title {
  margin: 0;
  color: var(--white);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
}

.fd-hero__title--yellow {
  color: var(--yellow);
}

.fd-hero__subtitle {
  margin: 0;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}

.fd-hero__subdesc {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.80);
}

.fd-hero__body {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.7;
  max-width: 520px;
}

/* ===== PAGE WRAPPER ===== */
.fd-page {
  position: relative;
  padding: 40px 0 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
  margin-top: -240px;
}

/* ===== AIRPORT BLOCK ===== */
.fd-airport-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 18px rgb(0 0 0 / 19%);
}

.fd-airport-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark-blue);
}

.fd-airport-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
  color: var(--dark-blue);
}

/* ===== CARD BASE ===== */
.fd-card {
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0px 5px 8px 0px gray;
}

/* --- Wide card (horizontal) --- */
.fd-card--wide {
  display: grid;
  grid-template-columns: 280px 1fr;
}

.fd-card__img--wide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fd-card--wide .fd-card__body {
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/* --- Compact card (vertical, grid) --- */
.fd-grid {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.fd-card--compact {
  display: flex;
  flex-direction: column;
  max-width: 200px;
}

.fd-card__img-wrap {
  position: relative;
}

.fd-card__img-wrap span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  text-shadow: black 0px 0px 4px;
}

.fd-card__img--compact {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.fd-card--compact .fd-card__body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* --- Card body shared --- */
.fd-card__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-blue);
  line-height: 1.25;
}

.fd-card--compact .fd-card__name {
  font-size: 14px;
}

.fd-card__desc {
  margin: 0;
  font-size: 12.5px;
  color: #6b7280;
}

/* ===== BUTTON ===== */
.fd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  padding: 8px 18px;
  background: var(--yellow);
  color: var(--dark-blue);
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font);
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: filter 0.15s;
  align-self: flex-start;
}

.fd-btn:hover {
  filter: brightness(1.08);
}

/* ===== CTA ===== */
.fd-cta-wrap {
  display: flex;
  justify-content: center;
  padding-top: 8px;
}

.fd-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 64px;
  background: var(--yellow);
  color: var(--dark-blue);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 6px;
  font-family: var(--font);
  transition: filter 0.2s;
}

.fd-cta:hover {
  filter: brightness(1.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 780px) {
  .fd-hero__title { font-size: 36px; }

  .fd-card--wide {
    grid-template-columns: 1fr;
  }
  .fd-card__img--wide {
    height: 200px;
  }

  .fd-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .fd-hero__title { font-size: 28px; }
  .fd-grid { grid-template-columns: repeat(2, 1fr); }
  .fd-airport-title { font-size: 17px; }
}