/* ── Design tokens ───────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --brand-green: #008001;
    --brand-green-hover: #006601;
    --brand-green-soft: rgba(0, 128, 1, 0.1);
    --accent-gold: #00a001;
    --accent-gold-hover: #008001;
    --accent-gold-soft: rgba(0, 128, 1, 0.14);
    --surface: #ffffff;
    --surface-muted: #f4f6f8;
    --surface-elevated: #fafbfc;
    --border: #e5e7eb;
    --border-strong: #c8d2dd;
    --text: #111827;
    --text-secondary: #3f4a59;
    --text-muted: #6b7280;
    --link: #008001;
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 28px rgba(15, 23, 42, 0.07);
    --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.1);
    --radius: 10px;
    --radius-lg: 14px;
    --radius-pill: 999px;
    --header-h: 72px;
    --topbar-h: 40px;
    --container: 1200px;
    --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
    --font-display: "Playfair Display", "Times New Roman", Georgia, serif;
    /* Vertical rhythm */
    --section-pad-y: clamp(3rem, 5.5vw, 5rem);
    --section-pad-y-tight-top: clamp(2.5rem, 4.5vw, 3.5rem);
    --heading-gap: clamp(2.25rem, 4.5vw, 3rem);
    --touch-min: 44px;
    --text-page-h1: clamp(1.8rem, 3.2vw, 2.3rem);
    --text-lead: 1.125rem;
    --text-ui: 0.9375rem;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    background: var(--surface);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -120px;
    z-index: 10001;
    padding: 12px 18px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    color: #fff;
    background: var(--brand-green);
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 16px;
    outline: none;
}

.skip-link:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

/* ── Layout ─────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container);
    margin-left: auto;
    margin-right: auto;
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
}

.section {
    padding: var(--section-pad-y) 0;
}

.section--tight {
    padding-top: var(--section-pad-y-tight-top);
    padding-bottom: var(--section-pad-y);
}

.section--muted {
    background: var(--surface-muted);
}

.section-actions {
    margin-top: clamp(2rem, 4vw, 2.5rem);
    display: flex;
    justify-content: center;
    gap: 12px 16px;
    flex-wrap: wrap;
}

.main-content {
    min-height: calc(100vh - 320px);
}

#main:focus {
    outline: none;
}

/* Section heading partial */
.section-heading {
    max-width: 42rem;
    margin: 0 auto var(--heading-gap);
    text-align: center;
}

.section-heading--left {
    margin-left: 0;
    text-align: left;
}

.section-heading__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-green);
    margin: 0 0 0.625rem;
}

.section-heading__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.6vw, 2.05rem);
    font-weight: 600;
    letter-spacing: -0.015em;
    color: var(--text);
    margin: 0 0 0.9rem;
    line-height: 1.28;
}

.section-heading__subtitle {
    margin: 0;
    font-size: clamp(0.98rem, 1.45vw, 1.06rem);
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
}

.section-heading--left .section-heading__subtitle {
    margin-left: 0;
    margin-right: 0;
}

/* ── Top bar ────────────────────────────────────────────── */
.top-bar {
    background: #ffffff;
    color: #4b5563;
    font-size: 13px;
    border-bottom: 1px solid #e5e7eb;
}

.top-bar__inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: max(0px, env(safe-area-inset-top));
}

.top-bar a {
    color: #008001;
    text-decoration: none;
    font-weight: 600;
}

.top-bar a:hover {
    color: #006601;
    text-decoration: none;
}

.top-bar a:focus-visible {
    outline: 2px solid rgba(0, 128, 1, 0.35);
    outline-offset: 2px;
    border-radius: 4px;
}

.top-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.top-bar__item i {
    color: #008001;
    opacity: 1;
}

.top-bar__social {
    gap: 6px;
}

.top-bar__social-link {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid #dbe8e2;
    background: #f8fbfa;
    color: #008001;
}

.top-bar__social-link i {
    color: inherit;
    font-size: 12px;
}

.top-bar__social-link:hover {
    color: #ffffff;
    background: #008001;
    border-color: #008001;
}

/* ── Header & navigation ────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.navbar {
    position: relative;
    z-index: 2;
    background: var(--surface);
    border-bottom: 1px solid #e9edf2;
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
    padding-top: 6px;
    padding-bottom: 6px;
}

.navbar__logo {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    color: var(--text);
    flex-shrink: 0;
}

.navbar__logo-img {
    display: block;
    height: 54px;
    width: auto;
    max-width: min(176px, 44vw);
    object-fit: contain;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    cursor: pointer;
}

.nav-toggle__bar {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.2s, opacity 0.2s;
}

.navbar__collapse {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    justify-content: flex-end;
}

.navbar-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 2px 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.navbar-menu .nav-item {
    position: relative;
}

.navbar-menu .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 4px;
    font-size: 12px;
    font-weight: 500;
    color: #5b6472;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.15s;
}

.navbar-menu .nav-link:hover,
.navbar-menu .nav-item.active > .nav-link {
    color: var(--text);
    text-shadow: 0 0 0 transparent;
}

.navbar-menu .nav-item.active > .nav-link {
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: inset 0 -1px 0 var(--accent-gold);
}

.navbar-menu .nav-link i {
    font-size: 14px;
    opacity: 0.85;
}

.dropdown-arrow {
    flex-shrink: 0;
    opacity: 0.6;
    transition: transform 0.2s ease;
}

.navbar-menu .has-dropdown:hover > .nav-link .dropdown-arrow,
.navbar-menu .has-dropdown:focus-within > .nav-link .dropdown-arrow {
    transform: rotate(180deg);
}

.navbar-menu .dropdown-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 4px);
    min-width: 220px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
    z-index: 50;
}

.navbar-menu .has-dropdown:hover > .dropdown-menu,
.navbar-menu .has-dropdown:focus-within > .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-menu .dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    font-size: 14px;
    color: var(--text);
    text-decoration: none;
    border-radius: 8px;
}

.navbar-menu .dropdown-menu li a:hover,
.navbar-menu .dropdown-menu li.active a {
    background: var(--brand-green-soft);
    color: var(--brand-green);
}

.navbar__hotline {
    flex-shrink: 0;
    white-space: nowrap;
}

/* Cùng hàng với menu: nút gọn hơn min-height mặc định .btn */
.navbar__collapse .navbar__hotline.btn--primary {
    min-height: 0;
    height: auto;
    padding: 7px 13px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 999px;
    background: transparent;
    color: var(--brand-green);
    border: 1px solid rgba(15, 122, 85, 0.35);
    box-shadow: none;
}

