/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0a8f4f;
    --primary-dark: #06723e;
    --primary-light: #e8f5e9;
    --primary-gradient: linear-gradient(135deg, #0a8f4f, #0abf6b);
    --secondary: #0288d1;
    --accent: #ff6f00;
    --text-dark: #2c3e50;
    --text-gray: #5a6d7a;
    --text-light: #95a5a6;
    --bg-light: #f0faf4;
    --bg-white: #ffffff;
    --bg-gray: #f8fafc;
    --shadow-sm: 0 2px 8px rgba(10, 143, 79, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 143, 79, 0.12);
    --shadow-lg: 0 8px 40px rgba(10, 143, 79, 0.15);
    --shadow-hover: 0 12px 50px rgba(10, 143, 79, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

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

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* ===== BACKGROUND ANIMATION ===== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(10, 143, 79, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(10, 143, 79, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(10, 143, 79, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(10, 143, 79, 0.02) 0%, transparent 50%);
    animation: gradientShift 15s ease-in-out infinite alternate;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 0%, 0% 0%, 0% 0%, 0% 0%;
    }
    100% {
        background-position: 10% 5%, -5% 10%, 5% -5%, -5% 5%;
    }
}

.bg-animation .plus {
    position: absolute;
    color: rgba(10, 143, 79, 0.04);
    font-weight: 300;
    animation: floatPlus linear infinite;
    will-change: transform;
}

.bg-animation .plus:nth-child(odd) {
    color: rgba(10, 143, 79, 0.06);
}

.bg-animation .plus:nth-child(3n) {
    color: rgba(2, 136, 209, 0.04);
}

.bg-animation .dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(10, 143, 79, 0.08);
    border-radius: 50%;
    animation: floatDot linear infinite;
}

.bg-animation .cross {
    position: absolute;
    font-size: 1.2rem;
    color: rgba(10, 143, 79, 0.03);
    font-weight: 700;
    animation: floatCross linear infinite;
}

@keyframes floatPlus {
    0% { transform: translateY(100vh) rotate(0deg) scale(1); opacity: 0; }
    5% { opacity: 0.6; }
    10% { opacity: 1; }
    85% { opacity: 1; }
    95% { opacity: 0.6; }
    100% { transform: translateY(-10vh) rotate(720deg) scale(0.8); opacity: 0; }
}

@keyframes floatDot {
    0% { transform: translateY(100vh) scale(1); opacity: 0; }
    10% { opacity: 0.8; }
    80% { opacity: 0.8; }
    100% { transform: translateY(-5vh) scale(0.5); opacity: 0; }
}

@keyframes floatCross {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.5; }
    80% { opacity: 0.5; }
    100% { transform: translateY(-15vh) rotate(360deg); opacity: 0; }
}

/* Light pulse overlay for hero */
.hero::before,
.hero::after {
    animation: heroPulse 6s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* ===== HERO VIDEO BACKGROUND ===== */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.hero::before {
    z-index: 1;
}

.hero .container {
    z-index: 2;
}

/* ===== HEARTBEAT ANIMATION ===== */
.heartbeat-line {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.06;
}

.heartbeat-svg {
    width: 100%;
    height: 100%;
}

.heartbeat-path {
    stroke: var(--primary);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawHeartbeat 3s ease-in-out infinite alternate;
}

@keyframes drawHeartbeat {
    0% { stroke-dashoffset: 2000; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 2000; }
}

/* ===== FLOATING MEDICAL ICONS ===== */
.medical-float {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    opacity: 0.04;
    font-size: 5rem;
    color: var(--primary);
    animation: medicalFloat 20s ease-in-out infinite;
}

.medical-float:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.medical-float:nth-child(2) { top: 70%; left: 85%; animation-delay: -5s; font-size: 4rem; }
.medical-float:nth-child(3) { top: 40%; left: 92%; animation-delay: -10s; font-size: 3rem; }
.medical-float:nth-child(4) { top: 80%; left: 10%; animation-delay: -15s; font-size: 4.5rem; }

@keyframes medicalFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(5deg) scale(1.05); }
    50% { transform: translateY(10px) rotate(-3deg) scale(0.95); }
    75% { transform: translateY(-10px) rotate(3deg) scale(1.02); }
}

/* ===== STICKY HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo svg {
    flex-shrink: 0;
}

.logo .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo .logo-text .top {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

.logo .logo-text .bottom {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

/* ===== NAVIGATION ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 3px;
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 60%;
}

.nav a:hover {
    color: var(--primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-emergency {
    background: linear-gradient(135deg, #e53935, #ff1744);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: pulse-emergency 2s infinite;
}

@keyframes pulse-emergency {
    0%, 100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(229, 57, 53, 0); }
}

.btn-emergency:hover {
    transform: scale(1.05);
}

/* ===== MOBILE MENU TOGGLE ===== */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-gradient);
    color: #fff;
    box-shadow: 0 4px 15px rgba(10, 143, 79, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(10, 143, 79, 0.4);
}

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

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
}

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

