/* ==========================================
   DESIGN SYSTEM & CSS CUSTOM PROPERTIES
   ========================================== */
:root {
    /* Color Palette */
    --primary-color: #061d33;       /* Deep rich navy */
    --primary-light: #0a3154;
    --primary-dark: #030f1c;
    --secondary-color: #008bf8;     /* Vibrant corporate blue */
    --secondary-rgb: 0, 139, 248;
    --accent-color: #d1122c;        /* High-contrast emergency red */
    
    /* Neutral Colors */
    --text-main: #1f2d3d;           /* Deep dark slate */
    --text-muted: #6b7c93;          /* Medium slate */
    --bg-light: #f5f8fc;            /* Soft blue-tinted white */
    --bg-white: #ffffff;
    --bg-dark: #071424;             /* Very dark navy for footer */
    
    /* Typography */
    --font-primary: 'Outfit', sans-serif;
    
    /* Spacing & Layout */
    --container-width: 1240px;
    --section-padding: 90px;
    
    /* Shadows */
    --shadow-sm: 0 4px 10px rgba(6, 29, 51, 0.04);
    --shadow-md: 0 12px 30px rgba(6, 29, 51, 0.06);
    --shadow-lg: 0 24px 50px rgba(6, 29, 51, 0.1);
    --shadow-glass: 0 10px 35px rgba(6, 29, 51, 0.12);
    
    /* Transitions & Radii */
    --radius-sm: 10px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-pill: 50px;
    --transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

ul {
    list-style: none;
}

/* ==========================================
   REUSABLE COMPONENTS & UTILITIES
   ========================================== */
.section-padding {
    padding: var(--section-padding) 0;
}

.grid {
    display: grid;
    gap: 40px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}


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

/* Section Title System */
.section-tag {
    display: inline-block;
    background: rgba(0, 139, 248, 0.08);
    color: var(--secondary-color);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.section-tag.tag-center {
    margin: 0 auto 18px auto;
}

.section-tag.tag-white {
    background: rgba(255, 255, 255, 0.15);
    color: var(--bg-white);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.25;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.text-white, .section-title.text-white, h1.text-white, h2.text-white, h3.text-white {
    color: #ffffff !important;
}

.text-white-muted, .section-desc.text-white-muted, p.text-white-muted {
    color: rgba(255, 255, 255, 0.85) !important;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.65;
}


/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-pill {
    border-radius: var(--radius-pill);
    padding: 12px 28px;
}

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

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 50%;
    transition: var(--transition);
}

.btn-primary:hover .btn-icon {
    background: var(--secondary-color);
    color: var(--bg-white);
}

.btn-dark {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-dark:hover {
    background: var(--primary-dark);
}

.btn-secondary-outline {
    background: transparent;
    color: var(--bg-white);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

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

.btn-secondary-outline:hover .btn-icon {
    background: var(--primary-color);
    color: var(--bg-white);
}

/* ==========================================
   HEADER SECTION
   ========================================== */
/* ==========================================
   HEADER — PREMIUM V1
   ========================================== */

@keyframes headerAccentSlide {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

.site-header {
    position: relative;
    z-index: 200;
}

/* Top Utility Bar */
.top-bar {
    background: linear-gradient(90deg, #020d1a 0%, #041525 50%, #020d1a 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 9px 0;
    font-size: 0.8rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 139, 248, 0.12);
    letter-spacing: 0.01em;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 22px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.emergency-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ff4d4d;
    font-weight: 700;
    letter-spacing: 0.02em;
    background: rgba(209, 18, 44, 0.1);
    border: 1px solid rgba(209, 18, 44, 0.25);
    padding: 3px 12px 3px 8px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.emergency-link:hover {
    background: rgba(209, 18, 44, 0.18);
    border-color: rgba(209, 18, 44, 0.45);
    color: #ff6666;
}

.emergency-badge {
    width: 8px;
    height: 8px;
    background: #ff3b30;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 6px rgba(255, 59, 48, 0.6);
}

.lang-btn {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
    text-decoration: none;
}

.lang-btn:hover {
    background: rgba(255,255,255,0.14);
    color: #ffffff;
    border-color: rgba(255,255,255,0.28);
}

.divider {
    opacity: 0.2;
    font-size: 1rem;
}

/* ── Main Navigation Bar ── */
.main-navbar {
    background: var(--bg-white);
    padding: 0;
    box-shadow: 0 4px 32px rgba(6, 29, 51, 0.07);
    transition: var(--transition);
    position: relative;
}

.main-navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--secondary-color), transparent);
    opacity: 0.4;
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.logo-area { text-decoration: none; }

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.logo-wrapper:hover { opacity: 0.88; }

.hospital-logo {
    filter: drop-shadow(0 4px 12px rgba(0,139,248,0.2));
    transition: var(--transition);
}

.logo-wrapper:hover .hospital-logo {
    filter: drop-shadow(0 6px 18px rgba(0,139,248,0.35));
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.logo-title {
    font-size: 1.65rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -1px;
}

.logo-subtitle {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    color: var(--primary-color);
    opacity: 0.85;
}

.logo-tagline {
    font-size: 0.56rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Nav Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--primary-color);
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 4px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--secondary-color);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-item:hover,
.nav-item.active {
    color: var(--secondary-color);
    background: rgba(0, 139, 248, 0.05);
}

.nav-item.active::after,
.nav-item:hover::after {
    transform: scaleX(1);
}

/* Dark Header Navbar */
.main-navbar.dark-header {
    background: var(--primary-color);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.main-navbar.dark-header::after {
    background: linear-gradient(90deg, transparent, rgba(0, 139, 248, 0.5), transparent);
    opacity: 1;
}

.main-navbar.dark-header .logo-title  { color: #ffffff; }
.main-navbar.dark-header .logo-subtitle { color: rgba(255,255,255,0.82); }
.main-navbar.dark-header .logo-tagline  { color: rgba(255,255,255,0.45); }

.main-navbar.dark-header .hospital-logo circle { stroke: rgba(255,255,255,0.7); }
.main-navbar.dark-header .hospital-logo path   { stroke: #ffffff; }

.main-navbar.dark-header .nav-item {
    color: rgba(255, 255, 255, 0.8);
}
.main-navbar.dark-header .nav-item:hover,
.main-navbar.dark-header .nav-item.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}
.main-navbar.dark-header .nav-item::after {
    background: var(--secondary-color);
}
.main-navbar.dark-header .nav-item svg { color: rgba(255,255,255,0.7); }
.main-navbar.dark-header .menu-toggle span { background: #ffffff; }

.nav-item .chevron { transition: var(--transition); }
.nav-item:hover .chevron { transform: translateY(2px); }

/* CTA Button */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn.btn-primary.btn-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #0069cc 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 11px 24px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 22px rgba(0, 139, 248, 0.38);
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.btn.btn-primary.btn-pill:hover {
    background: linear-gradient(135deg, #0076d6 0%, #0058b0 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 139, 248, 0.52);
    color: #ffffff;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(to right, rgba(4, 18, 33, 0.96) 38%, rgba(4, 18, 33, 0.7) 65%, rgba(4, 18, 33, 0.2) 100%), url('assets/hero_doctors.png');
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    padding: 100px 0 185px 0;
    position: relative;
    overflow: visible;
}

.hero-grid {
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 620px;
    width: 100%;
}


.hero-search-wrapper {
    margin-bottom: 44px;
}

.hero-search-form {
    display: flex;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px;
    border-radius: var(--radius-pill);
    box-shadow: 0 12px 35px rgba(4, 18, 33, 0.3);
    max-width: 480px;
}

.search-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-grow: 1;
    padding-left: 16px;
}

.search-icon {
    color: rgba(255, 255, 255, 0.5);
}

.hero-search-form input {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 500;
    background: transparent;
    color: #ffffff;
}

.hero-search-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.hero-search-form .btn-dark {
    border-radius: var(--radius-pill);
    padding: 10px 26px;
    background: var(--secondary-color);
    color: #ffffff;
    border: none;
    cursor: pointer;
    font-weight: 600;
}

.hero-search-form .btn-dark:hover {
    background: #0076d6;
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 540px;
    line-height: 1.65;
}


.hero-visual {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.hero-image-container::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: radial-gradient(circle at 50% 50%, rgba(6, 29, 51, 0) 30%, var(--primary-color) 88%);
    pointer-events: none;
    transition: var(--transition);
}

.hero-image-container:hover::after {
    background: radial-gradient(circle at 50% 50%, rgba(6, 29, 51, 0) 35%, var(--primary-color) 85%);
}



.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: var(--transition);
}

.hero-image-container:hover .hero-image {
    transform: scale(1.04);
}

/* Glassmorphism Panel at bottom of Hero */
.quick-links-container {
    position: absolute;
    bottom: -64px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 100%;
}

.quick-links-panel {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    padding: 16px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quick-link-card:hover {
    background: var(--bg-white);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.card-icon-wrapper {
    background: rgba(0, 139, 248, 0.08);
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.quick-link-card:hover .card-icon-wrapper {
    background: var(--primary-color);
}

.quick-link-card:hover .card-icon-wrapper svg {
    stroke: var(--bg-white);
}

.card-text-content {
    flex-grow: 1;
}

.card-text-content h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.card-text-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.35;
}

.card-arrow {
    width: 32px;
    height: 32px;
    background: var(--bg-white);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.quick-link-card:hover .card-arrow {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateX(4px);
}

/* Sticky Emergency Button */
.sticky-side-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
}

.floating-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: var(--accent-color);
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(209, 18, 44, 0.4);
    transition: var(--transition);
}

.floating-action:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 24px rgba(209, 18, 44, 0.5);
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-section {
    background: var(--bg-white);
    padding-top: 150px; /* Space for hero panel overlay */
}

.about-visual {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: visible;
}

.about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Floating Badge Card on Image */
.about-glass-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-glass);
    padding: 24px;
    width: 260px;
    transition: var(--transition);
}

.about-image-container:hover .about-glass-badge {
    transform: translateY(-5px);
}

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

.badge-title {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
}

.badge-subtitle {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
}

.badge-divider {
    height: 1.5px;
    background: rgba(6, 29, 51, 0.08);
    margin: 16px 0;
}

.badge-body {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.since-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    font-weight: 700;
}

.since-date {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.badge-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ==========================================
   STATISTICS SECTION
   ========================================== */
.stats-section {
    background: var(--bg-light);
    padding: 60px 0;
    border-top: 1px solid rgba(6, 29, 51, 0.03);
    border-bottom: 1px solid rgba(6, 29, 51, 0.03);
}

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

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: clamp(2.25rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* ==========================================
   SPECIALTIES SECTION (DEPARTMENTS)
   ========================================== */
.specialties-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.specialties-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.specialties-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.specialty-card {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.specialty-card:hover {
    background: var(--bg-white);
    color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--bg-white);
}

.specialty-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: var(--transition);
}

.specialty-card:hover .specialty-icon {
    background: rgba(0, 139, 248, 0.08);
    color: var(--secondary-color);
}

.specialty-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.specialty-card p {
    font-size: 0.85rem;
    opacity: 0.8;
}

.specialty-card:hover p {
    color: var(--text-muted);
}

.specialties-action {
    text-align: center;
}

/* ==========================================
   MEDICAL TEAM (DOCTORS)
   ========================================== */
.team-section {
    background: var(--bg-white);
}

.team-header-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: flex-end;
}

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

.doctor-card {
    background: #edf5ff;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.doctor-image-wrapper {
    width: 100%;
    height: 330px;
    overflow: hidden;
    background: #d4e7ff;
}

.doctor-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

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

.doctor-info-box {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: -30px 16px 16px 16px;
    position: relative;
    z-index: 5;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(6, 29, 51, 0.04);
}

.info-content h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.info-content p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.doctor-arrow {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.doctor-card:hover .doctor-arrow {
    background: var(--primary-color);
    color: var(--bg-white);
}

.team-action {
    text-align: center;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(6, 29, 51, 0.55) 0%, rgba(0, 139, 248, 0.25) 100%);
}

.cta-container {
    position: relative;
    z-index: 5;
}

.cta-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    padding: 48px;
    max-width: 480px;
}

.cta-glass-card h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-glass-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.testimonials-header {
    margin-bottom: 60px;
}

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

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.stars {
    color: #fbbc05;
    font-size: 1.1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(6, 29, 51, 0.05);
    padding-top: 18px;
}

.patient-name {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ==========================================
   ACCREDITATIONS SECTION
   ========================================== */
.accreditations-section {
    background: var(--bg-white);
}

.accreditations-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.accreditation-card {
    background: var(--bg-white);
    border: 1px solid rgba(6, 29, 51, 0.06);
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.accreditation-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.accreditation-icon-wrapper {
    width: 80px;
    height: 80px;
    background: #edf5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.accreditation-card:hover .accreditation-icon-wrapper {
    background: var(--primary-color);
}

.accreditation-card:hover .accreditation-icon-wrapper svg {
    stroke: var(--bg-white);
}

.accreditation-card h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
    min-height: 40px;
    display: flex;
    align-items: center;
}

.accreditation-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.45;
}

.since-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

/* ==========================================
   FOOTER SECTION — PREMIUM V1
   ========================================== */
.site-footer {
    background: #020b14;
    color: rgba(255, 255, 255, 0.72);
    padding: 85px 0 0 0;
    border-top: 2px solid rgba(0, 139, 248, 0.15);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 139, 248, 0.4), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.8fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.logo-area.light .logo-title {
    color: var(--bg-white);
}

.footer-about {
    font-size: 0.88rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.65);
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

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

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.social-btn:hover {
    background: linear-gradient(135deg, var(--secondary-color), #0069cc);
    color: #ffffff;
    border-color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 139, 248, 0.3);
}

.footer-col-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--bg-white);
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25px;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--teal));
    border-radius: 1px;
}

