/* Responsive Styles */

/* Extra large devices (large desktops) */
@media (min-width: 1400px) {
    .container {
        max-width: 1320px;
    }
    
    .hero-title-1 {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
}

/* Large devices (desktops) */
@media (max-width: 1199.98px) {
    .hero-title-1 {
        font-size: 3rem;
    }
    
    .service-image {
        height: 180px;
    }
    
    .gallery-item img {
        height: 250px;
    }
}

/* Medium devices (tablets) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow-md);
    }
    
    .hero-section {
        padding-top: 5rem;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-desc-1 {
        margin-left: auto;
        margin-right: auto;
    }
    
    .about-image {
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .contact-info {
        margin-top: 2rem;
    }
    
    .footer-widget {
        margin-bottom: 2rem;
    }
}

/* Small devices (landscape phones) */
@media (max-width: 767.98px) {
    html {
        font-size: 14px;
    }
    
    .section-padding {
        padding: 3rem 0;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .review-card::before {
        font-size: 1.5rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
    }
    
    .gallery-item img {
        height: 200px;
    }
}

/* Extra small devices (portrait phones) */
@media (max-width: 575.98px) {
    .section-padding {
        padding: 2rem 0;
    }
    
    .hero-section {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-title-1 {
        font-size: 2rem;
    }
    
    .hero-subtitle-1 {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-feature-card {
        padding: 1rem;
    }
    
    .service-image {
        height: 160px;
    }
    
    .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .accordion-body {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
    
    .swiper-container {
        --swiper-pagination-color: var(--primary-color-1);
    }
    
    .swiper-container .swiper-wrapper {
        transition: none !important;
    }
    
    .swiper-slide {
        transition: none !important;
    }
} 