/**
 * JetFlo Airport Directory Styles
 * ─────────────────────────────────
 * Matches the JetFlo design system from style-v2.css:
 *   - Colors: --blue-300, --light-blue, --gray-50, etc.
 *   - Fonts: Montserrat (labels, card titles), Roboto (body, section titles), DM Sans (hero)
 *   - Radius: 10px cards, 15px rounded, 40px pill inputs
 *   - Transitions: all linear 0.2s / 0.3s
 */

/* ─── HERO (matches .c_post_banner / .green_solu_hero pattern) ─── */
.jf-airport-hero {
  position: relative;
  min-height: calc(55vh - 106px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  z-index: 1;
}

.jf-airport-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-300) 0%, #2c3e4e 40%, #4a5d6d 100%);
  z-index: -1;
}

.jf-airport-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0) 60%);
}

.jf-airport-hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: -1;
}

.jf-airport-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 80px 0 48px;
}

/* Ensure container inside hero has proper padding */
.jf-airport-hero .container {
  position: relative;
  z-index: 2;
}

.jf-airport-hero__breadcrumb {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.8px;
  margin-bottom: 12px;
}

.jf-airport-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all linear 0.2s;
}

.jf-airport-hero__breadcrumb a:hover {
  color: var(--light-blue);
}

.jf-airport-hero__label {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 11.2px;
  text-transform: uppercase;
  color: var(--light-blue);
  margin-bottom: 16px;
}

.jf-airport-hero__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 60px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}

.jf-airport-hero__subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
  max-width: 600px;
}

.jf-airport-hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 28px;
}

.jf-airport-hero__stat-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
}

.jf-airport-hero__stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ─── FILTER BAR (matches .aircraft_types_input / form patterns) ─── */
.jf-filter-bar {
  background: var(--white);
  border-bottom: 1px solid #dee2e6;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.jf-filter-bar__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.jf-search-box {
  flex: 1;
  min-width: 280px;
  position: relative;
}

.jf-search-box svg {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
}

.jf-search-box input {
  width: 100%;
  padding: 10px 20px 10px 44px;
  border-radius: 40px;
  border: 1px solid var(--blue-300);
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--blue-300);
  background: transparent;
  outline: none;
  transition: all linear 0.2s;
}

.jf-search-box input::placeholder {
  color: var(--gray-400);
}

.jf-search-box input:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(104, 158, 184, 0.15);
}

.jf-filter-select {
  padding: 10px 36px 10px 16px;
  border-radius: 40px;
  border: 1px solid var(--blue-300);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--blue-300);
  background-color: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%233A4854' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  outline: none;
  transition: all linear 0.2s;
  /* Override theme custom select */
  display: inline-block !important;
  position: relative !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  width: auto !important;
  min-width: 160px;
  max-width: 220px;
  height: auto !important;
  line-height: normal !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Block theme from replacing the native select */
.jf-filter-bar .select-styled,
.jf-filter-bar .select-options,
.jf-filter-bar .select-hidden {
  display: none !important;
}

.jf-filter-select:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 3px rgba(104, 158, 184, 0.15);
}

.jf-filter-select option {
  font-size: 14px;
  font-family: 'Roboto', sans-serif;
  color: var(--blue-300);
  background: var(--white);
  padding: 8px;
}

.jf-filter-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 40px;
  border: 1px solid var(--blue-300);
  background: transparent;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--blue-300);
  transition: all linear 0.2s;
}

.jf-filter-toggle:hover {
  background: var(--gray-50);
}

.jf-filter-toggle.active {
  background: var(--blue-300);
  color: var(--white);
  border-color: var(--blue-300);
}

.jf-filter-toggle svg {
  width: 16px;
  height: 16px;
}

.jf-result-count {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: var(--gray-6d);
  margin-left: auto;
  white-space: nowrap;
}

.jf-result-count strong {
  font-weight: 600;
  color: var(--blue-300);
}

/* ─── MAP + LIST SPLIT ─── */
.jf-airport-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 200px);
}

.jf-map-panel {
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  border-right: 1px solid #dee2e6;
}

#jfMap {
  width: 100%;
  height: 100%;
}

.jf-list-panel {
  background: var(--gray-50);
  overflow-y: auto;
  max-height: calc(100vh - 60px);
  position: sticky;
  top: 60px;
}

