/* =========================
   RESPONSIVE CSS
   ========================= */

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }

    .package-content h4 {
        font-size: 18px;
    }
}

/* Tablet Portrait */
@media (max-width: 991px) {
    /* Disabled - Using new main-header styles instead
    .navbar-collapse {
        position  : absolute;
        top       : 100%;
        left      : 0;
        right     : 0;
        background: white;
        padding   : 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .navbar-nav {
        flex-direction: column;
        text-align    : center;
        gap           : 10px;
    }
    */

    .hero {
        height: 500px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .section-title {
        font-size    : 30px;
        margin-bottom: 40px;
    }

    .package-card {
        margin-bottom: 30px;
    }

    .contact-section .row {
        flex-direction: column-reverse;
    }

    .booking-form-card {
        position  : static;
        margin-top: 30px;
    }

    /* Disabled old footer styles - using new main-footer instead
    .footer {
        text-align: center;
    }

    .footer ul li {
        display: inline-block;
        margin : 0 10px;
    }
    */

}

    .footer {
        text-align: center;
    }

    .footer ul li {
        display: inline-block;
        margin : 0 10px;
    }


/* Large Mobile */
@media (max-width: 767px) {
    .navfix{
        display: flex;
        justify-content: space-between;
        
    }

    .navfix img{
        margin-top:0 !important;
    }
    
    .hero {
        height: 450px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .page-banner {
        padding: 60px 0;
    }

    .page-banner h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .packages,
    .gallery-section,
    .contact-section,
    .why-choose-us,
    .testimonials,
    .cta,
    .destinations {
        padding: 50px 0;
    }

    .package-image {
        height: 180px;
    }

    .package-content {
        padding: 15px;
    }

    .package-content h4 {
        font-size: 16px;
    }

    .package-price {
        font-size: 18px;
    }

    .package-footer {
        flex-direction: column;
        gap           : 10px;
        align-items   : stretch;
    }

    .package-footer .btn {
        width: 100%;
    }

    .feature-box {
        padding: 20px;
    }

    .feature-icon {
        width    : 60px;
        height   : 60px;
        font-size: 24px;
    }

    .testimonial-card {
        padding      : 20px;
        margin-bottom: 20px;
    }

    .cta h2 {
        font-size: 26px;
    }

    .cta p {
        font-size: 16px;
    }

    .price-tag {
        font-size: 28px;
    }

    .package-main-image img {
        height: 250px;
    }

    .review-header {
        flex-direction: column;
        gap           : 10px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        height: 380px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero .btn {
        padding  : 10px 25px;
        font-size: 14px;
    }

    .section-title {
        font-size: 22px;
    }

    .page-banner h1 {
        font-size: 24px;
    }

    .package-image {
        height: 150px;
    }

    .contact-box,
    .booking-form-card,
    .help-card {
        padding: 20px;
    }

    .form-control,
    .form-select {
        padding  : 8px 10px;
        font-size: 14px;
    }

    .btn {
        padding  : 8px 18px;
        font-size: 14px;
    }

    .gallery-img {
        height: 180px;
    }

    .destination-card {
        height: 200px;
    }
}

/* Extra Small */
@media (max-width: 360px) {
    .hero h1 {
        font-size: 20px;
    }

    .section-title {
        font-size: 20px;
    }

    .package-content h4 {
        font-size: 14px;
    }

    .package-price {
        font-size: 16px;
    }

    .footer ul li {
        display: block;
        margin : 5px 0;
    }
}

/* Print */
@media print {

    header,
    footer,
    .btn,
    .booking-form-card {
        display: none !important;
    }

    .package-details {
        padding: 20px 0;
    }

    .package-main-image img {
        height: auto;
    }
}