/* ==================== VARIABLES & RESET ==================== */
:root {
    --primary: #0284c7;
    --primary-light: #38bdf8;
    --secondary: #0891b2;
    --accent: #059669;
    --red: #ef4444;
    --bg: #ffffff;
    --bg-alt: #f0f9ff;
    --bg-section: #f8fafc;
    --bg-card: #ffffff;
    --text: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #0284c7, #0891b2, #059669);
    --gradient-2: linear-gradient(135deg, #0ea5e9, #06b6d4);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow: 0 4px 15px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-primary: 0 8px 30px rgba(2,132,199,0.25);
    --radius: 16px;
    --transition: 0.3s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--text-body);
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== PRELOADER ==================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s, visibility 0.6s;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
}

.heartbeat-icon {
    font-size: 64px;
    color: var(--red);
    animation: heartbeat 1.2s ease-in-out infinite;
    margin-bottom: 18px;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    14% { transform: scale(1.3); }
    28% { transform: scale(1); }
    42% { transform: scale(1.2); }
    56% { transform: scale(1); }
}

.loader-text {
    display: block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 8px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 18px;
}

.loader-bar {
    width: 180px;
    height: 4px;
    background: var(--border);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0;
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    animation: loadBar 1.8s ease-in-out forwards;
}

@keyframes loadBar {
    to { width: 100%; }
}

/* ==================== PULSE RING EFFECT ==================== */
.pulse-container {
    position: relative;
    display: inline-block;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border: 2px solid rgba(2, 132, 199, 0.3);
    border-radius: 50%;
    animation: pulseRing 2.5s ease-out infinite;
}

.pulse-ring.ring-2 { animation-delay: 1.25s; }
.pulse-ring.ring-3 { animation-delay: 0.6s; }

@keyframes pulseRing {
    0% { width: 80px; height: 80px; opacity: 1; }
    100% { width: 250px; height: 250px; opacity: 0; }
}

/* ==================== ECG LINE ==================== */
.ecg-section {
    position: relative;
    overflow: hidden;
}

.ecg-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200%;
    height: 60px;
    transform: translateY(-50%);
    opacity: 0.06;
    animation: ecgScroll 4s linear infinite;
    pointer-events: none;
}

@keyframes ecgScroll {
    0% { transform: translateY(-50%) translateX(0); }
    100% { transform: translateY(-50%) translateX(-50%); }
}

/* ==================== HEARTBEAT FLOATING ICON ==================== */
.heartbeat-float {
    position: fixed;
    bottom: 80px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ef4444, #f87171);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    box-shadow: 0 4px 20px rgba(239, 68, 68, 0.35);
    z-index: 998;
    animation: heartFloat 1.5s ease-in-out infinite;
    cursor: pointer;
    transition: var(--transition);
}

.heartbeat-float:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5);
}

@keyframes heartFloat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

/* ==================== SNOWFALL CANVAS ==================== */
#snowCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

/* ==================== SCROLL PROGRESS ==================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient);
    z-index: 10001;
    border-radius: 0 2px 2px 0;
}

/* ==================== NAVBAR ==================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 16px 0;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(20px);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 22px;
    font-weight: 800;
    color: var(--text);
}

.logo-icon { font-size: 26px; color: var(--primary); }
.logo-highlight { color: var(--primary); }

.nav-links {
    display: flex;
    gap: 8px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link:hover { color: var(--primary); background: var(--bg-alt); }
.nav-link.active { color: var(--primary); background: var(--bg-alt); font-weight: 600; }

.nav-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--gradient);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(2,132,199,0.35);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ==================== PAGE HEADER (Inner Pages) ==================== */
.page-header {
    padding: 160px 0 80px;
    background: var(--gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
        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='%23ffffff' fill-opacity='0.04'%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");
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 60px;
    background: var(--bg);
    clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #fff;
    margin: 0 auto 20px;
    position: relative;
    animation: floatBadge 3s ease-in-out infinite;
}

.page-header h1 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    color: #fff;
    position: relative;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.page-header p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.page-header .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    position: relative;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    padding: 8px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
}

