/* ==========================================================================
   SUNRISE HEMATOLOGY & BLOOD CANCER CENTER - STYLESHEET
   Color System: Red (#D71920), Black (#111111), White (#FFFFFF), Light BG (#FAFAFA), Soft Gray (#F5F5F5), Paragraph (#555555), Border (#E5E7EB)
   ========================================================================== */

/* 1. CSS VARIABLES & RESET */
:root {
    --primary: #D71920;
    --primary-dark: #B51218;
    --primary-light: #FFF5F5;
    --secondary: #111111;
    --secondary-hover: #222222;
    --dark-bg: #FAFAFA;
    --accent-gold: #D71920;
    --whatsapp-green: #25D366;
    --text-dark: #111111;
    --text-muted: #555555;
    --text-light: #FFFFFF;
    --bg-light: #FAFAFA;
    --bg-soft: #F5F5F5;
    --bg-white: #ffffff;
    --border-color: #E5E7EB;
    --border-light: #EEEEEE;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    --hover-shadow: 0 15px 35px rgba(215, 25, 32, 0.12);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

ul {
    list-style: none;
}

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

button,
input,
select,
textarea {
    font-family: inherit;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

/* 2. LAYOUT CONTAINERS & TYPOGRAPHY */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.text-white {
    color: var(--bg-white) !important;
}

.text-gray {
    color: #94a3b8 !important;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--primary);
    background: rgba(215, 25, 32, 0.06);
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(215, 25, 32, 0.12);
}

.sub-heading {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.main-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 12px;
    position: relative;
}

.red-line {
    width: 65px;
    height: 4px;
    background: linear-gradient(90deg, #D71920 0%, #B51218 100%);
    border-radius: 4px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(215, 25, 32, 0.3);
}

.center-line {
    margin-left: auto;
    margin-right: auto;
}

.section-intro {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 30px auto;
}

@keyframes floatGlow {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.04);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: #D71920;
    color: #ffffff;
    border: none;
}

.btn-primary:hover {
    background: #B51218;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(215, 25, 32, 0.35);
}

.btn-secondary,
.btn-outline-dark,
.btn-dark {
    background: transparent;
    border: 2px solid #111111;
    color: #111111;
    font-weight: 600;
}

.btn-secondary:hover,
.btn-outline-dark:hover,
.btn-dark:hover {
    background: #111111;
    color: #ffffff;
    transform: translateY(-2px);
}

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

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

.btn-light {
    background: var(--bg-white);
    color: var(--primary);
    font-weight: 700;
}

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

.btn-lg {
    padding: 14px 34px;
    font-size: 1rem;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.btn-block {
    width: 100%;
}

.icon-svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: middle;
}

.icon-svg-lg {
    width: 28px;
    height: 28px;
}

/* 3. TOP HEADER BAR */
.top-header {
    background-color: #F8FAFC;
    color: #555555;
    font-size: 0.85rem;
    padding: 8px 0;
    border-bottom: 1px solid #E5E7EB;
}

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

.top-contact-info {
    display: flex;
    gap: 25px;
}

.top-link {
    display: inline-flex;
    align-items: center;
    color: #555555;
}

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

.top-social-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-whatsapp-link {
    display: flex;
    align-items: center;
    color: var(--whatsapp-green);
    font-weight: 600;
}

.top-whatsapp-link:hover {
    color: #34d399;
}

.btn-top-appointment {
    background: var(--primary);
    color: var(--bg-white);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: background var(--transition-fast);
}

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

/* 4. MAIN NAVBAR */
.main-navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all var(--transition-fast);
}

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

.logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 10px 0;
    position: relative;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background-color: var(--primary);
    transition: width var(--transition-fast);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

/* Dropdown Navigation */
.nav-item.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-caret {
    width: 16px;
    height: 16px;
    margin-left: 4px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: var(--bg-white);
    box-shadow: var(--card-shadow);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-fast);
    z-index: 100;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 500;

}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary);
    padding-left: 24px;
}

.nav-cta-mobile {
    display: none;
}

.mobile-toggle-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 8px;
}

.mobile-toggle-btn .bar {
    width: 26px;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

/* 5. HERO CAROUSEL BANNER */
.hero-slider-section {
    position: relative;
    width: 100%;
    min-height: 520px;
    background-color: var(--dark-bg);
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 520px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
    transform: scale(1.03);
}

.slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.slider-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.65);
}

.slide-overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--bg-white);
    z-index: 10;
    max-width: 850px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.banner-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
}

.slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fdfdfd;
    font-weight: 400;
}

.slide-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: var(--bg-white);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: background var(--transition-fast);
    z-index: 20;
}

.slider-arrow:hover {
    background: var(--primary);
}

.prev-arrow {
    left: 25px;
}

.next-arrow {
    right: 25px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
    background: var(--primary);
    width: 30px;
    border-radius: 10px;
}

/* 6. ABOUT DOCTOR SECTION */
.about-doctor-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.about-doctor-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(215, 25, 32, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatGlow 14s ease-in-out infinite alternate;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.doctor-card-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    background: #fff;
    padding: 12px;
    border: 1px solid rgba(229, 231, 235, 0.9);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-card-frame:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(215, 25, 32, 0.08);
    border-color: rgba(215, 25, 32, 0.2);
}

