/* ====================================
   RESPONSIVE DESIGN & MEDIA QUERIES
   ==================================== */

@media (max-width: 768px) {
    .nav-container {
        justify-content: center;
    }
    
    .hero-container {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .hero-text-section {
        text-align: center;
    }
    
    .hero-bottom-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-form-wrapper {
        justify-self: center;
    }
    
    .hero-dog-wrapper {
        order: -1;
    }

    .promo-label {
        font-size: 0.6rem;
    }
    
    .promo-title {
        font-size: 1.4rem;
        line-height: 1.2;
    }

    .promo-service {
        font-size: 1rem;
    }
    
    .promo-banner {
        padding: 2rem 1rem;
    }
    
    .hero-signup-form {
        padding: 1.5rem;
    }
    
    .hero-signup-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .dog-illustration {
        width: 120px;
        height: 120px;
    }
    
    .dog-illustration i {
        font-size: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}