.page-header .breadcrumb a {
    color: #fff;
    font-weight: 500;
}

.page-header .breadcrumb a:hover { text-decoration: underline; }

.page-header .breadcrumb span {
    color: rgba(255,255,255,0.5);
}

/* Floating shapes in header */
.header-shapes {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.header-shapes .h-shape {
    position: absolute;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    animation: headerFloat 8s ease-in-out infinite;
}

.header-shapes .h-shape:nth-child(1) { width: 200px; height: 200px; top: -60px; left: -40px; animation-delay: 0s; }
.header-shapes .h-shape:nth-child(2) { width: 120px; height: 120px; top: 20px; right: 10%; animation-delay: 2s; }
.header-shapes .h-shape:nth-child(3) { width: 80px; height: 80px; bottom: 40px; left: 15%; animation-delay: 4s; }
.header-shapes .h-shape:nth-child(4) { width: 150px; height: 150px; bottom: -40px; right: -20px; animation-delay: 1s; }
.header-shapes .h-shape:nth-child(5) { width: 60px; height: 60px; top: 40%; left: 40%; animation-delay: 3s; background: rgba(255,255,255,0.03); }

@keyframes headerFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(15px, -15px) rotate(5deg); }
    66% { transform: translate(-10px, 10px) rotate(-3deg); }
}

/* ECG line in page header */
.header-ecg {
    position: absolute;
    bottom: 60px;
    left: 0;
    width: 200%;
    height: 40px;
    opacity: 0.08;
    animation: ecgScroll 4s linear infinite;
}

/* ==================== HOME - ABOUT PREVIEW ==================== */
.about-preview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.about-preview-img {
    position: relative;
    border-radius: var(--radius);
    overflow: visible;
}

.about-preview-img img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-preview-img .exp-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 110px;
    height: 110px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: var(--shadow-primary);
    border: 4px solid #fff;
    animation: floatBadge 3s ease-in-out infinite;
}

.about-preview-img .exp-badge strong {
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
}

.about-preview-img .exp-badge span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 2px;
}

/* ==================== HOME - FEATURED DOCTORS ==================== */
.featured-doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* ==================== HOME - GALLERY/FACILITIES ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 220px 220px;
    gap: 16px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    color: #fff;
    opacity: 0;
    transition: 0.3s ease;
}

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

.gallery-overlay span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.gallery-overlay h4 {
    font-size: 15px;
    font-weight: 600;
    margin-top: 2px;
}

/* ==================== HOME - PARTNERS MARQUEE ==================== */
.partners-section {
    padding: 50px 0;
    overflow: hidden;
    background: var(--bg-section);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.partners-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.4;
    white-space: nowrap;
    transition: 0.3s ease;
    user-select: none;
}

.partner-logo:hover { opacity: 0.7; }

.partner-logo i { font-size: 28px; color: var(--primary); opacity: 0.5; }

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .about-preview-grid { grid-template-columns: 1fr; }
    .about-preview-img .exp-badge { bottom: -15px; right: 10px; width: 90px; height: 90px; }
    .about-preview-img .exp-badge strong { font-size: 22px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: 180px 180px 180px; }
    .featured-doctors-grid { grid-template-columns: repeat(2, 1fr); }
    .page-header { padding: 130px 0 70px; }
}

@media (max-width: 480px) {
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .featured-doctors-grid { grid-template-columns: 1fr; }
}