.navbar__collapse .navbar__hotline.btn--primary i {
    font-size: 13px;
}

.navbar__collapse .navbar__hotline.btn--primary:hover {
    background: var(--brand-green);
    color: #f8fafc;
    border-color: var(--brand-green);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: var(--touch-min);
    padding: 10px 18px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    border-radius: var(--radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.15s;
}

.btn--lg {
    min-height: 48px;
    padding: 12px 22px;
    font-size: 15px;
}

.btn--primary {
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 1px 2px rgba(15, 122, 85, 0.22);
}

.btn--primary:hover {
    background: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
    box-shadow: var(--shadow-sm);
}

.btn--primary:active {
    transform: translateY(1px);
    box-shadow: none;
}

.btn--outline {
    background: var(--surface);
    color: var(--text);
    border-color: var(--border-strong);
}

.btn--outline:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: var(--brand-green-soft);
}

.btn--outline:active {
    transform: translateY(1px);
}

/* Legacy button classes (other public views) */
.btn.btn-primary {
    background: var(--brand-green);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 1px 2px rgba(15, 122, 85, 0.22);
}

.btn.btn-primary:hover {
    background: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
}

.btn--outline:hover,
.btn.btn-secondary:hover {
    border-color: var(--accent-gold);
    color: var(--brand-green);
    background: var(--accent-gold-soft);
}

.btn.btn-secondary {
    background: var(--surface);
    color: var(--brand-green);
    border: 2px solid var(--brand-green);
}

.btn.btn-secondary:hover {
    background: var(--brand-green-soft);
}

/* ── Home hero ───────────────────────────────────────────── */
.home-hero {
    position: relative;
    padding: clamp(4.25rem, 8.5vw, 6rem) 0 clamp(4.75rem, 9.5vw, 6.75rem);
    overflow: hidden;
}

.home-hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(162deg, #f8fafc 0%, #f4f6fa 44%, #eef2f7 100%);
    z-index: 0;
}

.home-hero__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 14% 18%, rgba(0, 128, 1, 0.1) 0%, transparent 38%),
        radial-gradient(circle at 86% 80%, rgba(0, 61, 1, 0.07) 0%, transparent 44%);
    pointer-events: none;
}

.home-hero__inner {
    position: relative;
    z-index: 1;
}

.home-hero__content {
    max-width: 720px;
}

.home-hero__eyebrow {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-green);
    margin: 0 0 14px;
}

.home-hero__title {
    font-size: clamp(2rem, 4.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 10px;
    color: var(--text);
}

.home-hero__subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin: 0 0 16px;
}

.home-hero__desc {
    margin: 0 0 28px;
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
}

.home-hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.home-hero__trust {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.home-hero__trust li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(6px);
}

.home-hero__trust i {
    color: var(--brand-green);
    font-size: 15px;
}

/* Home hero — banner carousel (admin-managed slides) */
.home-hero--carousel {
    position: relative;
    padding: 0;
    overflow: hidden;
    background: #0a1f0a;
}

.home-hero-carousel__slides {
    position: relative;
    min-height: clamp(420px, 58vh, 640px);
}

.home-hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.55s ease, visibility 0.55s ease;
    z-index: 0;
}

.home-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-hero-slide__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.02);
}

.home-hero-slide__bg--fallback {
    background-image: none;
    background: linear-gradient(155deg, #0d3d0d 0%, #0a2f14 45%, #071a0c 100%);
}

.home-hero-slide__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.35) 42%,
        rgba(0, 0, 0, 0.2) 100%
    );
    z-index: 1;
}

.home-hero-slide__inner {
    position: relative;
    z-index: 2;
    padding: clamp(3.25rem, 7vw, 5rem) 0 clamp(5rem, 10vw, 7rem);
}

.home-hero__content--banner {
    max-width: 720px;
}

.home-hero--carousel .home-hero__eyebrow {
    color: rgba(255, 255, 255, 0.92);
}

.home-hero--carousel .home-hero__title {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.home-hero--carousel .home-hero__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.home-hero--carousel .home-hero__desc {
    color: rgba(255, 255, 255, 0.82);
}

.home-hero--carousel .btn--outline {
    border-color: rgba(255, 255, 255, 0.55);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.home-hero--carousel .btn--outline:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.75);
}

.home-hero-carousel__controls {
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
}

.home-hero-carousel__btn {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(0, 0, 0, 0.25);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.home-hero-carousel__btn:hover {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.55);
}

.home-hero-carousel__btn--prev {
    left: max(12px, env(safe-area-inset-left));
}

.home-hero-carousel__btn--next {
    right: max(12px, env(safe-area-inset-right));
}

.home-hero-carousel__dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: clamp(88px, 14vw, 120px);
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 0 16px;
}

.home-hero-carousel__dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    padding: 0;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.home-hero-carousel__dot:hover {
    background: rgba(255, 255, 255, 0.55);
}

.home-hero-carousel__dot.is-active {
    background: #fff;
    transform: scale(1.25);
}

.home-hero-carousel__trust-wrap {
    position: relative;
    z-index: 3;
    padding: 1rem 0 1.5rem;
    background: var(--surface-muted);
    border-bottom: 1px solid var(--border);
}

.home-hero-carousel__trust-wrap .home-hero__trust {
    justify-content: center;
}

@media (max-width: 640px) {
    .home-hero-carousel__btn {
        width: 40px;
        height: 40px;
    }

    .home-hero-carousel__btn--prev {
        left: 8px;
    }

    .home-hero-carousel__btn--next {
        right: 8px;
    }
}

/* ── Grids & cards ─────────────────────────────────────── */
.grid {
    display: grid;
    gap: clamp(16px, 2.5vw, 22px);
}

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

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

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

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

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.22s ease, border-color 0.22s ease, transform 0.22s ease;
}

.card:hover:not(.card--news) {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 128, 1, 0.2);
}

.card--news:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.card__title {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0 0 8px;
    color: var(--text);
    line-height: 1.35;
}

.card__text {
    margin: 0;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
}

.card__meta {
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-green);
    margin: 0 0 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
}

.card__link:hover {
    text-decoration: underline;
}

.card__link:focus-visible {
    outline: 2px solid var(--brand-green);
    outline-offset: 3px;
    border-radius: 4px;
}

.card--service {
    padding: 24px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card--service:hover {
    transform: translateY(-3px);
}

.card--service__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-green-soft);
    color: var(--brand-green);
    font-size: 20px;
    margin-bottom: 16px;
}

