/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Desktop (1400px and up) */
@media screen and (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-heading {
        font-size: 80px;
    }
    
    .small-heading-hero {
        font-size: 36px;
    }
}

/* Desktop (1200px to 1399px) */
@media screen and (max-width: 1399px) and (min-width: 1200px) {
    .hero-heading {
        font-size: 65px;
    }
    
    .small-heading-hero {
        font-size: 30px;
    }
}

/* Large Tablet (992px to 1199px) */
@media screen and (max-width: 1199px) and (min-width: 992px) {
    .hero-heading {
        font-size: 55px;
    }
    
    .small-heading-hero {
        font-size: 28px;
    }
    
    .space-100px {
        padding: 70px 0px;
    }
    
    .owl-nav {
        left: -50px;
        right: -50px;
    }
}

/* Tablet (768px to 991px) */
@media screen and (max-width: 991px) and (min-width: 768px) {
    .hero-heading {
        font-size: 45px;
    }
    
    .small-heading-hero {
        font-size: 24px;
    }
    
    .space-100px {
        padding: 60px 0px;
    }
    
    .owl-nav {
        left: 0px;
        right: 0px;
    }
    
    .heading {
        font-size: 28px;
    }
    
    .small-heading-19-px {
        font-size: 18px;
    }
    
    .width-50-on-desktop {
        width: 100%;
    }
}

/* Mobile Large (576px to 767px) */
@media screen and (max-width: 767px) and (min-width: 576px) {
    .hero-heading {
        font-size: 38px;
    }
    
    .small-heading-hero {
        font-size: 20px;
    }
    
    .heading {
        font-size: 26px;
    }
    
    .small-heading-19-px {
        font-size: 17px;
    }
    
    .space-100px {
        padding: 40px 0px;
    }
    
    .owl-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0px;
        right: 0px;
        transform: translateY(-50%);
        padding: 10px 15px 0 15px;
    }
    
    .gallery-item {
        width: 90px;
        height: 90px;
        margin: 15px;
    }
    
    .custom-input-group-textbox, .rooms-guest-dd {
        height: 55px !important;
    }
    
    .datepicker-icon {
        top: 10px !important;
    }
}

/* Mobile (up to 575px) */
@media screen and (max-width: 575px) {
    .hero-heading {
        font-size: 32px;
    }
    
    .small-heading-hero {
        font-size: 18px;
    }
    
    .heading {
        font-size: 24px;
    }
    
    .small-heading-19-px {
        font-size: 16px;
    }
    
    .space-100px {
        padding: 30px 0px;
    }
    
    .owl-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 100%;
        left: 0px;
        right: 0px;
        transform: translateY(-50%);
        padding: 10px 15px 0 15px;
    }
    
    .width-50-on-desktop {
        width: 100%;
    }
    
    .gallery-item {
        width: 80px;
        height: 80px;
        margin: 10px;
    }
    
    .custom-input-group-textbox, .rooms-guest-dd {
        height: 50px !important;
    }
    
    .datepicker-icon {
        top: 7px !important;
    }
    
    .owl-theme .owl-nav {
        margin-top: 20px !important;
    }
    
    .small-para-14-px, .custom-form-label {
        font-size: 16px;
    }
    
    .daterangepicker {
        position: fixed !important;
        top: 0px !important;
        left: 0px !important;
        right: 0px !important;
        bottom: 0px !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 999 !important;
    }
    
    .daterangepicker .drp-calendar {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .daterangepicker:after, .daterangepicker:before {
        display: none !important;
    }
}

/* Container Responsive Adjustments */
@media screen and (max-width: 1024px) {
    .container {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Flight-specific responsive styles */
@media screen and (max-width: 768px) {
    .flight-routes-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .flight-result-card {
        padding: 1rem;
    }
    
    .flight-route-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .flight-route-arrow {
        transform: rotate(90deg);
    }
    
    .flight-search-form {
        padding: 1rem;
    }
}

/* Print Styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-break {
        page-break-before: always;
    }
    
    .print-avoid-break {
        page-break-inside: avoid;
    }
    
    .hero {
        background: none !important;
        min-height: auto !important;
    }
    
    .flight-search-panel {
        border: 1px solid #ccc !important;
        background: white !important;
    }
    
    .flight-search-panel::before {
        display: none !important;
    }
}