/* ─── COUNTRY GROUP ─── */
.jf-country-group {
  border-bottom: 1px solid #dee2e6;
}

.jf-country-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 30px;
  background: var(--white);
  cursor: pointer;
  transition: all linear 0.2s;
  position: sticky;
  top: 0;
  z-index: 10;
}

.jf-country-header:hover {
  background: var(--gray-50);
}

.jf-country-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--blue-300);
}

.jf-country-count {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  background: var(--gray-50);
  padding: 2px 10px;
  border-radius: 20px;
}

/* ─── AIRPORT CARD ─── */
.jf-airport-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 30px 16px 44px;
  border-bottom: 1px solid rgba(222, 226, 230, 0.6);
  cursor: pointer;
  transition: all linear 0.2s;
  position: relative;
}

.jf-airport-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: transparent;
  transition: all linear 0.2s;
}

.jf-airport-card:hover {
  background: var(--white);
}

.jf-airport-card:hover::before {
  background: var(--light-blue);
}

.jf-airport-card.active {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.jf-airport-card.active::before {
  background: var(--light-blue);
}

.jf-airport-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all linear 0.2s;
}

.jf-airport-card:hover .jf-airport-icon,
.jf-airport-card.active .jf-airport-icon {
  background: var(--blue-300);
}

.jf-airport-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gray-6d);
  transition: all linear 0.2s;
}

.jf-airport-card:hover .jf-airport-icon svg,
.jf-airport-card.active .jf-airport-icon svg {
  color: var(--white);
}

.jf-airport-info {
  flex: 1;
  min-width: 0;
}

.jf-airport-name {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

a.jf-airport-name {
  text-decoration: none;
  display: block;
  transition: color linear 0.2s;
}

a.jf-airport-name:hover {
  color: var(--light-blue);
  text-decoration: none;
}

.jf-airport-city {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-6d);
}

.jf-airport-codes {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.jf-code-badge {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.jf-code-iata {
  background: var(--blue-300);
  color: var(--white);
}

.jf-code-icao {
  background: #e9ecef;
  color: var(--blue-300);
}

.jf-airport-badges {
  display: flex;
  gap: 6px;
  margin-top: 6px;
}

.jf-badge-weather {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: #fef3c7;
  color: #92400e;
}

.jf-badge-restricted {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: #fce4e4;
  color: #991b1b;
}

.jf-airport-actions {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.jf-airport-coords {
  font-family: 'Roboto', sans-serif;
  font-size: 10px;
  color: var(--gray-400);
  font-variant-numeric: tabular-nums;
}

.jf-btn-book {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 10px;
  background: transparent;
  color: var(--blue-300);
  border: 1px solid var(--blue-300);
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: all linear 0.2s;
  white-space: nowrap;
  display: inline-block;
  line-height: 1;
}

.jf-btn-book:hover {
  background: var(--blue-300);
  color: var(--white);
  text-decoration: none;
}

.jf-btn-dest {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: var(--light-blue);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: all linear 0.2s;
}

.jf-btn-dest:hover {
  text-decoration: underline;
  color: var(--blue-300);
}

/* ─── DESTINATIONS SECTION (matches .dream_destination_sec / .our_recommendation) ─── */
.jf-destinations-section {
  padding-top: 65px;
  padding-bottom: 65px;
  background: var(--white);
}

.jf-destinations-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 15px;
}

.jf-section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 11.2px;
  text-transform: uppercase;
  color: var(--black-200, #474747);
  text-align: center;
  margin-bottom: 12px;
}

.jf-section-title {
  font-family: 'Roboto', sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--blue-300);
  text-align: center;
  line-height: 1.2;
  margin-bottom: 40px;
}

.jf-section-title span {
  color: var(--light-blue);
}

.jf-dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
}

.jf-dest-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  height: 420px;
  cursor: pointer;
  text-decoration: none;
  display: block;
  z-index: 1;
}

.jf-dest-card::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.54) -32.98%, rgba(255, 255, 255, 0.00) 63.99%);
  z-index: 1;
}

.jf-dest-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: all linear 0.3s;
}

.jf-dest-card:hover .jf-dest-card__bg {
  transform: scale(1.2);
}

.jf-dest-card__overlay {
  display: none;
}