.doc-portrait {
    width: 100%;
    border-radius: 14px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.doctor-card-frame:hover .doc-portrait {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: -10px;
    background: var(--primary);
    color: var(--bg-white);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(216, 22, 46, 0.4);
    display: flex;
    align-items: center;
    gap: 12px;
}

.experience-badge .years {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.08rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.detail-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.languages-box {
    background: var(--bg-white);
    padding: 18px 24px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.languages-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.lang-tags {
    display: flex;
    gap: 10px;
}

.lang-badge {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 700;
    font-size: 0.85rem;
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(216, 22, 46, 0.2);
}

/* 7. REDESIGNED KNOW YOUR DOCTORS SECTION */
.know-doctors-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background-color: #0c1017;
    background-image: url('https://images.unsplash.com/photo-1579684385127-1ef15d508118?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.know-doctors-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(189, 189, 189, 0.78) 0%, rgba(197, 197, 198, 0.68) 100%);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    pointer-events: none;
    z-index: 0;
}

.know-doctors-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -80px;
    transform: translateY(-50%);
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(215, 25, 32, 0.18) 0%, rgba(215, 25, 32, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.know-doctors-section .container {
    position: relative;
    z-index: 1;
}

.know-doctors-section .section-label {
    background: rgba(255, 255, 255, 0.18);
    color: #FF5258;
    border: 1px solid rgba(215, 25, 32, 0.35);
}

.know-doctors-section .main-heading {
    color: #2e2e2e;
}

.know-doctors-section .section-subheading {
    color: #454545;
}

/* Modern Pill Tabs Navigator */
.doctor-tabs-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin: 40px auto 45px;
}

.doc-tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.doc-tab-btn .tab-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: #FFFFFF;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.doc-tab-btn:hover {
    background: rgba(215, 25, 32, 0.25);
    color: #FFFFFF;
    border-color: #D71920;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(215, 25, 32, 0.25);
}

.doc-tab-btn.active {
    background: #D71920;
    color: #FFFFFF;
    border-color: #D71920;
    box-shadow: 0 10px 25px rgba(215, 25, 32, 0.45);
    transform: translateY(-2px);
}

.doc-tab-btn.active .tab-avatar {
    background: rgba(255, 255, 255, 0.25);
    color: #FFFFFF;
}

/* Premium Doctor Preview Card Container */
.doc-card-container {
    background: #FFFFFF;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 24px;
    box-shadow: 0 25px 65px rgba(0, 0, 0, 0.4), 0 0 50px rgba(215, 25, 32, 0.12);
    padding: 40px;
    transition: all 0.35s ease;
}

.doc-card-container:hover {
    box-shadow: 0 32px 75px rgba(0, 0, 0, 0.48), 0 0 60px rgba(215, 25, 32, 0.2);
    border-color: rgba(215, 25, 32, 0.3);
}

.doc-showcase-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;

}

/* Photo Column */
.doc-photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f8fafc;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

.doc-photo-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top center;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-photo-frame:hover .doc-photo-img {
    transform: scale(1.03);
}

.floating-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    padding: 10px 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.floating-badge .badge-icon {
    font-size: 1.2rem;
}

.floating-badge .badge-info strong {
    font-size: 0.82rem;
    color: #111111;
    display: block;
    line-height: 1.2;
}

.floating-badge .badge-info small {
    font-size: 0.72rem;
    color: #6B7280;
    display: block;
}

/* Info Column */
.doc-info-col {
    display: flex;
    flex-direction: column;
}

.doc-role-badge {
    display: inline-block;
    background: #fff5f5;
    color: #d71920;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid rgba(215, 25, 32, 0.15);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.doc-title-name {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 6px;
    line-height: 1.25;
}

.doc-qualification-line {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.5;
    margin-bottom: 18px;
}

.doc-qualification-line strong {
    color: #111111;
}

/* Quick Stats Chips */
.quick-stats-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.stat-chip {
    background: #f8fafc;
    border: 1px solid #000;
    color: #111111;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Expertise Pills */
.expertise-block {
    margin-bottom: 22px;
}

.expertise-title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6B7280;
    display: block;
    margin-bottom: 8px;
}

.expertise-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.exp-pill {
    background: #fff5f5;
    color: #b30000;
    border: 1px solid rgba(215, 25, 32, 0.15);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.exp-pill:hover {
    background: #d71920;
    color: #ffffff;
    border-color: #d71920;
}

/* OPD & Contact Bar */
.doc-contact-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    background: #f8fafc;
    border: 1px solid #000;
    padding: 14px 18px;
    border-radius: 14px;
    margin-bottom: 24px;
}

.doc-contact-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.doc-contact-meta .meta-icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.doc-contact-meta .meta-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6B7280;
    font-weight: 600;
    display: block;
}

.doc-contact-meta .meta-value {
    font-size: 0.86rem;
    color: #111111;
    font-weight: 700;
    line-height: 1.3;
    display: block;
}

