/* ==========================================================================
   Responsive Design - Awake Agency Style
   ========================================================================== */

/* Tablet (1024px and below) */
@media (max-width: 1024px) {
    .container-awake {
        padding: 0 2rem;
    }
    
    .hero-title-awake {
        font-size: 4rem;
    }
    
    .section-title-awake {
        font-size: 3rem;
    }
    
    .services-grid-awake {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-grid-awake {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .process-grid-awake {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .footer-top-awake {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-links-awake {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
    .container-awake {
        padding: 0 1.5rem;
    }
    
    /* Navigation */
    .nav-menu-awake {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu-awake.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        background: none;
        border: none;
        cursor: pointer;
    }
    
    .mobile-menu-toggle span {
        width: 24px;
        height: 2px;
        background: var(--primary);
        transition: 0.3s;
    }
    
    .nav-awake .btn-primary-awake {
        display: none;
    }
    
    /* Hero */
    .hero-awake {
        min-height: auto;
        padding: 8rem 0 4rem;
    }
    
    .hero-title-awake {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-awake {
        font-size: 1.1rem;
    }
    
    .hero-cta-awake {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta-awake .btn-awake {
        width: 100%;
        justify-content: center;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Sections */
    .services-overview-awake,
    .about-awake,
    .process-awake,
    .cta-awake {
        padding: 4rem 0;
    }
    
    .section-title-awake {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .services-grid-awake {
        gap: 2rem;
    }
    
    .service-item-awake {
        padding: 2rem 0;
    }
    
    .service-item-awake h3 {
        font-size: 1.5rem;
    }
    
    .process-grid-awake {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-title-awake {
        font-size: 2.5rem;
    }
    
    .cta-subtitle-awake {
        font-size: 1.1rem;
    }
    
    .footer-links-awake {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
    .container-awake {
        padding: 0 1rem;
    }
    
    .hero-title-awake {
        font-size: 2rem;
    }
    
    .section-title-awake {
        font-size: 1.75rem;
    }
    
    .cta-title-awake {
        font-size: 2rem;
    }
    
    .btn-large-awake {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
}

/* Fix for old pages that don't use Awake classes */
@media (max-width: 768px) {
    /* Original classes for backward compatibility */
    .container {
        padding: 0 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav .btn-primary {
        display: none;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .mission-vision-grid,
    .services-grid,
    .two-column,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-card,
    .vision-card {
        padding: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
}