/* 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: 1199px) {
    .hero-title-1 {
        font-size: 3.5rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .about-feature-item, 
    .service-item, 
    .priceplan-item, 
    .team-member, 
    .coreinfo-item, 
    .blog-item {
        margin-bottom: 20px;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
    .section-padding {
        padding: 80px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .hero-title-1 {
        font-size: 3rem;
    }
    
    .hero-subtitle-1 {
        font-size: 1.2rem;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .about-image, 
    .contact-info {
        margin-bottom: 30px;
    }
    
    .service-image,
    .team-image, 
    .blog-image {
        height: 180px;
    }
    
    .priceplan-name {
        font-size: 1.3rem;
    }
    
    .priceplan-price {
        font-size: 2rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .hero-title-1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-1 {
        font-size: 1.1rem;
    }
    
    .hero-image,
    .about-image, 
    .contact-info {
        margin-bottom: 30px;
    }
    
    .service-item, 
    .feature-item, 
    .priceplan-item, 
    .team-member, 
    .coreinfo-item, 
    .blog-item {
        margin-bottom: 20px;
    }
    
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    /* Hide animated shapes on smaller screens */
    .shape {
        display: none;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 25px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .hero-title-1 {
        font-size: 2rem;
    }
    
    .hero-subtitle-1 {
        font-size: 1rem;
    }
    
    .hero-section {
        text-align: center;
    }
    
    .hero-image,
    .about-image, 
    .contact-info {
        margin-bottom: 30px;
    }
    
    .service-item, 
    .feature-item, 
    .priceplan-item, 
    .team-member, 
    .coreinfo-item, 
    .blog-item {
        margin-bottom: 20px;
    }
    
    .priceplan-name {
        font-size: 1.2rem;
    }
    
    .priceplan-price {
        font-size: 1.8rem;
    }
    
    .review-item {
        padding: 20px;
    }
    
    .footer {
        padding: 40px 0 0;
        text-align: center;
    }
    
    .footer-title:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-widget {
        margin-bottom: 30px;
    }
    
    .footer-contact {
        justify-content: center;
    }
    
    /* Hide animated shapes on smaller screens */
    .shape {
        display: none;
    }

    /* Reduce animation effects on mobile for performance and UX */
    .service-item:hover,
    .feature-item:hover,
    .priceplan-item:hover,
    .team-member:hover,
    .coreinfo-item:hover,
    .blog-item:hover {
        transform: none;
    }
    
    @media (prefers-reduced-motion: reduce) {
        * {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }
} 