.card--service .card__link {
    margin-top: auto;
}

/* Department slider */
.dept-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dept-slider__track {
    display: flex;
    gap: clamp(14px, 2vw, 20px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 4px;
    scroll-behavior: smooth;
    padding: 8px 4px 18px;
    margin: 0 -4px;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    overscroll-behavior-x: contain;
}

.dept-slider__track::-webkit-scrollbar {
    height: 6px;
}

.dept-slider__track::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 4px;
}

.dept-slide {
    flex: 0 0 min(340px, min(85vw, 400px));
    scroll-snap-align: start;
}

.dept-slider__btn {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.dept-slider__btn:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: var(--brand-green-soft);
}

.dept-slider__btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.card--dept {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    padding: 0;
}

.card--dept:hover {
    transform: translateY(-2px);
}

.card--dept__media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--surface-muted);
}

.card--dept__media--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--brand-green);
    opacity: 0.5;
}

.card--dept__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card--dept__body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card--dept__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    margin-top: auto;
    padding-top: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
}

.card--dept__meta i {
    margin-right: 4px;
    color: var(--brand-green);
}

/* Doctors placeholder cards */
.card--doctor {
    padding: 28px 24px;
    text-align: center;
}

.card--doctor__avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: var(--radius-lg);
    background: linear-gradient(145deg, #ecfdf5, #d1fae5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--brand-green);
}

.card--doctor__avatar--photo {
    display: block;
    overflow: hidden;
    background: #eef2f7;
}

.card--doctor__avatar--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card--why {
    padding: 26px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.card--why__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand-green-soft);
    color: var(--brand-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.card--why .card__title {
    margin-bottom: 6px;
}

/* News */
.card--news {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.card--news__thumb {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--brand-green);
    opacity: 0.85;
}

.card--news__thumb--image {
    display: block;
    overflow: hidden;
    background: #eef2f7;
}

.card--news__thumb--image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.card--news:hover .card--news__thumb--image img {
    transform: scale(1.03);
}

.card--news__body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card--news__date {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--brand-green);
    margin: 0 0 8px;
}

.card--news .card__title a {
    text-decoration: none;
    color: var(--text);
}

.card--news .card__title a:hover {
    color: var(--brand-green);
}

.card--news .card__title a:focus-visible {
    outline: 2px solid var(--brand-green);
    outline-offset: 2px;
    border-radius: 4px;
}

.card--news .card__link {
    margin-top: auto;
}

/* CTA band */
.home-cta {
    background: linear-gradient(135deg, #eaf8f2 0%, #f1faf6 50%, #f8fbfa 100%);
    border-top: 1px solid rgba(0, 128, 1, 0.16);
    border-bottom: 1px solid var(--border);
    padding: clamp(3rem, 6vw, 3.75rem) 0;
}

.home-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.home-cta__text {
    max-width: 560px;
}

.home-cta__title {
    font-size: clamp(1.35rem, 2.5vw, 1.65rem);
    font-weight: 700;
    margin: 0 0 10px;
    letter-spacing: -0.02em;
}

.home-cta__desc {
    margin: 0;
    color: var(--text-secondary);
    font-size: 1rem;
}

.home-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.empty-hint {
    text-align: center;
    color: var(--text-muted);
    padding: 24px;
    background: var(--surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius-lg);
}

.empty-hint a {
    color: var(--brand-green);
    font-weight: 600;
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
    background: #ffffff;
    color: #243041;
    padding-top: clamp(3.25rem, 5.5vw, 3.9rem);
    padding-bottom: max(0px, env(safe-area-inset-bottom));
    border-top: 1px solid #dbe8e2;
}

.site-footer__grid {
    display: grid;
    grid-template-columns: minmax(280px, 1.8fr) 1fr 1fr minmax(240px, 1.2fr);
    gap: 48px 40px;
    padding-bottom: 56px;
}

.site-footer__map-col {
    min-width: 0;
}

.site-footer__logo {
    display: inline-block;
    line-height: 0;
    text-decoration: none;
    margin-bottom: 14px;
}

.site-footer__logo-img {
    display: block;
    height: auto;
    max-height: 68px;
    width: auto;
    max-width: min(140px, 60vw);
    object-fit: contain;
}

.site-footer__logo:hover .site-footer__logo-img {
    opacity: 0.95;
}

.site-footer__logo:focus-visible {
    outline: 2px solid #a7f3d0;
    outline-offset: 3px;
    border-radius: 4px;
}

.site-footer__lead {
    margin: 0 0 22px;
    font-size: 13px;
    line-height: 1.75;
    max-width: 400px;
    color: #334155;
}

.site-footer__contact-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.site-footer__social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid #dbe8e2;
    background: #f8fbfa;
    color: #2f6b55;
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 600;
    transition: all 0.18s ease;
}

.site-footer__social-link i {
    color: var(--brand-green);
}

.site-footer__social-link:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: var(--brand-green-soft);
}

.site-footer__map {
    margin-top: 14px;
    border: 1px solid #dbe8e2;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fbfa;
}

.site-footer__map iframe {
    display: block;
    width: 100%;
    height: 190px;
    border: 0;
}

