/* Responsive Styles */

@media (max-width: 1200px) {
    .hero-image {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-image-container {
        order: -1;
        margin-bottom: 2rem;
    }

    .hero-image {
        width: 280px;
        height: 280px;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background-color: var(--dark);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 6rem 2rem;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .problem-cards, 
    .insights-grid, 
    .impact-grid,
    .approach-pillars {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 6rem 0;
    }

    .problem-cards, 
    .insights-grid, 
    .impact-grid,
    .approach-pillars, 
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .problem-card, 
    .insight-card, 
    .impact-card, 
    .pillar-card {
        padding: 2rem;
    }

    .hero-image {
        width: 250px;
        height: 250px;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .cta-form {
        padding: 2rem;
    }
    
    .footer-column {
        align-items: center;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-contact {
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .footer-links a {
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: clamp(2rem, 8vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    .hero-subtitle {
        justify-content: flex-start;
    }

    .hero-subtitle::before {
        width: 30px;
    }

    .problem-card, 
    .insight-card, 
    .impact-card, 
    .pillar-card {
        padding: 1.5rem;
    }

    .insight-number {
        font-size: 2.5rem;
    }

    .cta-form {
        padding: 1.5rem;
    }
    
    .section-tag {
        font-size: 0.875rem;
    }
    
    .hero-image {
        width: 220px;
        height: 220px;
    }
    
    .testimonial-content {
        font-size: 1rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
}