/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    section {
        padding: 4rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-item,
    .price-item,
    .coreinfo-item,
    .team-card,
    .blog-card {
        margin-bottom: 2rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    section {
        padding: 3rem 0;
    }
    
    .hero {
        min-height: auto;
        padding: 7rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-desc {
        font-size: 0.95rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-item,
    .price-item,
    .coreinfo-item,
    .team-card,
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .contact-form-container {
        padding: 2rem;
        margin-bottom: 2rem;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    section {
        padding: 2.5rem 0;
    }
    
    .hero {
        min-height: auto;
        padding: 6rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-desc {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item,
    .price-item,
    .about-feature,
    .feature-item,
    .coreinfo-item,
    .team-card,
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form-container {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    footer {
        padding: 3rem 0 1rem;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Navbar specific responsive */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: var(--white);
        padding: 1rem;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        border-radius: 0 0 10px 10px;
    }
    
    .nav-link {
        margin: 0.5rem 0;
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
}

/* For animations/transitions on mobile */
@media (max-width: 767.98px) {
    .swiper-container {
        overflow: visible;
    }
    
    .swiper-pagination {
        position: relative;
        margin-top: 15px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }
    
    .service-item:hover,
    .price-item:hover,
    .about-feature:hover,
    .coreinfo-item:hover,
    .team-card:hover,
    .blog-card:hover {
        transform: none;
    }
} 