.footer-link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-list a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.footer-link-list a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 14px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-address p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-address svg {
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-emergency-block {
    margin-top: 5px;
}

.emergency-cta {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: rgba(209, 18, 44, 0.08);
    border: 1px solid rgba(209, 18, 44, 0.25);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition);
}

.emergency-cta:hover {
    background: rgba(209, 18, 44, 0.16);
    border-color: rgba(209, 18, 44, 0.45);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(209, 18, 44, 0.25);
}

.emergency-dot {
    width: 10px;
    height: 10px;
    background: #d1122c;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 8px #d1122c;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 24px 0;
    margin-top: 40px;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition);
}

.footer-legal-links a:hover {
    color: #ffffff;
}

.footer-links a {
    font-size: 0.9rem;
    font-weight: 500;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.footer-contact svg {
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    font-size: 0.85rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ==========================================
   ANIMATIONS
   ========================================== */
@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(255, 59, 48, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
    :root {
        --section-padding: 70px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-search-form {
        margin: 0 auto 30px auto;
    }

    .hero-visual {
        justify-content: center;
    }

    .quick-links-container {
        position: relative;
        bottom: 0;
        transform: none;
        left: 0;
        margin-top: 40px;
        padding: 0;
    }

    .quick-links-panel {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding-top: var(--section-padding);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .specialties-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile & Small Tablets (768px) */
@media (max-width: 768px) {
    .nav-menu-wrapper {
        position: fixed;
        top: 104px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 104px);
        background: var(--bg-white);
        z-index: 99;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu-wrapper.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        padding: 40px 24px;
        align-items: flex-start;
        gap: 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

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

    .about-visual {
        margin-bottom: 40px;
    }

    .about-glass-badge {
        right: 0;
        bottom: -20px;
    }

    .specialties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-header-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta-glass-card {
        padding: 32px;
        margin: 0 16px;
    }

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

/* Small Mobile (480px) */
@media (max-width: 480px) {
    .top-bar-left {
        display: none;
    }

    .top-bar-content {
        justify-content: center;
    }

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

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

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

/* ==========================================
   FIND A DOCTOR PAGE CUSTOM STYLES
   ========================================== */
.search-hero-section {
    background-size: cover;
    background-position: center;
    padding: 100px 0 120px 0;
    position: relative;
}

.search-hero-content {
    max-width: 1000px;
}

/* Filter bar */
.filter-bar-wrapper {
    margin-top: 36px;
    background: var(--bg-white);
    padding: 8px 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.doctor-filter-form {
    display: flex;
    align-items: center;
    width: 100%;
    gap: 16px;
}

.filter-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    position: relative;
}

.filter-input-group.search-input {
    flex: 1.5;
    padding-left: 12px;
}

.filter-input-group input {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
}

.filter-divider {
    width: 1px;
    height: 32px;
    background: rgba(6, 29, 51, 0.08);
}

.filter-input-group.select-input {
    cursor: pointer;
}

.filter-input-group.select-input select {
    border: none;
    outline: none;
    width: 100%;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.92rem;
    background: transparent;
    appearance: none;
    padding-right: 24px;
    color: var(--text-main);
    cursor: pointer;
}

.chevron-select {
    position: absolute;
    right: 8px;
    pointer-events: none;
    color: var(--text-muted);
}

.filter-submit-btn {
    border-radius: var(--radius-sm);
    padding: 12px 36px;
    flex-shrink: 0;
}

/* Listings */
.doctor-listing-section {
    background: #f4f8fc;
}

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

.directory-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.04);
    transition: var(--transition);
    border: 1px solid rgba(6, 29, 51, 0.02);
}

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

.directory-img-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #e6f1fc;
    position: relative;
}

.directory-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.directory-card:hover .directory-img {
    transform: scale(1.04);
}


.directory-info {
    padding: 24px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(52, 168, 83, 0.08);
    color: #34a853;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #34a853;
    border-radius: 50%;
    display: inline-block;
}

.directory-info h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.specialty-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-card-booking {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-size: 0.85rem;
    padding: 10px 18px;
    box-shadow: none;
}

/* Responsive Doctor Listing Page */
@media (max-width: 1024px) {
    .doctor-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .doctor-filter-form {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 8px;
    }
    
    .filter-divider {
        display: none;
    }
    
    .filter-input-group {
        padding: 10px 4px;
        border-bottom: 1px solid rgba(6, 29, 51, 0.06);
    }
    
    .filter-input-group.search-input {
        padding-left: 4px;
    }
    
    .filter-submit-btn {
        width: 100%;
        margin-top: 8px;
    }
}

@media (max-width: 480px) {
    .doctor-listing-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SPECIALTIES PAGE CUSTOM STYLES
   ========================================== */
.departments-directory-section {
    background: #f4f8fc;
}

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

.dept-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.02);
    transition: var(--transition);
}

.dept-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 139, 248, 0.15);
}

.dept-icon-box {
    width: 48px;
    height: 48px;
    background: rgba(0, 139, 248, 0.08);
    color: var(--secondary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.dept-card:hover .dept-icon-box {
    background: var(--primary-color);
    color: var(--bg-white);
}

.dept-info {
    flex-grow: 1;
}

.dept-info h3 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.dept-info p {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dept-arrow {
    width: 32px;
    height: 32px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.dept-card:hover .dept-arrow {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateX(2px);
}

/* Specialties CTA Banner */
.specialty-cta-section {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0;
}

.cta-center-glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    padding: 48px;
    max-width: 680px;
    margin: 0 auto;
}

.cta-center-glass-card h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
    line-height: 1.25;
}

.cta-center-glass-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Responsive Specialties Page */
@media (max-width: 1024px) {
    .departments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-center-glass-card {
        padding: 32px 20px;
    }
    
    .cta-center-glass-card h2 {
        font-size: 1.75rem;
    }
}

/* ==========================================
   CONTACT PAGE CUSTOM STYLES
   ========================================== */
.contact-hero-section {
    background-size: cover;
    background-position: center;
    padding: 110px 0;
    position: relative;
}

.contact-hero-content {
    max-width: 800px;
}

.contact-hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.btn-whatsapp {
    background: #25d366;
    color: var(--bg-white);
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp svg {
    margin-right: 4px;
}

.btn-emergency-call {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-emergency-call:hover {
    background: #b20d22;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(209, 18, 44, 0.25);
}

/* Form Styles */
.form-container-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 10px;
}

.contact-message-form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, .form-group textarea, .form-group select {
    border: 1.5px solid rgba(6, 29, 51, 0.06);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    outline: none;
    background: #f8fafc;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--secondary-color);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(0, 139, 248, 0.1);
}

.form-select-wrapper {
    position: relative;
}

.form-select-wrapper select {
    width: 100%;
    appearance: none;
    padding-right: 36px;
    cursor: pointer;
}

.form-select-wrapper::after {
    content: '';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid var(--text-muted);
    pointer-events: none;
}

.form-submit-btn {
    width: 100%;
    margin-top: 10px;
    box-shadow: none;
}

.contact-side-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    box-shadow: var(--shadow-sm);
}

.contact-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Map Card Section */
.contact-map-section {
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
}

.map-card-container {
    display: flex;
    justify-content: center;
}

.map-details-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    padding: 40px;
    max-width: 480px;
    text-align: center;
    width: 100%;
}

.map-card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 16px;
}

.map-card-header svg {
    color: var(--primary-color);
}

.map-details-card h2 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.map-details-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.5;
}