/* Actions Group */
.doc-card-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.doc-card-actions .btn {
    padding: 12px 26px;
    font-size: 0.92rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.doc-card-actions .btn-primary {
    background: linear-gradient(135deg, #d71920 0%, #b30000 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(215, 25, 32, 0.25);
}

.doc-card-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(215, 25, 32, 0.38);
}

.doc-card-actions .btn-outline-primary {
    background: #ffffff;
    color: #d71920;
    border: 2px solid #d71920;
}

.doc-card-actions .btn-outline-primary:hover {
    background: #d71920;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(215, 25, 32, 0.25);
}

/* Animations */
.know-doctors-section .tab-pane {
    display: none;
    animation: docFade 0.4s ease;
}

.know-doctors-section .tab-pane.active {
    display: block;
}

@keyframes docFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

from {
    opacity: 0;
    transform: translateY(12px);
}

to {
    opacity: 1;
    transform: translateY(0);
}

/* Legacy Support */
.why-choose-section {
    padding: 90px 0;
    background-color: var(--secondary);
    color: var(--bg-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: center;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 25px;

}

.tab-btn {
    background: rgba(255, 255, 255, 0.08);
    color: #2b2b2b;
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all var(--transition-fast);
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.18);

}

.tab-btn.active {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(216, 22, 46, 0.4);
}

.tab-content-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 16px;
    min-height: 180px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.419);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-pane.active {
    display: block;
}

.tab-pane p {
    font-size: 1.05rem;
    color: #000;
    line-height: 1.7;
    margin-bottom: 15px;
}

.text-link {
    color: var(--primary-light);
    font-weight: 700;
}

.text-link:hover {
    color: var(--bg-white);
}

.rounded-img {
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

/* 8. COUNTER SECTION */
.counter-section {
    padding: 85px 0;
    background: #FAFAFA;
    position: relative;
}

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

.counter-card {
    background: #ffffff;
    padding: 32px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #EEEEEE;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.counter-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(215, 25, 32, 0.08);
    border-color: rgba(215, 25, 32, 0.25);
}

.counter-icon-wrap {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px auto;
    background: #FFF5F5;
    border: 1px solid rgba(215, 25, 32, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.counter-card:hover .counter-icon-wrap {
    transform: scale(1.1);
}

.counter-icon {
    width: 26px;
    height: 26px;
}

.counter-number {
    display: inline;
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
}

.counter-plus {
    display: inline;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
}

.counter-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 9. AWARDS SECTION */
.award-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.award-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 45px;
    align-items: center;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(216, 22, 46, 0.15);
}

.award-img {
    border-radius: 14px;
    box-shadow: var(--card-shadow);
}

.award-badge-tag {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.award-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.3;
    margin-bottom: 15px;
}

.award-content-col p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 12px;
}

/* 10. TREATMENTS SECTION */
.treatments-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #FAFAFA 0%, #FFF5F5 100%);
    position: relative;
    overflow: hidden;
}

