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

/* Fix for sticky navbar on mobile */
.navbar {
    position: sticky !important;
    top: 0 !important;
    background: white !important;
    z-index: 1000 !important;
}

/* Ensure mobile menu doesn't break sticky */
@media (max-width: 768px) {
    .navbar {
        position: sticky !important;
        top: 0 !important;
    }
}

/* Tablet & Small Laptop */
@media (max-width: 968px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .contact-info {
        justify-content: center;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        text-align: center;
        gap: 15px;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .stats {
        justify-content: center;
    }

    .services-grid,
    .doctors-grid,
    .testimonial-slider {
        grid-template-columns: 1fr;
    }

    .feature {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-contact li i {
        margin-right: 5px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .service-card,
    .doctor-card {
        padding: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .logo-img {
        width: 140px;
        height: auto;
        max-height: 45px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
}