/* ===== SECTION STYLING ===== */
.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 4px;
    margin: 12px auto 0;
}

.section-title h2 .plus-med {
    color: var(--primary);
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

/* ===== HERO SECTION ===== */
.hero {
    padding-top: 75px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #e8f5e9 0%, #f0faf4 50%, #e8f5e9 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 143, 79, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(10, 143, 79, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Animated hero gradient overlay */
.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(10, 143, 79, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 30%, rgba(10, 143, 79, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 70%, rgba(10, 143, 79, 0.03) 0%, transparent 50%);
    animation: heroGradShift 12s ease-in-out infinite alternate;
    z-index: 0;
    pointer-events: none;
}

@keyframes heroGradShift {
    0% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
    100% { opacity: 0.6; transform: scale(0.95); }
}

/* Hero pulsing cross */
.hero-pulse-cross {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    z-index: 0;
    pointer-events: none;
    opacity: 0.03;
}

.hero-pulse-cross::before,
.hero-pulse-cross::after {
    content: '+';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 300;
    color: var(--primary);
    animation: pulseCross 4s ease-in-out infinite;
}

.hero-pulse-cross::after {
    animation-delay: 2s;
    font-size: 10rem;
}

@keyframes pulseCross {
    0%, 100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(1.2); opacity: 1; }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content h1 .highlight {
    color: var(--primary);
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 35px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image .plus-decoration {
    position: absolute;
    font-size: 4rem;
    color: rgba(10, 143, 79, 0.1);
}

.hero-image .plus-decoration:nth-child(1) { top: 10%; left: 5%; }
.hero-image .plus-decoration:nth-child(2) { bottom: 15%; right: 5%; }
.hero-image .plus-decoration:nth-child(3) { top: 40%; right: 0; }

.hero-image .hero-illustration {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 6rem;
    opacity: 0.9;
    position: relative;
    overflow: hidden;
}

.hero-image .hero-illustration::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.hero-image .hero-illustration svg {
    width: 200px;
    height: 200px;
    fill: rgba(255,255,255,0.9);
}

/* ===== WELCOME SECTION ===== */
.welcome {
    background: var(--bg-white);
}

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

.welcome-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
}

.welcome-image svg {
    width: 180px;
    height: 180px;
    fill: rgba(255,255,255,0.8);
}

.welcome-image .welcome-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--bg-white);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.welcome-image .welcome-badge h4 {
    color: var(--primary);
    font-size: 1.8rem;
}

.welcome-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.welcome-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.welcome-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 30px;
}

