/* ===== MEDSTAR HOSPITAL - MAIN STYLESHEET ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0a1628;
    --navy-light: #132040;
    --teal: #0891b2;
    --teal-light: #06b6d4;
    --teal-pale: #e0f7fa;
    --red: #dc2626;
    --white: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-400: #94a3b8;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --text: #1e293b;
    --shadow: 0 4px 24px rgba(10,22,40,0.10);
    --shadow-lg: 0 8px 40px rgba(10,22,40,0.16);
    --radius: 12px;
    --radius-sm: 8px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.6;
    font-size: 16px;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* ===== TOPBAR ===== */
.topbar {
    background: var(--navy);
    color: var(--gray-400);
    font-size: 13px;
    padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: var(--gray-400); }
.topbar a:hover { color: var(--teal-light); }
.topbar-contact { display: flex; gap: 20px; align-items: center; }
.topbar-contact span { display: flex; align-items: center; gap: 6px; }

/* ===== NAVBAR ===== */
.navbar {
    background: #fff;
    box-shadow: 0 2px 12px rgba(10,22,40,0.08);
    position: sticky;
    top: 0;
    z-index: 999;
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 0 20px; height: 86px; }
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo-icon {
    width: 68px; height: 68px;
    border-radius: 10px;
    object-fit: contain;
    background: #fff;
    border: 1px solid var(--gray-200);
    padding: 3px;
}
.nav-logo-text .name { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--navy); line-height: 1.1; }
.nav-logo-text .tagline { font-size: 11px; color: var(--gray-400); letter-spacing: 0.5px; text-transform: uppercase; }
.nav-links { display: flex; gap: 4px; list-style: none; align-items: center; }
.nav-item { position: relative; }
.nav-links a {
    padding: 8px 16px; border-radius: 6px;
    font-size: 14px; font-weight: 500; color: var(--gray-600);
    transition: all 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: var(--teal-pale); }
.nav-caret { font-size: 10px; margin-left: 4px; color: var(--gray-400); }
.nav-dropdown {
    position: absolute; top: calc(100% + 14px); left: 0; width: 320px;
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: 10px; box-shadow: var(--shadow-lg); padding: 12px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 1000;
}
.nav-dropdown::before {
    content: ''; position: absolute; top: -14px; left: 0; right: 0; height: 14px;
}
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-mega .nav-dropdown { width: 420px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.nav-mega .dropdown-intro { grid-column: 1 / -1; }
.nav-dropdown a {
    display: block; padding: 12px; border-radius: 8px;
    color: var(--gray-600); background: transparent;
}
.nav-dropdown a:hover { background: var(--gray-100); color: var(--navy); }
.nav-dropdown strong { display: block; color: var(--navy); font-size: 14px; margin-bottom: 3px; }
.nav-dropdown span { display: block; color: var(--gray-600); font-size: 12px; line-height: 1.45; }
.dropdown-intro {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 8px; padding: 14px; margin-bottom: 4px;
}
.dropdown-intro strong { color: #fff; font-size: 15px; }
.dropdown-intro span { color: rgba(255,255,255,0.72); }
.nav-contact-menu { right: 0; left: auto; }
.nav-emergency {
    background: var(--red); color: #fff !important;
    padding: 10px 20px !important; border-radius: 8px !important;
    font-weight: 600 !important;
    animation: pulse-red 2s infinite;
}
.nav-emergency:hover { background: #b91c1c !important; color: #fff !important; }
@keyframes pulse-red {
    0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(220,38,38,0); }
}
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: 0.3s; }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO ===== */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0c2a5e 100%);
    color: #fff;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230891b2' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}
.hero-content { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(8,145,178,0.2); border: 1px solid rgba(8,145,178,0.4);
    color: var(--teal-light); padding: 6px 16px; border-radius: 20px;
    font-size: 13px; font-weight: 500; margin-bottom: 20px;
}
.hero h1 { font-size: clamp(36px, 5vw, 56px); font-weight: 700; line-height: 1.15; margin-bottom: 20px; }
.hero h1 span { color: var(--teal-light); }
.hero p { font-size: 17px; color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 480px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
    background: var(--teal); color: #fff;
    padding: 14px 28px; border-radius: 8px;
    font-weight: 600; font-size: 15px;
    transition: all 0.2s; border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--teal-light); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-outline {
    border: 2px solid rgba(255,255,255,0.3); color: #fff;
    padding: 14px 28px; border-radius: 8px;
    font-weight: 600; font-size: 15px;
    transition: all 0.2s; background: transparent; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }
.hero-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 48px; }
.hero-stat { text-align: center; }
.hero-stat .num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--teal-light); }
.hero-stat .label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }
.hero-card {
    background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12); border-radius: 20px;
    padding: 36px; display: flex; flex-direction: column; gap: 16px;
}
.hero-card-title { font-size: 18px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.branch-card {
    background: rgba(255,255,255,0.08); border-radius: 12px;
    padding: 16px 20px; display: flex; align-items: center; gap: 14px;
}
.branch-icon { font-size: 28px; }
.branch-info .branch-name { font-weight: 600; color: #fff; font-size: 15px; }
.branch-info .branch-addr { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 2px; }
.emergency-card {
    background: rgba(220,38,38,0.15); border: 1px solid rgba(220,38,38,0.3);
    border-radius: 12px; padding: 16px 20px;
    display: flex; align-items: center; gap: 14px;
}
.emergency-card .e-icon { font-size: 24px; }
.emergency-card .e-text { font-size: 13px; color: rgba(255,255,255,0.8); }
.emergency-card .e-num { font-size: 20px; font-weight: 700; color: #f87171; }

.home-hero { padding: 92px 0 76px; }
.home-hero-card { align-items: flex-start; gap: 20px; }
.home-hero-logo {
    width: 112px; height: 112px; object-fit: contain;
    background: #fff; border-radius: 14px; padding: 6px;
}
.home-hero-note { color: rgba(255,255,255,0.7); font-size: 14px; margin: 6px 0 0; }
.home-quick-list { width: 100%; display: grid; gap: 10px; }
.home-quick-list div {
    display: flex; justify-content: space-between; gap: 16px;
    padding: 12px 14px; border-radius: 8px;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
}
.home-quick-list strong { color: #fff; font-size: 14px; }
.home-quick-list span { color: rgba(255,255,255,0.68); font-size: 13px; text-align: right; }
.hero-photo-card {
    position: relative; min-height: 480px; border-radius: 18px; overflow: hidden;
    box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.16);
}
.hero-photo-card img { width: 100%; height: 100%; min-height: 480px; object-fit: cover; }
.hero-photo-overlay {
    position: absolute; left: 22px; right: 22px; bottom: 22px;
    background: rgba(10,22,40,0.82); color: #fff;
    border: 1px solid rgba(255,255,255,0.14); border-radius: 12px;
    padding: 18px 20px; backdrop-filter: blur(8px);
}
.hero-photo-overlay strong { display: block; font-size: 19px; margin-bottom: 5px; }
.hero-photo-overlay span { display: block; color: rgba(255,255,255,0.72); font-size: 14px; }

.home-strip { background: #fff; border-bottom: 1px solid var(--gray-200); }
.home-strip-grid {
    display: grid; grid-template-columns: repeat(4,1fr);
    gap: 1px; background: var(--gray-200); box-shadow: var(--shadow);
}
.home-strip-grid div { background: #fff; padding: 22px 24px; }
.home-strip-grid span {
    display: block; color: var(--gray-400); font-size: 12px;
    text-transform: uppercase; letter-spacing: 1px; font-weight: 700;
}
.home-strip-grid strong { display: block; color: var(--navy); font-size: 18px; margin-top: 4px; }
.home-center-action { text-align: center; margin-top: 36px; }

.home-care-panel {
    min-height: 420px; border-radius: 20px; padding: 36px;
    background:
        linear-gradient(135deg, rgba(8,145,178,0.92), rgba(10,22,40,0.94)),
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.08'%3E%3Cpath d='M36 12h8v24h24v8H44v24h-8V44H12v-8h24z'/%3E%3C/g%3E%3C/svg%3E");
    display: flex; flex-direction: column; justify-content: space-between;
    box-shadow: var(--shadow-lg);
}
.home-care-head { display: flex; align-items: center; gap: 18px; color: #fff; }
.home-care-head img {
    width: 92px; height: 92px; object-fit: contain; background: #fff;
    border-radius: 14px; padding: 6px; flex-shrink: 0;
}
.home-care-head span {
    display: block; font-size: 12px; text-transform: uppercase;
    letter-spacing: 1.5px; color: rgba(255,255,255,0.7); font-weight: 700;
}
.home-care-head strong { display: block; font-size: 26px; line-height: 1.25; max-width: 340px; }
.home-care-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; }
.home-care-metrics div {
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px; padding: 14px; color: #fff;
}
.home-care-metrics strong { display: block; font-size: 22px; font-family: 'Playfair Display', serif; }
.home-care-metrics span { display: block; font-size: 12px; color: rgba(255,255,255,0.68); margin-top: 2px; }

.home-split { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.home-split h2 { font-size: 36px; color: var(--navy); margin: 10px 0 14px; }
.home-split p { color: var(--gray-600); margin-bottom: 24px; max-width: 480px; }
.home-timing-list { display: grid; gap: 12px; }
.home-timing-list div {
    display: grid; grid-template-columns: 1fr 1fr auto; gap: 16px; align-items: center;
    background: #fff; border: 1px solid var(--gray-200); border-left: 4px solid var(--teal);
    border-radius: 8px; padding: 16px 18px; box-shadow: var(--shadow);
}
.home-timing-list strong { color: var(--navy); }
.home-timing-list span { color: var(--gray-600); font-size: 14px; }
.home-timing-list b { color: var(--teal); font-size: 14px; }

.home-process { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.home-process div {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 26px 22px; box-shadow: var(--shadow);
}
.home-process span {
    display: inline-flex; width: 38px; height: 38px; align-items: center; justify-content: center;
    background: var(--teal-pale); color: var(--teal); border-radius: 50%;
    font-weight: 800; font-size: 13px; margin-bottom: 18px;
}
.home-process h3 { color: var(--navy); font-size: 18px; margin-bottom: 8px; }
.home-process p { color: var(--gray-600); font-size: 14px; }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.info-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow);
}
.section-alt .info-card { background: #fff; }
.info-card span {
    display: inline-flex; min-width: 42px; height: 32px; align-items: center; justify-content: center;
    background: var(--teal-pale); color: var(--teal); border-radius: 18px;
    font-size: 12px; font-weight: 800; padding: 0 12px; margin-bottom: 18px;
}
.info-card h3 { color: var(--navy); font-size: 19px; margin-bottom: 10px; }
.info-card p { color: var(--gray-600); font-size: 14px; line-height: 1.7; }

.feature-list { display: grid; gap: 14px; }
.feature-list div {
    background: #fff; border: 1px solid var(--gray-200); border-left: 4px solid var(--teal);
    border-radius: 8px; padding: 18px 20px; box-shadow: var(--shadow);
}
.feature-list strong { display: block; color: var(--navy); margin-bottom: 6px; }
.feature-list p { color: var(--gray-600); font-size: 14px; margin: 0; }

.photo-collage {
    position: relative;
    display: grid;
    grid-template-columns: minmax(320px, 1.7fr) minmax(240px, 1fr);
    gap: 24px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}
.photo-main {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 26px;
    box-shadow: var(--shadow-lg);
}
.photo-details {
    display: grid;
    gap: 18px;
    justify-self: end;
}
.photo-twins {
    display: grid;
    gap: 18px;
}
.photo-twin {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 24px;
    border: 6px solid #fff;
    box-shadow: var(--shadow-lg);
}
.photo-twins-caption {
    margin: 0;
    padding: 12px 16px;
    background: rgba(255,255,255,0.98);
    width: max-content;
    border-radius: 999px;
    font-size: 13px;
    color: var(--gray-600);
    box-shadow: var(--shadow);
}
.photo-caption {
    position: relative;
    margin-top: 20px;
    max-width: 100%;
    background: #fff;
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 22px 24px;
    box-shadow: var(--shadow);
}
.photo-caption strong { display: block; color: var(--navy); font-size: 16px; margin-bottom: 8px; }
.photo-caption span { display: block; color: var(--gray-600); font-size: 14px; line-height: 1.7; }
.image-showcase { display: grid; grid-template-columns: 1.2fr 0.9fr 1.1fr; gap: 22px; align-items: stretch; }
.image-showcase figure {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.image-showcase img { width: 100%; height: 280px; object-fit: cover; }
.image-showcase figcaption { padding: 16px 18px; }
.image-showcase strong { display: block; color: var(--navy); margin-bottom: 4px; }
.image-showcase span { color: var(--gray-600); font-size: 13px; }

.gallery-grid {
    columns: 3 280px;
    column-gap: 22px;
}
.gallery-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
    transition: transform 0.25s, box-shadow 0.25s;
    break-inside: avoid; margin: 0 0 22px;
}
.gallery-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.gallery-card img,
.gallery-card video {
    width: 100%; height: auto; object-fit: contain; background: #fff;
}
.gallery-card video { display: block; aspect-ratio: 16 / 9; background: #000; }
.gallery-feature { padding: 54px 0 0; background: var(--gray-100); }
.gallery-feature-card {
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 0;
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-lg);
}
.gallery-feature-card img,
.gallery-feature-card video { width: 100%; height: 440px; object-fit: contain; background: #fff; }
.gallery-feature-text { padding: 42px; display: flex; flex-direction: column; justify-content: center; }
.gallery-feature-text h2 { color: var(--navy); font-size: 34px; margin: 10px 0 14px; }
.gallery-feature-text p { color: var(--gray-600); }
.gallery-filter { display: flex; justify-content: center; gap: 10px; margin: -20px 0 34px; flex-wrap: wrap; }
.gallery-filter button {
    border: 1px solid var(--gray-200); background: #fff; color: var(--gray-600);
    border-radius: 8px; padding: 10px 18px; font-weight: 700; cursor: pointer;
    box-shadow: var(--shadow);
}
.gallery-filter button.active,
.gallery-filter button:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.premium-gallery .gallery-card { position: relative; background: #fff; }
.gallery-open { display: block; width: 100%; border: none; background: #fff; cursor: pointer; padding: 0; }
.gallery-type {
    position: absolute; top: 12px; right: 12px;
    background: rgba(10,22,40,0.78); color: #fff;
    border-radius: 999px; padding: 6px 10px; font-size: 11px; font-weight: 800;
    letter-spacing: 0.7px; text-transform: uppercase;
}
.gallery-lightbox {
    position: fixed; inset: 0; background: rgba(10,22,40,0.9);
    display: none; align-items: center; justify-content: center; z-index: 2000;
    padding: 24px;
}
.gallery-lightbox.open { display: flex; }
.gallery-lightbox-content { max-width: min(1100px, 94vw); max-height: 86vh; }
.gallery-lightbox-content img,
.gallery-lightbox-content video {
    max-width: 100%; max-height: 86vh; object-fit: contain; border-radius: 10px;
    background: #fff; box-shadow: var(--shadow-lg);
}
.gallery-close {
    position: fixed; top: 18px; right: 22px; width: 44px; height: 44px;
    border-radius: 50%; border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.1); color: #fff; font-size: 28px; cursor: pointer;
}

.review-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card {
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
}
.review-media { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--gray-100); }
.review-body { padding: 24px; }
.review-stars { color: #d97706; font-size: 16px; letter-spacing: 1px; margin-bottom: 12px; }
.review-body p { color: var(--gray-600); font-size: 14px; line-height: 1.75; margin-bottom: 18px; }
.review-person strong { display: block; color: var(--navy); font-size: 16px; }
.review-person span { color: var(--gray-400); font-size: 13px; }
.review-slider { position: relative; max-width: 980px; margin: 0 auto; }
.review-track { position: relative; min-height: 430px; overflow: hidden; }
.review-slide {
    display: none; grid-template-columns: 0.9fr 1.1fr; gap: 0;
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg);
    width: 100%;
}
.review-slide.active { display: grid; }
.review-slide-media { min-height: 430px; background: var(--gray-100); }
.review-slide .review-media { width: 100%; height: 100%; min-height: 430px; aspect-ratio: auto; object-fit: cover; }
.review-placeholder {
    display: flex; align-items: center; justify-content: center;
    color: var(--teal); font-family: 'Playfair Display', serif;
    font-size: 30px; background: linear-gradient(135deg, var(--teal-pale), #fff);
}
.review-slide-content { padding: 48px; display: flex; flex-direction: column; justify-content: center; }
.review-slide-content blockquote {
    font-family: 'Playfair Display', serif; color: var(--navy);
    font-size: clamp(24px, 3vw, 34px); line-height: 1.35; margin: 0 0 26px;
}
.review-slider-btn {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
    width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--gray-200);
    background: #fff; color: var(--navy); font-size: 30px; line-height: 1;
    cursor: pointer; box-shadow: var(--shadow);
}
.review-slider-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.review-prev { left: -22px; }
.review-next { right: -22px; }
.review-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.review-dots button {
    width: 10px; height: 10px; border-radius: 50%; border: none;
    background: var(--gray-200); cursor: pointer;
}
.review-dots button.active { background: var(--teal); }
.testimonial-slider { position: relative; max-width: 1120px; margin: 0 auto; }
.testimonial-window { overflow: hidden; padding: 6px 2px 18px; }
.testimonial-track {
    display: flex; gap: 22px; transition: transform 0.35s ease;
    will-change: transform;
}
.testimonial-card {
    flex: 0 0 calc((100% - 44px) / 3);
    background: #fff; border: 1px solid var(--gray-200);
    border-radius: var(--radius); box-shadow: var(--shadow);
    overflow: hidden; display: flex; flex-direction: column;
    min-height: 330px;
}
.testimonial-media-wrap { background: var(--gray-100); border-bottom: 1px solid var(--gray-200); }
.testimonial-media { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.testimonial-content { padding: 26px 24px; display: flex; flex-direction: column; flex: 1; }
.testimonial-content p {
    color: var(--navy); font-family: 'Playfair Display', serif;
    font-size: 21px; line-height: 1.45; margin: 0 0 24px; flex: 1;
}
.testimonial-btn {
    position: absolute; top: 42%; transform: translateY(-50%); z-index: 3;
    width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--gray-200);
    background: #fff; color: var(--navy); font-size: 30px; line-height: 1;
    cursor: pointer; box-shadow: var(--shadow);
}
.testimonial-btn:hover { background: var(--teal); color: #fff; border-color: var(--teal); }
.testimonial-prev { left: -20px; }
.testimonial-next { right: -20px; }
.media-thumb {
    width: 72px; height: 54px; object-fit: cover; border-radius: 6px;
    background: var(--gray-100); border: 1px solid var(--gray-200);
}
.waste-photo-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; margin-top: 28px; }
.waste-photo-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.waste-photo-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.waste-photo-card div { padding: 14px 16px; color: var(--gray-600); font-size: 13px; }
.waste-photo-card strong { display: block; color: var(--navy); font-size: 15px; margin-bottom: 3px; }

.home-cta { background: var(--navy); color: #fff; padding: 58px 0; }
.home-cta-inner {
    display: flex; justify-content: space-between; gap: 32px; align-items: center;
}
.home-cta .eyebrow { color: var(--teal-light); }
.home-cta h2 { font-size: 34px; max-width: 620px; margin: 8px 0 8px; }
.home-cta p { color: rgba(255,255,255,0.68); }
.home-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }

/* ===== SECTION STYLES ===== */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-100); }
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .eyebrow {
    display: inline-block; font-size: 12px; font-weight: 600;
    color: var(--teal); text-transform: uppercase; letter-spacing: 2px;
    margin-bottom: 12px;
}
.section-header h2 { font-size: clamp(28px, 4vw, 40px); color: var(--navy); margin-bottom: 16px; }
.section-header p { color: var(--gray-600); font-size: 17px; max-width: 560px; margin: 0 auto; }
.divider { width: 48px; height: 3px; background: var(--teal); border-radius: 2px; margin: 16px auto 0; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.service-card {
    background: #fff; border-radius: var(--radius);
    padding: 32px 28px; box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s; cursor: pointer;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.service-icon { font-size: 36px; margin-bottom: 16px; }
.service-card h3 { font-size: 18px; color: var(--navy); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--gray-600); line-height: 1.65; }

/* ===== DOCTORS GRID ===== */
.doctors-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 28px; }
.doctor-card {
    background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--gray-200);
    overflow: hidden; transition: all 0.3s;
    text-align: center;
}
.doctor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.doctor-avatar {
    width: 100%; height: 200px;
    background: linear-gradient(135deg, var(--teal-pale), var(--gray-200));
    display: flex; align-items: center; justify-content: center;
    font-size: 64px;
}
.doctor-info { padding: 24px 20px; }
.doctor-info h3 { font-size: 17px; color: var(--navy); margin-bottom: 6px; }
.doctor-info .spec { color: var(--teal); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.doctor-info .qual { font-size: 13px; color: var(--gray-600); margin-bottom: 8px; }
.doctor-badge {
    display: inline-block; padding: 4px 12px;
    border-radius: 20px; font-size: 12px; font-weight: 500;
}
.badge-nowshera { background: var(--teal-pale); color: var(--teal); }
.badge-rajouri { background: #fef3c7; color: #d97706; }

/* ===== ABOUT ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
    width: 100%; height: 420px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 80px; opacity: 0.9;
}
.about-badge {
    position: absolute; bottom: -20px; right: -20px;
    background: var(--teal); color: #fff;
    padding: 20px 24px; border-radius: 16px; text-align: center;
    box-shadow: var(--shadow-lg);
}
.about-badge .num { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; }
.about-badge .label { font-size: 12px; opacity: 0.9; }
.about-text .eyebrow { color: var(--teal); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 2px; display: block; margin-bottom: 12px; }
.about-text h2 { font-size: 36px; color: var(--navy); margin-bottom: 16px; }
.about-text p { color: var(--gray-600); margin-bottom: 16px; font-size: 15px; line-height: 1.75; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.about-feature { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--gray-800); }
.about-feature .check { color: var(--teal); font-size: 16px; }

/* ===== WHY US ===== */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.why-card {
    text-align: center; padding: 40px 24px;
    background: #fff; border-radius: var(--radius);
    box-shadow: var(--shadow); border: 1px solid var(--gray-200);
}
.why-icon {
    width: 64px; height: 64px;
    background: var(--teal-pale);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 28px; margin: 0 auto 20px;
}
.why-card h3 { font-size: 17px; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--gray-600); }

/* ===== BIOMEDICAL ===== */
.waste-categories { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 48px; }
.waste-cat {
    border-radius: var(--radius); padding: 24px 20px; text-align: center;
    border: 2px solid; transition: 0.3s;
}
.waste-cat:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.waste-cat .cat-icon { font-size: 36px; margin-bottom: 12px; }
.waste-cat h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.waste-cat p { font-size: 12px; opacity: 0.8; }
.cat-yellow { background: #fefce8; border-color: #eab308; color: #713f12; }
.cat-red { background: #fef2f2; border-color: #ef4444; color: #7f1d1d; }
.cat-blue { background: #eff6ff; border-color: #3b82f6; color: #1e3a8a; }
.cat-black { background: #f8f8f8; border-color: #374151; color: #111827; }
.cat-white { background: #f0fdfa; border-color: #14b8a6; color: #134e4a; }

.waste-table-wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; border: 1px solid var(--gray-200); }
.waste-table-head {
    background: var(--navy); color: #fff;
    padding: 20px 28px; display: flex; justify-content: space-between; align-items: center;
}
.waste-table-head h3 { font-size: 18px; }
table { width: 100%; border-collapse: collapse; }
table thead th { background: var(--gray-100); padding: 14px 16px; font-size: 13px; font-weight: 600; color: var(--gray-600); text-align: left; border-bottom: 1px solid var(--gray-200); }
table tbody td { padding: 14px 16px; font-size: 14px; border-bottom: 1px solid var(--gray-200); color: var(--text); }
table tbody tr:last-child td { border-bottom: none; }
table tbody tr:hover { background: var(--gray-100); }
.no-data { text-align: center; padding: 40px; color: var(--gray-400); font-size: 15px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; }
.contact-info h2 { font-size: 32px; color: var(--navy); margin-bottom: 16px; }
.contact-info p { color: var(--gray-600); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item-icon {
    width: 44px; height: 44px; flex-shrink: 0;
    background: var(--teal-pale); border-radius: 10px;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-item-text .label { font-size: 12px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.contact-item-text .value { font-size: 15px; font-weight: 500; color: var(--navy); margin-top: 2px; }
.contact-form-wrap { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 36px; border: 1px solid var(--gray-200); }
.contact-form-wrap h3 { font-size: 22px; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 6px; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 12px 16px;
    border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
    font-size: 14px; font-family: 'Inter', sans-serif;
    color: var(--text); background: #fff; transition: 0.2s;
    outline: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(8,145,178,0.12); }
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-teal { background: var(--teal); color: #fff; border: none; padding: 13px 28px; border-radius: 8px; font-weight: 600; font-size: 15px; cursor: pointer; width: 100%; transition: 0.2s; }
.btn-teal:hover { background: var(--teal-light); }

/* ===== FOOTER ===== */
footer {
    background: var(--navy); color: rgba(255,255,255,0.7);
    padding: 34px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 28px; padding-bottom: 28px; }
.footer-logo { width: 58px; height: 58px; object-fit: contain; background: #fff; border-radius: 8px; padding: 3px; margin-bottom: 8px; }
.footer-brand .name { font-family: 'Playfair Display', serif; font-size: 19px; color: #fff; font-weight: 700; margin-bottom: 8px; }
.footer-brand p { font-size: 13px; line-height: 1.55; max-width: 260px; }
.footer-col h4 { color: #fff; font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--teal-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 12px 0; display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; flex-wrap: wrap; gap: 10px;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: #fff; padding: 64px 0 48px; text-align: center;
}
.page-hero h1 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; align-items: center; }
.breadcrumb a { color: var(--teal-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== ADMIN ===== */
.admin-wrap { min-height: 100vh; background: var(--gray-100); }
.admin-nav {
    background: var(--navy); color: #fff; padding: 16px 24px;
    display: flex; justify-content: space-between; align-items: center;
}
.admin-nav .logo { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.admin-logo-img { width: 36px; height: 36px; object-fit: contain; background: #fff; border-radius: 8px; padding: 3px; }
.admin-nav a { color: rgba(255,255,255,0.7); font-size: 14px; }
.admin-nav a:hover { color: #fff; }
.admin-content { padding: 32px 24px; max-width: 1100px; margin: 0 auto; }
.admin-card { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; border: 1px solid var(--gray-200); margin-bottom: 24px; }
.admin-card h2 { font-size: 22px; color: var(--navy); margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--gray-200); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row-3 { grid-template-columns: 1fr 1fr 1fr; }
.alert { padding: 12px 16px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; }
.alert-success { background: #f0fdf4; color: #166534; border: 1px solid #bbf7d0; }
.alert-error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.badge-del { background: var(--red); color: #fff; padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: none; }
.badge-edit { background: var(--teal); color: #fff; padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 600; cursor: pointer; border: none; text-decoration: none; display: inline-block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-content, .about-grid, .contact-grid, .home-split { grid-template-columns: 1fr; }
    .home-strip-grid, .home-process { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero-card { display: none; }
    .hero { padding: 60px 0 48px; }
    .home-cta-inner { align-items: flex-start; flex-direction: column; }
    .home-cta-actions { justify-content: flex-start; }
    .review-slide.active { grid-template-columns: 1fr; }
    .review-slide-media, .review-slide .review-media { min-height: 260px; }
    .review-slider-btn { top: 130px; }
    .review-prev { left: 10px; }
    .review-next { right: 10px; }
    .testimonial-card { flex-basis: calc((100% - 22px) / 2); }
    .testimonial-prev { left: 8px; }
    .testimonial-next { right: 8px; }
    .hero-photo-card, .hero-photo-card img { min-height: 360px; }
    .image-showcase { grid-template-columns: 1fr; }
    .image-showcase img { height: 320px; }
    .gallery-feature-card { grid-template-columns: 1fr; }
    .gallery-feature-card img,
    .gallery-feature-card video { height: auto; max-height: 420px; }
    .gallery-feature-text { padding: 30px; }
    .photo-collage { grid-template-columns: 1fr; }
    .photo-main { width: 100%; height: 340px; }
    .photo-twins { width: 100%; gap: 14px; justify-self: stretch; }
    .photo-caption { margin-top: 18px; }
}
@media (max-width: 768px) {
    .photo-collage { grid-template-columns: 1fr; }
    .photo-main { width: 100%; height: 280px; }
    .photo-twins { width: 100%; gap: 12px; justify-self: stretch; }
    .photo-caption { padding: 16px 18px; }

    .topbar .container { justify-content: center; }
    .topbar-contact {
        width: 100%; flex-direction: column; align-items: center;
        gap: 4px; text-align: center;
    }
    .topbar-contact span { font-size: 12px; white-space: normal; word-break: break-word; }
    .topbar-contact:last-child { display: none; }

    .nav-links { display: none; flex-direction: column; align-items: stretch; position: absolute; top: 86px; left: 0; right: 0; background: #fff; box-shadow: var(--shadow); padding: 16px; max-height: calc(100vh - 86px); overflow-y: auto; }

    .nav-links.open { display: flex; }
    .nav-links > li > a { display: flex; justify-content: space-between; align-items: center; width: 100%; padding: 12px 14px; }
    .nav-dropdown {
        position: static; width: 100%; opacity: 1; visibility: visible; transform: none;
        box-shadow: none; border-radius: 8px; padding: 0 8px; margin: 0;
        background: var(--gray-100); display: grid; gap: 6px;
        max-height: 0; overflow: hidden;
        transition: max-height 0.25s ease, padding 0.25s ease, margin 0.25s ease;
    }
    .has-dropdown.dropdown-open .nav-dropdown {
        max-height: 1000px; padding: 8px; margin: 4px 0 10px;
    }
    .nav-dropdown::before { display: none; }
    .nav-caret { transition: transform 0.2s; }
    .has-dropdown.dropdown-open .nav-caret { transform: rotate(180deg); }
    .nav-mega .nav-dropdown { width: 100%; grid-template-columns: 1fr; }
    .nav-dropdown a { background: #fff; padding: 10px 12px; }
    .dropdown-intro { margin: 0; padding: 12px; }
    .nav-contact-menu { right: auto; }
    .nav-emergency { justify-content: center !important; margin-top: 4px; }
    .hamburger { display: flex; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-badge { display: none; }
    .home-strip-grid, .home-process, .home-care-metrics { grid-template-columns: 1fr; }
    .home-timing-list div { grid-template-columns: 1fr; gap: 4px; }
    .home-care-panel { min-height: auto; gap: 32px; padding: 28px; }
    .home-care-head { align-items: flex-start; flex-direction: column; }
    .home-care-head strong { font-size: 24px; }
    .home-cta h2 { font-size: 28px; }
    .review-track { min-height: 0; }
    .review-slide-content { padding: 30px 24px; }
    .review-slide-content blockquote { font-size: 24px; }
    .testimonial-card { flex-basis: 100%; min-height: 300px; }
    .testimonial-content p { font-size: 20px; }
    .testimonial-btn { top: 38%; }
    .hero-photo-card, .hero-photo-card img { min-height: 300px; }
    .hero-photo-overlay { left: 14px; right: 14px; bottom: 14px; padding: 14px; }
    .photo-collage { min-height: auto; padding-bottom: 0; }
    .photo-main { width: 100%; height: 300px; }
    .photo-floating {
        position: relative; right: auto; bottom: auto; width: 42%;
        min-width: 130px; margin: -70px 18px 0 auto; display: block;
    }
    .photo-caption { position: relative; left: auto; bottom: auto; max-width: none; margin-top: 14px; }
    .image-showcase img { height: 240px; }
    .gallery-feature { padding-top: 32px; }
    .gallery-feature-text h2 { font-size: 26px; }
    .gallery-filter { margin-top: -8px; }
    .gallery-grid { columns: 1 100%; }
    .gallery-lightbox { padding: 14px; }
    .gallery-close { top: 12px; right: 12px; }
}