.treatments-section::before {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(215, 25, 32, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.treatment-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid #EEEEEE;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.treatment-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(215, 25, 32, 0.08);
    border-color: rgba(215, 25, 32, 0.25);
}

.treatment-img-wrap {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.treatment-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.treatment-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(216, 22, 46, 0.92);
    color: var(--bg-white);
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.treatment-card:hover .treatment-overlay {
    opacity: 1;
}

.treatment-overlay h5 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.treatment-overlay p {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.treatment-card-body {
    padding: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.treatment-card-body h4 {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    width: 60%;
    color: var(--secondary);
}

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

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

/* 11. REDESIGNED LATEST EDUCATIONAL VIDEOS SECTION */
.videos-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.videos-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(215, 25, 32, 0.04) 0%, rgba(255, 245, 245, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.videos-section::after {
    content: '';
    position: absolute;
    bottom: -120px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(215, 25, 32, 0.03) 0%, rgba(255, 245, 245, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.videos-section .container {
    position: relative;
    z-index: 1;
}

.video-showcase-wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 35px;
    align-items: start;
    margin-top: 40px;
}

/* Featured Video Player Container */
.video-player-container {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.video-player-container:hover {
    box-shadow: 0 25px 50px rgba(215, 25, 32, 0.08);
}

.video-screen {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 18px;
    overflow: hidden;
    background: #111111;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-screen:hover .video-poster {
    transform: scale(1.04);
}

.video-overlay-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Animated Play Button Overlay */
.play-btn-overlay {
    position: absolute;
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #d71920 0%, #b30000 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(215, 25, 32, 0.5);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    animation: playPulse 2.5s infinite;
}

@keyframes playPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(215, 25, 32, 0.5);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(215, 25, 32, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(215, 25, 32, 0);
    }
}

.play-btn-overlay:hover {
    transform: scale(1.12);
    box-shadow: 0 14px 35px rgba(215, 25, 32, 0.65);
}

.play-icon {
    width: 32px;
    height: 32px;
    color: #ffffff;
    margin-left: 4px;
}

/* Featured Video Details Box */
.featured-video-details {
    padding: 20px 8px 8px;
}

.featured-video-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    margin-bottom: 8px;
}

.featured-video-meta {
    font-size: 0.88rem;
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 8px;
}

.featured-video-meta .meta-sep {
    color: #cbd5e1;
}

/* Video Playlist Sidebar */
.video-playlist-sidebar {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.04);
}

.playlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.playlist-header h4 {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
}

.playlist-count {
    font-size: 0.78rem;
    font-weight: 700;
    color: #d71920;
    background: #fff5f5;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid rgba(215, 25, 32, 0.15);
}

.video-thumbs-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.thumb-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 12px;
    border-radius: 16px;
    cursor: pointer;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.thumb-card:hover {
    background: #ffffff;
    border-color: rgba(215, 25, 32, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.thumb-card.active {
    background: #fff5f5;
    border-color: rgba(215, 25, 32, 0.3);
    border-left: 4px solid #d71920;
    box-shadow: 0 8px 20px rgba(215, 25, 32, 0.08);
}

.thumb-img-wrap {
    position: relative;
    width: 110px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.thumb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.thumb-card:hover .thumb-img-wrap img {
    transform: scale(1.06);
}

.mini-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    background: rgba(215, 25, 32, 0.88);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    padding-left: 2px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease;
}

.thumb-card:hover .mini-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: #d71920;
}

.thumb-info {
    display: flex;
    flex-direction: column;
}

.lang-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #d71920;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.thumb-info h4 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.35;
    margin-bottom: 4px;
}

.thumb-desc {
    font-size: 0.78rem;
    color: #6B7280;
    line-height: 1.3;
}

.playlist-cta-box {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.video-cta-btn {
    width: 100%;
    padding: 12px;
    font-size: 0.92rem;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(135deg, #d71920 0%, #b30000 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(215, 25, 32, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(215, 25, 32, 0.38);
}

/* 12. REDESIGNED BLOG & ARTICLES SECTION */
.blog-section {
    padding: 110px 0 100px;
    background: linear-gradient(180deg, #FFF5F5 0%, #FFFFFF 45%, #FAFAFA 100%);
    position: relative;
    overflow: hidden;
}

/* Top-right Blurred Red Glow */
.blog-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -120px;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(215, 25, 32, 0.07) 0%, rgba(255, 245, 245, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatGlow 14s ease-in-out infinite alternate;
}

/* Bottom-left Blurred Red Glow */
.blog-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -120px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(215, 25, 32, 0.05) 0%, rgba(255, 245, 245, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: floatGlow 16s ease-in-out infinite alternate-reverse;
}

/* Low-opacity Medical Cross & Grid Watermark Overlay */
.blog-section-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(rgba(215, 25, 32, 0.04) 1.5px, transparent 1.5px),
        linear-gradient(to right, rgba(215, 25, 32, 0.025) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(215, 25, 32, 0.025) 1px, transparent 1px);
    background-size: 36px 36px, 72px 72px, 72px 72px;
    opacity: 0.05;
    pointer-events: none;
    z-index: 0;
}

.blog-section .container {
    position: relative;
    z-index: 2;
}

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

.blog-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05), 0 2px 6px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(229, 231, 235, 0.9);
    display: flex;
    flex-direction: column;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 48px rgba(215, 25, 32, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: rgba(215, 25, 32, 0.3);
}

/* Image Wrap & Badges */
.blog-img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #f8fafc;
}

.blog-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.blog-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 60%);
    pointer-events: none;
}

.blog-cat-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(215, 25, 32, 0.92);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(215, 25, 32, 0.3);
    z-index: 2;
}

.blog-date-chip {
    position: absolute;
    bottom: 12px;
    left: 14px;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* Blog Content & Typography */
.blog-content {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.76rem;
    color: #6B7280;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-card-title {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.4;
    margin-bottom: 10px;
    transition: color 0.25s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary, #d71920);
}

.blog-card-excerpt {
    font-size: 0.86rem;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 18px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Card Action Footer */
.blog-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f1f5f9;
}

.blog-btn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 700;
    color: var(--primary, #d71920);
    transition: all 0.25s ease;
}

.blog-btn-link .arrow {
    transition: transform 0.25s ease;
}

.blog-btn-link:hover {
    color: #b30000;
}

.blog-btn-link:hover .arrow {
    transform: translateX(4px);
}

/* Bottom CTA */
.blog-bottom-cta {
    margin-top: 45px;
}

.blog-all-btn {
    padding: 13px 32px;
    font-size: 0.95rem;
    border-radius: 50px;
    font-weight: 600;
    background: linear-gradient(135deg, #d71920 0%, #b30000 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(215, 25, 32, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(215, 25, 32, 0.38);
}

/* 13. TESTIMONIALS SECTION */
.testimonials-section {
    padding: 90px 0;
    background-color: var(--bg-light);
}

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

.testimonial-cards-wrapper,
.testimonial-track {
    position: relative;
    min-height: 240px;
}

.testimonial-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
    transform: translateX(30px);
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.testimonial-stars {
    color: var(--accent-gold, #f59e0b);
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.testimonial-quote {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

.quote-icon {
    font-size: 4rem;
    line-height: 1;
    color: rgba(216, 22, 46, 0.15);
    font-family: serif;
    position: absolute;
    top: 15px;
    right: 25px;
}

.testimonial-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.patient-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.patient-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
}

.patient-condition {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
}

/* TESTIMONIAL SLIDER CONTROLS & PAGINATION */
.testi-controls,
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
    margin-bottom: 10px;
    width: 100%;
}

.testi-arrow,
.slider-btn {
    background: var(--bg-white);
    color: var(--secondary);
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border-color, #000);
    box-shadow: var(--card-shadow, 0 10px 30px rgba(0, 0, 0, 0.08));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
    line-height: 1;
}

.testi-arrow svg,
.slider-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.25s ease;
}

.testi-arrow:hover,
.slider-btn:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(216, 22, 46, 0.3);
    transform: translateY(-2px);
}

.testi-arrow.prev-btn:hover svg,
.testi-arrow:first-child:hover svg {
    transform: translateX(-2px);
}

.testi-arrow.next-btn:hover svg,
.testi-arrow:last-child:hover svg {
    transform: translateX(2px);
}

.testi-arrow:active,
.slider-btn:active {
    transform: translateY(0) scale(0.95);
}

.testi-arrow:focus-visible,
.slider-btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.testi-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testi-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2b2b2b;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    outline: none;
}

.testi-dots .dot:hover {
    background: var(--primary-light, #ff4d63);
}

.testi-dots .dot.active {
    background: var(--primary);
    width: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(216, 22, 46, 0.3);
}

.testi-dots .dot:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

/* 14. FAQ ACCORDION SECTION */
.faq-section {
    padding: 90px 0;
    background-color: var(--bg-white);
}

.accordion-wrapper {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.accordion-item.active {
    border-color: var(--primary);
}

.accordion-header {
    width: 100%;
    background: var(--bg-light);
    padding: 20px 25px;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background var(--transition-fast);
}

.accordion-header:hover {
    background: rgba(216, 22, 46, 0.05);
}

.accordion-icon {
    font-size: 1.4rem;
    color: var(--primary);
    font-weight: 400;
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), padding 0.3s ease;
    background: var(--bg-white);
}

.accordion-item.active .accordion-body {
    padding: 20px 25px;
    max-height: 500px;
}

.accordion-body p {
    font-size: 0.98rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 15. FOOTER & FOOTER CTA BANNER */
.footer-cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 45px 0;
}

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

.cta-text h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
}

.cta-text h3 {
    font-size: 1.2rem;
    font-weight: 500;
    opacity: 0.95;
}

.cta-text a {
    color: #fef08a;
    font-weight: 800;
}

.site-footer {
    background-color: #111111;
    color: #FFFFFF;
    padding: 80px 0 30px 0;
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.9fr 1.3fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #BDBDBD;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: #D71920;
    color: #ffffff;
    border-color: #D71920;
}

.social-svg {
    width: 20px;
    height: 20px;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: #D71920;
    border-radius: 2px;
}

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

.footer-links a {
    color: #ffffff;
    transition: all var(--transition-fast);
}

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

.contact-location-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 14px;
    border-radius: 12px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid #D71920;
}

