/* Responsive Styles */

/* Large Devices (Desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

/* Medium Devices (Tablets, less than 992px) */
@media (max-width: 991.98px) {
    .hero-section {
        height: auto;
        padding: 150px 0 100px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .service-item,
    .blog-item,
    .team-member {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Small Devices (Landscape Phones, less than 768px) */
@media (max-width: 767.98px) {
    .header-container {
        padding: 15px 0;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--neutral-color);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }
    
    .hero-section {
        padding: 120px 0 80px;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section,
    .services-section,
    .testimonials-section,
    .blog-section,
    .faq-section,
    .gallery-section,
    .team-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-col {
        margin-bottom: 30px;
    }
    
    .footer-contact p {
        justify-content: center;
    }
}

/* Extra Small Devices (Portrait Phones, less than 576px) */
@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .about-features,
    .services-grid,
    .team-grid,
    .blog-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .accordion-header {
        padding: 12px 15px;
    }
    
    .accordion-text {
        padding: 15px;
    }
    
    .form-control {
        padding: 10px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }
    
    .service-item:hover,
    .feature-item:hover,
    .blog-item:hover .blog-image img,
    .gallery-item:hover img,
    .service-item:hover .service-image img {
        transform: none !important;
    }
} 