.site-footer__map-load-btn {
    width: 100%;
    height: 190px;
    border: 0;
    background: linear-gradient(180deg, #f5faf8 0%, #eef7f2 100%);
    color: #1f2f42;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.site-footer__map-load-btn:hover {
    background: linear-gradient(180deg, #eff8f3 0%, #e6f3ec 100%);
}

.site-footer__map-link {
    display: inline-block;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
}

.site-footer__map-link:hover {
    text-decoration: underline;
}

.site-footer__contact-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 13px;
    color: #334155;
}

.site-footer__contact-row a {
    color: #243041;
    text-decoration: none;
    font-weight: 500;
}

.site-footer__contact-row a:hover {
    color: #006601;
    text-decoration: none;
}

.site-footer__icon {
    color: var(--brand-green);
    width: 18px;
    opacity: 0.82;
    flex-shrink: 0;
}

.site-footer__heading {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #334155;
    margin: 0 0 18px;
}

.site-footer__links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-footer__links li {
    margin-bottom: 12px;
}

.site-footer__links a {
    color: #334155;
    text-decoration: none;
    font-size: 13px;
}

.site-footer__links a:hover {
    color: #006601;
}

.site-footer__links a:focus-visible {
    outline: 2px solid rgba(47, 107, 85, 0.28);
    outline-offset: 2px;
    border-radius: 4px;
}

.site-footer__contact-row a:focus-visible {
    outline: 2px solid rgba(47, 107, 85, 0.28);
    outline-offset: 2px;
    border-radius: 4px;
}

.site-footer__bottom {
    border-top: 1px solid #dbe8e2;
    padding: 22px 0 24px;
}

.site-footer__bottom-inner {
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.02em;
    color: #334155;
}

.site-footer__bottom-inner p {
    margin: 0;
}

/* ── Static page content (articles, CMS pages) ──────────── */
.page-section {
    padding: 48px 0 64px;
}

.page-title {
    font-size: var(--text-page-h1);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.page-body {
    line-height: 1.85;
    color: var(--text);
    font-size: 15px;
}

.page-body h1,
.page-body h2,
.page-body h3,
.page-body h4 {
    color: var(--text);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.page-body h2 {
    font-size: 22px;
}

.page-body h3 {
    font-size: 18px;
}

.page-body p {
    margin-bottom: 16px;
}

.page-body ul,
.page-body ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-body li {
    margin-bottom: 6px;
}

.page-body a {
    color: var(--brand-green);
    text-decoration: underline;
}

.page-body a:hover {
    opacity: 0.85;
}

.page-body .page-file-link {
    display: flex;
    align-items: center;
    gap: 12px;
    width: min(100%, 860px);
    margin: 10px 0;
    padding: 14px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);
    color: #111827;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.05), 0 14px 24px rgba(15, 23, 42, 0.035);
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.page-body .page-file-link:hover {
    opacity: 1;
    border-color: #d1d5db;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fa 100%);
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.09), 0 20px 34px rgba(15, 23, 42, 0.05);
    transform: translateY(-2px);
}

.page-body .page-file-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    border: 1px solid #d8e4dc;
    background: #f6f8f7;
    color: #1f2937;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.page-body .page-file-link[data-ext="pdf"] .page-file-link__icon {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #be123c;
}

.page-body .page-file-link[data-ext="doc"] .page-file-link__icon,
.page-body .page-file-link[data-ext="docx"] .page-file-link__icon {
    background: #eff6ff;
    border-color: #bfdbfe;
    color: #1d4ed8;
}

.page-body .page-file-link[data-ext="xls"] .page-file-link__icon,
.page-body .page-file-link[data-ext="xlsx"] .page-file-link__icon,
.page-body .page-file-link[data-ext="csv"] .page-file-link__icon {
    background: #ecfdf3;
    border-color: #bbf7d0;
    color: #15803d;
}

.page-body .page-file-link[data-ext="ppt"] .page-file-link__icon,
.page-body .page-file-link[data-ext="pptx"] .page-file-link__icon {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #c2410c;
}

.page-body .page-file-link[data-ext="zip"] .page-file-link__icon,
.page-body .page-file-link[data-ext="rar"] .page-file-link__icon {
    background: #faf5ff;
    border-color: #e9d5ff;
    color: #7e22ce;
}

.page-body .page-file-link__action {
    margin-left: auto;
    padding: 8px 13px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #1f2937;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    cursor: pointer;
}

.page-body .page-file-link:hover .page-file-link__action {
    border-color: var(--brand-green);
    color: var(--brand-green);
    background: #f8fff8;
}

@media (max-width: 640px) {
    .page-body .page-file-link {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 8px 10px;
    }

    .page-body .page-file-link__action {
        margin-left: 52px;
    }
}

.page-body img {
    max-width: 100%;
    border-radius: var(--radius);
    margin: 8px 0;
}

.page-body .page-attachment {
    margin: 14px 0;
}

.page-body .page-attachment__link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border: 1px solid #d8e7d8;
    border-left: 4px solid var(--brand-green);
    border-radius: 10px;
    background: #f8fcf8;
    text-decoration: none;
    color: #1f2937;
}

.page-body .page-attachment__icon {
    width: 30px;
    height: 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #e7f6e8;
    color: var(--brand-green);
    font-size: 14px;
    flex-shrink: 0;
}

.page-body .page-attachment__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.page-body .page-attachment__name {
    font-size: 0.95rem;
    line-height: 1.3;
    word-break: break-word;
}

.page-body .page-attachment__hint {
    font-size: 0.78rem;
    color: #6b7280;
}

.page-body .page-attachment__action {
    margin-left: auto;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid #cde5ce;
    background: #fff;
    color: var(--brand-green);
    font-size: 0.78rem;
    font-weight: 600;
    white-space: nowrap;
}

.page-body .page-attachment__link:hover {
    border-color: var(--brand-green);
    background: var(--brand-green-soft);
    opacity: 1;
}

.page-body table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    font-size: 14px;
}

.page-body td,
.page-body th {
    border: 1px solid var(--border);
    padding: 8px 12px;
    text-align: left;
}

.page-body th {
    background: var(--surface-muted);
    font-weight: 600;
}

.page-body blockquote {
    border-left: 4px solid var(--brand-green);
    margin: 16px 0;
    padding: 10px 16px;
    background: #f0fdf4;
    color: #374151;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.text-muted {
    color: #6b7280;
}