.contact-location-box h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.contact-location-box p {
    color: #BDBDBD;
    font-size: 0.82rem;
    line-height: 1.4;
    margin-bottom: 6px;
}

.footer-map-wrap {
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map-wrap iframe {
    width: 100%;
    height: 150px;
    border: 0;
    display: block;
}

.timing-tag {
    display: inline-block;
    font-size: 0.75rem;
    background: rgba(215, 25, 32, 0.15);
    color: #FF8A8E;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px solid rgba(215, 25, 32, 0.25);
}

.contact-details p {
    color: #BDBDBD;
    margin-bottom: 6px;
}

.contact-details a {
    color: #ffffff;
    font-weight: 700;
}

.contact-details a:hover {
    color: #D71920;
}

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

/* 16. FLOATING FIXED BUTTONS */
.floating-book-now-tab {
    position: fixed;
    right: -38px;
    top: 40%;
    transform: rotate(-90deg);
    background: var(--primary);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 999;
    letter-spacing: 1px;
    transition: background var(--transition-fast);
}

.floating-book-now-tab:hover {
    background: var(--primary-dark);
}

.floating-call-btn {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(216, 22, 46, 0.4);
    z-index: 999;
}

.call-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.floating-whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 58px;
    height: 58px;
    background: var(--whatsapp-green);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform var(--transition-fast);
}

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

.mobile-sticky-footer-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-color);
}

.mobile-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0;
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 700;
    background: transparent;
}

.mobile-nav-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    margin-bottom: 2px;
}

/* 17. APPOINTMENT MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

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

.modal-card {
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(30px);
    transition: transform var(--transition-fast);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--bg-light);
    color: var(--secondary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

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

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.modal-header p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.appointment-form .form-group {
    margin-bottom: 15px;
}

.appointment-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    background: var(--bg-light);
    transition: border-color var(--transition-fast);
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
    border-color: var(--primary);
    background: var(--bg-white);
}

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

/* TOAST NOTIFICATION */
.toast-notification {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: var(--secondary);
    color: var(--bg-white);
    padding: 14px 24px;
    border-radius: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 3000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    border-left: 4px solid var(--primary);
    display: flex;
    align-items: center;
}

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

/* 18. RESPONSIVE BREAKPOINTS */
@media (max-width: 1024px) {
    .counter-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .know-doctors-section {
        background-attachment: scroll;
    }

    .floating-book-now-tab {
        display: none;
    }

    .main-heading {
        font-size: 24px;
    }

    .top-header {
        display: none;
    }

    .mobile-toggle-btn {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 75px);
        background: var(--bg-white);
        box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
        padding: 30px 20px;
        transition: left 0.4s ease;
        overflow-y: auto;
    }

    .nav-menu.open {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }

    .nav-item.dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-cta-mobile {
        display: block;
        margin-top: 25px;
    }

    .slide-title {
        font-size: 1.8rem;
    }

    .slide-subtitle {
        font-size: 1rem;
    }

    .about-grid,
    .why-choose-grid,
    .award-grid,
    .video-showcase-wrapper {
        grid-template-columns: 1fr;
    }

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

    .treatments-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-cta-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .floating-call-btn,
    .floating-whatsapp-btn {
        bottom: 75px;
    }

    .mobile-sticky-footer-bar {
        display: grid;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .doc-showcase-card {
        display: block;
    }

    .tab-content-wrapper {
        padding: 10px;
    }

    .doc-info-col {
        margin-top: 20px;
    }

    .doc-contact-meta {
        grid-template-columns: repeat(1, 1fr);
    }

    .award-grid {
        padding: 15px;
    }

    .gallery-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }

    .modal-header h3{
        font-size: 19px;
    }

    .location-title-wrap h2{
        font-size: 16px !important;
    }

    .section-title-wrap .main-title{
        font-size: 19px !important;
    }

    .form-grid-2col{
        grid-template-columns: 1fr !important;
    }

    .contact-form-card{
        padding: 20px !important;
    }

    .doctor-profile-card{
        padding: 13px !important;
    }

    .expertise-grid{
        grid-template-columns: 1fr !important;
    }

    .why-choose-grid, .approach-steps-flex{
        grid-template-columns: 1fr !important;
    }

    .page-title{
        font-size: 1.8rem !important;
        line-height: 33px;
    }

    .cta-btn-group{
        flex-direction: column !important;
        gap: 10px !important;
    }
}

