
/* ================================================================
   16. Media Queries
================================================================ */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: var(--space-xl);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
        margin-bottom: var(--space-xl);
    }
}

@media (max-width: 850px) {
    .section {
        padding: var(--space-xl) 0;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .nav-list {
        display: flex;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        align-items: center;
        padding: var(--space-xl) 0;
        box-shadow: var(--shadow-md);
        transform: translateY(-150%);
        transition: transform var(--transition-normal);
    }
    
    .nav-list.active {
        transform: translateY(0);
    }
    
    .hamburger {
        display: flex;
    }
    
    .team-card {
        height: auto;
    }
    
    .team-card-inner {
        height: auto;
        transform-style: flat;
    }
    
    .team-card-front,
    .team-card-back {
        position: static;
        transform: none;
        height: auto;
    }
    
    .team-card:hover .team-card-inner {
        transform: none;
    }
    
    .team-card-back {
        display: none;
    }
}

@media (max-width: 576px) {
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}