/* ── Inner pages: hero + nội dung thống nhất ───────────── */
.page-hero {
    padding: clamp(2.2rem, 4.8vw, 3rem) 0;
    margin-bottom: clamp(1.15rem, 2.8vw, 1.8rem);
    text-align: center;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(180deg, #fafbfd 0%, #f2f4f8 100%);
}

.page-hero--mint {
    background: linear-gradient(165deg, #f0fdf4 0%, #ecfdf5 42%, #f8fafc 100%);
    border-bottom-color: rgba(0, 128, 1, 0.1);
}

.page-hero--cool {
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f7 100%);
}

.page-hero--sage {
    background: linear-gradient(135deg, #f5f7fa 0%, #ecfdf5 100%);
}

.page-hero--muted {
    background: linear-gradient(180deg, #f8faf8 0%, #f1f5f1 100%);
    border-bottom: 1px solid #e8ede8;
}

.page-hero--neutral {
    background: #f8fafc;
    border-bottom: 1px solid #e9edf2;
}

.page-hero__title {
    font-size: var(--text-page-h1);
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.65rem;
    letter-spacing: -0.012em;
    line-height: 1.28;
}

.page-hero__lead {
    margin: 0 auto;
    max-width: 40rem;
    font-size: var(--text-lead);
    color: var(--text-secondary);
    line-height: 1.75;
}

.page-hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--brand-green);
    margin: 0 0 0.65rem;
}

.page-shell {
    padding: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(2.5rem, 5vw, 3.5rem);
}

.page-shell--narrow {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

/* Liên hệ */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
    gap: clamp(22px, 3.6vw, 32px);
    align-items: start;
}

.contact-form-card {
    background: linear-gradient(180deg, #ffffff 0%, #fcfefd 100%);
    border: 1px solid #dfe8e5;
    border-radius: var(--radius-lg);
    padding: clamp(22px, 3.2vw, 30px);
    box-shadow: 0 10px 30px rgba(11, 58, 45, 0.06);
}

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

.contact-form-card label {
    display: block;
    font-size: var(--text-ui);
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.contact-form-card input,
.contact-form-card textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid #d0dbd8;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.15s, box-shadow 0.15s;
    background: #fff;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(0, 128, 1, 0.16);
}

.contact-form-card .btn.btn-primary {
    width: 100%;
    min-height: 42px;
    font-size: 14px;
    border-radius: 8px;
    letter-spacing: 0.01em;
}

.contact-info-section {
    display: grid;
    gap: 12px;
    position: sticky;
    top: calc(var(--header-h) + 24px);
}

.contact-info-card {
    background: #fbfcfd;
    padding: 16px 16px 16px 18px;
    border-radius: 10px;
    border: 1px solid #e3eaee;
    border-left: 3px solid var(--brand-green);
    margin-bottom: 0;
}

.contact-info-card h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.contact-info-card p {
    margin: 0;
    font-size: var(--text-ui);
    color: var(--text-secondary);
    line-height: 1.65;
}

.contact-info-card a {
    color: var(--brand-green);
    font-weight: 600;
    text-decoration: none;
}

.contact-info-card a:hover {
    text-decoration: underline;
}

.contact-map-card {
    background: #fff;
    border: 1px solid #dfe8e5;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 8px 22px rgba(11, 58, 45, 0.05);
}

.contact-map-card h3 {
    margin: 0 0 10px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
}

.contact-map-wrap {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #d6e3df;
    background: #eef5f2;
}

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

.contact-map-link {
    display: inline-block;
    margin-top: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-green);
    text-decoration: none;
}

.contact-map-link:hover {
    text-decoration: underline;
}

.contact-alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 22px;
    background: #d1fae5;
    color: #005201;
    font-size: var(--text-ui);
}

/* Tin tức */
.articles-page {
    padding: 0 0 clamp(2.5rem, 5vw, 3.5rem);
}

.category-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.category-tab {
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    border: 1px solid var(--border);
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.category-tab:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.category-tab--active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin-bottom: 36px;
}

.article-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.article-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.article-card-img-link {
    position: relative;
    display: block;
    overflow: hidden;
}

.article-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

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

.article-card-img-placeholder {
    width: 100%;
    height: 200px;
    background: var(--surface-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--border-strong);
}

.article-card-featured {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #fef3c7;
    color: #92400e;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: var(--radius-pill);
}

.article-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.article-card-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    margin-bottom: 6px;
    display: inline-block;
}

.article-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    flex: 1;
}

.article-card-title a {
    color: var(--text);
    text-decoration: none;
}

.article-card-title a:hover {
    color: var(--brand-green);
}

.article-card-summary {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 12px;
}

.article-card-meta {
    font-size: 13px;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.articles-empty {
    text-align: center;
    padding: clamp(3rem, 8vw, 4rem) 20px;
    max-width: 28rem;
    margin: 0 auto;
}

.articles-empty-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    line-height: 1;
}

.articles-empty h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.articles-empty p {
    font-size: var(--text-ui);
    color: var(--text-secondary);
    margin: 0 0 1.25rem;
}

.btn-outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.15s, color 0.15s;
}

.btn-outline-green:hover {
    background: var(--brand-green);
    color: #fff;
}

.articles-paging {
    display: flex;
    gap: 6px;
    justify-content: center;
    flex-wrap: wrap;
}

.paging-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border-radius: 8px;
    border: 1px solid var(--border);
    color: var(--text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: border-color 0.15s, color 0.15s;
}

.paging-btn:hover {
    border-color: var(--brand-green);
    color: var(--brand-green);
}

.paging-btn--active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

/* Dịch vụ */
.svc-page {
    padding-bottom: clamp(2.5rem, 5vw, 4rem);
}

.svc-dept-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e8ede8;
}

.svc-dept-tab {
    padding: 7px 15px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #d4ead4;
    color: #3a5a3a;
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.svc-dept-tab:hover {
    background: #e8f5e8;
    border-color: #a8d4a8;
}

.svc-dept-tab.active {
    background: var(--brand-green);
    border-color: var(--brand-green);
    color: #fff;
}

.svc-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: var(--text-secondary);
    font-size: var(--text-lead);
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
    margin-bottom: 40px;
}

.svc-card {
    background: #fff;
    border: 1px solid #e8ede8;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s, transform 0.2s;
}

.svc-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.svc-card-img img {
    width: 100%;
    height: 186px;
    object-fit: cover;
    display: block;
}

.svc-card-icon {
    height: 106px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #eaf5ea 0%, #f5faf5 100%);
    font-size: 2.25rem;
    color: var(--brand-green);
}

.svc-card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-dept-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-green);
    background: #e8f5e8;
    border-radius: var(--radius-pill);
    padding: 3px 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
}

.svc-card-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 7px;
    line-height: 1.4;
}

.svc-card-desc {
    font-size: 14px;
    color: #5a6a5a;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 11px;
}

.svc-price {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #b06000;
    background: #fff8ec;
    border-radius: 6px;
    padding: 6px 10px;
    margin-bottom: 12px;
}

.svc-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}

.btn-svc-detail {
    flex: 1;
    text-align: center;
    padding: 9px 0;
    border: 1.5px solid var(--brand-green);
    border-radius: 8px;
    color: var(--brand-green);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.btn-svc-detail:hover {
    background: var(--brand-green);
    color: #fff;
}

.btn-svc-book {
    flex: 1;
    text-align: center;
    padding: 9px 0;
    background: var(--brand-green);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-svc-book:hover {
    background: var(--brand-green-hover);
}

.svc-cta {
    background: var(--brand-green);
    border-radius: var(--radius-lg);
    padding: 20px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: #fff;
}

.svc-cta-text {
    font-size: var(--text-lead);
}

.svc-cta-text strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.svc-cta-text a {
    color: #c8ffc8;
    font-weight: 600;
}

.btn-book-cta {
    white-space: nowrap;
    padding: 10px 22px;
    background: #fff;
    color: var(--brand-green);
    border-radius: 10px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.15s;
}

.btn-book-cta:hover {
    background: #e8f5e8;
}

/* Bác sĩ */
.doctors-section {
    padding: clamp(2rem, 4vw, 3rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.doctor-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s, transform 0.2s;
}

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

.doctor-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.doctor-photo-wrap {
    overflow: hidden;
    aspect-ratio: 4/3;
    background: #f3f4f6;
}

.doctor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s;
}

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

.doctor-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.doctor-photo-placeholder span {
    font-size: 3rem;
    font-weight: 700;
    color: #006601;
    line-height: 1;
}

.doctor-body {
    padding: 18px 20px 20px;
}

.doctor-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-green);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.doctor-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.3;
}