/* 19. GALLERY PAGE STYLES */
.page-hero-banner {
    background: linear-gradient(135deg, #FFF5F5 0%, #F8FAFC 100%);
    color: #111111;
    padding: 60px 0;
    border-bottom: 3px solid var(--primary);
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 800;
    color: #111111;
    margin-bottom: 10px;
}

.breadcrumb-trail {
    font-size: 0.95rem;
    color: #6B7280;
}

.breadcrumb-trail a {
    color: var(--primary);
    font-weight: 600;
}

.breadcrumb-trail .separator {
    margin: 0 8px;
    color: #9CA3AF;
}

.breadcrumb-trail .active {
    color: #111111;
    font-weight: 700;
}

.gallery-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.gallery-layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.gallery-sidebar {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    height: fit-content;
}

.sidebar-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.gallery-filter-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.filter-btn {
    width: 100%;
    text-align: left;
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 12px 18px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
    border-left: 3px solid transparent;
}

.filter-btn:hover {
    background: rgba(216, 22, 46, 0.08);
    color: var(--primary);
    padding-left: 22px;
}

.filter-btn.active {
    background: var(--primary);
    color: var(--bg-white);
    border-left-color: var(--accent-gold);
    box-shadow: 0 4px 15px rgba(216, 22, 46, 0.3);
}

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

.gallery-card-item {
    background: var(--bg-white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    cursor: pointer;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.gallery-img-wrap {
    position: relative;
    height: 210px;
    overflow: hidden;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(216, 22, 46, 0.85);
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

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

.zoom-icon {
    width: 34px;
    height: 34px;
    color: var(--bg-white);
}

.overlay-tag {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0, 0, 0, 0.4);
    padding: 3px 12px;
    border-radius: 12px;
}

.gallery-card-title {
    padding: 15px 18px;
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.4;
}

/* LIGHTBOX MODAL STYLES */
.lightbox-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.92);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

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

.lightbox-container {
    max-width: 850px;
    max-height: 85vh;
    background: var(--dark-bg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    background: #000;
}

.lightbox-caption-box {
    padding: 20px 25px;
    background: var(--secondary);
    color: var(--bg-white);
}

.lightbox-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-top: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
    z-index: 3100;
}

.lightbox-close:hover {
    background: var(--primary);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: var(--bg-white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
    z-index: 3100;
}

.lightbox-nav:hover {
    background: var(--primary);
}

.lightbox-nav.prev {
    left: 25px;
}

.lightbox-nav.next {
    right: 25px;
}

@media (max-width: 992px) {
    .gallery-layout-grid {
        grid-template-columns: 1fr;
    }

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

/* 20. BLOG PAGE STYLES */
.hero-subtitle {
    font-size: 1.05rem;
    color: rgba(62, 62, 62, 0.85);
    margin: 8px 0 15px 0;
}

.blog-page-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.blog-page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
}

.blog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.blog-card-item {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

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

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

.blog-card-item:hover .blog-card-img-wrap img {
    transform: scale(1.08);
}

.blog-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--bg-white);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.blog-card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-meta-date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.meta-icon {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.4;
    margin-bottom: 12px;
}

.blog-card-title a {
    color: var(--secondary);
    transition: color var(--transition-fast);
}

.blog-card-title a:hover {
    color: var(--primary);
}

.blog-card-excerpt {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-footer {
    padding-top: 15px;
    border-top: 1px solid var(--border-light);
}

.read-more-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.read-more-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

/* BLOG PAGINATION */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-num {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--bg-white);
    color: var(--secondary);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--card-shadow);
    transition: all var(--transition-fast);
}

.page-num:hover,
.page-num.active {
    background: var(--primary);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(216, 22, 46, 0.3);
}

.page-num.next-btn {
    width: auto;
    padding: 0 20px;
}

.page-dots {
    color: var(--text-light);
    font-weight: 700;
}

/* SIDEBAR WIDGETS */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--bg-white);
    padding: 28px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
}

.widget-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}

/* SEARCH WIDGET */
.search-input-wrap {
    display: flex;
    gap: 8px;
}

.search-input-wrap input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
}

.search-btn {
    background: var(--primary);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 0 20px;
    border-radius: 30px;
    transition: background var(--transition-fast);
}

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

/* RECENT POSTS WIDGET */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.recent-post-item {
    display: flex;
    gap: 14px;
    align-items: center;
}

