/* ===== RESPONSIVE DESIGN ===== */

/* Large Devices (Desktop) */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .container-fluid {
        padding: 0 20px;
    }
}

/* Medium Devices (Tablets) */
@media (max-width: 992px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .main-nav .nav-link {
        padding: 8px 15px !important;
    }
}

/* Small Devices (Mobiles) */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 40px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .logo-text h3 {
        font-size: 1.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .department-card {
        margin-bottom: 20px;
    }
    
    .emergency-float {
        bottom: 20px;
        right: 20px;
    }
    
    .emergency-btn {
        width: 50px;
        height: 50px;
    }
    
    .emergency-btn i {
        font-size: 20px;
    }
    
    .emergency-btn span {
        font-size: 9px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .appointment-nav-btn {
        margin-left: 0;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
}