/* ==================== HERO SECTION (HOME) ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 100px 24px 60px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdfa 100%);
}

.hero-bg-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 55%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, transparent 80%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.4) 0%, transparent 80%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(2,132,199,0.1);
    border: 1px solid rgba(2,132,199,0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(36px, 5.5vw, 58px);
    font-weight: 900;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 20px;
}

.typing-cursor {
    color: var(--primary);
    animation: blink 0.8s infinite;
    font-weight: 300;
}

@keyframes blink { 50% { opacity: 0; } }

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn {
    padding: 14px 30px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(2,132,199,0.35);
}

.btn-outline {
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: var(--bg-alt);
    transform: translateY(-2px);
}

.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.hero-stats {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.stat:hover {
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.stat-icon {
    width: 44px;
    height: 44px;
    background: var(--bg-alt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text);
}

.stat-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
}

/* ==================== SECTION COMMON ==================== */
section { padding: 80px 0; }

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 18px;
    background: var(--bg-alt);
    border: 1px solid rgba(2,132,199,0.15);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text);
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.bg-alt { background: var(--bg-section); }

/* ==================== SERVICES CARDS ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.service-card:hover::after { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--bg-alt);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon-wrap {
    background: var(--gradient);
    color: #fff;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link:hover { gap: 12px; }

/* ==================== IMAGE TEXT SECTION ==================== */
.img-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.img-text-grid.reverse { direction: rtl; }
.img-text-grid.reverse > * { direction: ltr; }

.section-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.section-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.section-image .floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    animation: floatBadge 3s ease-in-out infinite;
}

.floating-badge i { color: var(--primary); font-size: 18px; }
.floating-badge.badge-1 { top: 20px; right: -15px; }
.floating-badge.badge-2 { bottom: 20px; left: -15px; animation-delay: 1.5s; }

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.text-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.3;
}

.text-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 15px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-item i {
    width: 22px;
    height: 22px;
    background: rgba(5,150,105,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--accent);
    margin-top: 3px;
    flex-shrink: 0;
}

.feature-item span {
    font-size: 14px;
    color: var(--text-body);
}

/* ==================== COUNTER / STATS STRIP ==================== */
.stats-strip {
    background: var(--gradient);
    padding: 48px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.strip-stat i {
    font-size: 32px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
}

.strip-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
}

.strip-stat span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    margin-top: 4px;
}

/* ==================== DOCTORS CARDS ==================== */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-align: center;
}

.doctor-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.doctor-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.doctor-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.doctor-card:hover .doctor-img img { transform: scale(1.05); }

.doctor-status {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent);
}

.status-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(5,150,105,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(5,150,105,0); }
}

.doctor-info {
    padding: 20px;
}

.doctor-info h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
}

.doctor-specialty {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}

.doctor-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.doctor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 12px;
    color: #f59e0b;
}

.doctor-rating span {
    color: var(--text-muted);
    margin-left: 4px;
    font-weight: 600;
}

.doctor-socials {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
}

.doctor-socials a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--text-muted);
    transition: var(--transition);
}

.doctor-socials a:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-slider { position: relative; overflow: hidden; }

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.testimonial-card .quote-icon {
    font-size: 36px;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 16px;
}

.testimonial-card .stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    color: #f59e0b;
    font-size: 16px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    font-size: 16px;
    color: var(--text-body);
    line-height: 1.8;
    font-style: italic;
    max-width: 650px;
    margin: 0 auto 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author strong {
    display: block;
    font-size: 15px;
    color: var(--text);
}

.testimonial-author span {
    font-size: 12px;
    color: var(--text-muted);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.testimonial-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dots .dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ==================== CONTACT ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.contact-card:hover {
    box-shadow: var(--shadow);
    transform: translateX(6px);
    border-color: transparent;
}

.contact-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.contact-icon.emergency {
    background: linear-gradient(135deg, #ef4444, #f87171);
    animation: emergPulse 1.5s infinite;
}

@keyframes emergPulse {
    50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
}

.contact-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.contact-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.emergency-banner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 12px;
    margin-top: 10px;
}

.emergency-banner i {
    font-size: 22px;
    color: var(--red);
    animation: emergIcon 1s infinite;
}

@keyframes emergIcon {
    50% { transform: scale(1.15); }
}

.emergency-banner strong { display: block; color: var(--red); font-size: 13px; }
.emergency-banner p { font-size: 12px; color: var(--text-muted); }

.contact-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-sm);
}