.jf-dest-card__content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 2;
}

.jf-dest-card__name {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  line-height: normal;
}

.jf-dest-card__country {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.60);
  line-height: normal;
  margin-bottom: 0;
}

/* ─── CTA SECTION (matches .events_basic_wrapper pattern) ─── */
.jf-airport-cta {
  background: var(--blue-300);
  padding: 60px 15px;
  text-align: center;
}

.jf-airport-cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

.jf-airport-cta h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.jf-airport-cta p {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  opacity: 0.7;
  line-height: 1.5;
  margin-bottom: 28px;
}

.jf-airport-cta__btn {
  display: inline-block;
  padding: 16px 24px;
  background: var(--light-blue);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
  text-decoration: none;
  border-radius: 15px;
  transition: all linear 0.2s;
  border: 1px solid var(--light-blue);
  line-height: 1;
}

.jf-airport-cta__btn:hover {
  background: var(--white);
  color: var(--blue-300);
  text-decoration: none;
}

/* ─── MAP POPUP ─── */
.jf-map-popup {
  padding: 16px 20px;
  min-width: 220px;
  font-family: 'Roboto', sans-serif;
}

.jf-map-popup__name {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: 4px;
}

.jf-map-popup__city {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--gray-6d);
  margin-bottom: 8px;
}

.jf-map-popup__codes {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.jf-map-popup__codes span {
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--gray-50);
  color: var(--blue-300);
}

.jf-map-popup__book {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  background: var(--blue-300);
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: all linear 0.2s;
  line-height: 1;
}

.jf-map-popup__book:hover {
  background: var(--light-blue);
  color: var(--white);
  text-decoration: none;
}

/* ─── SCROLLBAR ─── */
.jf-list-panel::-webkit-scrollbar {
  width: 6px;
}

.jf-list-panel::-webkit-scrollbar-track {
  background: transparent;
}

.jf-list-panel::-webkit-scrollbar-thumb {
  background: #dee2e6;
  border-radius: 3px;
}

.jf-list-panel::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .jf-airport-main {
    grid-template-columns: 1fr;
  }

  .jf-map-panel {
    position: relative;
    top: auto;
    height: 50vh;
    border-right: none;
    border-bottom: 1px solid #dee2e6;
  }

  .jf-list-panel {
    position: relative;
    top: auto;
    max-height: none;
    overflow: visible;
  }

  .jf-airport-hero__title {
    font-size: 40px;
  }

  .jf-section-title {
    font-size: 32px;
  }

  .jf-airport-cta h2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .jf-airport-hero__content {
    padding: 60px 0 32px;
  }

  .jf-airport-hero__label {
    font-size: 12px;
    letter-spacing: 6px;
  }

  .jf-airport-hero__title {
    font-size: 32px;
  }

  .jf-airport-hero__subtitle {
    font-size: 16px;
  }

  .jf-airport-hero__stats {
    gap: 24px;
  }

  .jf-airport-hero__stat-val {
    font-size: 28px;
  }

  .jf-airport-card {
    padding-left: 28px;
    padding-right: 16px;
  }

  .jf-country-header {
    padding-left: 16px;
    padding-right: 16px;
  }

  .jf-airport-actions {
    display: none;
  }

  .jf-dest-card {
    height: 300px;
  }

  .jf-dest-card__name {
    font-size: 24px;
  }

  .jf-dest-card__content {
    bottom: 20px;
    left: 20px;
  }
}

@media (max-width: 480px) {
  .jf-filter-bar__inner {
    padding: 12px 15px;
    gap: 8px;
  }

  .jf-search-box {
    min-width: 100%;
  }

  .jf-filter-toggle {
    font-size: 12px;
    padding: 8px 12px;
  }
}


/* ══════════════════════════════════════════
   SINGLE AIRPORT PAGE
   ══════════════════════════════════════════ */

.jf-airport-hero--single {
  min-height: calc(40vh - 106px);
}

.jf-airport-hero--single .jf-airport-hero__title {
  font-size: 44px;
  line-height: 1.1;
}