.recent-post-thumb {
    width: 65px;
    height: 65px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info a {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.3;
    display: block;
    transition: color var(--transition-fast);
}

.recent-post-info a:hover {
    color: var(--primary);
}

.recent-post-info .post-date {
    font-size: 0.78rem;
    color: var(--text-light);
    display: block;
    margin-top: 4px;
}

/* CATEGORIES WIDGET */
.categories-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: 8px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.categories-list a:hover {
    background: rgba(216, 22, 46, 0.08);
    color: var(--primary);
    padding-left: 18px;
}

.categories-list span {
    font-size: 0.78rem;
    background: var(--bg-white);
    color: var(--primary);
    padding: 2px 8px;
    border-radius: 12px;
}

/* POPULAR TOPICS WIDGET */
.popular-topics-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.topic-card {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 10px;
    cursor: pointer;
    border-left: 3px solid var(--primary);
    transition: transform var(--transition-fast);
}

.topic-card:hover {
    transform: translateX(5px);
    background: rgba(216, 22, 46, 0.05);
}

.topic-card h5 {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--secondary);
}

.topic-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 3px;
}

/* TAGS WIDGET */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    background: var(--bg-light);
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all var(--transition-fast);
}

.tag-link:hover {
    background: var(--primary);
    color: var(--bg-white);
}

@media (max-width: 992px) {
    .blog-page-grid {
        grid-template-columns: 1fr;
    }
}

/* 21. CONTACT PAGE STYLES */
.contact-locations-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.contact-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.contact-card-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--primary-light);
}

.location-icon-wrap {
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(216, 22, 46, 0.3);
}

.loc-svg {
    width: 28px;
    height: 28px;
}

.location-title-wrap h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--secondary);
}

.location-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(216, 22, 46, 0.1);
    color: var(--primary);
    padding: 3px 10px;
    border-radius: 12px;
    margin-top: 4px;
}

.location-badge.hospital {
    background: rgba(30, 41, 59, 0.1);
    color: var(--secondary);
}

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

.detail-row {
    display: flex;
    gap: 14px;
    font-size: 0.92rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.detail-icon {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-row strong {
    color: var(--secondary);
    display: block;
    font-weight: 700;

}

.highlight-closed {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 0.85rem;
}

.contact-map-embed {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

/* CONTACT FORM SECTION */
.contact-form-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.contact-form-card {
    max-width: 850px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 50px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}

.section-title-wrap .sub-title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--primary);
    display: block;
    margin-bottom: 6px;
}

.section-title-wrap .main-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 12px;
}

.section-title-wrap .section-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    max-width: 620px;
    margin: 0 auto 35px auto;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.contact-page-form label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: var(--bg-white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(216, 22, 46, 0.15);
}

@media (max-width: 992px) {
    .contact-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* 22. DOCTORS PAGE STYLES */
.doctor-intro-section {
    padding: 70px 0 40px 0;
    background: var(--bg-white);
}

.doctor-profile-section {
    padding: 50px 0 70px 0;
    background-color: var(--bg-light);
}

.doctor-profile-section.secondary-profile {
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-light);
}

.doctor-profile-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 45px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-light);
}

.doctor-profile-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 45px;
    align-items: start;
}

.doctor-image-area {
    position: sticky;
    top: 100px;
    height: fit-content;
    align-self: start;
    z-index: 10;
}

.doctor-photo-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--hover-shadow);
}

.doctor-photo-frame img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(216, 22, 46, 0.95);
    backdrop-filter: blur(5px);
    color: var(--bg-white);
    padding: 14px 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.experience-badge.alt-color {
    background: rgba(30, 41, 59, 0.95);
}

.exp-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.exp-text {
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
}

.doctor-quick-contact {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-dark);
    font-weight: 600;
}

.quick-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    flex-shrink: 0;
}

.doctor-role-tag {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(216, 22, 46, 0.1);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.doctor-role-tag.hospital-tag {
    background: rgba(30, 41, 59, 0.1);
    color: var(--secondary);
}

.doctor-name {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.2;
}

.doctor-credentials {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin: 6px 0 18px 0;
}

.doctor-bio {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.doctor-bio p {
    margin-bottom: 12px;
}

.doctor-bio p:last-child {
    margin-bottom: 0;
}

.detail-block-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.education-timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.education-timeline li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.timeline-year {
    background: var(--secondary);
    color: var(--bg-white);
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 8px;
    flex-shrink: 0;
    margin-top: 2px;
}

.timeline-content h5 {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--secondary);
}

.timeline-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.expertise-tags-box {
    margin-bottom: 30px;
}

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

.exp-tag {
    background: var(--bg-light);
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
}

.memberships-box {
    margin-bottom: 30px;
}

.check-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.check-list-grid li {
    position: relative;
    padding-left: 24px;
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 600;
}

.check-list-grid li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
}

.philosophy-quote {
    background: rgba(216, 22, 46, 0.05);
    border-left: 4px solid var(--primary);
    padding: 20px 25px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 30px;
    position: relative;
}

.quote-icon {
    width: 30px;
    height: 30px;
    color: var(--primary-light);
    margin-bottom: 8px;
}

.philosophy-quote p {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
}

/* EXPERTISE GRID */
.expertise-cards-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.expertise-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

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

.card-icon-box {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: background var(--transition-fast), color var(--transition-fast);
}

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

.exp-icon {
    width: 32px;
    height: 32px;
}

.expertise-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

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

/* WHY CHOOSE DOCTORS */
.why-choose-doctors-section {
    padding: 80px 0;
    background: var(--bg-white);
}



