/* Responsive Styles */

/* Large Desktop */
@media screen and (max-width: 1440px) {
    .container {
        max-width: 1140px;
    }
}

/* Desktop */
@media screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .section {
        padding: 70px 0;
    }
}

/* Tablet */
@media screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-item {
        width: 100%;
        max-width: 400px;
        margin-bottom: 30px;
    }
    
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile Landscape */
@media screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .header-container {
        padding: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    .hero {
        text-align: center;
        padding-top: 80px;
    }
    
    .hero-bg {
        width: 100%;
        opacity: 0.2;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-desc {
        margin: 0 auto 30px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .coreinfo-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid,
    #blog_grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Mobile Portrait */
@media screen and (max-width: 576px) {
    .container {
        width: 100%;
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 25px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
    
    .section-title h2:after {
        width: 60px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Prefers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
    }
    
    .service-item:hover,
    .about-feature:hover,
    .pricing-item:hover,
    .team-member:hover,
    .coreinfo-item:hover,
    .blog-item:hover,
    .add-page-element:hover,
    .gallery-item:hover .gallery-img {
        transform: none;
    }
} 