.map-card-link {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.map-card-link:hover {
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

/* FAQ Accordion */
.faq-accordion-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-accordion-item {
    background: #edf5ff;
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: transparent;
    border: none;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    text-align: left;
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--secondary-color);
    transition: var(--transition);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-panel p {
    padding: 0 24px 20px 24px;
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-support-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-support-card {
    background: var(--bg-white);
    border: 1px solid rgba(6, 29, 51, 0.06);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-support-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 139, 248, 0.15);
}

.faq-support-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.faq-support-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
}

.support-card-link {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.support-card-link:hover {
    color: var(--primary-color);
}

/* Responsive Contact Page */
@media (max-width: 991px) {
    .contact-side-image-wrapper {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .contact-hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .faq-support-card {
        padding: 24px;
    }
}

/* ==========================================
   ABOUT PAGE CUSTOM STYLES
   ========================================== */
.about-hero-section {
    background-size: cover;
    background-position: center 20%;
    padding: 120px 0;
    position: relative;
}

.about-hero-content {
    max-width: 800px;
}

/* About Intro Section */
.about-intro-section {
    background: var(--bg-white);
}

.intro-stat-highlight {
    display: flex;
    flex-direction: column;
}

.highlight-number {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: -1.5px;
}

.highlight-label {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.5;
    max-width: 480px;
}

.intro-paragraph {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Feature Columns */
.excellence-section {
    background: #f4f8fc;
}

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

.feature-col-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.02);
    transition: var(--transition);
}

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

.feature-icon-wrapper {
    width: 56px;
    height: 56px;
    background: rgba(0, 139, 248, 0.08);
    color: var(--secondary-color);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    transition: var(--transition);
}

.feature-col-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 14px;
}

.feature-col-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.feature-card-link {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.95rem;
}

/* Highlight Navy Card variation */
.feature-col-card.highlight-navy {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.feature-col-card.highlight-navy h3 {
    color: var(--bg-white);
}

.feature-col-card.highlight-navy p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-col-card.highlight-navy .feature-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
}

.feature-col-card.highlight-navy:hover .feature-icon-wrapper {
    background: var(--secondary-color);
}

/* Who We Are details */
.who-we-are-section {
    background: var(--bg-white);
}

.who-we-are-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.who-we-are-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-details {
    display: flex;
    flex-direction: column;
}

.details-bold-p {
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.65;
    margin-bottom: 20px;
}

.details-normal-p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 16px;
}

