/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .team-member-img {
        width: 180px;
        height: 180px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .section {
        padding: 70px 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .team-member-img {
        width: 160px;
        height: 160px;
    }
    
    .shape {
        transform: scale(0.7);
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .team-member-img {
        width: 150px;
        height: 150px;
    }
    
    .shape {
        transform: scale(0.5);
        opacity: 0.05;
    }
    
    .contact-form {
        padding: 30px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-feature,
    .services-item,
    .priceplan-item,
    .reviews-item,
    .blog-item {
        padding: 20px;
    }
    
    .team-member-img {
        width: 140px;
        height: 140px;
    }
    
    .shape {
        display: none;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer [class*="col-"] {
        margin-bottom: 30px;
    }
    
    /* Reduce animation for mobile */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
        }
    }
}

/* Disable autoplay and reduce animations on mobile */
@media (max-width: 767.98px) {
    .swiper-autoplay {
        display: none;
    }
    
    .about-feature:hover,
    .services-item:hover,
    .features-item:hover,
    .priceplan-item:hover,
    .coreinfo-item:hover,
    .blog-item:hover {
        transform: none;
    }
} 