.contact-form h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form h3 i { color: var(--primary); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    color: var(--text);
    background: var(--bg-section);
    border: 1px solid var(--border);
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(2,132,199,0.1);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 15px;
    padding: 14px;
}

/* ==================== WHY CHOOSE US ==================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 32px 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.why-card .icon-circle {
    width: 70px;
    height: 70px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
}

.why-card:hover .icon-circle {
    background: var(--gradient);
    color: #fff;
    transform: scale(1.1);
}

.why-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.why-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
    background: var(--gradient);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 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='%23ffffff' 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");
}

.cta-section h2 {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
}

.cta-section p {
    font-size: 16px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 28px;
    position: relative;
}

.cta-section .btn { position: relative; }

/* ==================== DEPT TABS ==================== */
.dept-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.dept-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text-muted);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.dept-tab:hover, .dept-tab.active {
    background: var(--gradient);
    border-color: transparent;
    color: #fff;
}

.dept-panel { display: none; animation: fadePanel 0.4s ease; }
.dept-panel.active { display: block; }

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

.dept-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.dept-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dept-info h3 i { color: var(--primary); }

.dept-info > p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.dept-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 0;
    font-size: 14px;
    color: var(--text-body);
}

.dept-features li i { color: var(--accent); font-size: 13px; }

.dept-visual { text-align: center; }

.dept-visual img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--text);
    color: rgba(255,255,255,0.7);
    padding-top: 56px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 36px;
    padding-bottom: 36px;
}

.footer .logo { color: #fff; margin-bottom: 4px; }
.footer .logo-icon { color: var(--primary-light); }
.footer .logo-highlight { color: var(--primary-light); }

.footer-about p {
    font-size: 13px;
    line-height: 1.7;
    margin: 14px 0 18px;
}

.footer-socials {
    display: flex;
    gap: 8px;
}

.footer-socials a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    color: #fff;
}

.footer h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
}

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

