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

:root {
    --pink-50: #fdf2f8;
    --pink-100: #fce7f3;
    --pink-200: #fbcfe8;
    --pink-300: #f9a8d4;
    --pink-400: #f472b6;
    --pink-500: #ec4899;
    --pink-600: #db2777;
    --pink-700: #be185d;

    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-300: #93c5fd;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --rose-500: #f43f5e;
    --rose-600: #e11d48;

    --green-500: #22c55e;
    --amber-500: #f59e0b;
    --white: #ffffff;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.10);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --max-width: 1240px;
    --header-h: 80px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-h);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; border: none; outline: none; }

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--pink-100);
    color: var(--pink-600);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 16px;
    color: var(--slate-900);
}

.section-header h2 .highlight {
    color: var(--pink-500);
}

.section-header p {
    color: var(--slate-500);
    font-size: 1.1rem;
    line-height: 1.7;
}

.highlight {
    color: var(--pink-500);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary {
    background: linear-gradient(135deg, var(--pink-500), var(--pink-600));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

.btn-emergency {
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(244, 63, 94, 0.35);
    animation: pulse-emergency 2s infinite;
}

@keyframes pulse-emergency {
    0%, 100% { box-shadow: 0 4px 15px rgba(244, 63, 94, 0.35); }
    50% { box-shadow: 0 4px 25px rgba(244, 63, 94, 0.55); }
}

.btn-emergency:hover {
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.6);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--slate-800);
    border-color: var(--white);
}

.btn-text {
    color: var(--pink-500);
    font-weight: 600;
    padding: 0;
}

.btn-text:hover { gap: 12px; }

/* ====== TOP BAR ====== */
.top-bar {
    background: var(--slate-900);
    color: var(--slate-300);
    font-size: 0.8rem;
    padding: 8px 0;
    display: none;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 24px;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-left i {
    color: var(--pink-400);
    font-size: 0.75rem;
}

.top-bar-right {
    display: flex;
    gap: 12px;
}

.top-bar-right a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--slate-300);
    transition: all 0.3s;
}

.top-bar-right a:hover {
    background: var(--pink-500);
    color: var(--white);
}

/* ====== HEADER ====== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--slate-100);
    height: var(--header-h);
    transition: all 0.3s ease;
}

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

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

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

.logo i {
    font-size: 2rem;
    color: var(--pink-500);
}

.logo-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--slate-900);
    line-height: 1.2;
    display: block;
}

.logo-sub {
    font-size: 0.65rem;
    color: var(--slate-400);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: block;
    font-weight: 500;
}

.nav-list {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-600);
    transition: all 0.25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--pink-500);
    background: var(--pink-50);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--slate-800);
    border-radius: 2px;
    transition: all 0.3s;
}

.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);
}

/* ====== HERO ====== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    margin-top: var(--header-h);
    overflow: hidden;
}

.hero-slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(15, 23, 42, 0.85) 0%,
        rgba(15, 23, 42, 0.60) 50%,
        rgba(236, 72, 153, 0.20) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 24px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(236, 72, 153, 0.2);
    backdrop-filter: blur(10px);
    color: var(--pink-200);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    border: 1px solid rgba(236, 72, 153, 0.3);
    margin-bottom: 20px;
    width: fit-content;
}

.hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    max-width: 700px;
}

.hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--pink-300), var(--pink-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: var(--slate-200);
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 32px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

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

.hero-stats div {
    display: flex;
    flex-direction: column;
}

.hero-stats strong {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.hero-stats span {
    font-size: 0.85rem;
    color: var(--slate-300);
}

.hero-controls {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s;
}

.hero-arrow:hover {
    background: var(--pink-500);
    border-color: var(--pink-500);
}

.hero-dots {
    display: flex;
    gap: 6px;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    transition: all 0.3s;
}

.hero-dots button.active {
    background: var(--pink-400);
    width: 28px;
    border-radius: 5px;
}

/* ====== QUICK LINKS ====== */
.quick-links {
    margin-top: -50px;
    position: relative;
    z-index: 10;
    padding-bottom: 40px;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.quick-card {
    background: var(--white);
    padding: 24px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-100);
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--pink-200);
}

.quick-card i {
    font-size: 1.8rem;
    color: var(--pink-500);
    margin-bottom: 12px;
}

.quick-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.quick-card p {
    font-size: 0.75rem;
    color: var(--slate-400);
}

/* ====== ABOUT ====== */
.about {
    background: var(--slate-50);
}

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

/* ====== ABOUT CAROUSEL ====== */
.about-carousel {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 500px;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    flex-shrink: 0;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    color: var(--slate-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    opacity: 0;
}

.about-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }

