/* ==========================================================================
   UNAKOTI HOSPITAL - MAIN STYLESHEET (style.css)
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS VARIABLES (DESIGN SYSTEM)
   -------------------------------------------------------------------------- */
:root {
    /* Brand Colors */
    --color-primary: #0a1b3d;
    /* Deep Navy Blue */
    --color-primary-dark: #061128;
    /* Darker Navy */
    --color-primary-light: #132a5c;
    /* Lighter Navy */
    --color-secondary: #d9232a;
    /* Medical Crimson Red */
    --color-secondary-dark: #b8171d;
    /* Dark Crimson */
    --color-secondary-light: #ff4750;
    /* Bright Accent Red */

    /* Neutral & Background Colors */
    --color-white: #ffffff;
    --color-bg-light: #f8fafc;
    --color-bg-alt: #f1f5f9;
    --color-bg-card: #ffffff;
    --color-dark-surface: #0a1936;
    --color-dark-card: #10244d;
    --color-dark-border: rgba(255, 255, 255, 0.12);

    /* Text Colors */
    --color-text-main: #1e293b;
    --color-text-muted: #64748b;
    --color-text-light: #94a3b8;
    --color-text-white: #ffffff;

    /* Accent & Functional */
    --color-border: #e2e8f0;
    --color-border-focus: #d9232a;
    --color-success: #10b981;
    --color-star: #f59e0b;

    /* Typography */
    --font-primary: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --container-max-width: 1240px;
    --section-padding-y: 80px;
    --section-padding-x: 24px;
    --card-radius: 12px;
    --btn-radius: 8px;
    --pill-radius: 8px;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 18px rgba(10, 27, 61, 0.08);
    --shadow-lg: 0 12px 32px rgba(10, 27, 61, 0.12);
    --shadow-glow: 0 0 20px rgba(217, 35, 42, 0.35);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

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

img,
svg,
picture {
    display: block;
    max-width: 100%;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

ul,
ol {
    list-style: none;
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
    line-height: 1.25;
}

h1 {
    font-size: 2.75rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
}

h3 {
    font-size: 1.35rem;
}

h4 {
    font-size: 1.125rem;
}

p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.text-red {
    color: var(--color-secondary) !important;
}

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

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

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

/* --------------------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   -------------------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--section-padding-x);
    padding-right: var(--section-padding-x);
}

.section {
    padding-top: var(--section-padding-y);
    padding-bottom: var(--section-padding-y);
    position: relative;
}

.section-alt {
    background-color: var(--color-bg-light);
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-text-white);
}

/* Section Headers */
.section-header {
    margin-bottom: 40px;
}

.section-header.text-center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}

.section-badge {
    display: inline-block;
    color: var(--color-secondary);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    border-bottom: 2px solid var(--color-secondary);
    padding-bottom: 2px;
}

.section-title {
    font-size: 2.15rem;
    font-weight: 700;
    color: var(--color-primary);
}

.section-dark .section-title {
    color: var(--color-text-white);
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

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

/* --------------------------------------------------------------------------
   5. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
    position: relative;
    width: 100%;
    height: 554px;
    min-height: 554px;
    background-color: #06132d;
    background-image: url('../images/home/hero/home-hero.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 36px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 580px;
    margin-top: -14px;
}

.hero-badge-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

.hero-title {
    font-size: 2.65rem;
    font-weight: 800;
    color: var(--color-text-white);
    line-height: 1.18;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.hero-title .text-red {
    color: #e21b24 !important;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.hero-description {
    font-size: 0.94rem;
    color: #cbd5e1;
    line-height: 1.52;
    margin-bottom: 8px;
    max-width: 580px;
}

.hero-description:last-of-type {
    margin-bottom: 26px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-hero-primary {
    background-color: #e21b24;
    color: #ffffff;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid #e21b24;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 14px rgba(226, 27, 36, 0.25);
    transition: all var(--transition-fast);
    text-decoration: none;
}

.btn-hero-primary:hover {
    background-color: #c4121a;
    border-color: #c4121a;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-hero-primary .icon-svg {
    width: 18px;
    height: 18px;
    filter: brightness(0) invert(1);
}

.btn-hero-secondary {
    background-color: #ffffff;
    color: #e21b24;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid #fca5a5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-fast);
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.btn-hero-secondary:hover {
    background-color: #fff5f5;
    border-color: #e21b24;
    color: #c4121a;
    transform: translateY(-1px);
}

.btn-hero-secondary .btn-arrow {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    transition: transform var(--transition-fast);
}

.btn-hero-secondary:hover .btn-arrow {
    transform: translateX(3px);
}

.hero-visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}

.hero-live-badge {
    position: absolute;
    bottom: 12px;
    right: 15px;
    background-color: #00c980;
    color: #ffffff;
    padding: 7px 16px;
    border-radius: var(--pill-radius);
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.775rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(0, 201, 128, 0.45);
    z-index: 10;
}

.hero-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #ffffff;
    display: inline-block;
}

/* --------------------------------------------------------------------------
   6. WHY PUT YOUR TRUST IN US (ABOUT SECTION)
   -------------------------------------------------------------------------- */
.trust-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

.trust-images {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-composite-img {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    filter: drop-shadow(0 14px 30px rgba(10, 27, 61, 0.12));
    transition: transform var(--transition-normal);
}

.trust-composite-img:hover {
    transform: translateY(-4px);
}

.trust-content {
    padding-left: 10px;
}

.section-badge-pill {
    background-color: #e21b24;
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
}

.trust-content .section-title {
    font-size: 2.45rem;
    font-weight: 700;
    color: #0a1b3d;
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.trust-content .section-title .text-red,
.trust-content .section-title em {
    color: #e21b24;
    font-style: italic;
    font-weight: 700;
}

.trust-content p {
    font-size: 0.925rem;
    color: #475569;
    line-height: 1.65;
}

.trust-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 24px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.trust-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #334155;
}

.trust-check-item .icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.trust-actions {
    display: flex;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.btn-dark-blue {
    background-color: #004792;
    color: #ffffff;
    border: 1px solid #004792;
    padding: 12px 24px;
    font-size: 0.925rem;
    font-weight: 600;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    text-decoration: none;
    cursor: pointer;
}

.btn-dark-blue:hover {
    background-color: #003366;
    border-color: #003366;
    color: #ffffff;
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   7. SERVICES / SPECIALITIES GRID
   -------------------------------------------------------------------------- */
.services-section {
    background-color: #edf2f9;
    padding: 70px 0;
    position: relative;
    background-image: radial-gradient(rgba(7, 44, 110, 0.08) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
}

.services-header-wrap {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.services-header-top {
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}

.services-title-row {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-title-row .section-title {
    font-size: 2.35rem;
    font-weight: 700;
    color: #0a1b3d;
    letter-spacing: -0.5px;
}

.services-title-row .section-title .text-red em {
    color: #e21b24;
    font-style: italic;
    font-weight: 700;
}

.services-view-all {
    position: absolute;
    right: 0;
    font-size: 0.9rem;
    font-weight: 600;
    color: #004792;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.services-view-all:hover {
    color: #e21b24;
}

.services-carousel-wrapper {
    position: relative;
    width: 100%;
}

.services-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 22px;
    padding: 10px 4px 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.services-grid::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 calc((100% - (22px * 3)) / 4);
    min-width: calc((100% - (22px * 3)) / 4);
    scroll-snap-align: start;
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 20px rgba(10, 27, 61, 0.06);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(10, 27, 61, 0.12);
    border-color: rgba(226, 27, 36, 0.35);
}

.service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.service-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon .icon-svg {
    width: 24px;
    height: 24px;
    stroke: #e21b24;
}

.service-badge {
    background-color: #e21b24;
    color: #ffffff;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.service-card-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #054e8d;
    margin-bottom: 8px;
}

.service-card-text {
    font-size: 0.835rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
    min-height: 48px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.service-tag {
    font-size: 0.725rem;
    font-weight: 500;
    background-color: #f1f5f9;
    color: #475569;
    padding: 3px 9px;
    border-radius: 6px;
}

.service-readmore {
    font-size: 0.85rem;
    font-weight: 600;
    color: #e21b24;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: gap var(--transition-fast);
}

.service-readmore:hover {
    gap: 8px;
}

.services-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
}

.pagination-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #cbd5e1;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.pagination-dot.active {
    background-color: #e21b24;
}

/* --------------------------------------------------------------------------
   8. WORLD-CLASS HEALTHCARE STANDARDS
   -------------------------------------------------------------------------- */
.standards-section {
    background-color: #061d4a;
    background-image: url('../images/home/banners/standards-bg.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: var(--color-text-white);
    padding: 75px 0;
    min-height: 460px;
    display: flex;
    align-items: center;
    position: relative;
}

.standards-grid {
    display: grid;
    grid-template-columns: minmax(320px, 640px) 1fr;
    gap: 40px;
    align-items: center;
    width: 100%;
}

.standards-title {
    font-size: 2.25rem;
    font-weight: 800;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 12px;
    display: inline-block;
    letter-spacing: -0.5px;
}

.standards-desc {
    color: #cbd5e1;
    font-size: 0.925rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 580px;
}

.standards-cards-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.standards-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 13px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.standards-card-wide {
    grid-column: span 2;
}

.standards-card-highlight {
    color: #e21b24;
    font-size: 1.15rem;
    font-weight: 800;
    white-space: nowrap;
    line-height: 1;
}

.standards-card-text {
    color: #1e293b;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
}

.standards-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.standards-feature-box h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    line-height: 1.3;
}

.standards-feature-box p {
    font-size: 0.825rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0;
}

/* --------------------------------------------------------------------------
   9. CUTTING-EDGE DIAGNOSTICS
   -------------------------------------------------------------------------- */
.diag-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.diag-checklist {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px 24px;
    margin-top: 28px;
}

.diag-check-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.925rem;
    font-weight: 500;
    color: #0a1b3d;
}

.diag-check-item img {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.diag-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.diag-card {
    background: linear-gradient(180deg, #072c6e 0%, #031b48 100%);
    border-radius: 16px;
    padding: 26px 14px 22px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(7, 44, 110, 0.18);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.diag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(7, 44, 110, 0.3);
}

.diag-card-icon {
    width: 58px;
    height: 58px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.diag-card-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.diag-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.diag-card-sub {
    font-size: 0.8rem;
    color: #cbd5e1;
    line-height: 1.35;
}

/* --------------------------------------------------------------------------
   10. OUR EXPERT DOCTORS BANNER SECTION
   -------------------------------------------------------------------------- */
.doctors-banner-section {
    position: relative;
    padding: 0;
    margin-bottom: 35px;
    background-color: var(--color-white);
}

.doctors-banner-wrapper {
    position: relative;
    width: 100%;
}

.doctors-banner-img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: cover;
    display: block;
}

.doctors-banner-content-box {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 820px;
    background-color: #e21b24;
    color: #ffffff;
    border-radius: 12px;
    padding: 24px 36px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(226, 27, 36, 0.35);
    z-index: 5;
}

.doctors-banner-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 8px;
}

.doctors-banner-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   11. LATEST NEWS & ARTICLES
   -------------------------------------------------------------------------- */
.news-section {
    padding-top: 60px;
    padding-bottom: 80px;
}

.news-section .section-header-flex {
    margin-bottom: 16px;
}

.news-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 28px;
    padding: 4px 4px 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.news-grid::-webkit-scrollbar {
    display: none;
}

.news-card {
    flex: 0 0 calc((100% - (28px * 2)) / 3);
    min-width: calc((100% - (28px * 2)) / 3);
    scroll-snap-align: start;
    background-color: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(10, 27, 61, 0.08);
    border-color: rgba(226, 27, 36, 0.2);
}

.news-thumb {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform var(--transition-normal);
}

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

.news-body {
    padding: 18px 4px 6px 4px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.news-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    margin: 0;
    transition: color var(--transition-fast);
}

.news-card:hover .news-title {
    color: #054e8d;
}

.news-arrow {
    color: #e21b24;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 2px;
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.news-card:hover .news-arrow {
    transform: translate(3px, -3px);
}

.news-excerpt {
    font-size: 0.885rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 12px 0;
}

.news-readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: 0.885rem;
    font-weight: 700;
    color: #e21b24;
    transition: color var(--transition-fast);
}

.readmore-arrow {
    transition: transform var(--transition-fast);
}

.news-card:hover .news-readmore {
    color: #b9131a;
}

.news-card:hover .readmore-arrow {
    transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   12. WORLD-CLASS FACILITIES
   -------------------------------------------------------------------------- */
.facilities-section {
    padding: 0;
    background-color: #f8fbff;
    background-image: url('../images/home/facilities/facilities-bg.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.facilities-layout {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 520px;
}

.facilities-left-col {
    padding: 60px 0;
}

.facilities-badge {
    display: inline-block;
    background-color: #e21b24;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.facilities-main-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0a1b3d;
    line-height: 1.2;
    margin-bottom: 36px;
}

.facilities-main-title em {
    font-style: italic;
    color: #e21b24;
}

.facilities-items-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.facility-entry {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.facility-icon-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    flex-shrink: 0;
    filter: none;
    box-shadow: none;
    transition: transform var(--transition-fast);
}

.facility-entry:hover .facility-icon-img {
    transform: translateY(-3px) scale(1.05);
}

.facility-entry-text h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0a1b3d;
    margin-bottom: 6px;
}

.facility-entry-text p {
    font-size: 0.885rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Facilities Visual & Floating Card */
.facilities-visual-col {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    align-self: stretch;
}

.facility-building-wrap {
    width: 320px;
    height: 100%;
    min-height: 520px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    position: relative;
    z-index: 1;
}

.facility-building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
}

.facility-floating-card {
    position: absolute;
    left: 230px;
    right: 0;
    background-color: #ffffff;
    border-radius: 22px;
    padding: 32px 28px;
    box-shadow: 0 16px 44px rgba(10, 27, 61, 0.1);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    z-index: 2;
    border: 1px solid #f1f5f9;
}

.facility-card-subitem {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.facility-card-subitem .facility-icon-img {
    margin-bottom: 14px;
}

.facility-card-subitem:hover .facility-icon-img {
    transform: translateY(-3px) scale(1.05);
}

.facility-card-subitem h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a1b3d;
    margin-bottom: 8px;
}

.facility-card-subitem p {
    font-size: 0.825rem;
    color: #64748b;
    line-height: 1.45;
    margin: 0;
}

/* --------------------------------------------------------------------------
   13. TESTIMONIALS SECTION
   -------------------------------------------------------------------------- */
.testimonials-section {
    padding: 80px 0 90px;
    background-color: #ffffff;
}

.testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 20px 4px 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 calc((100% - (24px * 2)) / 3);
    min-width: calc((100% - (24px * 2)) / 3);
    scroll-snap-align: start;
    background: linear-gradient(180deg, #072c6e 0%, #031b48 100%);
    border-radius: 22px;
    padding: 22px 18px 20px;
    color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 32px rgba(7, 44, 110, 0.2);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(7, 44, 110, 0.3);
}

.testimonial-top-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.testimonial-thumb-icon {
    width: 26px;
    height: 26px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-thumb-icon svg {
    width: 14px;
    height: 14px;
    fill: #072c6e;
}

.testimonial-inner-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 44px 18px 22px;
    position: relative;
    margin-top: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex-grow: 1;
}

.testimonial-avatar-wrap {
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 4px solid #ffffff;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

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

.testimonial-rating {
    color: #f59e0b;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.testimonial-rating .star-muted {
    color: #cbd5e1;
}

.testimonial-quote {
    font-size: 0.885rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 12px;
    flex-grow: 1;
}

.testimonial-quote .read-more {
    color: #054e8d;
    font-weight: 600;
    text-decoration: none;
    margin-left: 4px;
}

.testimonial-author {
    font-size: 0.975rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0;
}

.testimonial-author-role {
    font-size: 0.725rem;
    color: #94a3b8;
}

/* --------------------------------------------------------------------------
   14. SAY HELLO TO OUR EXPERTS SECTION
   -------------------------------------------------------------------------- */
.experts-section {
    background: linear-gradient(180deg, #072c6e 0%, #031b48 100%);
    padding: 85px 0 90px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.experts-header-wrap {
    text-align: center;
    position: relative;
    max-width: 820px;
    margin: 0 auto 44px;
}

.experts-header-wrap .section-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.experts-header-wrap .section-title em {
    font-style: italic;
    color: #ffffff;
}

.experts-header-wrap .experts-subtitle {
    font-size: 0.925rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 740px;
}

.experts-view-all-link {
    position: absolute;
    right: 36px;
    top: 10px;
    color: #cbd5e1;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-fast);
    z-index: 2;
}

.experts-view-all-link:hover {
    color: #ffffff;
    text-decoration: underline;
}

.testimonials-view-all-link {
    position: absolute;
    right: 18px;
    top: 8px;
    color: #3b82f6;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-fast);
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    padding: 0;
}

.testimonials-view-all-link .arrow-icon {
    color: #0f172a;
    font-size: 1.25rem;
    line-height: 1;
    font-weight: 400;
    transition: transform var(--transition-fast);
}

.testimonials-view-all-link:hover {
    color: #1d4ed8;
    text-decoration: none;
}

.testimonials-view-all-link:hover .arrow-icon {
    transform: translateX(4px);
}

.experts-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 10px 4px 30px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.experts-grid::-webkit-scrollbar {
    display: none;
}

.expert-card {
    flex: 0 0 calc((100% - (24px * 3)) / 4);
    min-width: calc((100% - (24px * 3)) / 4);
    scroll-snap-align: start;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    height: 380px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.expert-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.expert-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.expert-info-box {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 14px;
    padding: 14px 12px 12px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.expert-info-box h3.expert-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0a1b3d;
    margin-bottom: 3px;
    line-height: 1.25;
}

.expert-info-box .expert-designation {
    font-size: 0.765rem;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 10px;
    line-height: 1.3;
}

.expert-info-box .expert-btn {
    background-color: #e21b24;
    color: #ffffff;
    font-size: 0.785rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    width: 100%;
    display: block;
    text-decoration: none;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.expert-info-box .expert-btn:hover {
    background-color: #c9141c;
    transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   15. CONTACT US & PATIENT DETAILS SECTION
   -------------------------------------------------------------------------- */
.contact-section {
    padding: 90px 0 100px;
    background-color: #f8fafc;
    background-image: radial-gradient(circle at 10% 20%, rgba(226, 27, 36, 0.03) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(7, 44, 110, 0.04) 0%, transparent 50%);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 56px;
    align-items: center;
}

/* Left Column */
.contact-badge {
    display: inline-block;
    background-color: #e21b24;
    color: #ffffff;
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 5px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.contact-main-title {
    font-size: 2.65rem;
    font-weight: 800;
    color: #0a1b3d;
    line-height: 1.15;
    margin-bottom: 36px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    margin-bottom: 36px;
}

.contact-entry {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
}

.contact-entry-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0a1b3d;
    margin-bottom: 4px;
}

.contact-entry-text p {
    font-size: 0.885rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

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

.btn-get-directions {
    display: inline-block;
    background-color: #b9131a;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 8px;
    text-decoration: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-get-directions:hover {
    background-color: #991b1b;
    transform: translateY(-2px);
    color: #ffffff;
}

/* Right Column - Patient Details Card */
.patient-details-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 38px 34px;
    box-shadow: 0 16px 44px rgba(10, 27, 61, 0.08);
    border: 1px solid #f1f5f9;
}

.patient-details-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0a1b3d;
    margin-bottom: 24px;
}

/* Floating label / Fieldset styled inputs */
.floating-form-group {
    position: relative;
    margin-bottom: 24px;
}

.floating-form-group label {
    position: absolute;
    top: -9px;
    left: 14px;
    background-color: #ffffff;
    padding: 0 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
    z-index: 1;
    line-height: 1;
}

.floating-form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 0.9rem;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    background-color: #ffffff;
    color: #1e293b;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    font-family: inherit;
    box-sizing: border-box;
}

.floating-form-control:focus {
    outline: none;
    border-color: #e21b24;
    box-shadow: 0 0 0 3px rgba(226, 27, 36, 0.1);
}

.floating-form-control::placeholder {
    color: #94a3b8;
    font-size: 0.88rem;
}

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

.floating-form-row .floating-form-group {
    margin-bottom: 0;
}

textarea.floating-form-control {
    resize: vertical;
    min-height: 110px;
}

.btn-confirm-appointment {
    width: 100%;
    background-color: #d32f2f;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    margin-top: 10px;
}

.btn-confirm-appointment:hover {
    background-color: #b71c1c;
    transform: translateY(-1px);
}

.btn-submit:hover {
    background-color: var(--color-secondary-dark);
}

/* --------------------------------------------------------------------------
   16. FOOTER SECTION
   -------------------------------------------------------------------------- */
.footer-section {
    background-color: #07152b;
    color: #ffffff;
    padding-top: 70px;
    padding-bottom: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr 1.05fr 1.05fr 0.85fr 1.35fr;
    gap: 28px;
    margin-bottom: 54px;
}

.footer-brand-logo-wrap {
    margin-bottom: 20px;
    display: inline-block;
    background-color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
}

.footer-brand-logo-wrap img {
    height: 60px;
    width: auto;
    max-width: 300px;
    display: block;
    object-fit: contain;
}

.footer-brand-desc {
    font-size: 0.885rem;
    color: #cbd5e1;
    line-height: 1.65;
    margin: 0;
    max-width: 250px;
}

.footer-col h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 22px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-list a {
    font-size: 0.885rem;
    color: #cbd5e1;
    text-decoration: none;
    transition: color var(--transition-fast), transform var(--transition-fast);
    display: inline-block;
}

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

/* Contact Info Red Action Badges */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-card {
    background-color: #b9131a;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #ffffff;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
    text-decoration: none;
}

.footer-contact-card:hover {
    background-color: #a11016;
    transform: translateY(-2px);
    color: #ffffff;
}

.footer-card-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.footer-card-icon img,
.footer-card-icon svg {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

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

.footer-card-text .card-label {
    display: block;
    font-size: 0.725rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 2px;
    text-transform: capitalize;
}

.footer-card-text .card-value {
    display: block;
    font-size: 0.835rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.35;
}

.footer-card-text .card-value-phone {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* White Sub-Footer Bar */
.sub-footer-bar {
    background-color: #ffffff;
    padding: 18px 0;
    text-align: center;
}

.sub-footer-text {
    font-size: 0.875rem;
    color: #334155;
    font-weight: 500;
    margin: 0;
}

/* --------------------------------------------------------------------------
   17. SLIDER / CAROUSEL DOTS
   -------------------------------------------------------------------------- */
.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 28px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-border);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.carousel-dot.active {
    width: 22px;
    border-radius: 4px;
    background-color: var(--color-secondary);
}

.section-dark .carousel-dot {
    background-color: rgba(255, 255, 255, 0.2);
}

.section-dark .carousel-dot.active {
    background-color: var(--color-secondary);
}

/* ==========================================================================
   18. ABOUT US PAGE COMPREHENSIVE STYLING
   ========================================================================== */

/* Universal Section Spacing for About Page */
.about-page .section {
    padding-top: 70px;
    padding-bottom: 70px;
}

/* 18.1 About Page Hero Banner */
.about-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    padding: 90px 0 85px;
    background-color: #06193e;
    background-image: url('../images/about/about-hero-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Department Specific Hero Banners from images/departments/banner */
.dept-hero-cardiology {
    background-image: url('../images/departments/banner/dept-cardiology-banner.png');
}

.dept-hero-critical-care {
    background-image: url('../images/departments/banner/dept-icu-banner.png');
}

.dept-hero-general-surgery {
    background-image: url('../images/departments/banner/dept-surgery-banner.png');
}

.dept-hero-general-medicine {
    background-image: url('../images/departments/banner/dept-general-medicine-banner.png');
}

.dept-hero-diabetology {
    background-image: url('../images/departments/banner/dept-diabetology-banner.png');
}

.dept-hero-orthopedics {
    background-image: url('../images/departments/banner/dept-orthopedics-banner.png');
}

.dept-hero-ophthalmology {
    background-image: url('../images/departments/banner/dept-ophthalmology-banner.png');
}

.dept-hero-pediatrics {
    background-image: url('../images/departments/banner/dept-pediatrics-banner.png');
}

.dept-hero-emergency-medicine {
    background-image: url('../images/departments/banner/dept-emergency-banner.png');
}

.dept-hero-spine-neuro {
    background-image: url('../images/departments/banner/dept-neuro-banner.png');
}

.dept-hero-urology {
    background-image: url('../images/departments/banner/dept-urology-banner.png');
}

.dept-hero-gynecology {
    background-image: url('../images/departments/banner/dept-gynecology-banner.png');
}

.dept-hero-ent {
    background-image: url('../images/departments/banner/dept-ent-banner.png');
}

.about-hero-overlay {
    display: none;
}

.about-hero-container {
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 580px;
    text-align: center;
    margin: 0;
}

.about-hero-content .hero-badge-subtitle {
    display: block;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.about-hero-title {
    font-size: 2.85rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.about-hero-divider {
    width: 48px;
    height: 2px;
    background-color: #e21b24;
    margin: 14px auto 16px;
    border-radius: 2px;
}

.about-hero-subtitle {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.65;
    margin: 0;
}

.about-hero-subtitle em {
    display: inline-block;
    margin-top: 4px;
    font-style: italic;
    color: #ffffff;
    font-weight: 400;
}

/* 18.2 Overview / Welcome Section */
.about-overview-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 48px;
    align-items: center;
}

.about-overview-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-overview-composite-img {
    width: 100%;
    max-width: 480px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 14px 34px rgba(10, 27, 61, 0.12));
}

.about-page .section-badge,
.badge-pill-red,
.vm-label-tag-red {
    display: inline-block;
    background-color: #e21b24;
    color: #ffffff !important;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 0.725rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    border: none;
    box-shadow: 0 2px 8px rgba(226, 27, 36, 0.2);
}

.about-overview-text .overview-main-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: #07152b;
    margin: 8px 0 12px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.about-overview-text .overview-sub-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
}

.overview-p {
    font-size: 0.935rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* 18.3 Comprehensive Multi-Specialty Healthcare Section */
.about-specialties-section,
.bg-light-soft {
    background: #f1f5fa;
    border-top: 1px solid #e6ecf5;
    border-bottom: 1px solid #e6ecf5;
}

.about-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 36px;
}

.capability-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: none;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.capability-card:hover {
    transform: translateY(-2px);
    box-shadow: none;
    border-color: #e21b24;
}

.capability-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background-color: #072e6b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.capability-icon-wrap.icon-red,
.capability-icon-wrap.icon-blue,
.capability-icon-wrap.icon-green,
.capability-icon-wrap.icon-gold {
    background-color: #072e6b;
}

.capability-icon-wrap img,
.capability-icon-wrap svg {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.capability-card:hover .capability-icon-wrap {
    background-color: #e21b24;
    box-shadow: none;
    transform: scale(1.04);
}

.capability-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
}

/* 18.4 Tech Highlight Dark Container */
.tech-highlight-card {
    background: linear-gradient(135deg, #072252, #04122d);
    border-radius: 20px;
    padding: 44px 40px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 16px 40px rgba(7, 34, 82, 0.2);
}

.tech-highlight-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
}

.tech-highlight-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.65;
    max-width: 820px;
    margin: 0 auto 28px;
}

.tech-pills-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.tech-pill {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.tech-pill:hover {
    background-color: #e21b24;
    border-color: #e21b24;
    transform: translateY(-2px);
}

/* 18.5 Dual Pillars of Care */
.about-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 36px;
}

.pillar-card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #e21b24;
    border-radius: 20px;
    padding: 38px 32px;
    box-shadow: 0 4px 16px rgba(10, 27, 61, 0.04);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(10, 27, 61, 0.08);
}

.pillar-icon-box {
    width: 54px;
    height: 54px;
    background-color: #072e6b;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    box-shadow: none;
}

.pillar-icon-box img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.pillar-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #071b3d;
    margin-bottom: 14px;
    letter-spacing: -0.2px;
}

.pillar-text {
    font-size: 0.935rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

.pillar-text strong {
    color: #0f172a;
    font-weight: 700;
}

/* 18.6 Our Commitment Callout Box */
.about-quality-box {
    background-color: #f0f7ff;
    border: 1px solid #dbeafe;
    border-radius: 20px;
    padding: 36px 36px;
}

.quality-title {
    font-size: 1.65rem;
    font-weight: 800;
    color: #07152b;
    margin: 10px 0 12px;
    letter-spacing: -0.3px;
}

.quality-desc {
    font-size: 0.935rem;
    color: #334155;
    line-height: 1.65;
    margin-bottom: 22px;
}

.quality-red-alert-bar {
    background-color: #e21b24;
    color: #ffffff;
    border-radius: 10px;
    padding: 16px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.5;
}

/* 18.7 Vision & Mission Section */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 36px;
    margin-top: 36px;
    align-items: stretch;
}

.vision-card {
    background: linear-gradient(180deg, #072c6e 0%, #031b48 100%);
    border-radius: 24px;
    padding: 44px 36px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 34px rgba(7, 44, 110, 0.15);
}

.vm-badge-icon {
    width: 54px;
    height: 54px;
    background-color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.vm-label-tag-red {
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
    background-color: #e21b24;
    padding: 5px 16px;
    border-radius: 999px;
    display: inline-block;
    width: fit-content;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.vision-title {
    font-size: 2.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
}

.vision-text {
    font-size: 0.975rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0;
}

.mission-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(10, 27, 61, 0.04);
}

.mission-header-flex {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.mission-icon-box {
    width: 48px;
    height: 48px;
    background-color: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-header-text .mission-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 2px;
}

.mission-subtitle-pill {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.mission-numbered-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mission-num-card {
    background-color: #f8fafc;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.mission-num-card:hover {
    transform: translateX(4px);
    border-color: #cbd5e1;
}

.mission-num-badge {
    width: 34px;
    height: 34px;
    background-color: #e21b24;
    color: #ffffff;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mission-num-text {
    font-size: 0.885rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.45;
    margin: 0;
}

/* 18.8 Full-Width Quote Bar */
.about-quote-bar {
    background-color: #071b3d;
    padding: 40px 0;
    color: #ffffff;
}

.quote-bar-text {
    font-size: 1.65rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.quote-bar-sub {
    font-size: 0.925rem;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 0.5px;
}

/* 18.9 Leadership Messages */
.leadership-section {
    padding: 70px 0;
}

.leader-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 48px;
    align-items: center;
}

.leader-heading {
    font-size: 1.65rem;
    font-weight: 800;
    color: #0a1b3d;
    line-height: 1.35;
    margin: 12px 0 14px;
}

.leader-salutation {
    font-size: 1.05rem;
    font-weight: 700;
    color: #054e8d;
    margin-bottom: 12px;
}

.leader-p {
    font-size: 0.935rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 12px;
}

.leader-visual-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.leader-portrait-card {
    position: relative;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    filter: none;
    box-shadow: none;
}

.leader-img-graphic {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.leader-name-tag-overlay {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 78%;
    height: 68px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    pointer-events: none;
}

.leader-name-tag-overlay .leader-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 0.2px;
}

.leader-name-tag-overlay .leader-designation {
    display: block;
    font-size: 0.68rem;
    font-weight: 700;
    color: #93c5fd;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin: 2px 0 1px;
    line-height: 1.1;
}

.leader-name-tag-overlay .leader-org {
    display: block;
    font-size: 0.68rem;
    font-weight: 500;
    color: #e2e8f0;
    letter-spacing: 0.4px;
    line-height: 1.1;
}

.leader-quote-inline {
    border-left: 3px solid #e21b24;
    padding-left: 14px;
    color: #0f172a;
    font-size: 0.95rem;
    font-weight: 600;
    margin: 12px 0;
}

.leader-divider {
    height: 1px;
    background-color: #e2e8f0;
    margin: 50px 0;
}

/* 18.10 Metrics Pills Bar */
.about-metrics-bar {
    background: linear-gradient(90deg, #071f4c 0%, #082963 50%, #071f4c 100%);
    padding: 38px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.metrics-pills-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-pill-item {
    background-color: #ffffff;
    border-radius: 999px;
    padding: 6px 20px 6px 8px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.metric-pill-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.metric-pill-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #104a9d, #062456);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-pill-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.metric-pill-text strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a1b3d;
    line-height: 1.15;
}

.metric-pill-text span {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
    margin-top: 1px;
}

/* 18.11 Core Values (4 Navy Cards) */
.values-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.value-card {
    background: linear-gradient(165deg, #122c5e 0%, #06193d 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 36px 26px;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(6, 25, 61, 0.2);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(6, 25, 61, 0.35);
}

.value-card-icon {
    width: 58px;
    height: 58px;
    background-color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    overflow: hidden;
}

.value-card-icon img {
    width: 44px;
    height: 44px;
    object-fit: contain;
    transform: scale(1.4);
    filter: none;
}

.value-card-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.value-card-desc {
    font-size: 0.885rem;
    color: #cbd5e1;
    line-height: 1.65;
    margin: 0;
}

/* 18.12 Infrastructure Full Display Showcase */
.about-infrastructure-full-card {
    width: 100%;
    margin-top: 36px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(10, 27, 61, 0.08);
    background-color: #ffffff;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.about-infrastructure-full-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 27, 61, 0.14);
}

.about-infrastructure-full-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0;
}

/* ==========================================================================
   19. DEPARTMENTS PAGE COMPREHENSIVE STYLING
   ========================================================================== */
.departments-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    padding: 90px 0 85px;
    background: #06193d url('../images/departments/dept-hero-banner.png') no-repeat center right / cover;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.departments-hero-content {
    max-width: 540px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.departments-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.departments-hero-divider {
    width: 48px;
    height: 3px;
    background-color: #e21b24;
    margin: 14px auto 16px;
    border-radius: 2px;
}

.departments-hero-desc {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* 19.2 Clinical Departments Grid Section */
.departments-section {
    padding: 70px 0 90px;
    background-color: #ffffff;
}

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

.dept-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(10, 27, 61, 0.04);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.dept-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 14px 32px rgba(10, 27, 61, 0.1);
}

.dept-card-img-wrap {
    width: 100%;
    height: 155px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
    background-color: #f1f5f9;
}

.dept-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

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

.dept-card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dept-card-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 8px 0;
    letter-spacing: -0.2px;
}

.dept-card-desc {
    font-size: 0.865rem;
    color: #475569;
    line-height: 1.55;
    margin-bottom: 14px;
    min-height: 40px;
}

.dept-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 18px;
    margin-top: auto;
}

.dept-tag-pill {
    background-color: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 0.725rem;
    font-weight: 600;
}

.dept-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    color: #e21b24;
    text-decoration: none;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.dept-card-link:hover {
    color: #b8171d;
    gap: 10px;
}

/* ==========================================================================
   20. DOCTORS PAGE COMPREHENSIVE STYLING
   ========================================================================== */
.doctors-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    padding: 90px 0 85px;
    background: #06193d url('../images/doctors/doctor-hero-banner.png') no-repeat center center / cover;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.doctors-hero-content {
    max-width: 520px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.doctors-hero-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.doctors-hero-divider {
    width: 48px;
    height: 2.5px;
    background-color: #e21b24;
    margin: 14px auto 16px;
    border-radius: 2px;
}

.doctors-hero-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* 20.2 Filter Tabs */
.doctors-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.doctors-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 8px;
    margin: 28px auto 42px;
    padding: 0 10px;
    max-width: 100%;
}

.doc-filter-btn {
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(10, 27, 61, 0.04);
    transition: all var(--transition-fast);
}

.doc-filter-btn:hover {
    background-color: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
}

.doc-filter-btn.active {
    background: #e21b24;
    color: #ffffff;
    border-color: #e21b24;
    box-shadow: 0 4px 12px rgba(226, 27, 36, 0.28);
}

/* 20.3 Doctors 4-Column Grid */
.doctors-grid-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(10, 27, 61, 0.04);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.doctor-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 14px 32px rgba(10, 27, 61, 0.1);
}

.doc-img-wrap {
    position: relative;
    width: 100%;
    height: 240px;
    background-color: #f8fafc;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform var(--transition-normal);
}

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

.doc-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-avatar-icon {
    font-size: 4rem;
    opacity: 0.3;
    filter: grayscale(1);
}

.doc-dept-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    font-size: 0.685rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 3px 9px;
    border-radius: 6px;
    background: #072e6b;
    color: #ffffff;
}

.doc-card-body {
    padding: 18px 16px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.doc-name {
    font-size: 1.12rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 4px 0;
    letter-spacing: -0.2px;
}

.doc-qualification {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0284c7;
    margin: 0 0 10px 0;
}

.doc-bio {
    font-size: 0.835rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.read-more-link {
    color: #0284c7;
    font-weight: 700;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.read-more-link:hover {
    color: #0369a1;
    text-decoration: underline;
}

.doc-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #e21b24;
    text-decoration: none;
    margin-top: auto;
    transition: gap var(--transition-fast), color var(--transition-fast);
}

.doc-book-btn:hover {
    color: #b8171d;
    gap: 10px;
}

/* 20.4 Bottom CTA Banner (Can't Find Your Doctor? / Emergency Assistance) */
.doctors-cta-banner {
    width: 100%;
    margin-top: 0;
    padding: 75px 24px;
    background: #06193d linear-gradient(135deg, #06193d 0%, #08214d 50%, #0c2b64 100%);
    color: #ffffff;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.doctors-cta-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}

.doctors-cta-desc {
    font-size: 1.02rem;
    color: #cbd5e1;
    max-width: 620px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn-cta-contact {
    background-color: #e21b24;
    color: #ffffff;
    padding: 13px 38px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    display: inline-block;
    transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 4px 14px rgba(226, 27, 36, 0.35);
}

.btn-cta-contact:hover {
    background-color: #b8171d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(226, 27, 36, 0.45);
    color: #ffffff;
}

/* ==========================================================================
   21. SERVICES PAGE (Hospital Services 24/7)
   ========================================================================== */
.services-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    padding: 90px 0 85px;
    background-color: #06193d;
    background-image: url('../images/services/services-hero-banner.png');
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.services-hero-container {
    width: 100%;
}

.services-hero-content {
    max-width: 520px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-hero-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.22;
    letter-spacing: -0.5px;
}

.services-hero-title .text-red {
    color: #e21b24;
    font-style: italic;
}

.services-hero-divider {
    width: 48px;
    height: 3px;
    background-color: #e21b24;
    margin: 14px auto 16px;
    border-radius: 2px;
}

.services-hero-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.services-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.services-grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 45px;
}

.service-card-item {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(10, 27, 61, 0.06);
    border: 1px solid #e2e8f0;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card-item:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 16px 36px rgba(10, 27, 61, 0.12);
}

.service-card-box {
    position: relative;
    width: 100%;
    min-height: 220px;
    background-color: #ffffff;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 18px;
    padding: 26px 22px 24px;
    box-shadow: 0 4px 18px rgba(10, 27, 61, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.service-card-box:hover {
    transform: translateY(-6px);
    border-color: #cbd5e1;
    box-shadow: 0 16px 36px rgba(10, 27, 61, 0.12);
}

.service-card-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 6px 0;
    letter-spacing: -0.2px;
}

.service-card-divider {
    width: 34px;
    height: 2.5px;
    background-color: #e21b24;
    margin-bottom: 12px;
}

.service-card-desc {
    font-size: 0.86rem;
    color: #475569;
    line-height: 1.55;
    max-width: 58%;
    margin: 0;
    font-weight: 500;
}

.service-card-img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 991px) {
    .services-grid-6 {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .services-grid-6 {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .services-hero-section {
        min-height: 200px;
    }
}

/* ==========================================================================
   22. CONTACT PAGE (Hero Banner, Patient Form & Location Map)
   ========================================================================== */
.contact-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    padding: 90px 0 85px;
    background: #06193d url('../images/contact/contact-hero-banner.png') no-repeat center right / cover;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.contact-hero-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.contact-hero-content {
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.contact-hero-title .text-red {
    color: #e21b24;
    font-style: italic;
}

.contact-hero-divider {
    width: 48px;
    height: 3px;
    background-color: #e21b24;
    margin: 14px auto 16px;
    border-radius: 2px;
}

.contact-hero-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 430px;
}

/* 22.1 Contact Form & Image Section */
.contact-main-wrapper {
    background-color: #f8fafc;
    padding: 70px 0 90px;
}

.contact-booking-grid {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 40px;
    align-items: stretch;
    margin-bottom: 50px;
}

.contact-booking-card {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px 38px 42px;
    box-shadow: 0 10px 30px rgba(10, 27, 61, 0.05);
    border: 1px solid #f1f5f9;
}

.contact-booking-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #0a1b3d;
    margin-bottom: 28px;
}

.contact-side-visual {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 27, 61, 0.05);
}

.contact-side-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 22.2 Contact Info Cards & Map Grid */
.contact-info-map-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 36px;
    align-items: stretch;
}

.contact-info-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-block {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 24px 28px;
    box-shadow: 0 8px 24px rgba(10, 27, 61, 0.04);
    border: 1px solid #f1f5f9;
}

.contact-info-block.block-navy {
    background-color: #06193d;
    color: #ffffff;
    border: none;
    box-shadow: 0 10px 28px rgba(6, 25, 61, 0.12);
}

.contact-block-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0a1b3d;
    margin-bottom: 10px;
}

.contact-info-block.block-navy .contact-block-heading {
    color: #ffffff;
}

.contact-block-text {
    font-size: 0.885rem;
    color: #64748b;
    line-height: 1.55;
    margin-bottom: 18px;
}

.btn-emergency-action {
    display: inline-block;
    background-color: #e21b24;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 6px;
    text-decoration: none;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.btn-emergency-action:hover {
    background-color: #b71c1c;
    color: #ffffff;
    transform: translateY(-1px);
}

.contact-timing-rows {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.contact-timing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.86rem;
    color: #cbd5e1;
}

.contact-timing-row .timing-time {
    font-weight: 600;
    color: #ffffff;
}

.contact-location-info p {
    font-size: 0.885rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 12px;
}

.contact-location-email {
    font-size: 0.885rem;
    color: #64748b;
    word-break: break-all;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-location-email:hover {
    color: #e21b24;
}

/* Map Container */
.contact-map-wrapper {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 27, 61, 0.05);
    border: 1px solid #e2e8f0;
    min-height: 480px;
}

.contact-map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border: 0;
    display: block;
}

.contact-map-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background-color: #ffffff;
    color: #2563eb;
    font-size: 0.84rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    z-index: 5;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.contact-map-badge:hover {
    background-color: #f8fafc;
    transform: translateY(-1px);
    color: #1d4ed8;
}

/* ==========================================================================
   23. PATIENT ZONE PAGE STYLING
   ========================================================================== */
.patient-zone-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    padding: 90px 0 85px;
    background: #06193d url('../images/patient-zone/patient-zone-hero-banner.png') no-repeat center right / cover;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.patient-zone-hero-container {
    width: 100%;
    position: relative;
    z-index: 2;
}

.patient-zone-hero-content {
    max-width: 500px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.patient-zone-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.patient-zone-hero-divider {
    width: 48px;
    height: 3px;
    background-color: #e21b24;
    margin: 14px auto 16px;
    border-radius: 2px;
}

.patient-zone-hero-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 450px;
}

/* 23.1 Patient Zone Main Section & Gallery */
.patient-zone-main-section {
    padding: 70px 0 90px;
    background-color: #ffffff;
}

.patient-zone-title-wrap {
    margin-bottom: 28px;
}

.patient-zone-title-wrap.videos-title-wrap {
    margin-top: 60px;
    margin-bottom: 28px;
}

.patient-zone-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #0a1b3d;
    margin: 0;
    letter-spacing: -0.3px;
}

.patient-zone-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.patient-gallery-card {
    border-radius: 14px;
    overflow: hidden;
    background-color: #f1f5f9;
    aspect-ratio: 4 / 3;
    box-shadow: 0 4px 16px rgba(10, 27, 61, 0.05);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.patient-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transform: scale(1.12);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.patient-gallery-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(10, 27, 61, 0.12);
}

.patient-gallery-card:hover .patient-gallery-img {
    transform: scale(1.24);
}

/* 23.2 Videos List Grid */
.patient-zone-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
}

.patient-video-card {
    background-color: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(10, 27, 61, 0.06);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.patient-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(10, 27, 61, 0.12);
}

.video-media-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #06193d;
    overflow: hidden;
    border-radius: 14px;
}

.video-media-box video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    pointer-events: none;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    z-index: 5;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.patient-video-card:hover .video-play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background-color: #ffffff;
}

/* ==========================================================================
   23.3 Video Lightbox Popup Modal
   ========================================================================== */
.video-modal-backdrop {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(6, 25, 61, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.video-modal-dialog {
    position: relative;
    width: auto;
    max-width: 90vw;
    background-color: #000000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-modal-backdrop.active .video-modal-dialog {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 22px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.video-modal-close:hover {
    background-color: #e21b24;
    border-color: #e21b24;
    transform: scale(1.1);
}

.video-modal-media {
    width: 100%;
    max-height: 85vh;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-media video {
    max-width: 100%;
    max-height: 85vh;
    display: block;
    outline: none;
    background-color: #000000;
}

/* Dots */
.patient-videos-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
}

.patient-videos-dots .p-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #cbd5e1;
    transition: all var(--transition-fast);
}

.patient-videos-dots .p-dot.active {
    width: 18px;
    height: 6px;
    border-radius: 4px;
    background-color: #e21b24;
}

/* ==========================================================================
   24. TESTIMONIALS LIST PAGE
   ========================================================================== */

/* 24.1 Hero Section */
.testimonials-hero-section {
    position: relative;
    padding: 90px 0 85px;
    min-height: 380px;
    background-color: #06193d;
    background-image: url('../images/patient-zone/testimonials-hero-banner.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.testimonials-hero-content {
    max-width: 560px;
    text-align: left;
    position: relative;
    z-index: 2;
}

.testimonials-hero-content .breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.testimonials-hero-content .breadcrumb-nav a {
    color: #cbd5e1;
    transition: color var(--transition-fast);
}

.testimonials-hero-content .breadcrumb-nav a:hover {
    color: #ffffff;
}

.testimonials-hero-content .breadcrumb-sep {
    color: #64748b;
}

.testimonials-hero-content .breadcrumb-current {
    color: #e21b24;
    font-weight: 600;
}

.testimonials-hero-title {
    font-size: 2.65rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.testimonials-hero-divider {
    width: 68px;
    height: 4px;
    background-color: #e21b24;
    border-radius: 3px;
    margin-bottom: 20px;
}

.testimonials-hero-desc {
    font-size: 1rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

/* 24.2 Trust Scorecard & Stats Bar */
.testimonial-stats-section {
    position: relative;
    margin-top: -42px;
    z-index: 10;
}

.testimonial-stats-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 18px;
}

.testimonial-stat-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 24px 22px;
    box-shadow: 0 10px 30px rgba(10, 27, 61, 0.08);
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(10, 27, 61, 0.12);
}

.testimonial-stat-card.rating-main-card {
    background: linear-gradient(135deg, #072c6e 0%, #031b48 100%);
    color: #ffffff;
    border: none;
}

.stat-rating-big {
    font-size: 2.35rem;
    font-weight: 900;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 6px;
}

.stat-rating-big span {
    font-size: 1.25rem;
    color: #94a3b8;
    font-weight: 600;
}

.stat-stars {
    color: #f59e0b;
    font-size: 1.15rem;
    letter-spacing: 2px;
    margin-bottom: 6px;
}

.stat-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(226, 27, 36, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 1.85rem;
    font-weight: 900;
    color: #0a1b3d;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.84rem;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

.rating-main-card .stat-label {
    color: #cbd5e1;
}

/* 24.3 Main Section */
.testimonials-main-section {
    padding: 70px 0 90px;
    background-color: #f8fafc;
}

.testimonials-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.sub-heading-pill {
    display: inline-block;
    padding: 4px 14px;
    background-color: rgba(226, 27, 36, 0.1);
    color: #e21b24;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.testimonials-section-title {
    font-size: 2.15rem;
    font-weight: 600;
    color: #0a1b3d;
    margin: 0;
    letter-spacing: -0.5px;
}

/* Filter Tabs */
.testimonial-filter-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab-btn {
    padding: 9px 18px;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    background-color: #ffffff;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-tab-btn:hover {
    background-color: #f1f5f9;
    color: #0a1b3d;
    border-color: #cbd5e1;
}

.filter-tab-btn.active {
    background-color: #e21b24;
    color: #ffffff;
    border-color: #e21b24;
    box-shadow: 0 4px 12px rgba(226, 27, 36, 0.25);
}

.testimonial-sub-heading-wrap {
    margin-bottom: 24px;
}

.testimonial-sub-heading {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 4px 0;
}

.testimonial-sub-desc {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.mt-50 {
    margin-top: 55px;
}

/* 24.4 Written Testimonials Grid */
.testimonials-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-review-card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 26px 24px 24px;
    border: 1px solid #eef2f6;
    box-shadow: 0 6px 20px rgba(10, 27, 61, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.testimonial-review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 32px rgba(10, 27, 61, 0.09);
    border-color: #e2e8f0;
}

.review-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.reviewer-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #072c6e 0%, #0a1b3d 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    flex-shrink: 0;
}

.reviewer-meta {
    flex-grow: 1;
}

.reviewer-name {
    font-size: 1.02rem;
    font-weight: 600;
    color: #0a1b3d;
    margin: 0 0 2px 0;
}

.reviewer-tag {
    font-size: 0.78rem;
    color: #64748b;
    display: block;
}

.verified-badge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.08);
    padding: 4px 10px;
    border-radius: 12px;
    flex-shrink: 0;
}

.review-rating {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-date {
    font-size: 0.76rem;
    color: #94a3b8;
    letter-spacing: normal;
    font-weight: 500;
}

.review-quote {
    font-size: 0.9rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 18px 0;
    flex-grow: 1;
    font-style: normal;
}

.treatment-tag {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 8px;
    background-color: #f1f5f9;
    color: #0a1b3d;
    font-size: 0.78rem;
    font-weight: 600;
    align-self: flex-start;
}

/* 24.5 Review Submission CTA Card */
.testimonial-cta-card {
    margin-top: 60px;
    background: linear-gradient(135deg, #072c6e 0%, #031b48 100%);
    border-radius: 22px;
    padding: 48px 40px;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(7, 44, 110, 0.25);
}

.testimonial-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(226, 27, 36, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-cta-content {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.testimonial-cta-title {
    font-size: 1.95rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0 0 12px 0;
}

.testimonial-cta-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0 0 26px 0;
}

.testimonial-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-white {
    border: 2px solid #ffffff;
    color: #ffffff;
    background: transparent;
    padding: 10px 24px;
    font-weight: 700;
    transition: all var(--transition-fast);
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: #072c6e;
}

/* ==========================================================================
   25. OPD PAGE (Schedule, Location Map & Services)
   ========================================================================== */

/* 25.1 OPD Hero Banner */
.opd-hero-section {
    position: relative;
    width: 100%;
    min-height: 380px;
    padding: 90px 0 85px;
    background-color: #06193e;
    background-image: url('../images/opd/opd-hero-banner.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.opd-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.opd-hero-content {
    max-width: 580px;
    text-align: center;
    margin: 0;
}

.opd-hero-title {
    font-size: 2.85rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.opd-hero-title .text-red {
    color: #e21b24;
}

.opd-hero-content .hero-badge-subtitle {
    display: block;
    color: #cbd5e1;
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.opd-hero-divider {
    width: 48px;
    height: 2.5px;
    background-color: #e21b24;
    margin: 14px auto 16px;
    border-radius: 2px;
}

.opd-hero-desc {
    font-size: 0.95rem;
    color: #e2e8f0;
    line-height: 1.65;
    margin: 0;
}

.opd-hero-desc em {
    display: inline-block;
    color: #cbd5e1;
    font-style: italic;
}

/* 25.2 OPD Schedule Section */
.opd-schedule-section {
    padding: 70px 0 60px;
    background-color: #f8fafc;
}

.opd-schedule-header {
    margin-bottom: 35px;
}

.opd-schedule-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 8px 0;
}

.opd-schedule-title .text-red {
    color: #e21b24;
}

.opd-schedule-desc {
    font-size: 0.95rem;
    color: #64748b;
    margin: 0;
}

.opd-main-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 30px;
    align-items: stretch;
}

/* OPD Cards List */
/* ==========================================================================
   OPD SCHEDULE CARDS (Premium Modern Redesign)
   ========================================================================== */
.opd-cards-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.opd-slot-card {
    position: relative;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.05), 0 2px 6px -1px rgba(15, 23, 42, 0.02);
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
}

.opd-slot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px -4px rgba(15, 23, 42, 0.09), 0 6px 12px -2px rgba(15, 23, 42, 0.04);
    border-color: #cbd5e1;
}

/* Left vertical accent indicator */
.opd-card-accent-strip {
    width: 6px;
    flex-shrink: 0;
}
.accent-general { background: linear-gradient(180deg, #10b981, #059669); }
.accent-cardio  { background: linear-gradient(180deg, #ef4444, #dc2626); }
.accent-neuro   { background: linear-gradient(180deg, #8b5cf6, #7c3aed); }
.accent-paed    { background: linear-gradient(180deg, #f59e0b, #d97706); }
.accent-gynae   { background: linear-gradient(180deg, #ec4899, #db2777); }

.opd-card-inner {
    flex: 1;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Top metadata strip */
.opd-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.opd-day-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 4px 10px;
    border-radius: 8px;
}
.opd-day-badge svg {
    color: #64748b;
}

.opd-spec-pill {
    font-size: 0.72rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pill-general { background-color: #ecfdf5; color: #047857; border: 1px solid #a7f3d0; }
.pill-cardio  { background-color: #fef2f2; color: #b91c1c; border: 1px solid #fecaca; }
.pill-neuro   { background-color: #f5f3ff; color: #6d28d9; border: 1px solid #ddd6fe; }
.pill-paed    { background-color: #fffbeb; color: #b45309; border: 1px solid #fde68a; }
.pill-gynae   { background-color: #fdf2f8; color: #be185d; border: 1px solid #fbcfe8; }

.opd-time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.86rem;
    font-weight: 700;
    color: #0f766e;
    background-color: #f0fdfa;
    border: 1px solid #ccfbf1;
    padding: 4px 12px;
    border-radius: 20px;
}
.opd-time-badge svg {
    color: #0d9488;
}

/* Card Body */
.opd-card-body {
    display: flex;
    align-items: center;
    gap: 16px;
}

.opd-dept-avatar {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}
.opd-slot-card:hover .opd-dept-avatar {
    transform: scale(1.05);
}

.avatar-general { background: linear-gradient(135deg, #ecfdf5, #d1fae5); color: #059669; }
.avatar-cardio  { background: linear-gradient(135deg, #fef2f2, #fee2e2); color: #dc2626; }
.avatar-neuro   { background: linear-gradient(135deg, #f5f3ff, #ede9fe); color: #7c3aed; }
.avatar-paed    { background: linear-gradient(135deg, #fffbeb, #fef3c7); color: #d97706; }
.avatar-gynae   { background: linear-gradient(135deg, #fdf2f8, #fce7f3); color: #db2777; }

.opd-info-main {
    flex: 1;
    min-width: 0;
}

.opd-dept-heading {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 4px 0;
    letter-spacing: -0.2px;
}

.opd-doctor-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 0.84rem;
    line-height: 1.4;
}

.opd-doc-name {
    font-weight: 700;
    color: #334155;
}

.opd-doc-sep {
    color: #94a3b8;
}

.opd-doc-qual {
    color: #64748b;
    font-size: 0.8rem;
}

/* Action cluster */
.opd-actions-cluster {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.btn-opd-book {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #e21b24, #c4121a);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(226, 27, 36, 0.25);
    transition: all 0.2s ease;
    white-space: nowrap;
}
.btn-opd-book:hover {
    background: linear-gradient(135deg, #c4121a, #a30e15);
    box-shadow: 0 4px 12px rgba(226, 27, 36, 0.35);
    transform: translateY(-1px);
    color: #ffffff;
}

.btn-opd-icon-action {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-opd-icon-action:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    color: #0f172a;
    transform: translateY(-1px);
}

/* Map Card */
.opd-map-card {
    background-color: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(10, 27, 61, 0.06);
    border: 1px solid #eef2f6;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.opd-map-embed-wrap {
    flex: 1;
    min-height: 380px;
    background-color: #e2e8f0;
}

.opd-map-footer {
    padding: 18px 20px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid #f1f5f9;
}

.opd-map-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.opd-pin-icon {
    margin-top: 2px;
    flex-shrink: 0;
}

.opd-hospital-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 2px 0;
}

.opd-hospital-address {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    line-height: 1.35;
}

.btn-opd-open-maps {
    background-color: #e21b24;
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: background-color var(--transition-fast);
}

.btn-opd-open-maps:hover {
    background-color: #c4121a;
    color: #ffffff;
}

/* 25.3 OPD Treatment & Services Section */
.opd-treatment-section {
    padding: 80px 0 90px;
    background-color: #ffffff;
}

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

.opd-expert-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.opd-treatment-title {
    font-size: 2.3rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 22px 0;
    letter-spacing: -0.5px;
}

.opd-treatment-p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 18px 0;
}

.opd-treatment-p:last-of-type {
    margin-bottom: 0;
}

/* Collage */
.opd-treatment-collage {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.collage-top-img {
    width: 100%;
    height: 220px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(10, 27, 61, 0.08);
}

.collage-top-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.collage-top-img:hover img {
    transform: scale(1.04);
}

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

.collage-small-img {
    width: 100%;
    height: 160px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(10, 27, 61, 0.08);
    background-color: #f1f5f9;
}

.collage-small-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-normal);
}

.collage-small-img:hover img {
    transform: scale(1.05);
}

/* ==========================================================================
   26. BOOK APPOINTMENT MODAL (POPUP FORM)
   ========================================================================== */
.apt-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(5, 24, 56, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s ease, visibility 0.28s ease;
    padding: 40px 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.apt-modal-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.apt-modal-container {
    position: relative;
    width: 100%;
    max-width: 560px;
    background-color: #f1f6fc;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.2);
    overflow: visible;
    transform: translateY(24px) scale(0.96);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin: auto;
}

.apt-modal-backdrop.is-open .apt-modal-container {
    transform: translateY(0) scale(1);
}

/* Modal Close Button (Floating Full Circle) */
.apt-modal-close-btn {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    color: #e21b24;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.apt-modal-close-btn:hover {
    transform: scale(1.1) rotate(90deg);
    background-color: #e21b24;
    color: #ffffff;
}

.apt-modal-close-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 3;
}

/* Modal Header with Full Responsive Uncropped Graphic Banner */
.apt-modal-header-wrap {
    width: 100%;
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    background-color: #051a3e;
    line-height: 0;
}

.apt-modal-banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px 20px 0 0;
    object-fit: contain;
}

/* Modal Body & Form */
.apt-modal-body {
    padding: 24px 28px 28px;
    background-color: #f1f6fc;
    border-radius: 0 0 20px 20px;
}

.apt-form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.apt-form-group {
    position: relative;
    margin-bottom: 18px;
}

.apt-form-label {
    position: absolute;
    top: -9px;
    left: 14px;
    background-color: #f1f6fc;
    padding: 0 6px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    z-index: 3;
    border-radius: 3px;
    line-height: 1;
    pointer-events: none;
}

.apt-input,
.apt-select,
.apt-textarea {
    width: 100%;
    background-color: #f8fafc;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.92rem;
    color: #0f172a;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    box-sizing: border-box;
}

.apt-input::placeholder,
.apt-textarea::placeholder {
    color: #94a3b8;
    font-size: 0.9rem;
}

.apt-input:focus,
.apt-select:focus,
.apt-textarea:focus {
    border-color: #072c6e;
    background-color: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(7, 44, 110, 0.12);
}

.apt-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23475569' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px;
    cursor: pointer;
}

.apt-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

/* Submit Button */
.btn-apt-submit {
    width: 100%;
    padding: 14px 20px;
    background: #d32029;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(211, 32, 41, 0.35);
    transition: transform 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 6px;
}

.btn-apt-submit:hover {
    background-color: #b91c1c;
    transform: translateY(-1.5px);
    box-shadow: 0 8px 22px rgba(211, 32, 41, 0.45);
}

.btn-apt-submit:active {
    transform: translateY(0);
}

/* Success Message inside modal */
.apt-modal-success {
    display: none;
    text-align: center;
    padding: 30px 20px 20px;
}

.apt-modal-success.show {
    display: block;
}

.apt-success-icon {
    width: 60px;
    height: 60px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 14px;
}

.apt-success-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: #072c6e;
    margin-bottom: 8px;
}

.apt-success-desc {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 576px) {
    .apt-form-grid-2 {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .apt-modal-body {
        padding: 20px 18px 24px;
    }

    .apt-modal-header {
        height: 120px;
    }
}

/* ==========================================================================
   27. DEPARTMENTS MEGA MENU DROPDOWN
   ========================================================================== */
.site-nav {
    position: relative;
}

.nav-menu>li.has-dropdown {
    position: relative;
}

.dropdown-chevron {
    display: inline-block;
    vertical-align: middle;
    margin-left: 3px;
    transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-chevron,
.has-dropdown.is-active .dropdown-chevron {
    transform: rotate(180deg);
}

.mega-menu-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 860px;
    max-width: 95vw;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0 24px 60px -10px rgba(5, 24, 56, 0.2), 0 0 0 1px rgba(15, 23, 42, 0.08);
    padding: 24px 26px 20px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s cubic-bezier(0.16, 1, 0.3, 1), transform 0.22s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.22s ease;
    text-align: left;
}

/* Invisible hover bridge */
.mega-menu-dropdown::before {
    content: '';
    position: absolute;
    top: -18px;
    left: 0;
    width: 100%;
    height: 20px;
}

.has-dropdown:hover .mega-menu-dropdown,
.has-dropdown.is-active .mega-menu-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.15fr;
    gap: 22px;
    align-items: stretch;
}

.mega-menu-col {
    display: flex;
    flex-direction: column;
}

.mega-menu-heading {
    font-size: 0.72rem;
    font-weight: 800;
    color: #072c6e;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding-bottom: 8px;
    margin-bottom: 8px;
    border-bottom: 2px solid #edf2f9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.mega-menu-heading::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #e21b24;
}

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

.mega-menu-links li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #1e293b;
    text-decoration: none;
    position: relative;
    transition: all 0.2s ease;
}

.mega-menu-links li a:hover {
    background-color: #f1f5f9;
    color: #004792;
    transform: translateX(4px);
}

.mega-menu-links li a::after {
    content: '›';
    position: absolute;
    right: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #004792;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.2s ease;
}

.mega-menu-links li a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.mega-icon {
    width: 22px;
    height: 22px;
    background: transparent;
    color: #004792;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.mega-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.mega-menu-links li a:hover .mega-icon {
    transform: scale(1.15);
    color: #e21b24;
}

/* Quick Actions Box with Dark Navy Theme */
.mega-actions-box {
    background: linear-gradient(145deg, #072c6e 0%, #051636 100%);
    border-radius: 16px;
    padding: 18px 16px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 25px rgba(5, 24, 56, 0.25);
    border: 1px solid rgba(7, 44, 110, 0.4);
}

.mega-actions-box .mega-menu-heading {
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.16);
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 1px;
}

.mega-actions-box .mega-menu-heading::before {
    background-color: #e21b24;
}

.mega-action-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
    justify-content: flex-start;
}

.mega-action-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 11px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #0f172a;
    font-size: 0.88rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.2s ease;
}

.mega-action-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    background: #ffffff;
    color: #e21b24;
}

.mega-action-card.btn-header-appointment:hover {
    color: #e21b24;
}

.mega-action-card.mega-emergency-card {
    border-left: 3px solid #e21b24;
}

.mega-action-card.mega-emergency-card:hover {
    color: #e21b24;
    box-shadow: 0 8px 20px rgba(226, 27, 36, 0.25);
}

.mega-action-card.mega-emergency-card:hover {
    border-color: #e21b24;
    color: #e21b24;
    box-shadow: 0 6px 18px rgba(226, 27, 36, 0.12);
}

.action-card-icon {
    width: 24px;
    height: 24px;
    background: transparent;
    color: #004792;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.action-card-icon svg {
    width: 22px;
    height: 22px;
    display: block;
}

.mega-action-card:hover .action-card-icon {
    transform: scale(1.15);
    color: #e21b24;
}

.action-card-text {
    flex: 1;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .mega-menu-dropdown {
        position: static;
        width: 100%;
        max-width: 100%;
        box-shadow: none;
        padding: 14px 10px;
        transform: none;
        display: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        border-radius: 10px;
        background-color: #f8fafc;
        margin-top: 8px;
    }

    .has-dropdown.is-active .mega-menu-dropdown {
        display: block;
    }

    .mega-menu-inner {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* ==========================================================================
   28. INDIVIDUAL DEPARTMENT DETAIL PAGES (MATCHING FIGMA SPEC)
   ========================================================================== */
.dept-page-banner {
    background: #072c6e;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    min-height: 320px;
    display: flex;
    align-items: center;
    padding: 0;
}

.dept-page-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    align-items: center;
    min-height: 320px;
}

.dept-page-banner-content {
    padding: 40px 30px 40px 0;
    z-index: 2;
}

.dept-page-banner-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.dept-page-banner-title .text-red,
.dept-page-banner-title span {
    color: #e21b24;
}

.dept-banner-divider {
    width: 54px;
    height: 2px;
    background: #e21b24;
    margin: 14px 0 18px;
}

.dept-page-banner-desc {
    font-size: 1.05rem;
    color: #e2e8f0;
    line-height: 1.6;
    max-width: 440px;
}

.dept-page-banner-img-wrap {
    display: flex;
    justify-content: flex-end;
    height: 100%;
    align-self: stretch;
    position: relative;
}

.dept-page-banner-img {
    height: 100%;
    max-height: 320px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* Department Layout Section */
.dept-detail-section {
    padding: 60px 0 90px;
    background-color: #f8fafc;
}

.dept-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: flex-start;
}

.dept-detail-main {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.dept-overview-card,
.dept-services-card,
.dept-content-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.dept-overview-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.dept-overview-p {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 18px;
}

.dept-overview-p:last-child {
    margin-bottom: 0;
}

.dept-services-title {
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 24px;
    letter-spacing: -0.3px;
}

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

.dept-services-list-1col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dept-service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.55;
}

.dept-check-red {
    width: 20px;
    height: 20px;
    background-color: #e21b24;
    color: #ffffff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

.dept-check-blue {
    width: 22px;
    height: 22px;
    background-color: #e0f2fe;
    color: #0284c7;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Consult our Experts Card */
.consult-expert-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 45%, #ebf4ff 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 28px 32px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    position: sticky;
    top: 90px;
    overflow: hidden;
}

.consult-icon-bubble {
    width: 44px;
    height: 44px;
    background-color: #fff1f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e21b24;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
}

.consult-card-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.consult-card-desc {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 200px;
    position: relative;
    z-index: 2;
}

.btn-consult-book {
    background-color: #b91c1c;
    color: #ffffff;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 8px;
    border: none;
    display: inline-block;
    box-shadow: 0 4px 14px rgba(185, 28, 28, 0.3);
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

.btn-consult-book:hover {
    background-color: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(185, 28, 28, 0.4);
    color: #ffffff;
}

.consult-card-graphic {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 175px;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.8) 35%, #000000 70%);
    mask-image: linear-gradient(to right, transparent 0%, rgba(0, 0, 0, 0.8) 35%, #000000 70%);
}

.consult-stethoscope-img {
    height: 100%;
    max-height: 290px;
    width: 100%;
    object-fit: cover;
    object-position: bottom right;
    display: block;
    mix-blend-mode: multiply;
}

@media (max-width: 991px) {
    .dept-page-banner-grid {
        grid-template-columns: 1fr;
    }

    .dept-page-banner-content {
        padding: 40px 0;
    }

    .dept-detail-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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


.dept-detail-section {
    padding: 60px 0 90px;
    background-color: #f8fafc;
}

.dept-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 36px;
    align-items: flex-start;
}

.dept-detail-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.dept-content-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.dept-section-heading {
    font-size: 1.55rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.dept-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 44px;
    height: 3px;
    background: #e21b24;
    border-radius: 2px;
}

.dept-content-lead {
    font-size: 1.05rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.75;
    margin-bottom: 18px;
}

.dept-content-p {
    font-size: 0.96rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 18px;
}

.dept-bullet-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px 20px;
}

.dept-bullet-list li {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
}

.dept-bullet-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    top: -2px;
    color: #e21b24;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
}

.dept-btn-action-wrap {
    margin-top: 24px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-book-dept {
    background-color: #e21b24;
    color: #ffffff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(226, 27, 36, 0.25);
    transition: all 0.2s ease;
}

.btn-book-dept:hover {
    background-color: #c81018;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(226, 27, 36, 0.35);
}

@media (max-width: 991px) {
    .dept-page-banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dept-page-banner-img-wrap {
        justify-content: center;
        margin-top: 20px;
    }

    .dept-page-banner::before {
        width: 100%;
        background: rgba(7, 44, 110, 0.9);
    }

    .dept-detail-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   BREADCRUMB & BACK BUTTON COMPONENT
   ========================================================================== */
.breadcrumb-bar {
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 6px 0;
    position: relative;
    z-index: 10;
    width: 100%;
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}

.breadcrumb-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #ffffff;
    color: #072c6e;
    border: 1px solid #cbd5e1;
    padding: 3px 11px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    line-height: 1.4;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    text-decoration: none;
    font-family: inherit;
}

.breadcrumb-back-btn:hover {
    color: #e21b24;
    border-color: #e21b24;
    background: #fff5f5;
    transform: translateX(-3px);
    box-shadow: 0 2px 6px rgba(226, 27, 36, 0.12);
}

.breadcrumb-back-btn svg {
    width: 13px;
    height: 13px;
    transition: transform 0.2s ease;
}

.breadcrumb-back-btn:hover svg {
    transform: translateX(-2px);
}

.breadcrumb-divider-vertical {
    width: 1px;
    height: 14px;
    background-color: #cbd5e1;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 6px;
    font-size: 0.84rem;
    font-weight: 500;
    line-height: 1.4;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: #64748b;
    font-weight: 500;
}

.breadcrumb-item a {
    color: #004792;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.breadcrumb-item a:hover {
    color: #e21b24;
    text-decoration: underline;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "/";
    color: #94a3b8;
    margin-right: 6px;
    font-weight: 400;
}

.breadcrumb-item.active {
    color: #0f172a;
    font-weight: 500;
}

@media (max-width: 576px) {
    .breadcrumb-bar {
        padding: 5px 0;
    }

    .breadcrumb-inner {
        gap: 6px;
    }

    .breadcrumb-list {
        font-size: 0.78rem;
    }

    .breadcrumb-back-btn {
        padding: 2px 8px;
        font-size: 0.78rem;
    }
}

/* ==========================================================================
   25. BLOG PAGE (EXACT MOCKUP STYLING)
   ========================================================================== */
.blog-hero-section {
    position: relative;
    padding: 85px 0 80px;
    min-height: 380px;
    background-color: #06193d;
    background-image: url('../images/blog/blog-hero-banner.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.blog-hero-content {
    max-width: 480px;
    text-align: center;
    margin: 0 0 0 20px;
    position: relative;
    z-index: 2;
}

.blog-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 14px 0;
}

.blog-hero-divider {
    width: 60px;
    height: 3px;
    background-color: #e21b24;
    border-radius: 2px;
    margin: 0 auto 16px auto;
}

.blog-hero-desc {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.blog-main-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: flex-start;
    padding: 50px 0 80px;
}

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

.blog-post-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 34px rgba(10, 27, 61, 0.08);
    border-color: rgba(226, 27, 36, 0.2);
}

.blog-post-thumb {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.blog-post-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

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

.blog-post-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-post-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.blog-post-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.35;
    margin: 0;
    transition: color 0.2s ease;
}

.blog-post-card:hover .blog-post-title {
    color: #e21b24;
}

.blog-post-arrow {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e21b24;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.blog-post-card:hover .blog-post-arrow {
    transform: translate(2px, -2px);
}

.blog-post-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0;
}

/* Sidebar Widgets */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.blog-widget-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
}

.blog-search-box {
    position: relative;
    width: 100%;
}

.blog-search-input {
    width: 100%;
    background-color: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: 10px;
    padding: 12px 42px 12px 16px;
    font-size: 0.9rem;
    color: #1e293b;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-search-input:focus {
    border-color: #072c6e;
    box-shadow: 0 0 0 3px rgba(7, 44, 110, 0.1);
}

.blog-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.blog-recent-widget {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(10, 27, 61, 0.04);
}

.blog-recent-widget .blog-widget-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 20px 0;
    position: relative;
    padding-left: 14px;
    display: flex;
    align-items: center;
}

.blog-recent-widget .blog-widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: #e21b24;
    border-radius: 4px;
}

.recent-post-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.recent-post-item {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    padding: 10px;
    border-radius: 14px;
    transition: all 0.25s ease;
    background: transparent;
    border: 1px solid transparent;
}

.recent-post-item:hover {
    background: #f8fafc;
    border-color: #f1f5f9;
    transform: translateX(4px);
}

.recent-post-thumb {
    width: 62px;
    height: 62px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    position: relative;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.recent-post-item:hover .recent-post-thumb img {
    transform: scale(1.08);
}

.recent-post-content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.recent-post-date {
    font-size: 0.74rem;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-post-date svg {
    color: #e21b24;
}

.recent-post-item-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin: 0;
    transition: color 0.2s ease;
}

.recent-post-item:hover .recent-post-item-title {
    color: #e21b24;
}

@media (max-width: 991px) {
    .blog-main-layout {
        grid-template-columns: 1fr;
    }
}

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

    .blog-hero-content {
        margin: 0 auto;
        text-align: left;
    }
}

/* ==========================================================================
   26. BLOG DETAIL PAGE STYLING
   ========================================================================== */
.blog-detail-header-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 40px 0 30px;
    border-bottom: 1px solid #eef2f6;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.84rem;
    color: #64748b;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.blog-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.blog-breadcrumb a:hover {
    color: #e21b24;
}

.breadcrumb-sep {
    color: #cbd5e1;
}

.breadcrumb-current {
    color: #0f172a;
    font-weight: 600;
}

.article-meta-badge-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.article-category-badge {
    background-color: #fee2e2;
    color: #dc2626;
    font-size: 0.76rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-read-time,
.article-publish-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.82rem;
    color: #64748b;
    font-weight: 500;
}

.article-read-time svg,
.article-publish-date svg {
    color: #94a3b8;
}

.article-main-title {
    font-size: 2.35rem;
    font-weight: 800;
    color: #0a1b3d;
    line-height: 1.28;
    margin: 0 0 24px 0;
    max-width: 900px;
}

.article-author-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 18px;
    border-top: 1px solid #f1f5f9;
    flex-wrap: wrap;
}

.author-avatar-wrap {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #e21b24;
    flex-shrink: 0;
}

.author-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info-text {
    display: flex;
    flex-direction: column;
}

.author-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.author-name {
    font-size: 0.92rem;
    color: #0f172a;
    font-weight: 700;
}

.article-verified-badge {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #059669;
    font-weight: 600;
    background: #ecfdf5;
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid #d1fae5;
}

/* Detail Body Section */
.blog-detail-body-section {
    padding: 50px 0 70px;
    background-color: #ffffff;
}

.blog-detail-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 45px;
    align-items: start;
}

.article-content-wrapper {
    background: #ffffff;
}

.article-featured-image-box {
    margin-bottom: 32px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(10, 27, 61, 0.06);
}

.article-featured-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.article-img-caption {
    font-size: 0.82rem;
    color: #64748b;
    padding: 10px 16px;
    background: #f8fafc;
    margin: 0;
    border-top: 1px solid #f1f5f9;
    font-style: italic;
}

.article-lead-paragraph {
    font-size: 1.15rem;
    line-height: 1.75;
    color: #334155;
    font-weight: 400;
    margin-bottom: 28px;
}

.article-content-wrapper h2 {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 36px 0 16px 0;
    line-height: 1.35;
}

.article-content-wrapper h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 28px 0 12px 0;
}

.article-content-wrapper p {
    font-size: 1rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 20px;
}

.article-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-checklist li {
    position: relative;
    padding-left: 28px;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #334155;
}

.article-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #e21b24;
    font-weight: 900;
    font-size: 1.1rem;
}

.article-callout-box {
    display: flex;
    gap: 18px;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-left: 5px solid #16a34a;
    border-radius: 14px;
    padding: 22px 24px;
    margin: 32px 0;
}

.callout-icon {
    font-size: 1.6rem;
    line-height: 1;
    flex-shrink: 0;
}

.callout-content h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #14532d;
    margin: 0 0 8px 0;
}

.callout-content p {
    font-size: 0.94rem;
    line-height: 1.6;
    color: #166534;
    margin: 0;
}

.article-quote {
    margin: 36px 0;
    padding: 24px 30px;
    background: #f8fafc;
    border-left: 4px solid #e21b24;
    border-radius: 0 16px 16px 0;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #1e293b;
}

.article-quote cite {
    display: block;
    margin-top: 12px;
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 700;
    color: #e21b24;
}

/* Article Footer Meta: Tags & Share */
.article-footer-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    margin-top: 36px;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    flex-wrap: wrap;
    gap: 18px;
}

.article-tags-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.tags-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
}

.article-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.article-tag:hover {
    background: #e21b24;
    color: #ffffff;
}

.article-share-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-heading {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.share-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.share-fb {
    background-color: #1877f2;
}

.share-wa {
    background-color: #25d366;
}

.share-tw {
    background-color: #000000;
}

/* Author Profile Box */
.author-profile-card {
    display: flex;
    gap: 22px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px;
    margin: 36px 0;
    align-items: center;
}

.author-profile-pic {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.author-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-profile-details h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 4px 0;
}

.author-profile-role {
    display: block;
    font-size: 0.82rem;
    color: #e21b24;
    font-weight: 600;
    margin-bottom: 10px;
}

.author-profile-details p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.55;
    margin: 0 0 14px 0;
}

/* Post Navigation */
.post-navigation-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 36px 0 0 0;
}

.post-nav-btn {
    display: flex;
    flex-direction: column;
    padding: 18px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
    background: #ffffff;
}

.post-nav-btn:hover {
    border-color: #e21b24;
    box-shadow: 0 6px 20px rgba(226, 27, 36, 0.06);
    transform: translateY(-2px);
}

.post-nav-btn.next-post {
    text-align: right;
}

.nav-sub {
    font-size: 0.76rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.nav-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.35;
}

/* Category Widget */
.blog-category-widget {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 24px 20px;
    box-shadow: 0 10px 30px rgba(10, 27, 61, 0.04);
}

.blog-category-widget .blog-widget-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0a1b3d;
    margin: 0 0 18px 0;
    position: relative;
    padding-left: 14px;
}

.blog-category-widget .blog-widget-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: #e21b24;
    border-radius: 4px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
    transition: all 0.2s ease;
}

.category-list a:hover {
    background: #fee2e2;
    color: #e21b24;
    padding-left: 16px;
}

.cat-count {
    font-size: 0.76rem;
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 8px;
    border-radius: 50px;
    font-weight: 700;
}

.category-list a:hover .cat-count {
    background: #e21b24;
    color: #ffffff;
}

/* Sidebar Appointment CTA Box */
.sidebar-appointment-box {
    background: linear-gradient(135deg, #0a1b3d 0%, #1e3a8a 100%);
    border-radius: 20px;
    padding: 28px 24px;
    color: #ffffff;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 27, 61, 0.12);
}

.sidebar-cta-badge {
    display: inline-block;
    background: rgba(226, 27, 36, 0.25);
    color: #fca5a5;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.sidebar-appointment-box h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
}

.sidebar-appointment-box p {
    font-size: 0.86rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin: 0 0 18px 0;
}

.sidebar-appointment-box .btn-block {
    width: 100%;
    margin-bottom: 14px;
}

.sidebar-emergency-call small {
    display: block;
    font-size: 0.72rem;
    color: #94a3b8;
    text-transform: uppercase;
}

.sidebar-emergency-call a {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
}

/* Related Posts Section */
.related-posts-section {
    padding: 60px 0 70px;
}

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

@media (max-width: 991px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }

    .related-posts-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .article-main-title {
        font-size: 1.7rem;
    }

    .article-featured-img {
        height: 240px;
    }

    .author-profile-card {
        flex-direction: column;
        text-align: center;
    }

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

    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}

/* Text Alignment Utilities */
.text-md-center {
    text-align: center;
}


/* ==========================================================================
   EXPERTS SECTION WHITE TEXT & VIEW ALL ALIGNMENT
   ========================================================================== */
.experts-section .section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 36px;
    width: 100%;
}

.experts-section .section-header-flex > div:first-child {
    max-width: 760px;
}

.experts-section .section-title {
    color: #ffffff !important;
    font-size: 2.35rem;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.25;
}

.experts-section .section-title em,
.experts-section .section-title <em> {
    color: #ffffff !important;
    font-style: italic;
}

.experts-section .experts-subtitle {
    color: #ffffff !important;
    font-size: 0.925rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
}

.experts-section .view-all-btn {
    color: #ffffff !important;
    background-color: #e21b24 !important;
    border: 1px solid #e21b24 !important;
    padding: 8px 22px !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 0.88rem !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    margin-left: auto !important;
    align-self: flex-start !important;
    margin-top: 4px !important;
    box-shadow: 0 4px 14px rgba(226, 27, 36, 0.4) !important;
}

.experts-section .view-all-btn:hover {
    background-color: #ffffff !important;
    color: #06193d !important;
    border-color: #ffffff !important;
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.3) !important;
}