.welcome-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.welcome-features li::before {
    content: '+';
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

/* ===== WHY CHOOSE US ===== */
.why-choose {
    background: var(--bg-light);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(10, 143, 79, 0.06);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

.why-card:hover .icon {
    background: var(--primary);
    color: #fff;
}

.why-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

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

/* ===== FACILITIES ===== */
.facilities {
    background: var(--bg-white);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.facility-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid var(--primary);
    border: 1px solid rgba(10, 143, 79, 0.08);
    border-left-width: 4px;
}

.facility-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.facility-card .icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.facility-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.facility-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ===== EMERGENCY BANNER ===== */
.emergency-banner {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.emergency-banner::before {
    content: '+';
    position: absolute;
    font-size: 20rem;
    color: rgba(255,255,255,0.03);
    top: -30%;
    right: -5%;
    transform: rotate(15deg);
}

.emergency-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.emergency-banner-content h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 15px;
}

.emergency-banner-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.emergency-banner-content .emergency-phone {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

/* ===== COUNTERS ===== */
.counters {
    background: var(--bg-white);
}

.counters-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.counter-card {
    text-align: center;
    padding: 40px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(10, 143, 79, 0.06);
}

.counter-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.counter-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.counter-card .number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-card .label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 4rem;
    color: rgba(10, 143, 79, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.testimonial-card .stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .patient {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-card .patient .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-card .patient .info h5 {
    font-size: 1rem;
    color: var(--text-dark);
}

.testimonial-card .patient .info span {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ===== NEWS SECTION ===== */
.news {
    background: var(--bg-white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.news-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(10, 143, 79, 0.06);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-card .news-image {
    height: 220px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.news-card .news-image svg {
    width: 80px;
    height: 80px;
    fill: rgba(255,255,255,0.6);
}

.news-card .news-date {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.news-card .news-body {
    padding: 25px;
}

.news-card .news-body .tag {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.news-card .news-body h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.news-card .news-body p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.news-card .news-body a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.news-card .news-body a:hover {
    gap: 10px;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '+';
    position: absolute;
    font-size: 25rem;
    color: rgba(255,255,255,0.02);
    top: -40%;
    left: -5%;
    transform: rotate(-20deg);
}

.cta-banner-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-banner-content h2 {
    font-size: 2.4rem;
    color: #fff;
    margin-bottom: 15px;
}

.cta-banner-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== PAGE HEADER ===== */
.page-header {
    padding-top: 135px;
    padding-bottom: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #f0faf4 100%);
    text-align: center;
    position: relative;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
}

.page-header .breadcrumb {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.page-header .breadcrumb a {
    color: var(--primary);
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    background: var(--bg-white);
}

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

.about-image {
    height: 450px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image svg {
    width: 200px;
    height: 200px;
    fill: rgba(255,255,255,0.8);
}

.about-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

/* Vision Mission */
.vision-mission {
    background: var(--bg-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.vm-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 35px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.vm-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.vm-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.vm-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.value-card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== DOCTORS PAGE ===== */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.doctor-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(10, 143, 79, 0.06);
}

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

.doctor-card .doctor-image {
    height: 280px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.doctor-card .doctor-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.doctor-card .doctor-image .overlay-grad {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 143, 79, 0.4) 100%);
    z-index: 1;
}

.doctor-card .doctor-image .doc-placeholder {
    width: 120px;
    height: 120px;
    fill: rgba(255,255,255,0.6);
}

.doctor-card .doctor-image .specialty-badge {
    position: absolute;
    bottom: -15px;
    right: 20px;
    background: var(--primary-gradient);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(10, 143, 79, 0.3);
}

.doctor-card .doctor-info {
    padding: 30px 25px 25px;
}

.doctor-card .doctor-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.doctor-card .doctor-info .designation {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.doctor-card .doctor-info .qualifications {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.doctor-card .doctor-info .timing {
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ===== DEPARTMENTS PAGE ===== */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dept-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 4px solid transparent;
    overflow: hidden;
}

.dept-card:hover {
    border-bottom-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.dept-card .dept-img {
    width: 100%;
    height: 160px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.dept-card .dept-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.8;
}

.dept-card:hover .dept-img img {
    transform: scale(1.08);
}

.dept-card .dept-img .dept-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(10, 143, 79, 0.3));
}

.dept-card .dept-body {
    padding: 25px 25px 35px;
    text-align: center;
}

.dept-card .icon {
    width: 55px;
    height: 55px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.dept-card:hover .icon {
    background: var(--primary);
    color: #fff;
}

.dept-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.dept-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

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

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(10, 143, 79, 0.06);
}

.service-card .service-img {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
}

.service-card .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.75;
}

.service-card:hover .service-img img {
    transform: scale(1.08);
}

.service-card .service-img .service-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(10, 143, 79, 0.25));
}

.service-card .service-body {
    padding: 25px 30px 35px;
    position: relative;
}

.service-card .service-body::before {
    content: '+';
    position: absolute;
    top: -10px;
    right: 15px;
    font-size: 5rem;
    color: rgba(10, 143, 79, 0.05);
    font-weight: 300;
    pointer-events: none;
}

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

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

.service-card h4 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.service-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== AWARDS PAGE ===== */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.award-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(10, 143, 79, 0.06);
}

.award-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.award-card .icon {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 15px;
}

.award-card h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.award-card .year {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    padding: 4px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.award-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* ===== EMERGENCY PAGE ===== */
.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.emergency-contact-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(10, 143, 79, 0.06);
}

.emergency-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.emergency-contact-card .icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.emergency-contact-card .phone {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.emergency-contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.emergency-contact-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ===== APPOINTMENTS PAGE ===== */
.appointment-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 50px;
    box-shadow: var(--shadow-md);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group label .required {
    color: #e53935;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8ecf0;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--bg-gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(10, 143, 79, 0.1);
}

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

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

/* ===== FAQ SECTION ===== */
.faq-section {
    max-width: 800px;
    margin: 50px auto 0;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    border: 1px solid rgba(10, 143, 79, 0.1);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question .toggle {
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question .toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 0 25px 20px;
    max-height: 300px;
}

.faq-answer p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

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

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-info-card {
    background: var(--bg-white);
    border-radius: var(--radius-sm);
    padding: 25px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 1px solid rgba(10, 143, 79, 0.06);
}

.contact-info-card .icon {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.contact-info-card h5 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.whatsapp-btn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 55px;
    height: 55px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

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

/* ===== GALLERY PAGE ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
}

.gallery-item svg {
    width: 80px;
    height: 80px;
    fill: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.gallery-item:hover svg {
    transform: scale(1.2);
}

.gallery-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 20px;
    font-weight: 600;
    font-size: 0.95rem;
}

/* ===== HEALTH RESOURCES ===== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.resource-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 30px 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(10, 143, 79, 0.06);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.resource-card .icon {
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.resource-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.resource-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.resource-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* ===== FOOTER ===== */
.footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.85);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-about .logo {
    margin-bottom: 18px;
}

.footer-about .logo .plus-icon {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
}

.footer-about .logo span {
    color: #fff;
}

.footer-about p {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-about .social-links {
    display: flex;
    gap: 12px;
}

.footer-about .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    transition: var(--transition);
}

.footer-about .social-links a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-3px);
}

.footer h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a::before {
    content: '+';
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-contact li .fc-icon {
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--primary);
}

/* ===== SECTION BACKGROUND ANIMATION ===== */
.section-bg-anim {
    position: relative;
    overflow: hidden;
}

.section-bg-anim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(10, 143, 79, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(10, 143, 79, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(10, 143, 79, 0.02) 0%, transparent 50%);
    animation: sectionBgShift 15s ease-in-out infinite alternate;
}

@keyframes sectionBgShift {
    0% { opacity: 0.5; background-position: 0% 0%, 0% 0%, 0% 0%; }
    100% { opacity: 1; background-position: 5% 5%, -3% 8%, 3% -3%; }
}

.section-bg-anim .container,
.section-bg-anim .section-title {
    position: relative;
    z-index: 1;
}

/* Section floating icons */
.section-float-icon {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    font-size: 4rem;
    color: rgba(10, 143, 79, 0.04);
    font-weight: 300;
    animation: sectionFloat 25s ease-in-out infinite;
}

.section-float-icon:nth-child(1) { top: 5%; left: 3%; animation-delay: 0s; }
.section-float-icon:nth-child(2) { top: 80%; right: 5%; animation-delay: -8s; font-size: 3rem; }
.section-float-icon:nth-child(3) { top: 30%; right: 2%; animation-delay: -16s; font-size: 5rem; }

@keyframes sectionFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.3; }
    33% { transform: translateY(-15px) rotate(5deg) scale(1.05); opacity: 0.6; }
    66% { transform: translateY(10px) rotate(-3deg) scale(0.95); opacity: 0.4; }
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .departments-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .hero .container { grid-template-columns: 1fr; gap: 40px; }
    .hero-content { text-align: center; }
    .hero-content p { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image .hero-illustration { height: 320px; max-width: 400px; }
}

@media (max-width: 768px) {
    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 75px;
        left: 0;
        width: 100%;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        z-index: 999;
        max-height: calc(100vh - 75px);
        overflow-y: auto;
    }

    .nav.open {
        transform: translateY(0);
        opacity: 1;
    }

    .nav a { padding: 14px 16px; width: 100%; border-bottom: 1px solid rgba(10, 143, 79, 0.06); }
    .nav a:last-child { border-bottom: none; }
    .nav a::after { display: none; }

    .header-actions .btn-emergency span { display: none; }

    .hero-content h1 { font-size: 2.2rem; }
    .hero-image .hero-illustration { height: 250px; max-width: 320px; font-size: 4rem; }

    .section-title h2 { font-size: 1.8rem; }

    .welcome-grid { grid-template-columns: 1fr; }
    .welcome-image { height: 280px; }
    .welcome-features { grid-template-columns: 1fr; }

    .why-grid { grid-template-columns: 1fr; }
    .facilities-grid { grid-template-columns: 1fr; }
    .counters-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .doctors-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .awards-grid { grid-template-columns: 1fr; }
    .emergency-contacts { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .resources-grid { grid-template-columns: 1fr; }
    .departments-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .vm-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .contact-info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .appointment-form-wrapper { padding: 30px 20px; }
    .contact-form { padding: 25px; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

    .emergency-banner-content h2 { font-size: 1.8rem; }
    .emergency-banner-content .emergency-phone { font-size: 1.8rem; }
    .cta-banner-content h2 { font-size: 1.8rem; }

    .page-header { padding-top: 115px; padding-bottom: 40px; }
    .page-header h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .counters-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; }
    .counter-card .number { font-size: 2.2rem; }

    .btn { padding: 12px 24px; font-size: 0.9rem; }
    .section { padding: 60px 0; }
}
