/* ==========================================================================
   NURAAN WORLD TRAVEL - RESPONSIVE STYLESHEET (responsive.css)
   ========================================================================== */

/* ==========================================================================
   1. DESKTOP & LARGE SCREENS (Below 1200px)
   ========================================================================== */
@media screen and (max-width: 1200px) {
  .nav-container,
  .hero-container,
  .footer-container,
  .footer-bottom {
    max-width: 100%;
    padding-left: 24px;
    padding-right: 24px;
  }

  .footer-container {
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
    gap: 30px;
  }
}

/* ==========================================================================
   2. LAPTOPS & SMALL DESKTOPS (Below 1024px)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  /* Hero Section Adjustment */
  .hero-banner {
    min-height: auto;
    padding: 60px 20px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group,
  .hero-trust-bar {
    justify-content: center;
  }

  .hero-image-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }

  /* Grid Layout Fallbacks */
  .stats-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .destinations-grid,
  .grid-cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* ==========================================================================
   3. TABLETS & PORTRAIT DEVICES (Below 768px)
   ========================================================================== */
@media screen and (max-width: 768px) {
  /* Typography & Padding Scale */
  .section-padding {
    padding: 50px 16px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .page-hero-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.65rem;
  }

  /* Navigation Drawer & Toggle */
  .mobile-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 69px; /* Height of Navbar Header */
    left: 0;
    width: 100%;
    background-color: rgba(11, 14, 20, 0.98);
    border-bottom: 1px solid var(--border-gold);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transform: translateY(-150%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.8);
  }

  .nav-menu.active {
    transform: translateY(0);
  }

  .nav-link {
    font-size: 1rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Form Grids & Layouts */
  .grid-2,
  .grid-3,
  .btn-grid,
  .contact-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .booking-card {
    padding: 20px 16px;
  }

  .trip-selector {
    flex-wrap: wrap;
    gap: 12px 20px;
  }

  /* Flight Booking Multi-City Rows */
  .multi-city-row {
    grid-template-columns: 1fr;
    gap: 12px;
    background: rgba(11, 14, 20, 0.5);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-subtle);
  }

  .btn-remove-city {
    width: 100%;
    margin-top: 4px;
  }

  .passenger-popover {
    width: 100%;
    right: 0;
    left: 0;
  }

  /* Footer Layout */
  .footer-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

/* ==========================================================================
   4. MOBILE PHONES & SMALL SCREENS (Below 480px)
   ========================================================================== */
@media screen and (max-width: 480px) {
  .brand-name {
    font-size: 0.95rem;
  }

  .nav-logo {
    width: 36px;
    height: 36px;
  }

  .btn-whatsapp-sm {
    padding: 6px 10px;
    font-size: 0.75rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: 0.9rem;
  }

  /* Single Column Fallback for all Grid Lists */
  .stats-container,
  .destinations-grid,
  .dest-filter-btn {
    width: 100%;
  }

  .destination-filters {
    flex-direction: column;
    align-items: stretch;
  }

  .dest-filter-btn {
    text-align: center;
  }

  .floating-badge {
    position: static;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }

  .hero-image {
    height: 220px;
  }

  .btn {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .airlines-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .airlines-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}