.doctor-dept {
    font-size: 13px;
    color: var(--text-secondary);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
}

.doctor-hours {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 0 14px;
    display: flex;
    align-items: center;
}

.doctor-cta {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--brand-green);
    border-bottom: 1px solid transparent;
    transition: border-color 0.15s;
}

.doctor-card:hover .doctor-cta {
    border-color: var(--brand-green);
}

.doctors-empty {
    text-align: center;
    padding: 3rem 1.5rem;
    color: var(--text-secondary);
    font-size: var(--text-lead);
}

/* Chuyên khoa */
.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 22px;
}

.dept-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.dept-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.dept-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.dept-icon-placeholder {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-muted);
    font-size: 3rem;
}

.dept-info {
    padding: 20px;
}

.dept-info h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.dept-info p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.6;
    min-height: 2.75rem;
}

.dept-stats {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
    font-size: 13px;
    color: var(--text-muted);
}

.dept-empty {
    text-align: center;
    padding: clamp(3rem, 8vw, 4rem) 24px;
}

.dept-empty-icon {
    font-size: 3.25rem;
    margin-bottom: 1rem;
}

.dept-empty h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.dept-empty p {
    font-size: var(--text-ui);
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

/* Chi tiết chuyên khoa */
.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.detail-image {
    width: 100%;
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.detail-body {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: var(--text-ui);
}

.detail-body h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 12px;
}

.detail-main .link {
    color: var(--brand-green);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.detail-main .link:hover {
    text-decoration: underline;
}

.btn-block {
    display: flex;
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
}

.related-section {
    margin: 28px 0;
    padding: 22px;
    background: var(--surface-muted);
    border-radius: var(--radius);
}

.related-section h3 {
    font-size: 1.05rem;
    margin-bottom: 14px;
}

.doctors-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
    margin-top: 14px;
}

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

.doctor-mini img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 8px;
}

.doctor-mini h4 {
    font-size: 14px;
    margin: 8px 0 4px;
}

.doctor-mini p {
    font-size: 12px;
    color: var(--text-muted);
}

.detail-sidebar .link {
    color: var(--brand-green);
    text-decoration: none;
    font-size: 13px;
}

.detail-sidebar .link:hover {
    text-decoration: underline;
}

.sidebar-box {
    background: var(--surface-muted);
    padding: 20px;
    border-radius: var(--radius);
    border-left: 4px solid var(--brand-green);
}

.sidebar-box h3 {
    margin-bottom: 14px;
    font-size: 1rem;
}

.sidebar-box p {
    margin: 8px 0;
    font-size: 14px;
}

.sidebar-box .btn.btn-primary,
.sidebar-box__cta {
    margin-top: 10px;
}

/* Đặt lịch */
.booking-success {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--radius);
    padding: 18px 22px;
    margin-bottom: 28px;
    color: #005201;
}

.booking-success-icon {
    width: 34px;
    height: 34px;
    background: #008001;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.booking-success strong {
    display: block;
    margin-bottom: 4px;
    font-size: var(--text-ui);
}

.booking-success p {
    margin: 0;
    font-size: 14px;
}

.booking-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 14px 18px;
    color: #dc2626;
    margin-bottom: 22px;
    font-size: 14px;
}

.booking-form {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: clamp(24px, 4vw, 36px);
    box-shadow: var(--shadow-sm);
}

.booking-form .form-section {
    margin-bottom: 28px;
}

.booking-form .form-section h3 {
    font-size: var(--text-ui);
    font-weight: 600;
    color: var(--text);
    margin: 0 0 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

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

.booking-form .form-field {
    margin-bottom: 16px;
}

.booking-form .form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.req {
    color: #ef4444;
}

.booking-form .form-field input,
.booking-form .form-field select,
.booking-form .form-field textarea {
    width: 100%;
    padding: 11px 13px;
    border: 1px solid var(--border-strong);
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.15s, box-shadow 0.15s;
}

.booking-form .form-field input:focus,
.booking-form .form-field select:focus,
.booking-form .form-field textarea:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(0, 128, 1, 0.16);
}

.booking-form .form-field.has-error input,
.booking-form .form-field.has-error select,
.booking-form .form-field.has-error textarea {
    border-color: #ef4444;
}

.field-error {
    display: block;
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
    min-height: 16px;
}

.form-actions {
    text-align: center;
    padding-top: 8px;
}

.btn-book {
    display: inline-block;
    background: var(--brand-green);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.02em;
    transition: background 0.15s, transform 0.1s;
}

.btn-book:hover {
    background: var(--brand-green-hover);
}

.btn-book:active {
    transform: scale(0.98);
}

.form-note {
    margin: 12px 0 0;
    font-size: 13px;
    color: var(--text-muted);
}

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

    .contact-info-section {
        position: static;
    }

    .svc-cta {
        flex-direction: column;
        text-align: center;
    }

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

@media (max-width: 640px) {
    .articles-grid,
    .svc-grid,
    .doctors-grid,
    .departments-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-form {
        padding: 22px 18px;
    }
}

/* ── Service detail ───────────────────────────────────────── */
.svcd-hero {
    background: #f5faf5;
    border-bottom: 1px solid #daeeda;
    padding: 36px 0 32px;
    margin-bottom: 36px;
}

.svcd-breadcrumb {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
    font-size: 0.8rem;
    color: #9ca3af;
    margin-bottom: 16px;
}

.svcd-breadcrumb a {
    color: var(--brand-green);
    text-decoration: none;
}

.svcd-breadcrumb a:hover {
    text-decoration: underline;
}

.svcd-hero-inner {
    display: flex;
    align-items: center;
    gap: 18px;
}

.svcd-hero-icon {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
    background: #fff;
    border: 1.5px solid #c3e6c3;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--brand-green);
}

.svcd-dept-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    color: var(--brand-green);
    background: #e8f5e8;
    border-radius: 20px;
    padding: 2px 10px;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-decoration: none;
}

