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

/* Tablet */
@media (max-width: 1024px) {
    .section-title {
        font-size: var(--text-3xl);
    }
    
    .hero-title {
        font-size: var(--text-4xl);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section-title {
        font-size: var(--text-2xl);
    }
    
    .hero-title {
        font-size: var(--text-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta a {
        width: 100%;
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .about-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: var(--text-2xl);
    }
    
    .btn-primary,
    .btn-outline,
    .btn-ghost {
        padding: 0.75rem 1rem;
        font-size: var(--text-sm);
    }
}