/* ===== VARIABLES ===== */
:root {
    --primary: #1a7a6d;
    --primary-light: #2d9f8f;
    --primary-dark: #145f55;
    --secondary: #4a8fd9;
    --secondary-light: #6baae8;
    --accent: #e8f5f2;
    --accent-blue: #edf4fc;
    --text: #2d3748;
    --text-light: #64748b;
    --text-muted: #94a3b8;
    --white: #ffffff;
    --gray-50: #f8fafb;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HEADER ===== */
.header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(26, 122, 109, 0.95); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.1); transition: var(--transition); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-img { height: 40px; width: auto; filter: brightness(0) invert(1); transition: var(--transition); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.85); letter-spacing: 0.01em; position: relative; display: flex; align-items: center; gap: 4px; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--white); transition: var(--transition); }
.nav-link:hover, .nav-link.active { color: var(--white); }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-cta { font-size: 13px; font-weight: 600; color: var(--primary-dark); background: var(--white); padding: 10px 20px; border-radius: 50px; letter-spacing: 0.02em; }
.nav-cta:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu { position: absolute; top: 100%; left: -16px; min-width: 240px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); padding: 8px 0; opacity: 0; visibility: hidden; transform: translateY(8px); transition: var(--transition); border: 1px solid var(--border); margin-top: 16px; }
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: block; padding: 10px 20px; font-size: 14px; color: var(--text); font-weight: 400; }
.dropdown-menu a:hover { background: var(--accent); color: var(--primary); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; min-height: 100vh; overflow: hidden; }
.slides { position: relative; height: 100vh; }
.slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1s ease, transform 1s ease; transform: scale(1.05); }
.slide.active { opacity: 1; transform: scale(1); z-index: 1; }
.slide-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(20, 95, 85, 0.88) 0%, rgba(26, 122, 109, 0.75) 50%, rgba(74, 143, 217, 0.65) 100%); }
.slide .container { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.slide-content { max-width: 640px; }
.slide-badge { display: inline-block; font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 50px; margin-bottom: 24px; letter-spacing: 0.02em; }
.slide-content h1, .slide-content h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 600; color: var(--white); line-height: 1.2; margin-bottom: 20px; }
.slide-content h1 span, .slide-content h2 span { color: rgba(255,255,255,0.75); font-style: italic; }
.slide-content p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.7; max-width: 480px; }
.slide-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slider Controls */
.slider-controls { position: absolute; bottom: 100px; left: 0; right: 0; z-index: 10; display: flex; align-items: center; justify-content: center; gap: 16px; }
.slider-btn { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,0.4); background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); color: var(--white); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.slider-btn:hover { background: rgba(255,255,255,0.25); border-color: rgba(255,255,255,0.7); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,0.5); background: transparent; cursor: pointer; transition: var(--transition); padding: 0; }
.dot.active { background: var(--white); border-color: var(--white); width: 28px; border-radius: 5px; }

/* Stats Bar */
.hero-stats-bar { position: absolute; bottom: 0; left: 0; right: 0; z-index: 10; background: rgba(255,255,255,0.12); backdrop-filter: blur(16px); border-top: 1px solid rgba(255,255,255,0.15); }
.stats-inner { display: flex; align-items: center; justify-content: center; gap: 40px; padding: 24px 0; }
.stat-item { text-align: center; }
.stat-number { font-size: 28px; font-weight: 700; color: var(--white); }
.stat-plus { font-size: 20px; font-weight: 700; color: rgba(255,255,255,0.7); }
.stat-label { display: block; font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; text-transform: uppercase; margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ===== BUTTONS ===== */
.btn { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font); font-size: 15px; font-weight: 600; padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition); text-align: center; white-space: nowrap; }
.btn-primary { background: var(--white); color: var(--primary-dark); box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.4); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-block { width: 100%; justify-content: center; }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-alt { background: var(--gray-50); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag { display: inline-block; font-size: 13px; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; padding: 6px 14px; background: var(--accent); border-radius: 50px; }
.section-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 600; color: var(--text); line-height: 1.3; margin-bottom: 16px; }
.section-desc { font-size: 16px; color: var(--text-light); max-width: 560px; margin: 0 auto; }
.section-action { text-align: center; margin-top: 48px; }
.subsection-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--text); margin-bottom: 20px; }

/* ===== PAGE HERO ===== */
.page-hero { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%); padding: 140px 0 60px; text-align: center; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; color: var(--white); margin-bottom: 12px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.7); }
.page-hero-sm { padding: 130px 0 50px; }