/* Responsive About Page */
@media (max-width: 1024px) {
    .features-columns-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .feature-col-card {
        padding: 32px 24px;
    }
}

/* ==========================================
   DOCTOR PROFILE & SPECIALTY DETAILS STYLES
   ========================================== */
.doctor-profile-hero {
    background: linear-gradient(135deg, #f0f7ff 0%, #e0efff 100%);
}

.profile-hero-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 440px;
    width: 100%;
    box-shadow: 0 20px 45px rgba(6, 29, 51, 0.12);
    border: 6px solid #ffffff;
    background: #e6f1fc;
    position: relative;
}

.profile-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: var(--transition);
}

.profile-hero-image-wrapper:hover .profile-hero-img {
    transform: scale(1.03);
}


.profile-hero-summary {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.doctor-name {
    font-size: clamp(2.25rem, 5vw, 3.25rem);
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.15;
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.doctor-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.profile-divider {
    height: 1px;
    background: rgba(6, 29, 51, 0.08);
    margin-bottom: 20px;
}

.doctor-bio {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.doctor-key-details {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-val {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
}

.detail-val a {
    color: var(--secondary-color);
}

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

.profile-book-btn {
    align-self: flex-start;
    box-shadow: none;
}

/* Details grid layout */
.profile-details-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
    align-items: start;
}

.details-card-block {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.02);
    margin-bottom: 24px;
}

.details-card-block h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.details-card-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}

.details-card-block p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.details-card-block p:last-child {
    margin-bottom: 0;
}

/* Bullet Lists */
.profile-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-bullets li {
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
}

.profile-bullets li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -4px;
}

