/* ==========================================================================
   NRK SPECIALITY CLINIC - MODERN DESIGN SYSTEM & STYLESHEET
   Location: Pudukkottai, Tamil Nadu
   Colors: Navy Blue (#1B365D), Crimson/Pink Accent (#BE185D), Teal (#0D9488)
   ========================================================================== */

:root {
    /* Brand Palette */
    --primary-900: #0C1A30;
    --primary-800: #142847;
    --primary-700: #1B365D; /* Main Brand Navy */
    --primary-600: #254B80;
    --primary-500: #3364A3;
    --primary-100: #EBF2FA;
    --primary-50:  #F4F7FC;

    /* Accent Crimson (From Logo Spine/Fetus element) */
    --accent-600: #9D174D;
    --accent-500: #BE185D; /* Main Accent Pink/Magenta */
    --accent-400: #E11D48;
    --accent-100: #FCE7F3;
    --accent-50:  #FDF2F8;

    /* Secondary Teal & Green */
    --teal-600: #0F766E;
    --teal-500: #0D9488;
    --teal-50:  #F0FDFA;
    --green-500: #10B981;

    /* Neutral & Backgrounds */
    --neutral-900: #0F172A;
    --neutral-800: #1E293B;
    --neutral-700: #334155;
    --neutral-600: #475569;
    --neutral-500: #64748B;
    --neutral-400: #94A3B8;
    --neutral-300: #CBD5E1;
    --neutral-200: #E2E8F0;
    --neutral-100: #F1F5F9;
    --neutral-50:  #F8FAFC;
    --white:       #FFFFFF;

    /* Status */
    --danger: #DC2626;

    /* Typography */
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Shadows & Glass */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px -5px rgba(27, 54, 93, 0.12), 0 8px 10px -6px rgba(27, 54, 93, 0.08);
    --shadow-elevated: 0 20px 35px -10px rgba(15, 23, 42, 0.2);
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--neutral-50);
    color: var(--neutral-800);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--neutral-900);
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Badges & Text Styling */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.badge-primary {
    background: var(--primary-100);
    color: var(--primary-700);
}

.badge-accent {
    background: var(--accent-100);
    color: var(--accent-500);
}

.badge-emerald {
    background: #D1FAE5;
    color: #047857;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-700) 0%, var(--accent-500) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-badge {
    display: inline-block;
    padding: 0.35rem 1rem;
    border-radius: 9999px;
    background: var(--primary-100);
    color: var(--primary-700);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--neutral-900);
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.75rem;
    }
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--neutral-600);
    max-width: 650px;
    line-height: 1.65;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.925rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
}

.btn-primary {
    background: var(--primary-700);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(27, 54, 93, 0.3);
}

.btn-primary:hover {
    background: var(--primary-800);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 54, 93, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-500) 0%, var(--accent-600) 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(190, 24, 93, 0.35);
}

.btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(190, 24, 93, 0.45);
}

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

.btn-outline:hover {
    background: var(--primary-700);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-light {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: translateY(-2px);
}

.btn-danger {
    background: var(--danger);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(220, 38, 38, 0.35);
}

.btn-danger:hover {
    background: #B91C1C;
    transform: translateY(-2px);
}

/* Header & Navbar */
.header-topbar {
    background: var(--primary-900);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.825rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.topbar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s ease;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 85px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-decoration: none;
}

.navbar-logo-img {
    height: 58px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .navbar-logo-img {
    transform: scale(1.04);
}

.brand-text-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--primary-700);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.brand-text-subtitle {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--accent-500);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    flex-wrap: nowrap;
    white-space: nowrap;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link-item {
    white-space: nowrap;
}

.nav-link-item a, .dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.65rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--neutral-700);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.nav-link-item a:hover, .dropdown-btn:hover, .nav-link-item.active a {
    color: var(--primary-700);
    background: var(--primary-50);
}

/* Nav Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 320px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--neutral-200);
    padding: 0.6rem;
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.25s ease;
    z-index: 120;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    color: var(--neutral-800);
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background: var(--primary-50);
    color: var(--primary-700);
    transform: translateX(3px);
}

.dropdown-icon-box {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.emergency-btn-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1rem;
    border-radius: var(--radius-md);
    background: #FEF2F2;
    border: 1px solid #FCA5A5;
    color: #DC2626;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.emergency-btn-badge:hover {
    background: #FEE2E2;
    transform: scale(1.02);
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background-color: #DC2626;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(220, 38, 38, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--neutral-100);
    color: var(--neutral-800);
    font-size: 1.25rem;
}

@media (min-width: 1024px) {
    .mobile-nav-toggle {
        display: none;
    }
}

/* Mobile Drawer */
.mobile-drawer {
    position: fixed;
    top: 85px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--neutral-200);
    box-shadow: var(--shadow-elevated);
    padding: 1.25rem;
    display: none;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 99;
}

.mobile-drawer.active {
    display: flex;
}

.mobile-drawer-link {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--neutral-800);
}

.mobile-drawer-link:hover {
    background: var(--primary-50);
    color: var(--primary-700);
}

/* Announcement Banner Modal */
.banner-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(12, 26, 48, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.banner-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-modal-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 850px;
    width: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .banner-modal-card {
        grid-template-columns: 1fr 1fr;
    }
}

.banner-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--white);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--neutral-600);
    z-index: 10;
    font-weight: 700;
}

.banner-modal-img-box {
    position: relative;
    min-height: 240px;
    background: var(--primary-900);
}

