/* ==========================================================================
   01. MAP CONTAINER STYLES
   ========================================================================== */
   .map-section {
    margin-bottom: 4rem;
    width: 100%;
  }
  
  #map-container {
    padding: 0; /* Remove card padding to let map fill edges */
    height: 480px;
    position: relative;
  }
  
  #map {
    width: 100%;
    height: 100%;
    border-radius: 16px;
  }
  
  /* ==========================================================================
     02. RESPONSIVE DIRECTORY TOGGLE (TABLE VS CARDS)
     ========================================================================== */
  .desktop-table-wrapper {
    display: none; /* Hidden on mobile by default */
  }
  
  .mobile-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    width: 100%;
  }
  
  /* Show Table, Hide Cards on Desktop */
  @media (min-width: 768px) {
    .desktop-table-wrapper {
      display: block;
    }
    
    .mobile-cards-wrapper {
      display: none;
    }
  }
  
  /* ==========================================================================
     03. MOBILE CARDS COMPONENT
     ========================================================================== */
  .resort-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .resort-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #ffffff;
  }
  
  .resort-card .location {
    color: #d4b886;
    font-size: 0.85rem;
    font-weight: 500;
  }
  
  .resort-card .address {
    color: #a3a3a3;
    font-size: 0.85rem;
  }
  
  /* Modal Trigger Button */
  .btn-airports {
    background: transparent;
    border: 1px solid #d4b886;
    color: #d4b886;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    align-self: flex-start;
    transition: all 0.2s ease;
  }
  
  .btn-airports:hover {
    background: #d4b886;
    color: #0d0d0d;
  }
  
  /* ==========================================================================
     04. MODAL OVERLAY STYLES
     ========================================================================== */
  .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .modal-overlay.is-active {
    opacity: 1;
    pointer-events: auto;
  }
  
  .modal-content {
    position: relative;
    max-width: 480px;
    width: 100%;
    background: #141414;
    border: 1px solid #d4b886;
    padding: 2rem;
  }
  
  .modal-close-btn {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: #a3a3a3;
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
  }
  
  .modal-close-btn:hover {
    color: #ffffff;
  }
  
  .modal-content h3 {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    padding-right: 1.5rem;
  }
  
  .modal-address {
    color: #a3a3a3;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .modal-airport-list h4 {
    font-size: 0.85rem;
    color: #d4b886;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
  }
  
  .modal-airport-list ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .modal-airport-list li {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #e5e5e5;
    padding: 0.35rem 0;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.06);
  }
  
  .modal-airport-list li span.dist {
    color: #a3a3a3;
  }