/* ==================== RESPONSIVE DESIGN ==================== */

/* ==================== TABLET & MOBILE ==================== */
@media (max-width: 768px) {
    /* Navbar Mobile */
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 8, 21, 0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    /* Hero */
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Section Titles */
    .section-title h2 {
        font-size: 2rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-info {
        flex-direction: column;
        gap: 2rem;
    }

    /* Service Detail */
    .detail-hero-content h1 {
        font-size: 2rem;
    }

    .detail-section h2 {
        font-size: 1.8rem;
    }

    /* Team Container */
    .team-container {
        gap: 3rem;
    }
}

/* ==================== FEATURES GRID RESPONSIVE ==================== */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(280px, 1fr));
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== SMALL MOBILE ==================== */
@media (max-width: 480px) {
    /* About Section */
    .about-section {
        padding: 60px 5%;
    }

    .member-photo {
        width: 160px;
        height: 160px;
    }

    .member-name {
        font-size: 1.1rem;
    }

    .member-role {
        font-size: 0.9rem;
    }

    /* Modal */
    .cta-modal {
        padding: 2rem 1.5rem;
    }

    .cta-modal-title {
        font-size: 1.5rem;
    }
}