.banner-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-modal-body {
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-800) 50%, var(--primary-700) 100%);
    color: var(--white);
    padding: 5rem 0 7rem 0;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1.15fr 0.85fr;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1.1rem;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-title-highlight {
    display: block;
    color: #F472B6; /* Bright logo rose */
    background: linear-gradient(135deg, #F472B6 0%, #F43F5E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 580px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-contact-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-card-stack {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    animation: float 6s ease-in-out infinite;
}

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

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-top: 1rem;
}

.hero-stat-mini {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 0.75rem;
    text-align: center;
}

.hero-stat-mini-val {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
}

.hero-stat-mini-lbl {
    font-size: 0.725rem;
    color: rgba(255, 255, 255, 0.75);
}

/* Quick Response Access Bar */
.quick-bar-wrapper {
    position: relative;
    z-index: 20;
    margin-top: -3.5rem;
}

.quick-bar {
    background: var(--neutral-900);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    overflow: hidden;
}

@media (min-width: 640px) {
    .quick-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .quick-bar {
        grid-template-columns: repeat(4, 1fr);
    }
}

.quick-item {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.5rem 1.75rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-decoration: none;
}

.quick-item:hover {
    background: var(--primary-700);
    transform: translateY(-2px);
}

.quick-item-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.quick-item-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.2;
}

.quick-item-sub {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 0.2rem;
}

/* Stats Counter Section */
.stats-section {
    padding: 5rem 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

@media (min-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    background: var(--primary-50);
    border-radius: var(--radius-lg);
    padding: 2.25rem 1.5rem;
    text-align: center;
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: var(--primary-700);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stat-card:hover .stat-number, .stat-card:hover .stat-label {
    color: var(--white);
}

.stat-number {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 2.75rem;
    color: var(--primary-700);
    line-height: 1;
}

.stat-number span {
    color: var(--accent-500);
}

.stat-card:hover .stat-number span {
    color: #F472B6;
}

.stat-label {
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--neutral-600);
    margin-top: 0.65rem;
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: var(--neutral-50);
}

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

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.about-img-box {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
}

.about-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.about-floating-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.about-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.925rem;
    font-weight: 600;
    color: var(--neutral-800);
}

.check-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--accent-100);
    color: var(--accent-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    flex-shrink: 0;
}

/* Specialities Section */
.specialities-section {
    padding: 6rem 0;
    background: var(--white);
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 3rem;
}

.tab-btn {
    padding: 0.65rem 1.4rem;
    border-radius: 9999px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    background: var(--neutral-100);
    color: var(--neutral-700);
    transition: all 0.25s ease;
}

.tab-btn.active, .tab-btn:hover {
    background: var(--primary-700);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(27, 54, 93, 0.25);
}

.specialities-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.75rem;
}

@media (min-width: 640px) {
    .specialities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .specialities-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.spec-card {
    background: var(--white);
    border: 1px solid var(--neutral-200);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spec-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
    border-color: var(--primary-100);
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-700), var(--accent-500));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.spec-card:hover::before {
    opacity: 1;
}

.spec-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.spec-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.65rem;
}

.spec-desc {
    font-size: 0.9rem;
    color: var(--neutral-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.spec-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.5rem;
}

.spec-tag {
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-sm);
    background: var(--neutral-100);
    color: var(--neutral-700);
    font-size: 0.75rem;
    font-weight: 600;
}

.spec-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--primary-700);
    margin-top: auto;
    transition: gap 0.2s ease;
}

.spec-card:hover .spec-link {
    gap: 0.65rem;
    color: var(--accent-500);
}

/* Doctors Section */
.doctors-section {
    padding: 6rem 0;
    background: var(--neutral-50);
}

.doctors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .doctors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.doctor-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
    transition: all 0.35s ease;
}

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

.doctor-img-box {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: var(--neutral-200);
}

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

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

.doctor-dept-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--primary-700);
    color: var(--white);
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.doctor-body {
    padding: 1.5rem;
}

.doctor-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 0.25rem;
}

.doctor-qualification {
    font-size: 0.825rem;
    color: var(--accent-500);
    font-weight: 600;
    margin-bottom: 0.85rem;
}

.doctor-info-list {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--neutral-600);
    margin-bottom: 1.25rem;
}

.doctor-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Facility & Why Choose Us */
.facility-section {
    padding: 6rem 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    background: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    transition: all 0.3s ease;
}

.why-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-100);
    transform: translateY(-4px);
}

.why-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: var(--accent-100);
    color: var(--accent-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* Appointment Section */
.appointment-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-900) 0%, var(--primary-700) 100%);
    color: var(--white);
}

.appointment-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-elevated);
}

@media (min-width: 768px) {
    .appointment-wrapper {
        padding: 4rem 3.5rem;
    }
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--neutral-900);
    font-family: inherit;
    font-size: 0.925rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(190, 24, 93, 0.3);
}

/* Contact & Map Section */
.contact-section {
    padding: 6rem 0;
    background: var(--neutral-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.contact-card-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--neutral-200);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--primary-100);
    color: var(--primary-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--primary-900);
    color: rgba(255, 255, 255, 0.75);
    padding: 5rem 0 2rem 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-brand-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.footer-brand-sub {
    color: #F472B6;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.footer-heading {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.825rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
}

/* Toast Notice */
.toast-notification {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--neutral-900);
    color: var(--white);
    padding: 1.1rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-elevated);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid var(--accent-500);
}

.toast-notification.active {
    transform: translateY(0);
    opacity: 1;
}
