/* Media Queries */

/* Large Devices (Desktops) */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

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

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

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

    .hero-content h1 {
        font-size: 42px;
    }
}

/* Medium Devices (Tablets) */
@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 70px);
        background-color: var(--light-color);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: var(--transition);
        box-shadow: var(--shadow);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .about-img,
    .about-text {
        flex: none;
        width: 100%;
    }

    .contact-wrapper {
        flex-direction: column;
    }

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

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

    .city-card {
        flex-direction: column;
    }

    .city-image {
        max-width: 100%;
        height: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        flex: 0 0 calc(50% - 10px);
    }
}

/* Small Devices (Mobile) */
@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .hero-content {
        max-width: 90%;
        padding: 0 40px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item {
        width: 100%;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px !important;
        height: 40px !important;
    }

    .testimonial-content {
        padding: 30px 20px;
    }

    .testimonial-content p {
        font-size: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .city-info h3 {
        font-size: 24px;
    }

    .city-details {
        flex-direction: column;
        gap: 10px;
    }

    .detail {
        margin-right: 0;
        margin-bottom: 5px;
    }
}

/* Extra Small Devices */
@media screen and (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .section-header p {
        font-size: 14px;
    }

    .feature-card,
    .service-card {
        padding: 20px;
    }

    .feature-card .icon,
    .service-card .icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .feature-card h3,
    .service-card h3 {
        font-size: 18px;
    }

    .city-info {
        padding: 20px;
    }

    .city-info h3 {
        font-size: 22px;
    }

    .city-highlights {
        padding: 15px;
    }

    .city-highlights h4 {
        font-size: 16px;
    }

    .contact-form,
    .info-item {
        padding: 20px;
    }

    .form-group label {
        font-size: 14px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 14px;
    }

    .info-item h3 {
        font-size: 16px;
    }

    .info-item p {
        font-size: 14px;
    }

    .testimonial-content {
        padding: 20px 15px;
    }

    .testimonial-content p {
        font-size: 14px;
    }

    .client-info h4 {
        font-size: 16px;
    }

    .client-info p {
        font-size: 12px;
    }

    .footer-logo h3 {
        font-size: 20px;
    }

    .footer-links h4,
    .footer-services h4,
    .footer-contact h4 {
        font-size: 16px;
    }

    .footer-links ul li,
    .footer-services ul li,
    .footer-contact ul li {
        font-size: 14px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
    }
}

/* Very Small Devices (320px - 480px) */
@media screen and (max-width: 480px) {
    .hero {
        height: 100vh;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 8px 20px;
        font-size: 13px;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-card .icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .city-image {
        height: 200px;
    }

    .destination-img {
        height: 200px;
    }

    .overlay h3 {
        font-size: 18px;
    }

    .overlay p {
        font-size: 12px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .section-header p {
        font-size: 13px;
    }
}

/* Hero Slider Responsive */
@media screen and (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .swiper-slide {
        background-position: center;
    }
}

/* Fix for hero section on very small screens */
@media screen and (max-width: 320px) {
    .hero {
        height: 90vh;
    }

    .hero-content h1 {
        font-size: 22px;
    }

    .hero-content p {
        font-size: 13px;
    }

    .btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    .swiper-slide {
        background-position: center;
    }

    .swiper-slide::before {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    }
}

/* Testimonials Responsive */
@media screen and (max-width: 576px) {
    .hero {
        height: 115vh;
    }

    .swiper-slide {
        height: 100%;
        width: 100%;
    }

    .testimonials {
        padding: 60px 0;
    }

    .testimonial-content::after {
        display: none;
    }
}

/* Fix for mobile menu */
@media screen and (max-width: 992px) {
    .menu-toggle.active i:before {
        content: "\f00d";
    }

    body.menu-open {
        overflow: hidden;
    }
}