/* Responsive CSS */

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 50px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .features-icon {
        flex: 0 0 70px;
        height: 70px;
    }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991px) {
    section {
        padding: 80px 0;
    }
    
    .hero-section {
        height: auto;
        padding: 150px 0 100px;
    }
    
    .hero-content h1 {
        font-size: 45px;
    }
    
    .service-item,
    .price-plan-item,
    .review-item,
    .contact-form {
        padding: 25px 20px;
    }
    
    .team-member h4 {
        font-size: 20px;
    }
    
    .price-plan-price {
        font-size: 50px;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Small Devices (Mobile) */
@media (min-width: 576px) and (max-width: 767px) {
    section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-content p {
        font-size: 18px;
    }
    
    .about-feature,
    .service-item,
    .features-item,
    .price-plan-item,
    .team-member,
    .review-item,
    .contact-form,
    .blog-item,
    .core-info-item {
        margin-bottom: 30px;
    }
    
    .features-icon {
        flex: 0 0 60px;
        height: 60px;
    }
    
    .features-icon i {
        font-size: 25px;
    }
    
    .navbar-collapse {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    footer {
        padding: 60px 0 20px;
    }
    
    .reviews-slider {
        padding-bottom: 40px;
    }
}

/* Extra Small Devices (Small Mobile) */
@media (max-width: 575px) {
    section {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-content h1 {
        font-size: 30px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 13px;
    }
    
    .about-feature,
    .service-item,
    .features-item,
    .price-plan-item,
    .team-member,
    .review-item,
    .contact-form,
    .blog-item,
    .core-info-item {
        margin-bottom: 25px;
        padding: 20px 15px;
    }
    
    .price-plan-price {
        font-size: 45px;
    }
    
    .features-icon {
        flex: 0 0 50px;
        height: 50px;
    }
    
    .features-icon i {
        font-size: 22px;
    }
    
    .review-author-avatar {
        width: 50px;
        height: 50px;
    }
    
    footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo {
        margin-bottom: 30px;
    }
    
    footer h4 {
        margin-bottom: 20px;
        font-size: 20px;
    }
    
    .reviews-slider {
        padding-bottom: 30px;
    }
    
    .accordion-button {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .accordion-body {
        padding: 0 20px 15px;
        font-size: 14px;
    }
}

/* Custom utility classes for responsive spacing */
.mt-xs-3 {
    margin-top: 1rem;
}

.mt-xs-4 {
    margin-top: 1.5rem;
}

.mt-xs-5 {
    margin-top: 3rem;
}

@media (max-width: 767px) {
    .text-center-sm {
        text-align: center;
    }
    
    .mb-sm-4 {
        margin-bottom: 1.5rem;
    }
    
    .mb-sm-5 {
        margin-bottom: 3rem;
    }
}

/* Handle prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .shape-blob {
        animation: none !important;
    }
    
    .service-item:hover,
    .about-feature:hover,
    .price-plan-item:hover,
    .blog-item:hover,
    .core-info-item:hover {
        transform: none !important;
    }
    
    .swiper-container {
        --swiper-autoplay-delay: 0 !important;
    }
} 