/* mobile.css - Mobile-only overrides */

/* Tablets and below */
@media (max-width: 768px) {
    /* Navigation */
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav {
        background: rgba(0,0,0,0.9);
        padding: 1rem;
    }
    
    /* Hero section */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Service cards */
    .service-image-card {
        margin-bottom: 20px;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    /* Testimonials */
    .testimonial-card-modern {
        padding: 20px;
    }
    
    .client-avatar-modern {
        width: 50px;
        height: 50px;
    }
    
    /* Stats section */
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    /* Footer */
    .footer-col {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Phones only (below 576px) */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
}