.profile-bullets.grid-bullets {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Sticky Schedule Card */
.schedule-sticky-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: 0 4px 25px rgba(6, 29, 51, 0.04);
    border: 1px solid rgba(6, 29, 51, 0.02);
    position: sticky;
    top: 24px;
}

.schedule-sticky-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

.schedule-divider {
    height: 1.5px;
    background: rgba(6, 29, 51, 0.06);
    margin: 16px 0;
}

.schedule-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.92rem;
}

.schedule-hours .day {
    font-weight: 700;
    color: var(--primary-color);
}

.schedule-hours .time {
    color: var(--text-muted);
    font-weight: 500;
}

.schedule-hours .time.closed {
    color: var(--accent-color);
    font-weight: 700;
}

.schedule-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-top: 16px;
}

.call-clinic-btn {
    width: 100%;
    margin-top: 24px;
    box-shadow: none;
}

/* Department Doctors List */
.dept-doctors-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.dept-doctor-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(6, 29, 51, 0.05);
    background: #f8fafc;
}

.dept-doctor-item:hover {
    background: #edf5ff;
    border-color: rgba(0, 139, 248, 0.2);
}

.dept-doctor-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: #c7e1ff;
    flex-shrink: 0;
}

.dept-doctor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dept-doctor-meta {
    flex-grow: 1;
}