.carousel-btn:hover {
    background: var(--pink-500);
    color: var(--white);
}

.carousel-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.carousel-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 2px solid rgba(255,255,255,0.8);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dots button.active {
    background: var(--white);
    width: 28px;
    border-radius: 6px;
    border-color: var(--white);
}

.about-exp {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--pink-500);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(236, 72, 153, 0.35);
}

.about-exp-num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-exp-text {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
    opacity: 0.9;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature i {
    width: 48px;
    height: 48px;
    background: var(--pink-50);
    color: var(--pink-500);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9rem;
    color: var(--slate-500);
}

.about-cta {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ====== SPECIALTIES ====== */
.specialties {
    background: var(--white);
}

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

.spec-card {
    background: var(--white);
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--pink-400), var(--pink-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--pink-50), var(--pink-100));
    color: var(--pink-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.spec-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 10px;
}

.spec-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ====== DOCTORS ====== */
.doctors {
    background: var(--slate-50);
}

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

.doctor-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--slate-100);
}

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

.doctor-img {
    height: 280px;
    overflow: hidden;
}

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

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

.doctor-info {
    padding: 20px;
}

.doctor-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 4px;
}

.doctor-title {
    display: block;
    font-size: 0.85rem;
    color: var(--pink-500);
    font-weight: 500;
    margin-bottom: 4px;
}

.doctor-edu {
    display: block;
    font-size: 0.78rem;
    color: var(--slate-400);
    margin-bottom: 4px;
}

.doctor-exp {
    display: block;
    font-size: 0.78rem;
    color: var(--slate-500);
    font-weight: 500;
    margin-bottom: 12px;
}

.doctor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.doctor-tags span {
    background: var(--pink-50);
    color: var(--pink-600);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 500;
}

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

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

.facility-card {
    display: flex;
    gap: 24px;
    background: var(--slate-50);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--slate-100);
}

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

.facility-img {
    width: 240px;
    min-height: 220px;
    flex-shrink: 0;
    overflow: hidden;
}

.facility-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.facility-info {
    padding: 28px 28px 28px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.facility-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 10px;
}

.facility-info p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ====== CTA BANNER ====== */
.cta-banner {
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 50%, rgba(236, 72, 153, 0.15) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.08), transparent);
}

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

.cta-content h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content h2 .highlight {
    background: linear-gradient(135deg, var(--pink-300), var(--pink-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--slate-300);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

.cta-btns .btn-outline {
    border-color: rgba(255,255,255,0.3);
}

.cta-btns .btn-outline:hover {
    background: var(--white);
    color: var(--slate-800);
}

/* ====== TESTIMONIALS ====== */
.testimonials {
    background: var(--slate-50);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

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

.testimonial-card {
    min-width: 100%;
    padding: 0 40px;
    text-align: center;
}

.testimonial-stars {
    color: var(--amber-500);
    font-size: 1rem;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
    justify-content: center;
}

.testimonial-card > p {
    font-size: 1.1rem;
    color: var(--slate-600);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-card > p::before {
    content: '"';
    font-size: 3rem;
    color: var(--pink-300);
    line-height: 0;
    vertical-align: -10px;
    margin-right: 4px;
}

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

.testimonial-author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--pink-200);
}

.testimonial-author strong {
    display: block;
    font-size: 0.95rem;
    color: var(--slate-800);
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--slate-400);
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-controls button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    color: var(--slate-600);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-200);
    transition: all 0.3s;
}

.testimonial-controls button:hover {
    background: var(--pink-500);
    color: var(--white);
    border-color: var(--pink-500);
}

.testi-dots {
    display: flex;
    gap: 6px;
}

.testi-dots button {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--slate-300);
    border: none;
    padding: 0;
    transition: all 0.3s;
}

.testi-dots button.active {
    background: var(--pink-500);
    width: 24px;
    border-radius: 4px;
}

/* ====== BLOGS ====== */
.blogs {
    background: var(--white);
}

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

.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-cat {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--pink-500);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
}

.blog-info {
    padding: 24px;
}

.blog-date {
    font-size: 0.78rem;
    color: var(--slate-400);
    display: block;
    margin-bottom: 8px;
}

.blog-info h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--slate-900);
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-info p {
    font-size: 0.88rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-link {
    color: var(--pink-500);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

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

/* ====== APPOINTMENT ====== */
.appointment {
    background: linear-gradient(135deg, var(--slate-900) 0%, #1e293b 100%);
}

.appointment .section-tag {
    background: rgba(236, 72, 153, 0.2);
    color: var(--pink-300);
}

.appointment .section-header h2 {
    color: var(--white);
}

.appointment .section-header p {
    color: var(--slate-300);
}

.appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.appointment-info h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
}

.appointment-info > p {
    color: var(--slate-300);
    font-size: 1.05rem;
    margin-bottom: 36px;
}

.appointment-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.appointment-contacts > div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.08);
}