.svcd-dept-tag:hover {
    background: #d4ead4;
}

.svcd-hero h1 {
    font-size: 1.65rem;
    color: #1a2e1a;
    margin-bottom: 5px;
    font-weight: 700;
}

.svcd-hero-sub {
    color: #5a7a5a;
    font-size: 0.97rem;
}

.svcd-page {
    padding-bottom: 60px;
}

.svcd-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

.svcd-img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 24px;
}

.svcd-body {
    color: #374151;
    line-height: 1.85;
    font-size: 0.95rem;
    white-space: pre-wrap;
    margin-bottom: 24px;
}

.svcd-dept-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 0.88rem;
    padding: 12px 14px;
    background: #f7faf7;
    border-radius: 8px;
    border: 1px solid #ddeedd;
}

.svcd-dept-link i {
    color: var(--brand-green);
    font-size: 0.85rem;
}

.svcd-dept-link span {
    color: #6b7280;
}

.svcd-dept-link a {
    color: var(--brand-green);
    text-decoration: none;
    font-weight: 600;
}

.svcd-dept-link a:hover {
    text-decoration: underline;
}

.svcd-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.svcd-box {
    background: #fff;
    border: 1px solid #e8ede8;
    border-radius: 10px;
    padding: 18px;
}

.svcd-box-price {
    border-left: 4px solid #e08800;
}

.svcd-price-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #b06000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.svcd-price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a2e1a;
    margin-bottom: 6px;
}

.svcd-price-note {
    font-size: 0.75rem;
    color: #9ca3af;
}

.svcd-box-book {
    border-left: 4px solid var(--brand-green);
    text-align: center;
}

.svcd-book-icon {
    font-size: 1.8rem;
    color: var(--brand-green);
    margin-bottom: 8px;
}

.svcd-box-book h3 {
    font-size: 1rem;
    color: #1a2e1a;
    margin-bottom: 7px;
    font-weight: 600;
}

.svcd-box-book p {
    font-size: 0.84rem;
    color: #6b7280;
    margin-bottom: 14px;
}

.btn-book-sidebar {
    display: block;
    width: 100%;
    padding: 10px 0;
    background: var(--brand-green);
    color: #fff;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.9rem;
    text-align: center;
    transition: background 0.15s;
}

.btn-book-sidebar:hover {
    background: var(--brand-green-hover);
}

.svcd-box-hotline {
    display: flex;
    align-items: center;
    gap: 12px;
}

.svcd-box-hotline > i {
    font-size: 1.3rem;
    color: var(--brand-green);
}

.svcd-hotline-label {
    font-size: 0.75rem;
    color: #9ca3af;
    margin-bottom: 1px;
}

.svcd-hotline-num {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-green);
    text-decoration: none;
    display: block;
}

.svcd-hotline-num:hover {
    text-decoration: underline;
}

/* ── Article detail ─────────────────────────────────────── */
.article-preview-bar {
    background: #d97706;
    color: #fff;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    gap: 12px;
}

.article-preview-bar a {
    color: #fff;
    text-decoration: underline;
    white-space: nowrap;
}

.article-breadcrumb-wrap {
    padding-top: 16px;
    padding-bottom: 8px;
}

.breadcrumb-nav {
    font-size: 13px;
    color: #9ca3af;
}

.breadcrumb-nav a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb-nav a:hover {
    color: var(--brand-green);
}

.breadcrumb-nav .sep {
    margin: 0 6px;
}

.breadcrumb-nav .current {
    color: #374151;
}

.article-page {
    padding-bottom: 60px;
}

.article-layout {
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 40px;
    align-items: start;
    padding-top: 16px;
}

.article-main {
    min-width: 0;
}

.article-category-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    color: var(--brand-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
    margin-bottom: 10px;
}

.article-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4.2vw, 2.8rem);
    font-weight: 600;
    color: #111827;
    line-height: 1.32;
    letter-spacing: -0.014em;
    margin-bottom: 14px;
}

.article-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 16px;
}

.article-meta-item--featured {
    color: #d97706;
}

.article-summary {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 20px;
    padding: 16px;
    background: #f9fafb;
    border-left: 3px solid var(--brand-green);
    border-radius: 0 6px 6px 0;
}

.article-figure {
    margin: 0 0 28px;
}

.article-hero-img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    max-height: 480px;
}

.article-body {
    color: #374151;
    line-height: 1.95;
    font-size: 17px;
    max-width: 70ch;
}

.article-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 32px 0 12px;
}

.article-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 24px 0 10px;
}

.article-body p {
    margin-bottom: 16px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0 16px 28px;
}

.article-body li {
    margin-bottom: 6px;
}

.article-body img {
    max-width: 100%;
    border-radius: 8px;
    margin: 16px 0;
}

.article-body a {
    color: var(--brand-green);
}

.article-tags {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.article-tags-label {
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-right: 8px;
}

.article-tag {
    display: inline-block;
    font-size: 12px;
    padding: 3px 10px;
    background: #ede9fe;
    color: #6d28d9;
    border-radius: 12px;
    margin-right: 6px;
    margin-bottom: 6px;
    text-decoration: none;
    transition: background 0.15s;
}

.article-tag:hover {
    background: #ddd6fe;
}

.article-back {
    margin-top: 32px;
}

.btn-outline-green {
    display: inline-block;
    padding: 10px 20px;
    border: 2px solid var(--brand-green);
    color: var(--brand-green);
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.15s;
}

.btn-outline-green:hover {
    background: var(--brand-green);
    color: #fff;
}

.article-sidebar .sidebar-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.related-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.related-item {
    display: flex;
    gap: 10px;
    text-decoration: none;
    align-items: flex-start;
    padding: 8px;
    border-radius: 6px;
    transition: background 0.15s;
}

.related-item:hover {
    background: #f9fafb;
}

.related-img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.related-img-placeholder {
    width: 64px;
    height: 48px;
    background: #f3f4f6;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #d1d5db;
}

.related-body {
    flex: 1;
    min-width: 0;
}

.related-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    line-height: 1.4;
    margin-bottom: 3px;
}

.related-item:hover .related-title {
    color: var(--brand-green);
}

.related-date {
    font-size: 11px;
    color: #9ca3af;
}

/* ── Doctor detail ──────────────────────────────────────── */
.dr-hero {
    background: #f8fdf8;
    border-bottom: 1px solid #e8f0e8;
    padding: 16px 0;
}

.dr-hero .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #9ca3af;
}

