/* ===== RESPONSIVE STYLES ===== */

/* Extra Large Devices (Large Desktops) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Large Devices (Desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-content h1 {
        font-size: 42px;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .service-image {
        height: 180px;
    }
}

/* Medium Devices (Tablets) */
@media (min-width: 768px) and (max-width: 991px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .service-image {
        height: 160px;
    }
    
    .about-content {
        margin-top: 30px;
    }
    
    .feature-item {
        padding: 20px;
    }
    
    .review-item {
        padding: 20px;
    }
    
    .team-member {
        margin-bottom: 20px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-links, .footer-contact {
        margin-top: 30px;
    }
}

/* Small Devices (Landscape Phones) */
@media (min-width: 576px) and (max-width: 767px) {
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .service-item {
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .feature-item {
        margin-bottom: 20px;
    }
    
    .price-item {
        margin-bottom: 20px;
    }
    
    .team-member {
        margin-bottom: 20px;
    }
    
    .review-slider {
        padding: 20px 0;
    }
    
    .review-item {
        padding: 20px;
        margin: 10px;
    }
    
    .contact-form {
        padding: 30px;
        margin-top: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-about, .footer-links, .footer-contact {
        margin-bottom: 20px;
    }
    
    .page-header {
        height: 250px;
    }
    
    .page-title {
        font-size: 32px;
    }
    
    .additional-section {
        padding: 60px 0;
    }
}

/* Extra Small Devices (Portrait Phones) */
@media (max-width: 575px) {
    .header {
        padding: 15px 0;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--light-color-1);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 30px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu a {
        margin: 0 0 20px 0;
        width: 100%;
        display: block;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .feature-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .service-item {
        margin-bottom: 20px;
    }
    
    .service-image {
        height: 180px;
    }
    
    .price-item {
        margin-bottom: 20px;
        padding: 30px 20px;
    }
    
    .team-member {
        margin-bottom: 20px;
    }
    
    .review-slider {
        padding: 20px 0;
    }
    
    .review-item {
        padding: 20px;
        margin: 10px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .info-box {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .contact-form {
        padding: 20px;
        margin-top: 30px;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-about, .footer-links, .footer-contact {
        margin-bottom: 20px;
        text-align: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .page-header {
        height: 200px;
    }
    
    .page-title {
        font-size: 28px;
    }
    
    .additional-section {
        padding: 50px 0;
    }
    
    #space {
        height: 300px;
    }
}

/* For accessibility - 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;
    }
    
    .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 6px;
    }
} 