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

/* =======================================
   TABLETS (max-width: 1024px)
   ======================================= */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero-stats {
        gap: var(--space-lg);
    }
    
    .steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .payment-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-wrapper,
    .credentials-wrapper,
    .motorhome-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .about-image,
    .credentials-image,
    .motorhome-image {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .lesson-types {
        grid-template-columns: 1fr;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .savings-display {
        grid-template-columns: 1fr;
    }
}

/* =======================================
   MOBILE (max-width: 768px)
   ======================================= */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    nav ul {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        min-height: auto;
        padding: 120px var(--space-md) var(--space-xl);
    }
    
    .hero-stats {
        flex-direction: column;
        align-items: center;
        gap: var(--space-md);
    }
    
    .hero-stat-value {
        font-size: 2rem;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-options {
        grid-template-columns: 1fr 1fr;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .page-header {
        padding: 120px 0 40px;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--space-lg);
    }
    
    .socials {
        justify-content: center;
    }
    
    .floating-cta {
        left: var(--space-md);
        right: var(--space-md);
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .offer-price {
        font-size: 3rem;
    }
    
    .headshot-performance {
        width: 150px;
        height: 150px;
    }
}

/* =======================================
   SMALL MOBILE (max-width: 480px)
   ======================================= */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .cta-block {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .floating-cta {
        bottom: var(--space-sm);
    }
    
    .floating-cta .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .pricing-card {
        padding: var(--space-md);
    }
    
    .price {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: var(--space-md);
    }
    
    .offer-card {
        padding: var(--space-lg);
    }
    
    .offer-price {
        font-size: 2.5rem;
    }
    
    .headshot-performance {
        width: 120px;
        height: 120px;
    }
    
    .cta-section h2 {
        font-size: 1.5rem;
    }
}

/* =======================================
   NAVIGATION ACTIVE STATE
   ======================================= */
nav ul.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 13, 13, 0.98);
    padding: var(--space-md);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

nav ul.active li {
    margin: var(--space-xs) 0;
}

nav ul.active a {
    display: block;
    padding: var(--space-xs) 0;
    font-size: 1rem;
}