.footer-links a {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.footer-links a i { font-size: 9px; color: var(--primary-light); }
.footer-links a:hover { color: var(--primary-light); padding-left: 4px; }

.footer-newsletter p { font-size: 13px; margin-bottom: 14px; }

.newsletter-form {
    display: flex;
    margin-bottom: 18px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px 0 0 50px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    outline: none;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }

.newsletter-form button {
    padding: 10px 18px;
    background: var(--gradient);
    border: none;
    border-radius: 0 50px 50px 0;
    color: #fff;
    cursor: pointer;
}

.footer-emergency {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(239,68,68,0.15);
    border: 1px solid rgba(239,68,68,0.2);
    border-radius: 10px;
}

.footer-emergency i { font-size: 18px; color: #f87171; }
.footer-emergency span { font-size: 11px; }
.footer-emergency strong { display: block; font-size: 14px; color: #fff; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 13px;
}

.footer-credit { margin-top: 4px; font-size: 12px; }

.footer-credit strong {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 46px;
    height: 46px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    box-shadow: var(--shadow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-3px); }

/* ==================== ANIMATIONS ==================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Page fade in */
body { animation: pageIn 0.5s ease; }
@keyframes pageIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .services-grid, .why-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .doctors-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .dept-content-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-btn { display: none; }

    /* ===== ADVANCED MOBILE MENU ===== */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(4px);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: 0.4s ease;
    }

    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
        flex-direction: column;
        padding: 0;
        gap: 0;
        transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    /* Mobile Menu Header */
    .nav-links::before {
        content: '';
        display: block;
        width: 100%;
        height: 180px;
        background: var(--gradient);
        position: relative;
        flex-shrink: 0;
    }

    .mobile-menu-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 180px;
        z-index: 2;
    }

    .mobile-menu-header .mobile-logo-icon {
        width: 60px;
        height: 60px;
        background: rgba(255,255,255,0.2);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        color: #fff;
        margin-bottom: 12px;
        animation: heartbeat 1.2s ease-in-out infinite;
    }

    .mobile-menu-header .mobile-logo-text {
        font-size: 20px;
        font-weight: 800;
        color: #fff;
        letter-spacing: 2px;
    }

    .mobile-menu-header .mobile-logo-sub {
        font-size: 11px;
        color: rgba(255,255,255,0.8);
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-top: 4px;
    }

    /* Mobile Nav Links */
    .nav-link {
        padding: 14px 28px;
        width: 100%;
        font-size: 15px;
        font-weight: 500;
        color: var(--text);
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        display: flex;
        align-items: center;
        gap: 12px;
        transition: 0.3s ease;
        opacity: 0;
        transform: translateX(30px);
    }

    .nav-links.active .nav-link {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-links.active li:nth-child(1) .nav-link { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) .nav-link { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) .nav-link { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) .nav-link { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) .nav-link { transition-delay: 0.3s; }

    .nav-link::before {
        content: '';
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--border);
        transition: 0.3s ease;
        flex-shrink: 0;
    }

    .nav-link:hover, .nav-link.active {
        background: var(--bg-alt);
        color: var(--primary);
        padding-left: 34px;
    }

    .nav-link:hover::before, .nav-link.active::before {
        background: var(--primary);
        box-shadow: 0 0 0 3px rgba(2,132,199,0.2);
    }

    /* Mobile Menu Footer */
    .mobile-menu-footer {
        display: flex;
        flex-direction: column;
        padding: 20px 28px;
        margin-top: auto;
    }

    .mobile-menu-cta {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 14px;
        background: var(--gradient);
        color: #fff;
        border-radius: 12px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 18px;
        box-shadow: var(--shadow-primary);
        transition: 0.3s ease;
    }

    .mobile-menu-cta:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 30px rgba(2,132,199,0.35);
    }

    .mobile-menu-contact {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-bottom: 18px;
    }

    .mobile-menu-contact a {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 13px;
        color: var(--text-muted);
        transition: 0.3s ease;
    }

    .mobile-menu-contact a i {
        width: 32px;
        height: 32px;
        background: var(--bg-alt);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        color: var(--primary);
    }

    .mobile-menu-contact a:hover { color: var(--primary); }

    .mobile-menu-socials {
        display: flex;
        justify-content: center;
        gap: 10px;
    }

    .mobile-menu-socials a {
        width: 38px;
        height: 38px;
        background: var(--bg-alt);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        color: var(--text-muted);
        transition: 0.3s ease;
    }

    .mobile-menu-socials a:hover {
        background: var(--primary);
        color: #fff;
        transform: translateY(-2px);
    }

    /* Hamburger Advanced Animation */
    .hamburger {
        width: 36px;
        height: 36px;
        background: var(--bg-alt);
        border-radius: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 0;
        transition: 0.3s ease;
    }

    .hamburger:hover { background: var(--bg-section); }

    .hamburger span {
        width: 20px;
        transition: 0.4s cubic-bezier(0.68, -0.6, 0.32, 1.6);
    }

    .hamburger.active {
        background: rgba(239,68,68,0.1);
    }

    .hamburger.active span {
        background: var(--red);
    }

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

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

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

    /* Rest of 768px responsive */
    .hero { flex-direction: column; text-align: center; padding-top: 120px; }
    .hero-bg-image { display: none; }
    .hero-content { max-width: 100%; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }

    .img-text-grid, .img-text-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
    .services-grid { grid-template-columns: 1fr; }
    .doctors-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Desktop - hide mobile-only elements */
@media (min-width: 769px) {
    .mobile-overlay,
    .mobile-menu-header,
    .mobile-menu-footer { display: none !important; }
    .nav-links::before { display: none !important; }
}

@media (max-width: 480px) {
    .doctors-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-stats { flex-direction: column; }
    .stat { justify-content: center; }
    .stats-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 24px; }
}
