/* Responsive Styles */

/* Tablets and Small Laptops */
@media (max-width: 992px) {
    /* General */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .about-image {
        order: 2;
    }
    
    .about-text {
        order: 1;
    }
    
    /* Download App Section */
    .download-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .download-image {
        display: none;
    }
    
    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-logo {
        margin-bottom: var(--spacing-lg);
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    /* General */
    .section {
        padding: var(--spacing-xl) 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    /* Hero Section */
    #hero {
        min-height: 500px;
    }
    
    .hero-content {
        padding-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: var(--spacing-lg);
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    /* Categories and Features */
    .categories-grid,
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: var(--spacing-lg);
    }
    
    .author-image {
        width: 50px;
        height: 50px;
    }
    
    /* Download App Section */
    .download-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .footer-link-group {
        margin-bottom: var(--spacing-md);
    }
}

/* Small Mobile Devices */
@media (max-width: 576px) {
    /* General */
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    /* About Section */
    .about-highlights {
        grid-template-columns: 1fr;
    }
    
    /* Categories and Features */
    .category-card,
    .feature-card {
        padding: var(--spacing-md);
    }
    
    .category-icon,
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    /* Contact Form */
    .contact-form {
        padding: var(--spacing-lg);
    }
    
    /* Back to Top Button */
    .back-to-top {
        width: 40px;
        height: 40px;
        right: 20px;
        bottom: 20px;
    }
}