.dept-doctor-meta h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: var(--primary-color);
}

.dept-doctor-meta p {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
}

.dept-doctor-item .arrow-icon {
    font-weight: 800;
    color: var(--secondary-color);
    transition: var(--transition);
}

.dept-doctor-item:hover .arrow-icon {
    transform: translateX(3px);
}

.dept-contact-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dept-contact-phone {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-top: 4px;
}

/* Responsive Profiles */
@media (max-width: 991px) {
    .profile-details-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-sticky-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .profile-bullets.grid-bullets {
        grid-template-columns: 1fr;
    }
    
    .profile-hero-image-wrapper {
        height: 320px;
    }
}

/* ==========================================
   PACKAGES, INSURANCE, EMERGENCY & ADDITIONAL STYLES
   ========================================== */

/* Packages Page */
.packages-tabs-wrapper {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    border: 1.5px solid rgba(6, 29, 51, 0.1);
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover, .tab-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: flex-start;
}

.package-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.05);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

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

.package-card.popular {
    border: 2px solid var(--secondary-color);
    box-shadow: var(--shadow-glass);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--bg-white);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.pack-badge {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    text-transform: uppercase;
}

.package-header-info h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 6px 0 12px 0;
}

.pack-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
}

.package-divider {
    height: 1px;
    background: rgba(6, 29, 51, 0.06);
    margin: 20px 0;
}