/* ===== BREADCRUMB ===== */
.breadcrumb-nav { background: var(--gray-50); border-bottom: 1px solid var(--border); padding: 12px 0; }
.breadcrumb { list-style: none; display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.breadcrumb li::before { content: '/'; margin-right: 8px; color: var(--gray-200); }
.breadcrumb li:first-child::before { display: none; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .active { color: var(--text); font-weight: 500; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text { font-size: 16px; color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
.about-text strong { color: var(--text); }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.feature { display: flex; align-items: center; gap: 12px; padding: 12px 16px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px; font-weight: 500; color: var(--text); }
.feature-icon { color: var(--primary); flex-shrink: 0; }
.about-img-placeholder { width: 100%; height: 400px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%); border-radius: var(--radius-xl); border: 1px solid var(--border); display: flex; flex-direction: column; align-items: center; justify-content: center; color: var(--text-muted); }
.about-img-placeholder p { margin-top: 12px; font-size: 14px; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.services-grid-lg { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.service-card { display: block; padding: 32px 28px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--primary), var(--secondary)); opacity: 0; transition: var(--transition); }
.service-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: var(--accent); border-radius: var(--radius); color: var(--primary); margin-bottom: 20px; }
.service-card h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.service-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--primary); margin-top: 16px; }

/* ===== DOCTORS ===== */
.doctors-preview { background: var(--gray-50); }
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; }
.doctor-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; transition: var(--transition); text-align: center; }
.doctor-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.doctor-img { position: relative; height: 260px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%); display: flex; align-items: center; justify-content: center; }
.doctor-img-placeholder { color: var(--text-muted); }
.doctor-info { padding: 24px 20px; }
.doctor-info h3 { font-size: 17px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.doctor-info p { font-size: 14px; color: var(--primary); font-weight: 500; }

/* Doctor Detail Grid */
.doctors-detail-grid { display: flex; flex-direction: column; gap: 32px; }
.doctor-detail-card { display: grid; grid-template-columns: 280px 1fr; gap: 40px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); overflow: hidden; align-items: center; }
.doctor-detail-img { height: 320px; background: linear-gradient(135deg, var(--accent) 0%, var(--accent-blue) 100%); display: flex; align-items: center; justify-content: center; }
.doctor-detail-info { padding: 32px 32px 32px 0; }
.doctor-detail-info h2 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; margin-bottom: 8px; }
.doctor-title { display: inline-block; font-size: 14px; font-weight: 600; color: var(--primary); background: var(--accent); padding: 4px 12px; border-radius: 50px; margin-bottom: 16px; }
.doctor-detail-info p { font-size: 15px; color: var(--text-light); line-height: 1.7; margin-bottom: 20px; }

/* ===== CHILDREN ===== */
.children-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.children-content .section-title { text-align: left; }
.children-content p { font-size: 16px; color: var(--text-light); margin-bottom: 24px; line-height: 1.8; }
.children-services { display: flex; flex-direction: column; gap: 20px; }
.child-service { display: flex; gap: 16px; padding: 20px; background: var(--accent); border-radius: var(--radius-lg); border: 1px solid rgba(26, 122, 109, 0.1); }
.child-service-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--white); border-radius: var(--radius); color: var(--primary); flex-shrink: 0; }
.child-service h3, .child-service h4 { font-size: 15px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.child-service p { font-size: 13px; color: var(--text-light); margin-bottom: 0; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; }
.cta-box { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--secondary) 100%); border-radius: var(--radius-xl); padding: 64px; text-align: center; position: relative; overflow: hidden; }
.cta-box::before { content: ''; position: absolute; top: -50%; right: -30%; width: 60%; height: 200%; background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 60%); }
.cta-box h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 16px; position: relative; }
.cta-box p { font-size: 16px; color: rgba(255,255,255,0.75); margin-bottom: 32px; position: relative; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; position: relative; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; padding: 20px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); }
.contact-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--accent); border-radius: var(--radius); color: var(--primary); flex-shrink: 0; }
.contact-item h4 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
.contact-item p, .contact-item a { font-size: 14px; color: var(--text-light); line-height: 1.6; }
.contact-item a:hover { color: var(--primary); }
.contact-map { border-radius: var(--radius-xl); overflow: hidden; border: 1px solid var(--border); min-height: 400px; }

/* ===== DETAIL PAGE ===== */
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }
.detail-icon-lg { width: 72px; height: 72px; display: flex; align-items: center; justify-content: center; background: var(--accent); border-radius: var(--radius-lg); color: var(--primary); margin-bottom: 24px; }
.detail-icon-lg svg { width: 40px; height: 40px; }
.detail-text { font-size: 16px; color: var(--text-light); line-height: 1.9; margin-bottom: 24px; }
.detail-cta { background: var(--accent); border-radius: var(--radius-lg); padding: 32px; margin-top: 40px; }
.detail-cta h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.detail-cta p { font-size: 14px; color: var(--text-light); margin-bottom: 20px; }
.sidebar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; margin-bottom: 20px; }
.sidebar-card h4 { font-size: 16px; font-weight: 600; margin-bottom: 16px; }
.sidebar-list { list-style: none; }
.sidebar-list li { border-bottom: 1px solid var(--gray-100); }
.sidebar-list li:last-child { border: none; }
.sidebar-list li a { display: block; padding: 10px 0; font-size: 14px; color: var(--text-light); }
.sidebar-list li a:hover { color: var(--primary); }
.sidebar-list li.active a { color: var(--primary); font-weight: 600; }
.sidebar-cta { background: var(--accent); border-color: rgba(26,122,109,0.15); }
.sidebar-cta p { font-size: 14px; color: var(--text-light); margin-bottom: 16px; }
.sidebar-cta .btn { margin-bottom: 8px; }