.jf-single__codes-hero {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.jf-code-badge--lg {
  font-size: 14px;
  padding: 4px 14px;
}

/* Grid layout */
.jf-single-airport {
  padding: 40px 0 80px;
  background: var(--gray-50);
}

.jf-single__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

/* Map */
.jf-single__map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.jf-single__map {
  width: 100%;
  height: 400px;
}

/* Section titles */
.jf-single__section-title {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: 20px;
}

/* Details card */
.jf-single__details {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-top: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.jf-single__detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.jf-single__detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.jf-single__detail-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--neutral-gray);
}

.jf-single__detail-value {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--blue-300);
}

.jf-single__detail-value code {
  font-family: 'Roboto Mono', monospace;
  font-size: 15px;
  background: var(--gray-50);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Operational notes */
.jf-single__notes {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #dee2e6;
}

.jf-single__notes-title {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: 8px;
}

.jf-single__notes p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: var(--neutral-dark-gray);
  line-height: 1.6;
}

/* Nearby airports */
.jf-single__nearby {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin-top: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.jf-single__nearby-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.jf-single__nearby-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid #dee2e6;
  text-decoration: none;
  transition: all linear 0.2s;
}

.jf-single__nearby-card:hover {
  border-color: var(--light-blue);
  background: var(--gray-50);
  text-decoration: none;
}

.jf-single__nearby-card .jf-airport-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.jf-single__nearby-card .jf-airport-name {
  font-size: 14px;
}

.jf-single__nearby-card .jf-airport-city {
  font-size: 12px;
}

.jf-single__nearby-card .jf-airport-codes {
  margin-top: 4px;
}

.jf-single__nearby-card .jf-code-badge {
  font-size: 10px;
}

/* Sidebar */
.jf-single__sidebar {
  position: sticky;
  top: 100px;
}

/* CTA card */
.jf-single__cta-card {
  background: var(--blue-300);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
}

.jf-single__cta-card h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.jf-single__cta-card p {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.5;
}

.jf-single__cta-btn {
  display: block;
  padding: 14px 24px;
  background: var(--light-blue);
  color: var(--white);
  border: 1px solid var(--light-blue);
  border-radius: 15px;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.5px;
  transition: all linear 0.2s;
}

.jf-single__cta-btn:hover {
  background: var(--white);
  color: var(--blue-300);
  border-color: var(--white);
  text-decoration: none;
}

.jf-single__cta-phone {
  display: block;
  margin-top: 12px;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all linear 0.2s;
}

.jf-single__cta-phone:hover {
  color: var(--white);
  text-decoration: none;
}

/* Destination card */
.jf-single__dest-card {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  background: var(--white);
}

.jf-single__dest-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}

.jf-single__dest-body {
  padding: 20px;
}

.jf-single__dest-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--neutral-gray);
  margin-bottom: 6px;
}

.jf-single__dest-name {
  font-family: 'Roboto', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: 10px;
}

.jf-single__dest-link {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--light-blue);
  text-decoration: underline;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all linear 0.2s;
}

.jf-single__dest-link:hover {
  color: var(--blue-300);
  text-decoration: none;
}

/* Quick facts */
.jf-single__facts {
  background: var(--white);
  border-radius: 10px;
  padding: 24px;
  margin-top: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.jf-single__facts h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--blue-300);
  margin-bottom: 14px;
}

.jf-single__facts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jf-single__facts li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(222, 226, 230, 0.6);
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
}

.jf-single__facts li:last-child {
  border-bottom: none;
}

.jf-single__facts li span {
  color: var(--neutral-gray);
}

.jf-single__facts li strong {
  color: var(--blue-300);
  font-weight: 500;
}

/* Back link */
.jf-single__back-link {
  display: block;
  margin-top: 20px;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--light-blue);
  text-decoration: none;
  transition: all linear 0.2s;
}

.jf-single__back-link:hover {
  color: var(--blue-300);
  text-decoration: none;
}

/* Single airport responsive */
@media (max-width: 991px) {
  .jf-single__grid {
    grid-template-columns: 1fr;
  }

  .jf-single__sidebar {
    position: relative;
    top: auto;
  }

  .jf-airport-hero--single .jf-airport-hero__title {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .jf-single__detail-grid {
    grid-template-columns: 1fr;
  }

  .jf-single__nearby-grid {
    grid-template-columns: 1fr;
  }

  .jf-single__map {
    height: 280px;
  }

  .jf-airport-hero--single .jf-airport-hero__title {
    font-size: 28px;
  }
}
