/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-content {
        padding-right: 2rem;
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-content {
        padding-right: 1rem;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    html {
        font-size: 15px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 600px;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 3rem;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    section {
        padding: var(--spacing-lg) 0;
    }
    
    .service-card, .feature-card, .price-card, .team-card, .blog-card {
        margin-bottom: 2rem;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    html {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    section {
        padding: var(--spacing-md) 0;
    }
    
    .section-heading {
        margin-bottom: 2rem;
    }
    
    .service-card, .feature-card, .price-card, .team-card, .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-img {
        height: 180px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    html {
        font-size: 13px;
    }
    
    .hero-section {
        height: auto;
        min-height: 500px;
        padding-top: 80px;
        padding-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-desc {
        font-size: 1rem;
    }
    
    .hero-content {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    section {
        padding: var(--spacing-md) 0;
    }
    
    .section-heading {
        margin-bottom: 1.5rem;
    }
    
    .service-card, .feature-card, .price-card, .team-card, .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .blog-img {
        height: 160px;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    /* Adjust spacing for mobile */
    .mt-sm-4 {
        margin-top: 1.5rem !important;
    }
    
    .mb-sm-4 {
        margin-bottom: 1.5rem !important;
    }
    
    /* Mobile menu adjustments */
    .navbar-collapse {
        background-color: white;
        padding: 1rem;
        box-shadow: var(--shadow-md);
        border-radius: var(--radius-md);
    }
    
    .navbar-toggler {
        border: none;
        padding: 0.25rem 0.5rem;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }
    
    /* Mobile swiper adjustments */
    .swiper-button-next, .swiper-button-prev {
        width: 35px !important;
        height: 35px !important;
    }
    
    /* Contact form adjustments */
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-info {
        padding: 1.5rem;
        margin-top: 1.5rem;
    }
    
    /* Reduce animation for mobile */
    .feature-card:hover, .service-card:hover, .price-card:hover, 
    .team-card:hover, .blog-card:hover, .info-card:hover {
        transform: none;
    }
}

/* Styles for prefers-reduced-motion */
@media (prefers-reduced-motion) {
    .swiper-container {
        --swiper-autoplay-delay: 0 !important;
    }
    
    .swiper-slide {
        transition: none !important;
    }
    
    .service-card:hover, .price-card:hover, .team-card:hover, 
    .feature-card:hover, .blog-card:hover, .info-card:hover {
        transform: none !important;
    }
    
    .service-card::before {
        transition: none !important;
    }
    
    .feature-card:hover {
        transform: none !important;
    }
}

/* Print styles */
@media print {
    header, footer {
        display: none;
    }
    
    section {
        padding: 1rem 0;
        page-break-inside: avoid;
    }
    
    .btn, .hero-overlay, .shape-divider, .bg-dots {
        display: none;
    }
} 