/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .container {
        max-width: 960px;
    }
    
    .hero-content h1 {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .container {
        max-width: 720px;
    }
    
    section {
        padding: var(--section-padding-mobile);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-content {
        text-align: center;
        margin: 0 auto;
    }
    
    .about-img {
        margin-bottom: 30px;
    }
    
    .contact-info {
        margin-top: 40px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .container {
        max-width: 540px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .navbar-toggler {
        background-color: var(--white);
    }
    
    .navbar-nav {
        background-color: rgba(255, 255, 255, 0.95);
        padding: 20px;
        border-radius: 5px;
    }
    
    .nav-link {
        color: var(--text-dark) !important;
    }
    
    .team-member {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .blog-item {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-item {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .coreinfo-item {
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-widget {
        text-align: center;
    }
    
    .footer-widget h4:after {
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-info {
        padding: 30px 20px;
    }
    
    .pricing-item {
        padding: 30px 20px;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating {
        animation: none !important;
    }
    
    .hero-slider .swiper-wrapper {
        transition: none !important;
    }
} 