/* ==========================================
   RESPONSIVE STYLES
   ========================================== */

/* Laptop / Large Screens (max-width: 1440px) */
@media screen and (max-width: 1440px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

/* Tablet (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    :root {
        --section-padding: 60px;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Hero Section */
    .hero {
        min-height: 600px;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-left {
        padding: 0 3rem 0 5%;
    }

    /* About Section */
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    /* Visionary Section */
    .visionary-layout, .visionary-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .visionary-photo {
        flex: auto;
        height: 400px;
    }

    /* Vision & Concept */
    .vision-concept {
        flex-direction: column;
        height: auto;
    }
    
    .vc-card {
        padding: 6rem 2rem;
        min-height: 400px;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Impact Section */
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 0;
    }

    .impact-item:nth-child(2) {
        border-right: none;
    }

    .impact-item:nth-child(3),
    .impact-item:nth-child(4) {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 3rem;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        gap: 3rem;
    }

    .contact-col {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Mobile (max-width: 768px) */
@media screen and (max-width: 768px) {
    /* Header & Nav */
    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    /* Visionary Section */
    .visionary-title {
        font-size: 2.5rem;
    }
    
    .visionary-quote-box {
        padding: 2rem 1.5rem;
        flex: auto;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav-list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .nav-list a {
        font-size: 1.5rem;
    }

    .header-cta {
        display: none;
    }

    /* Hero Section */
    .hero {
        flex-direction: column-reverse;
        height: auto;
        padding-top: 70px;
    }

    .hero-left {
        padding: 4rem 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title::before {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-right {
        min-height: 40vh;
        width: 100%;
    }

    /* About Section */
    .feature-grid {
        grid-template-columns: 1fr;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile (max-width: 480px) */
@media screen and (max-width: 480px) {
    :root {
        --section-padding: 50px;
    }

    .section-title {
        font-size: 2rem;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

    /* Impact Section */
    .impact-grid {
        grid-template-columns: 1fr;
    }

    .impact-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 2rem;
    }

    .impact-item:last-child {
        border-bottom: none;
    }

    .counter {
        font-size: 2.5rem;
    }

    /* Team Section */
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Gallery Section */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .contact-card {
        width: 100%;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}