.appointment-contacts i {
    font-size: 1.4rem;
    color: var(--pink-400);
    flex-shrink: 0;
}

.appointment-contacts strong {
    display: block;
    color: var(--white);
    font-size: 0.9rem;
}

.appointment-contacts span {
    color: var(--slate-300);
    font-size: 0.85rem;
}

.appointment-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    color: var(--slate-800);
    background: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--pink-400);
    box-shadow: 0 0 0 3px rgba(236, 72, 153, 0.1);
}

.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--slate-400);
    margin-top: 12px;
}

.form-note i {
    color: var(--green-500);
}

/* ====== CONTACT ====== */
.contact {
    background: var(--slate-50);
}

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

.contact-card {
    background: var(--white);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

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

.contact-card i {
    font-size: 2.4rem;
    color: var(--pink-500);
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.8;
}

.contact-card a {
    color: var(--pink-500);
    font-weight: 600;
}

.emergency-card i {
    color: var(--rose-500);
}

/* ====== FOOTER ====== */
.footer {
    background: var(--slate-900);
    color: var(--slate-300);
    padding: 60px 0 0;
}

.footer .logo i {
    color: var(--pink-400);
}

.footer .logo-name {
    color: var(--white);
}

.footer .logo-sub {
    color: var(--slate-400);
}

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

.footer-brand p {
    margin: 20px 0;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--slate-400);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--slate-400);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--pink-500);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: var(--slate-400);
    font-size: 0.88rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--pink-400);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--slate-400);
}

.footer-contact i {
    color: var(--pink-400);
    width: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.82rem;
    color: var(--slate-500);
}

.footer-bottom a {
    color: var(--slate-400);
    transition: color 0.3s;
}

.footer-bottom a:hover {
    color: var(--pink-400);
}

/* ====== BACK TO TOP ====== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--pink-500);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.35);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

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

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
}

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1200px) {
    .doctor-grid { grid-template-columns: repeat(2, 1fr); }
    .specialties-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .appointment-wrapper { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .facility-card { flex-direction: column; }
    .facility-img { width: 100%; height: 200px; }
    .facility-info { padding: 20px; }
    .top-bar { display: none; }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 1px solid var(--slate-100);
        padding: 16px 24px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: var(--shadow-lg);
    }

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

    .nav-list {
        flex-direction: column;
        gap: 0;
    }

    .nav-link {
        display: block;
        padding: 12px 0;
        border-radius: 0;
        border-bottom: 1px solid var(--slate-100);
    }

    .hamburger { display: flex; }

    .header-actions .btn:not(.hamburger) { display: none; }

    .hero { min-height: 500px; max-height: 700px; }
    .hero-content h1 { font-size: clamp(1.5rem, 6vw, 2rem); }
    .hero-stats { gap: 20px; }
    .hero-stats strong { font-size: 1.3rem; }
    .hero-controls { bottom: 20px; right: 20px; }

    .quick-grid { grid-template-columns: repeat(2, 1fr); }
    .quick-links { margin-top: -30px; }

    .section { padding: 60px 0; }
    .section-header { margin-bottom: 36px; }

    .specialties-grid { grid-template-columns: 1fr; }
    .doctor-grid { grid-template-columns: 1fr; }
    .doctor-img { height: 240px; }
    .blog-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }

    .form-row { grid-template-columns: 1fr; }
    .appointment-form { padding: 24px; }

    .facilities-grid { grid-template-columns: 1fr; }

    .about-carousel { height: 350px; }
    .about-exp { width: 90px; height: 90px; bottom: -10px; right: -10px; }
    .about-exp-num { font-size: 1.5rem; }

    .cta-banner { padding: 50px 0; }

    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

    .hero-stats div:last-child { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-stats { gap: 14px; }
    .hero-stats strong { font-size: 1.1rem; }
    .hero-stats span { font-size: 0.7rem; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { width: 100%; justify-content: center; }
    .cta-btns { flex-direction: column; }
    .cta-btns .btn { width: 100%; justify-content: center; }
    .quick-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .quick-card { padding: 16px 12px; }
    .quick-card i { font-size: 1.4rem; }

    .about-carousel { height: 280px; }
    .carousel-btn { opacity: 1; width: 34px; height: 34px; font-size: 0.8rem; }
    .carousel-caption { font-size: 0.8rem; padding: 14px 16px; }
    .carousel-dots { bottom: 48px; }
    .carousel-dots button { width: 8px; height: 8px; }
    .carousel-dots button.active { width: 20px; }
}