.package-inclusions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex-grow: 1;
}

.package-inclusions li {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-left: 22px;
}

.package-inclusions li::before {
    content: '✓';
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.btn-card-booking {
    width: 100%;
    box-shadow: none;
}

/* Insurance Page */
.insurers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insurer-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.04);
    transition: var(--transition);
}

.insurer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 139, 248, 0.2);
}

.insurer-logo-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
}

.insurer-name-logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.insurer-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.coverage-type {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Emergency Page */
.emergency-hero-section {
    background: #041221;
    padding: 120px 0;
    position: relative;
}

.emergency-tag-badge {
    background: rgba(209, 18, 44, 0.15);
    color: #f87171;
    font-size: 0.78rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 16px;
}

.emergency-call-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 480px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.call-card-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.emergency-phone-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-color);
    color: var(--bg-white);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 1.25rem;
    font-weight: 800;
    transition: var(--transition);
}

.emergency-phone-btn:hover {
    background: #b20d22;
    transform: scale(1.03);
    box-shadow: 0 0 25px rgba(209, 18, 44, 0.5);
}

.triage-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.triage-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px 28px;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.04);
}

.triage-card.red-lane {
    border-top: 4px solid var(--accent-color);
}

.triage-card.yellow-lane {
    border-top: 4px solid #f59e0b;
}

.triage-card.green-lane {
    border-top: 4px solid #10b981;
}

.triage-badge {
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.red-lane .triage-badge { color: var(--accent-color); }
.yellow-lane .triage-badge { color: #f59e0b; }
.green-lane .triage-badge { color: #10b981; }

.triage-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.triage-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Patient Guide Table */
.guide-card-block {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 36px;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.04);
}

.guide-card-block h2 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.hours-table th, .hours-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(6, 29, 51, 0.06);
    font-size: 0.9rem;
    text-align: left;
}

.hours-table th {
    background: #f8fafc;
    color: var(--primary-color);
    font-weight: 800;
}

.hours-table td {
    color: var(--text-muted);
}

/* Vacancies */
.vacancies-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vacancy-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 24px 32px;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.04);
    transition: var(--transition);
}

.vacancy-card:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 139, 248, 0.2);
}

.job-dept {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.vacancy-info h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 4px 0;
}

.job-meta {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* News Cards */
.news-article-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.04);
    transition: var(--transition);
}

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

