/*
Theme Name: Aprasu Ayurvedic Hospital
Theme URI: https://aprasuhospital.com
Author: Aprasu Hospital
Author URI: https://aprasuhospital.com
Description: Professional WordPress theme for Aprasu Ayurvedic Hospital - India's Pioneer in Ayurvedic Excellence. Features include Panchakarma, Kshar Sutra & AVN treatments, ECHS/CGHS/GIPSA empanelled. Fully compatible with Elementor Page Builder.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: aprasu-hospital
Tags: medical, ayurvedic, hospital, healthcare, responsive, mobile-friendly, elementor-ready

Color Palette: 
- Primary: #1B5E20 (Deep Green)
- Accent: #FFD700 (Gold)
- White: #FFFFFF
*/

/* ===================================
   APRASU AYURVEDIC HOSPITAL - STYLESHEET
   =================================== */

/* ===================================
   RESET & BASE STYLES
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #1B5E20;
    --accent-gold: #FFD700;
    --white: #FFFFFF;
    --light-green: #2E7D32;
    --dark-green: #0D3D10;
    --light-gray: #F5F5F5;
    --text-dark: #333333;
    --text-light: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.2);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    text-align: center;
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--accent-gold);
    margin: 0 auto 20px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* ===================================
   1. TOP BAR
   =================================== */
.top-bar {
    background: var(--primary-green);
    color: var(--white);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px var(--shadow);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-info a {
    color: var(--white);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info a:hover {
    color: var(--accent-gold);
}

.btn-appointment {
    background: #D32F2F;
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-appointment:hover {
    background: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ===================================
   2. HEADER/NAVIGATION
   =================================== */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow);
    position: sticky;
    top: 48px;
    z-index: 999;
    transition: all 0.3s ease;
}

.header.scrolled {
    top: 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 180px;
    height: 60px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
    display: none;
}

.nav-menu {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-green);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===================================
   3. HERO BANNER
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--primary-green);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(27, 94, 32, 0.85) 0%, rgba(13, 61, 16, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--accent-gold);
    font-weight: 400;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.btn-cta {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--primary-green);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease 0.4s backwards;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-cta:hover {
    background: var(--white);
    color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   4. TRUST BADGES BAR
   =================================== */
.trust-badges {
    background: var(--light-gray);
    padding: 60px 0;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    text-align: center;
}

.badge-item {
    background: var(--white);
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px var(--shadow-hover);
}

.badge-item i {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.badge-item h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.badge-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.counter {
    color: var(--primary-green);
    font-weight: 700;
}

/* ===================================
   5. ABOUT SECTION
   =================================== */
.about {
    padding: 80px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow);
}

.about-content {
    padding: 20px 0;
}

.about-text {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--accent-gold);
    font-size: 1.3rem;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

/* ===================================
   6. SERVICES SECTION
   =================================== */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--accent-gold);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px var(--shadow-hover);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    color: var(--primary-green);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.btn-read-more {
    color: var(--primary-green);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    color: var(--accent-gold);
    gap: 12px;
}

/* ===================================
   7. WHY CHOOSE US
   =================================== */
.why-choose {
    padding: 80px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.why-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 100px;
    height: 100px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.why-item:hover .why-icon {
    background: var(--primary-green);
}

.why-icon i {
    font-size: 3rem;
    color: var(--primary-green);
    transition: all 0.3s ease;
}

.why-item:hover .why-icon i {
    color: var(--accent-gold);
}

.why-item h3 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.why-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* ===================================
   8. TESTIMONIALS
   =================================== */
.testimonials {
    padding: 80px 0;
    background: var(--light-gray);
}

.testimonial-slider {
    margin-top: 50px;
    padding: 20px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px var(--shadow);
    margin: 10px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-gold);
}

.testimonial-info h4 {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stars {
    color: var(--accent-gold);
    font-size: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.05rem;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--primary-green);
}

.swiper-pagination-bullet-active {
    background: var(--primary-green);
}

/* ===================================
   9. GALLERY SECTION
   =================================== */
.gallery {
    padding: 80px 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    aspect-ratio: 4/3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(27, 94, 32, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 3rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 50px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: 1.2rem;
    text-align: center;
}

/* ===================================
   10. APPOINTMENT FORM
   =================================== */
.appointment {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 100%);
}

.appointment .section-title,
.appointment .section-subtitle {
    color: var(--white);
}

.appointment .title-underline {
    background: var(--accent-gold);
}

.appointment-form {
    max-width: 900px;
    margin: 50px auto 0;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--primary-green);
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--accent-gold);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 50px;
}

.btn-submit {
    background: var(--primary-green);
    color: var(--white);
    padding: 15px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 20px auto 0;
}