.why-card {
    background: var(--bg-light);
    padding: 30px 24px;
    border-radius: 16px;
    text-align: center;
    border-bottom: 3px solid var(--primary);
    transition: transform var(--transition-fast);
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-icon {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
}

.icon-svg-sm {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.why-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

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

/* CARE APPROACH */
.care-approach-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.step-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 18px;
    box-shadow: var(--card-shadow);
    position: relative;
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: rgba(216, 22, 46, 0.15);
    position: absolute;
    top: 15px;
    right: 20px;
}

.step-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    margin-top: 40px;
}

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

/* CTA SECTION */
.cta-appointment-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-bg) 100%);
    color: var(--bg-white);
    padding: 80px 0;
}

.cta-heading {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-subheading {
    font-size: 1.05rem;
    color: #cdcdcd;
    margin-bottom: 30px;
}

.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

    .doctor-image-area {
        position: static;
        top: auto;
        height: auto;
        align-self: auto;
    }

    .doctor-photo-frame img {
        height: 380px;
    }

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

    .why-choose-grid,
    .approach-steps-flex {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 23. MEGA MENU DROPDOWN STYLES */
.nav-item.mega-dropdown {
    position: static;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--bg-white);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--primary);
    padding: 35px 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 999;
}

.nav-item.mega-dropdown:hover .mega-menu-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-column-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-light);
}

.mega-column-title a {
    color: var(--primary);
    text-decoration: none;
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.mega-menu-column ul li a {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast), padding-left var(--transition-fast);
    display: inline-block;
}

.mega-menu-column ul li a:hover {
    color: var(--primary);
    padding-left: 6px;
}

/* 24. SERVICES CATALOG & OVERVIEW STYLES */
.services-overview-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.overview-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--hover-shadow);
}

.feature-bullets {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary);
}

.bullet-check {
    width: 26px;
    height: 26px;
    background: var(--primary);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 900;
    flex-shrink: 0;
}

.services-catalog-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.service-catalog-card {
    background: var(--bg-white);
    padding: 28px 22px;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    border: 1px solid var(--border-light);
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.cat-icon {
    width: 26px;
    height: 26px;
}

.service-catalog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.service-catalog-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}

.card-link-arrow {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

/* 25. SERVICE DETAIL ARTICLE & STICKY SIDEBAR */
.service-detail-section {
    padding: 70px 0;
    background: var(--bg-white);
}

.service-layout-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
}

.article-lead-card {
    background: var(--bg-light);
    border-left: 4px solid var(--primary);
    padding: 25px 30px;
    border-radius: 0 16px 16px 0;
    margin-bottom: 35px;
}

.article-lead-card h2 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.article-lead-card p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.article-heading {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--secondary);
    margin: 35px 0 16px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border-light);
}

.styled-medical-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.styled-medical-list li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    padding-left: 20px;
}

.styled-medical-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.4rem;
    position: absolute;
    left: 0;
    top: -2px;
}

.symptoms-grid-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}

.symptom-item-pill {
    background: var(--bg-light);
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary);
    border: 1px solid var(--border-light);
}

.article-inline-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-bg) 100%);
    color: var(--bg-white);
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    margin-top: 45px;
}

.article-inline-cta h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.article-inline-cta p {
    font-size: 0.92rem;
    color: #2b2b2b;
    margin-bottom: 20px;
}

/* SIDEBAR */
.sticky-widget {
    position: sticky;
    top: 100px;
    background: var(--bg-light);
    padding: 28px;
    border-radius: 20px;
    border: 1px solid var(--border-light);
    box-shadow: var(--card-shadow);
}

.sidebar-services-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-height: 420px;
    overflow-y: auto;
}

.sidebar-services-list li a {
    display: block;
    padding: 10px 14px;
    background: var(--bg-white);
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    border: 1px solid var(--border-light);
    transition: all var(--transition-fast);
}

.sidebar-services-list li.active a,
.sidebar-services-list li a:hover {
    background: var(--primary);
    color: var(--bg-white);
    border-color: var(--primary);
}

.sidebar-contact-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid var(--border-light);
}

.sidebar-contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.sidebar-contact-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.sidebar-phone-btn {
    display: inline-block;
    background: rgba(216, 22, 46, 0.1);
    color: var(--primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
}

@media (max-width: 1100px) {
    .services-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .mega-menu-content {
        position: static;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        grid-template-columns: 1fr;
        padding: 15px;
    }

    .nav-item.mega-dropdown.open .mega-menu-content {
        display: flex;
        flex-direction: column;
    }

    .service-layout-grid,
    .overview-grid-2col {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {

    .services-catalog-grid,
    .symptoms-grid-box {
        grid-template-columns: 1fr;
    }
}

/* 26. FAQ ACCORDION STYLES */
.faq-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.faq-accordion-container {
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--bg-light);
    border-radius: 14px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item.active,
.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 4px 15px rgba(216, 22, 46, 0.08);
}

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

.faq-header span {
    flex-grow: 1;
}

.faq-header:hover {
    color: var(--primary);
}

.faq-icon {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    max-width: 22px !important;
    max-height: 22px !important;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

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

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out, padding 0.35s ease-in-out;
    padding: 0 24px;
}

.faq-item.active .faq-body {
    max-height: 400px;
    padding: 0 24px 20px 24px;
}

.faq-body p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin: 0;
}