.dr-hero .breadcrumb a {
    color: #6b7280;
    text-decoration: none;
}

.dr-hero .breadcrumb a:hover {
    color: var(--brand-green);
}

.dr-hero .breadcrumb span {
    color: #d1d5db;
}

.dr-hero .breadcrumb span:last-child {
    color: #374151;
}

.dr-section {
    padding: 40px 0 64px;
}

.dr-layout {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 32px;
    align-items: start;
}

.dr-sidebar {
    position: sticky;
    top: 24px;
}

.dr-profile-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dr-photo-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background: #f3f4f6;
}

.dr-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dr-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
}

.dr-photo-placeholder span {
    font-size: 72px;
    font-weight: 700;
    color: #006601;
}

.dr-profile-info {
    padding: 20px 20px 0;
}

.dr-title-badge {
    font-size: 11px;
    font-weight: 700;
    color: var(--brand-green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 6px;
}

.dr-name {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 10px;
    line-height: 1.3;
}

.dr-dept-pill {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    background: #f0faf0;
    color: #006601;
    border: 1px solid #a7d7a7;
    border-radius: 20px;
    padding: 3px 10px;
    margin-bottom: 0;
}

.dr-meta {
    padding: 16px 20px;
    border-top: 1px solid #f3f4f6;
    margin-top: 16px;
}

.dr-meta-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.dr-meta-row:last-child {
    margin-bottom: 0;
}

.dr-meta-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

.dr-meta-label {
    font-size: 11px;
    color: #9ca3af;
    margin: 0 0 2px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.dr-meta-value {
    font-size: 13px;
    color: #374151;
    margin: 0;
    font-weight: 500;
}

.dr-booking-box {
    background: linear-gradient(135deg, #008001 0%, #00a001 100%);
    padding: 20px;
    text-align: center;
}

.dr-booking-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px;
}

.dr-booking-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 14px;
}

.btn-booking {
    display: block;
    width: 100%;
    padding: 10px;
    background: #fff;
    color: var(--brand-green);
    font-size: 14px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.15s;
}

.btn-booking:hover {
    background: #f0faf0;
}

.dr-main {
    min-width: 0;
}

.dr-section-block {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px 32px;
    margin-bottom: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.dr-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f4f6;
}

.dr-section-icon {
    font-size: 18px;
}

.dr-content {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    white-space: pre-wrap;
}

.dr-empty-content {
    background: #f9fafb;
    border: 1px dashed #d1d5db;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    color: #9ca3af;
}

.dr-back-row {
    margin-top: 24px;
}

.dr-back-link {
    font-size: 14px;
    color: #6b7280;
    text-decoration: none;
}

.dr-back-link:hover {
    color: var(--brand-green);
}

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

    .dr-sidebar {
        position: static;
    }

    .dr-photo-wrap {
        max-height: 280px;
        aspect-ratio: auto;
    }

    .dr-section-block {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .svcd-grid {
        grid-template-columns: 1fr;
    }

    .svcd-hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        order: -1;
    }

    .related-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .related-item {
        flex: 1;
        min-width: 200px;
    }
}

@media (max-width: 480px) {
    .dr-name {
        font-size: 18px;
    }
}

/* Legacy section patterns */
.hero-section {
    position: relative;
    padding: 88px 0 96px;
    overflow: hidden;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--surface-muted);
    transition: box-shadow 0.2s;
}

.service-card:hover {
    box-shadow: var(--shadow-md);
}

.info-section {
    background: var(--surface-muted);
    text-align: center;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .grid--services {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .site-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__map-col {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .section {
        padding: clamp(2.5rem, 8vw, 3rem) 0;
    }

    .section--tight {
        padding-top: clamp(2rem, 6vw, 2.5rem);
    }

    .top-bar__item--hide-sm {
        display: none;
    }

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

    .nav-toggle {
        display: inline-flex;
    }

    .navbar__collapse {
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 20px calc(20px + env(safe-area-inset-bottom));
        background: var(--surface);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: max-height 0.35s ease, opacity 0.2s;
    }

    body.nav-open .navbar__collapse {
        max-height: min(80vh, 560px);
        overflow-y: auto;
        opacity: 1;
        visibility: visible;
    }

    .navbar {
        position: relative;
    }

    .navbar-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .navbar-menu .nav-item {
        border-bottom: 1px solid var(--border);
    }

    .navbar-menu .nav-link {
        width: 100%;
        padding: 14px 8px;
    }

    .navbar-menu .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding: 0 0 8px 12px;
        display: none;
    }

    .navbar-menu .has-dropdown.open > .dropdown-menu {
        display: block;
    }

    .navbar__hotline {
        justify-content: center;
        margin-top: 8px;
        width: 100%;
    }

    .navbar__collapse .navbar__hotline.btn--primary {
        min-height: 46px;
        font-size: 15px;
        padding: 12px 18px;
    }

    .dept-slider__btn {
        display: none;
    }

    .dept-slide {
        flex: 0 0 min(300px, 88vw);
    }

    .grid--services,
    .grid--doctors,
    .grid--why {
        grid-template-columns: 1fr;
    }

    .home-hero__cta {
        flex-direction: column;
    }

    .home-hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .home-cta__actions {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .home-cta__actions .btn {
        width: 100%;
        justify-content: center;
        min-width: 0;
    }

    .site-footer__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 640px) {
    .grid--news {
        grid-template-columns: minmax(0, 1fr);
    }

    .home-hero__subtitle {
        font-size: 1.05rem;
    }

    .home-hero__trust li {
        font-size: 0.75rem;
        padding: 6px 10px;
    }
}

@media (max-width: 400px) {
    .top-bar {
        font-size: 12px;
    }

    .navbar__logo-img {
        height: 50px;
        max-width: 40vw;
    }
}

/* Mobile nav open: animate hamburger to X */
body.nav-open .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle__bar:nth-child(2) {
    opacity: 0;
}

body.nav-open .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Focus (keyboard) */
.btn:focus-visible,
.navbar-menu .nav-link:focus-visible,
.navbar-menu .dropdown-menu li a:focus-visible,
.navbar__logo:focus-visible,
.nav-toggle:focus-visible,
.dept-slider__btn:focus-visible,
.card--service:focus-visible,
.card--dept:focus-visible {
    outline: 2px solid var(--brand-green);
    outline-offset: 2px;
}

.nav-toggle:focus-visible {
    border-color: var(--brand-green);
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .home-hero__bg::after,
    .dept-slider__track {
        transition: none;
    }
}