/* Responsive Styles */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .app-hero-content {
        gap: 30px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .hero {
        padding: 80px 0;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .app-hero-content {
        grid-template-columns: 1fr;
    }
    
    .app-hero-text {
        order: 1;
    }
    
    .app-hero-image {
        order: 0;
        text-align: center;
    }
    
    .app-hero-image img {
        max-width: 80%;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .testimonial, .screenshot {
        width: calc(50% - 15px);
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .main-menu.active {
        transform: translateY(0);
    }
    
    .main-menu li {
        margin: 0 0 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .dropdown.active .dropdown-menu {
        max-height: 200px;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .featured-apps, .why-choose-us, .app-features-section, .how-it-works, 
    .app-screenshots, .pricing, .testimonials, .download-section, .faq-section {
        padding: 60px 0;
    }
    
    .newsletter {
        padding: 60px 0;
    }
    
    .newsletter h2 {
        font-size: 1.8rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: 5px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 15px;
        justify-content: center;
    }
    
    .footer-links li:first-child {
        margin-left: 0;
    }
    
    .app-badges {
        flex-direction: column;
    }
    
    .testimonial, .screenshot {
        width: 100%;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 0;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .app-actions {
        flex-direction: column;
        gap: 15px;
    }
    
    .app-actions .btn {
        width: 100%;
    }
    
    .app-cta {
        flex-direction: column;
    }
    
    .app-cta .btn {
        width: 100%;
    }
    
    .download-options {
        gap: 10px;
    }
    
    .download-option {
        width: 100px;
    }
    
    .app-store-badges {
        flex-direction: column;
        align-items: center;
    }
} 