/* Responsive Styles for 24Motors */

/* Large Desktops (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .stat-item h2 {
        font-size: 2.5rem;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
}

/* Mobile Devices (576px and below) */
@media (max-width: 575.98px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section {
        min-height: 60vh;
        padding: 80px 0 60px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .display-5 {
        font-size: 1.75rem;
    }
    
    .stat-item h2 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .footer-logo {
        height: 50px;
    }
    
    .brand-name {
        font-size: 1rem;
    }
    
    .brand-tagline {
        font-size: 0.65rem;
    }
    
    /* Legacy styles for backward compatibility */
    .logo-circle {
        width: 40px;
        height: 40px;
    }
    
    .logo-text {
        font-size: 0.6rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .service-card .card-body {
        padding: 1.5rem !important;
    }
    
    .floating-call-btn {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-call-btn .btn {
        width: 50px;
        height: 50px;
    }
}

/* Extra Small Devices (below 400px) */
@media (max-width: 399.98px) {
    .hero-section h1 {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .stat-item h2 {
        font-size: 1.75rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .floating-call-btn,
    .btn,
    footer {
        display: none;
    }
    
    body {
        padding-top: 0;
    }
}