/* ===== APPOINTMENT ===== */
.appointment-grid { display: grid; grid-template-columns: 1fr 380px; gap: 48px; }
.appointment-form-wrapper { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-xl); padding: 40px; }
.appointment-form .form-group { margin-bottom: 20px; }
.appointment-form label { display: block; font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.appointment-form input, .appointment-form select, .appointment-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius); font-size: 15px; font-family: var(--font); color: var(--text); outline: none; transition: border 0.2s; background: var(--white); }
.appointment-form input:focus, .appointment-form select:focus, .appointment-form textarea:focus { border-color: var(--primary); }
.appointment-form textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 16px; text-align: center; }

/* Steps */
.steps { display: flex; flex-direction: column; gap: 20px; }
.step { display: flex; gap: 16px; }
.step-number { width: 36px; height: 36px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
.step h5 { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.step p { font-size: 13px; color: var(--text-light); }

/* Alerts */
.alert { padding: 16px 20px; border-radius: var(--radius); margin-bottom: 24px; font-size: 14px; display: flex; align-items: center; gap: 10px; }
.alert-success { background: #ecfdf5; color: #059669; border: 1px solid #a7f3d0; }
.alert-error { background: #fef2f2; color: #dc2626; border: 1px solid #fee2e2; }
.alert-error ul { list-style: none; }

/* ===== TIMELINE ===== */
.timeline { max-width: 640px; margin: 0 auto; position: relative; }
.timeline::before { content: ''; position: absolute; left: 60px; top: 0; bottom: 0; width: 2px; background: var(--border); }
.timeline-item { display: flex; gap: 32px; margin-bottom: 40px; position: relative; }
.timeline-year { width: 80px; text-align: right; font-size: 14px; font-weight: 700; color: var(--primary); padding-top: 4px; flex-shrink: 0; }
.timeline-content { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; flex: 1; position: relative; }
.timeline-content::before { content: ''; position: absolute; left: -8px; top: 12px; width: 14px; height: 14px; background: var(--primary); border-radius: 50%; border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--primary); }
.timeline-content h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.timeline-content p { font-size: 14px; color: var(--text-light); }

/* ===== FOOTER ===== */
.footer { background: #1a2332; padding: 60px 0 0; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.footer-links h4, .footer-contact h4 { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 16px; }
.footer-links a { display: block; font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 10px; }
.footer-links a:hover { color: var(--white); }
.footer-contact p { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.5); }
.footer-contact a:hover { color: var(--white); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ===== WHATSAPP ===== */
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4); z-index: 999; transition: var(--transition); }
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-grid, .children-wrapper { grid-template-columns: 1fr; gap: 40px; }
    .detail-grid { grid-template-columns: 1fr; }
    .detail-grid aside { order: -1; }
    .appointment-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .doctor-detail-card { grid-template-columns: 220px 1fr; }
}

@media (max-width: 768px) {
    .nav { position: fixed; top: 0; right: -100%; width: 280px; height: 100vh; background: var(--primary-dark); flex-direction: column; padding: 80px 32px 32px; gap: 0; transition: var(--transition); box-shadow: -4px 0 20px rgba(0,0,0,0.2); overflow-y: auto; }
    .nav.active { right: 0; }
    .nav-link { padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; }
    .nav-link::after { display: none; }
    .nav-cta { margin-top: 20px; text-align: center; width: 100%; }
    .nav-dropdown .dropdown-menu { position: static; background: rgba(255,255,255,0.05); box-shadow: none; border: none; margin-top: 0; opacity: 1; visibility: visible; transform: none; padding: 0 0 0 16px; }
    .dropdown-menu a { color: rgba(255,255,255,0.7); padding: 8px 0; font-size: 14px; }
    .dropdown-menu a:hover { background: transparent; color: var(--white); }
    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

    .slides { height: 100vh; }
    .slider-controls { bottom: 80px; }
    .stats-inner { gap: 20px; flex-wrap: wrap; justify-content: center; }
    .stat-divider { display: none; }
    .stat-number { font-size: 22px; }

    .section { padding: 70px 0; }
    .about-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .doctors-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .cta-box { padding: 40px 24px; }
    .footer-grid { grid-template-columns: 1fr; gap: 28px; }
    .doctor-detail-card { grid-template-columns: 1fr; }
    .doctor-detail-img { height: 200px; }
    .doctor-detail-info { padding: 24px; }
    .appointment-form-wrapper { padding: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .slide-content h1, .slide-content h2 { font-size: 1.8rem; }
    .slide-actions { flex-direction: column; }
    .btn { justify-content: center; }
    .doctors-grid { grid-template-columns: 1fr; }
    .doctor-img { height: 200px; }
}