.article-img-box {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.article-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-category {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
}

.article-body {
    padding: 24px;
}

.article-date {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
}

.article-body h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 8px 0;
    line-height: 1.35;
}

.article-body p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.article-link {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: 0.88rem;
}

/* Highlights Bar */
.insurance-highlights-bar {
    padding: 36px 0;
    background: #f4f8fc;
    border-bottom: 1px solid rgba(6, 29, 51, 0.05);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 18px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.04);
    transition: var(--transition);
}

.highlight-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 139, 248, 0.2);
}

.hl-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(0, 139, 248, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.highlight-item:hover .hl-icon {
    background: var(--secondary-color);
}

.highlight-item:hover .hl-icon svg {
    stroke: var(--bg-white);
}

.highlight-item h4 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.highlight-item p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.3;
}

/* Alphabet filter bar */
.alphabet-filter-bar {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.alpha-btn {
    border: 1px solid rgba(6, 29, 51, 0.1);
    background: var(--bg-white);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.alpha-btn:hover, .alpha-btn.active {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.insurer-badge {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 12px;
    background: #edf5ff;
    color: var(--secondary-color);
    border-radius: var(--radius-full);
    margin-top: 12px;
    display: inline-block;
}

/* Process Cards */
.process-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(6, 29, 51, 0.03);
    border: 1px solid rgba(6, 29, 51, 0.04);
    border-top: 4px solid var(--secondary-color);
    transition: var(--transition);
}

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

.process-number {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 14px;
}

.process-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
}


/* Responsive Additional Pages */
@media (max-width: 991px) {
    .packages-grid, .insurers-grid, .triage-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .vacancy-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* ==========================================
   DOCTOR CARD DUAL ACTIONS (VIEW PROFILE & BOOK APPOINTMENT)
   ========================================== */
.doctor-card-actions {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    width: 100%;
}

.btn-card-profile {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--primary-color);
    background: #ffffff;
    border: 1.5px solid rgba(6, 29, 51, 0.2);
    border-radius: var(--radius-pill);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-card-profile:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
}

.btn-card-book {
    flex: 1.35;
    padding: 10px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff !important;
    background: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius-pill);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(6, 29, 51, 0.15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
}

.btn-card-book:hover {
    background: var(--primary-light);
    border-color: var(--primary-light);
    box-shadow: 0 6px 18px rgba(6, 29, 51, 0.25);
    transform: translateY(-2px);
}




/* ==========================================
   MEGA MENU SUBMENU DROPDOWN
   ========================================== */
.megamenu-item {
    position: relative;
}

.megamenu-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 92vw;
    max-width: 1140px;
    background: #061d33;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 60px rgba(4, 18, 33, 0.5);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.megamenu-item:hover .megamenu-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.megamenu-container {
    display: grid;
    grid-template-columns: 2.2fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.megamenu-tag {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

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

.megamenu-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 16px 18px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
}

.megamenu-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.card-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.card-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon-box.pink { background: rgba(236, 72, 153, 0.18); color: #f472b6; }
.card-icon-box.purple { background: rgba(168, 85, 247, 0.18); color: #c084fc; }
.card-icon-box.blue { background: rgba(59, 130, 246, 0.18); color: #60a5fa; }
.card-icon-box.cyan { background: rgba(6, 182, 212, 0.18); color: #22d3ee; }
.card-icon-box.orange { background: rgba(249, 115, 22, 0.18); color: #fb923c; }
.card-icon-box.green { background: rgba(34, 197, 94, 0.18); color: #4ade80; }

.card-title-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
}

.card-title-wrap h4 {
    font-size: 0.92rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.card-title-wrap .arrow {
    color: rgba(255, 255, 255, 0.4);
    transition: var(--transition);
    font-weight: bold;
}

.megamenu-card:hover .card-title-wrap .arrow {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.card-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.35;
    margin-bottom: 12px;
    flex-grow: 1;
}

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

.card-tags span {
    font-size: 0.68rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.85);
    padding: 2px 10px;
    border-radius: var(--radius-full);
}

/* Mega Menu Right Card */
.megamenu-right {
    display: flex;
}

.megamenu-image-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.megamenu-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(4, 18, 33, 0.95));
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.img-card-overlay h4 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.img-card-overlay p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 12px;
}

@media (max-width: 991px) {
    .megamenu-panel {
        display: none;
    }
}