.btn-submit:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* ===================================
   11. GOOGLE MAPS
   =================================== */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-container {
    position: relative;
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.map-container iframe {
    width: 100%;
    display: block;
}

.map-info {
    background: var(--white);
    padding: 20px;
    text-align: center;
}

.map-info h3 {
    color: var(--primary-green);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.map-info h3 i {
    color: var(--accent-gold);
    margin-right: 10px;
}

.map-info p {
    color: var(--text-light);
}

/* ===================================
   12. FOOTER
   =================================== */
.footer {
    background: var(--dark-green);
    color: var(--white);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 180px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.footer-logo .logo-text {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-gold);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: var(--accent-gold);
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: var(--white);
    font-size: 2rem;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.7);
    }
}

/* ===================================
   SCROLL TO TOP BUTTON
   =================================== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px var(--shadow);
    z-index: 998;
    transition: all 0.3s ease;
}

.scroll-to-top.active {
    display: flex;
}

.scroll-to-top:hover {
    background: var(--accent-gold);
    color: var(--primary-green);
    transform: translateY(-3px);
}

.scroll-to-top i {
    font-size: 1.3rem;
}

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

/* Tablet */
@media (max-width: 992px) {
    .section-title {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

/* ===================================
   TABLET RESPONSIVE (768px - 991px)
   =================================== */
@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   MOBILE RESPONSIVE (max-width: 768px)
   =================================== */
@media (max-width: 768px) {
    /* TOP BAR - Hide email, show only phone + button */
    .top-bar-content {
        justify-content: space-between;
    }
    
    .contact-info a:first-child {
        font-size: 0.9rem;
    }
    
    .contact-info a:last-child {
        display: none; /* Hide email on mobile */
    }
    
    .btn-appointment {
        padding: 8px 15px;
        font-size: 0.85rem;
    }
    
    /* NAVIGATION - Hamburger menu */
    .header {
        top: 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 110px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 30px 0;
        gap: 0;
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        padding: 15px 20px;
        display: block;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--light-gray);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* HERO SECTION */
    .hero {
        height: auto;
        min-height: 80vh;
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 28px;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 16px;
        line-height: 1.5;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* GENERAL SECTIONS */
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* TRUST BADGES - 2 columns */
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .badge-item {
        padding: 20px 10px;
    }
    
    .badge-item i {
        font-size: 2rem;
    }
    
    .badge-item h3 {
        font-size: 0.9rem;
    }
    
    .badge-number {
        font-size: 1.8rem;
    }
    
    /* ABOUT SECTION - Stack doctor image above text */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
        max-width: 100%;
    }
    
    .about-image img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-content {
        padding: 0;
    }
    
    /* SERVICES GRID - 1 column */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-card {
        padding: 30px 25px;
    }
    
    /* WHY CHOOSE US - 1 column */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-item {
        padding: 30px 25px;
    }
    
    /* TESTIMONIALS - Full width single card */
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        display: none; /* Hide navigation arrows on mobile */
    }
    
    .testimonial-avatar {
        width: 60px;
        height: 60px;
    }
    
    /* GALLERY - 1 column */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        height: 200px;
        aspect-ratio: auto;
    }
    
    /* APPOINTMENT FORM - Full width fields */
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .appointment-form {
        padding: 30px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
    }
    
    .btn-submit {
        width: 100%;
        padding: 15px;
    }
    
    /* FOOTER - Stack all columns */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-desc {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links,
    .footer-contact {
        text-align: center;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    /* SERVICE PAGES - Stack content and sidebar */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sidebar-box {
        position: relative;
        top: 0;
        order: 2;
    }
    
    .content-main {
        order: 1;
    }
    
    /* FLOATING BUTTONS */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 15px;
    }
    
    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    .scroll-to-top {
        bottom: 85px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top i {
        font-size: 1.2rem;
    }
    
    /* LIGHTBOX */
    .lightbox-close {
        top: 15px;
        right: 20px;
        font-size: 2rem;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        bottom: 15px;
    }
}

/* ===================================
   SMALL MOBILE (max-width: 480px)
   =================================== */
@media (max-width: 480px) {
    /* HERO */
    .hero-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    /* SECTIONS */
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* BUTTONS */
    .btn-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .btn-appointment {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    /* TRUST BADGES - Keep 2 columns but smaller */
    .badge-item {
        padding: 15px 8px;
    }
    
    .badge-item i {
        font-size: 1.8rem;
    }
    
    .badge-item h3 {
        font-size: 0.85rem;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    /* CARDS */
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon i {
        font-size: 2.5rem;
    }
    
    .why-item {
        padding: 25px 15px;
    }
    
    /* TESTIMONIALS */
    .testimonial-card {
        padding: 20px 15px;
    }
    
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
    }
    
    /* FORM */
    .appointment-form {
        padding: 25px 15px;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    /* FOOTER */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-col h3 {
        font-size: 1.1rem;
    }
    
    /* CONTAINER PADDING */
    .container {
        padding: 0 15px;
    }
}
