:root {
    /* Colors */
    --color-primary: #0B2B4C;
    --color-secondary: #18A7A7;
    --color-accent: #49C5B6;
    --color-text: #1C2430;
    --color-muted: #5B6676;
    --color-bg: #F6F8FB;
    --color-white: #FFFFFF;
    --color-border: #E6ECF2;
    --color-whatsapp: #25D366;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;

    /* Spacing */
    --section-py: 80px;
    --container-width: 1280px;
    --container-px: 24px;

    /* Components */
    --card-radius: 16px;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    --card-shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.10);
    --btn-radius: 50px;
    --transition: all 0.3s ease;

    /* Header */
    --header-h: 84px;
    --header-h-scrolled: 68px;

    /* Z-index */
    --z-header: 1000;
    --z-mobile-menu: 1100;
    --z-whatsapp: 900;
    --z-mobile-bar: 950;
}
/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    font-weight: var(--fw-regular);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    line-height: 1.3;
    color: var(--color-primary);
}

h1 { font-size: 48px; font-weight: var(--fw-bold); line-height: 1.2; }
h2 { font-size: 36px; line-height: 1.3; }
h3 { font-size: 28px; line-height: 1.35; }
h4 { font-size: 22px; line-height: 1.4; }
h5 { font-size: 18px; line-height: 1.4; }
h6 { font-size: 16px; line-height: 1.5; }

p { margin-bottom: 16px; }
p:last-child { margin-bottom: 0; }

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover { color: var(--color-accent); }

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

ul, ol { list-style: none; }

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: var(--font-body);
    font-size: 16px;
}

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

:focus-visible {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    z-index: 10000;
    padding: 8px 16px;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 0 0 8px 8px;
}
.skip-link:focus {
    top: 0;
}
/* Container */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

/* Section */
.section {
    padding: var(--section-py) 0;
}

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

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

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.section-header .section-badge {
    display: inline-block;
    background: rgba(24, 167, 167, 0.1);
    color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: var(--btn-radius);
    font-size: 13px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

.section-header p {
    color: var(--color-muted);
    font-size: 17px;
}

.section-rozets {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 16px;
    flex-wrap: wrap;
}

.section-rozet {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(24, 167, 167, 0.08);
    color: var(--color-secondary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: var(--fw-medium);
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Grid */
.grid {
    display: grid;
    gap: 24px;
}

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

/* Two-column layout */
.layout-sidebar {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.layout-sidebar .main-content {
    min-width: 0;
}
/* ─── Quick Access Cards ─── */
.quick-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    text-decoration: none;
    color: var(--color-text);
    transition: var(--transition);
}

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

.quick-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 167, 167, 0.08);
    border-radius: 16px;
    margin-bottom: 16px;
    color: var(--color-secondary);
    transition: var(--transition);
}

.quick-card:hover .quick-card__icon {
    background: var(--color-secondary);
    color: var(--color-white);
}

.quick-card__title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.quick-card__desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.quick-card__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(24, 167, 167, 0.08);
    color: var(--color-secondary);
    margin-top: 16px;
    transition: var(--transition);
}

.quick-card:hover .quick-card__arrow {
    background: var(--color-secondary);
    color: var(--color-white);
}

/* ─── Treatment Cards ─── */
.treatment-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    padding: 32px 28px;
    transition: var(--transition);
}

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

.treatment-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 167, 167, 0.08);
    border-radius: 16px;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.treatment-card__title {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.treatment-card__desc {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.treatment-card__link {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.treatment-card__link:hover {
    color: var(--color-accent);
    transform: translateX(4px);
    display: inline-block;
}

/* ─── Blog Cards ─── */
.blog-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.blog-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--color-bg);
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-card__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card__body {
    padding: 24px;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.blog-card__cat {
    display: inline-block;
    background: rgba(24, 167, 167, 0.1);
    color: var(--color-secondary);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
}

.blog-card__date {
    font-size: 13px;
    color: var(--color-muted);
}

.blog-card__title {
    font-size: 18px;
    line-height: 1.4;
    margin-bottom: 8px;
}

.blog-card__title a {
    color: var(--color-primary);
    text-decoration: none;
}

.blog-card__title a:hover {
    color: var(--color-secondary);
}

.blog-card__excerpt {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.blog-card__link {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--color-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.blog-card__link:hover {
    color: var(--color-accent);
}

/* ─── Accordion ─── */
.accordion-item {
    border: 1px solid var(--color-border);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.is-open {
    border-color: var(--color-secondary);
    box-shadow: 0 4px 16px rgba(24, 167, 167, 0.08);
}

.accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    font-size: 15px;
    color: var(--color-primary);
    text-align: left;
    gap: 12px;
}

.accordion-trigger:hover {
    color: var(--color-secondary);
}

.accordion-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--color-muted);
}

.accordion-item.is-open .accordion-icon {
    transform: rotate(180deg);
    color: var(--color-secondary);
}

.accordion-panel {
    padding: 0 24px 18px;
}

.accordion-panel p {
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* ─── CTA Card (FAQ Sidebar) ─── */
.cta-card {
    background: var(--color-primary);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
}

.cta-card svg {
    margin-bottom: 16px;
}

.cta-card h3 {
    color: var(--color-white);
    font-size: 22px;
    margin-bottom: 12px;
}

.cta-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 24px;
}

.cta-card .btn {
    margin-bottom: 12px;
}

.cta-card .btn:last-child {
    margin-bottom: 0;
}

/* ─── Breadcrumbs ─── */
.breadcrumbs {
    padding: 16px 0;
}

.breadcrumbs ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-muted);
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    color: var(--color-border);
}

.breadcrumbs a {
    color: var(--color-muted);
    text-decoration: none;
}

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

.breadcrumbs li:last-child {
    color: var(--color-secondary);
    font-weight: var(--fw-medium);
}
/* ─── Site Header ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: transparent;
    height: var(--header-h);
    transition: var(--transition);
}

.site-header.is-scrolled {
    height: var(--header-h-scrolled);
    background: var(--color-white);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

body {
    padding-top: 0;
}

/* Admin bar offset */
.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .site-header {
        top: 46px;
    }
}

/* Inner pages: transparent header over page-hero, solid on scroll */
body:not(.home) .site-header {
    background: transparent;
    border-bottom: none;
}

body:not(.home) .site-header.is-scrolled {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

body:not(.home) {
    padding-top: 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}

/* ─── Logo ─── */
.header-logo {
    flex-shrink: 0;
}

.header-logo__link {
    display: block;
    line-height: 0;
}

.header-logo__link img {
    height: 80px;
    width: auto;
    transition: var(--transition);
}

.is-scrolled .header-logo__link img {
    height: 60px;
}

/* Homepage transparent: show white, hide dark */
.header-logo__white { display: block; }
.header-logo__dark  { display: none; }

/* Homepage scrolled: show dark, hide white */
.is-scrolled .header-logo__white { display: none; }
.is-scrolled .header-logo__dark  { display: block; }

/* Inner pages now use the same logo behavior as homepage:
   white logo when transparent, dark logo on scroll —
   handled by the base .is-scrolled rules above. */

/* ─── Desktop Navigation ─── */
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 6px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

/* Scrolled: subtle gray glass */
.is-scrolled .nav-menu {
    background: var(--color-bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: var(--color-border);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-weight: var(--fw-medium);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.08);
}

/* Scrolled: dark text */
.is-scrolled .nav-link {
    color: var(--color-text);
}

.is-scrolled .nav-link:hover {
    color: var(--color-secondary);
    background: rgba(0, 0, 0, 0.04);
}

.chevron-icon {
    transition: transform 0.2s;
    color: rgba(255, 255, 255, 0.6);
}

.is-scrolled .chevron-icon {
    color: var(--color-muted);
}

.nav-item.has-dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

/* ─── Dropdown ─── */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 240px;
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.10);
    border: 1px solid var(--color-border);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    list-style: none;
}

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

.dropdown-link {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.dropdown-link:hover {
    background: var(--color-bg);
    color: var(--color-secondary);
}

/* ─── Active Nav Item — Pill Style ─── */
.nav-item.current-menu-item > .nav-link,
.nav-item.current_page_item > .nav-link,
.nav-item.active > .nav-link {
    background: var(--color-white);
    border-radius: 8px;
    color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.is-scrolled .nav-item.current-menu-item > .nav-link,
.is-scrolled .nav-item.current_page_item > .nav-link,
.is-scrolled .nav-item.active > .nav-link {
    background: var(--color-white);
    color: var(--color-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* ─── Header Actions (right side) ─── */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

/* ─── Phone Block ─── */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.header-phone:hover {
    opacity: 0.85;
}

.header-phone__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    color: var(--color-white);
    flex-shrink: 0;
    transition: var(--transition);
}

.header-phone__text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.header-phone__label {
    font-size: 11px;
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.header-phone__number {
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--color-white);
    white-space: nowrap;
    transition: color 0.3s;
}

/* Phone: scrolled state */
.is-scrolled .header-phone__icon {
    background: var(--color-bg);
    color: var(--color-secondary);
}

.is-scrolled .header-phone__label {
    color: var(--color-muted);
}

.is-scrolled .header-phone__number {
    color: var(--color-primary);
}

/* ─── Header WhatsApp Button ─── */
.header-whatsapp {
    border-radius: 50px;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.header-whatsapp:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.site-header:not(.is-scrolled) .header-whatsapp {
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--color-white);
}

.site-header:not(.is-scrolled) .header-whatsapp:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

/* ─── Header CTA Button ─── */
.header-cta {
    border-radius: 50px;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--btn-radius);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1.4;
}

.btn svg {
    flex-shrink: 0;
}

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

.btn-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 167, 167, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

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

.btn-sm {
    padding: 10px 20px;
    font-size: 14px;
}

.btn-xs {
    padding: 8px 16px;
    font-size: 13px;
}

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

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

.btn-outline-white {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.btn-text {
    background: none;
    border: none;
    padding: 0;
    color: var(--color-secondary);
    font-weight: var(--fw-semibold);
    font-size: 15px;
}

.btn-text:hover {
    color: var(--color-accent);
}

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

/* ─── Mobile Controls ─── */
.header-mobile {
    display: none;
    align-items: center;
    gap: 12px;
}

.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition);
}

.is-scrolled .hamburger-line {
    background: var(--color-primary);
}

/* ─── Mobile Menu ─── */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--color-white);
    z-index: var(--z-mobile-menu);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 24px;
}

.mobile-menu.is-open {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: calc(var(--z-mobile-menu) - 1);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

.mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.mobile-menu__close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--color-bg);
    border: none;
    cursor: pointer;
}

.mobile-menu__nav {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.mobile-menu__nav > li {
    border-bottom: 1px solid var(--color-border);
}

.mobile-menu__nav > li > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    font-weight: var(--fw-medium);
    font-size: 16px;
    color: var(--color-text);
    text-decoration: none;
}

.mobile-menu__nav > li > a:hover {
    color: var(--color-secondary);
}

.mobile-menu__sub {
    display: none;
    padding: 0 0 12px 16px;
    list-style: none;
}

.mobile-menu__nav > li.is-open > .mobile-menu__sub {
    display: block;
}

.mobile-menu__sub a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-muted);
    text-decoration: none;
}

.mobile-menu__sub a:hover {
    color: var(--color-secondary);
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-menu__contact {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.mobile-menu__contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--color-muted);
    text-decoration: none;
}
/* ─── Hero Section (Mednix-style full-screen) ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ─── Background Video ─── */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* ─── Overlay ─── */
.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        /* Left-to-right: dark navy fading to transparent */
        linear-gradient(
            to right,
            rgba(5, 18, 35, 0.97) 0%,
            rgba(7, 25, 45, 0.92) 20%,
            rgba(9, 32, 55, 0.75) 40%,
            rgba(11, 43, 76, 0.45) 60%,
            rgba(11, 43, 76, 0.20) 80%,
            rgba(11, 43, 76, 0.10) 100%
        ),
        /* Top vignette for header readability */
        linear-gradient(
            to bottom,
            rgba(5, 18, 35, 0.6) 0%,
            rgba(7, 25, 45, 0.3) 20%,
            transparent 40%
        ),
        /* Bottom vignette for scroll indicator */
        linear-gradient(
            to top,
            rgba(5, 18, 35, 0.5) 0%,
            transparent 25%
        );
}

/* ─── Container ─── */
.hero__container {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 80px;
    max-width: none;
    padding-left: 3.5%;
    padding-right: 3.5%;
}

/* ─── Content (left) ─── */
.hero__content {
    flex: 1;
    max-width: 750px;
}

.hero__subtitle {
    display: block;
    font-size: 14px;
    font-weight: var(--fw-medium);
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 20px;
}

.hero__title {
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 88px;
    font-weight: 400;
    line-height: 1.06;
    color: var(--color-white);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.hero__lead {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 520px;
}

/* ─── Floating Card (right) ─── */
.hero__card {
    width: 340px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 28px;
}

.hero__card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.hero__card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: var(--btn-radius);
    font-family: var(--font-body);
    font-weight: var(--fw-semibold);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.hero__card-btn:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(24, 167, 167, 0.3);
}

.hero__card-btn svg {
    flex-shrink: 0;
}

/* ─── Scroll Indicator ─── */
.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero__scroll span {
    display: block;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    position: relative;
}

.hero__scroll span::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: heroScroll 1.8s ease-in-out infinite;
}

@keyframes heroScroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}
/* ─── About Section ─── */
.about-section {
    background: var(--color-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 72px;
    align-items: center;
}

/* ── Photo Area ── */
.about-photo {
    position: relative;
}

.about-photo__frame {
    position: relative;
    overflow: hidden;
}

.about-photo__frame img {
    display: block;
    width: 130%;
    max-width: none;
    height: auto;
    margin-left: -15%;
    filter: drop-shadow(0 8px 24px rgba(11, 43, 76, 0.15));
}

/* Experience badge */
.about-photo__exp {
    position: absolute;
    top: 24px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(11, 43, 76, 0.2);
    z-index: 2;
}

.about-photo__exp-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-secondary);
    line-height: 1;
}

.about-photo__exp-text {
    font-size: 12px;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

/* Decorative dots */
.about-photo__dots {
    position: absolute;
    bottom: 40px;
    left: -16px;
    width: 64px;
    height: 64px;
    background-image: radial-gradient(circle, var(--color-primary) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.1;
    z-index: 0;
}

/* ── Right Content ── */
.about-info .section-badge {
    display: inline-block;
    background: rgba(24, 167, 167, 0.1);
    color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: var(--btn-radius);
    font-size: 13px;
    font-weight: var(--fw-semibold);
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.about-info__title {
    font-size: 36px;
    font-weight: var(--fw-bold);
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.about-info__title span {
    color: var(--color-secondary);
    font-style: italic;
}

.about-info__desc {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-muted);
    margin-bottom: 28px;
}

/* Feature items */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 20px;
    background: var(--color-white);
    border-radius: 14px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.about-feature:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 4px 16px rgba(24, 167, 167, 0.08);
}

.about-feature__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 167, 167, 0.08);
    border-radius: 12px;
    flex-shrink: 0;
    color: var(--color-secondary);
}

.about-feature strong {
    display: block;
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

/* Hours + CTA row */
.about-row {
    display: flex;
    align-items: flex-end;
    gap: 24px;
}

.hours-card {
    flex: 1;
    background: var(--color-white);
    border-radius: 16px;
    padding: 20px 24px;
    border: 1px solid var(--color-border);
}

.hours-card__header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--color-primary);
}

.hours-card__header svg {
    color: var(--color-secondary);
}

.hours-card__header h4 {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    margin: 0;
}

.hours-card__row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
    color: var(--color-muted);
}

.hours-card__row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-card__row span:last-child {
    font-weight: var(--fw-medium);
    color: var(--color-text);
}

.hours-card__row--accent span:last-child {
    font-weight: var(--fw-bold);
    color: var(--color-secondary);
}

/* ─── Section Header Row (with right link) ─── */
.section-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}

.section-header-row .section-badge {
    display: inline-block;
    background: rgba(24, 167, 167, 0.1);
    color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: var(--btn-radius);
    font-size: 13px;
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header-row h2 {
    margin: 0;
}

/* ─── Expertise Section ─── */
.expertise-section {
    background: var(--color-bg);
}

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

.exp-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-secondary);
    opacity: 0;
    transition: opacity 0.3s;
}

.exp-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 28px rgba(24, 167, 167, 0.1);
    transform: translateY(-3px);
}

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

.exp-card--wide {
    grid-column: span 3;
    max-width: 480px;
    margin: 0 auto;
}

.exp-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 167, 167, 0.08);
    border-radius: 14px;
    flex-shrink: 0;
    color: var(--color-secondary);
    transition: var(--transition);
}

.exp-card:hover .exp-card__icon {
    background: var(--color-secondary);
    color: var(--color-white);
}

.exp-card__content {
    flex: 1;
    min-width: 0;
}

.exp-card__content h4 {
    font-size: 16px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin-bottom: 4px;
}

.exp-card__content p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.5;
    margin: 0;
}

.exp-card__arrow {
    flex-shrink: 0;
    color: var(--color-border);
    transition: var(--transition);
}

.exp-card:hover .exp-card__arrow {
    color: var(--color-secondary);
    transform: translateX(4px);
}

/* ─── Process Section ─── */
.process-cards {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0;
}

.proc-card {
    flex: 1;
    max-width: 360px;
    border-radius: 20px;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.proc-card:hover {
    box-shadow: 0 12px 40px rgba(11, 43, 76, 0.1);
    transform: translateY(-4px);
}

/* Visual top area */
.proc-card__visual {
    position: relative;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.proc-card__visual--1 {
    background: linear-gradient(135deg, #0B2B4C 0%, #14405E 100%);
}

.proc-card__visual--2 {
    background: linear-gradient(135deg, #18A7A7 0%, #49C5B6 100%);
}

.proc-card__visual--3 {
    background: linear-gradient(135deg, #1a6b8a 0%, #18A7A7 100%);
}

/* Step number */
.proc-card__number {
    position: absolute;
    top: 14px;
    left: 20px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: var(--fw-bold);
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 12px;
    border-radius: 6px;
    letter-spacing: 1px;
}

/* Main icon */
.proc-card__icon-wrap {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 1;
}

/* Decorative elements */
.proc-card__deco {
    position: absolute;
}

.proc-card__deco--circle {
    bottom: -20px;
    right: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
}

.proc-card__deco--dots {
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.2) 1.5px, transparent 1.5px);
    background-size: 8px 8px;
}

.proc-card__deco--ring {
    top: -16px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
}

.proc-card__deco--cross {
    bottom: 20px;
    left: 20px;
    width: 20px;
    height: 20px;
}

.proc-card__deco--cross::before,
.proc-card__deco--cross::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 2px;
}

.proc-card__deco--cross::before {
    width: 100%;
    height: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.proc-card__deco--cross::after {
    width: 3px;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.proc-card__deco--square {
    bottom: -10px;
    left: 20px;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    transform: rotate(15deg);
}

.proc-card__deco--dots2 {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1.5px, transparent 1.5px);
    background-size: 8px 8px;
}

/* Card body */
.proc-card__body {
    padding: 24px;
    text-align: center;
}

.proc-card__body h4 {
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin-bottom: 8px;
}

.proc-card__body p {
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.6;
    margin: 0;
}

/* Connector arrow */
.proc-connector {
    display: flex;
    align-items: center;
    padding: 0 8px;
    color: var(--color-border);
    flex-shrink: 0;
    margin-top: 80px;
}

/* ─── FAQ Grid ─── */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* ─── Contact Band ─── */
.contact-band {
    padding: 60px 0;
}

.contact-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.contact-band__text h2 {
    color: var(--color-white);
    font-size: 32px;
    margin-bottom: 8px;
}

.contact-band__text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin: 0;
}

.contact-band__phone {
    display: block;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: var(--fw-semibold);
    margin-top: 8px;
    letter-spacing: 0.5px;
}

.contact-band__actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* ─── Stats Section ─── */
.stats-section {
    background: linear-gradient(135deg, #0B2B4C 0%, #0d3a5c 50%, #0B2B4C 100%);
    position: relative;
    overflow: hidden;
}

.stats-section__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stats-deco--circle-1 {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 2px solid rgba(24, 167, 167, 0.1);
}

.stats-deco--circle-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
}

.stats-deco--dots {
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(circle, rgba(24, 167, 167, 0.15) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
}

.section-header--light h2 {
    color: var(--color-white);
}

.section-header--light p {
    color: rgba(255, 255, 255, 0.6);
}

.section-badge--light {
    background: rgba(24, 167, 167, 0.2) !important;
    color: var(--color-accent) !important;
}

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

.stat-card {
    text-align: center;
    padding: 36px 24px 32px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(24, 167, 167, 0.3);
    transform: translateY(-4px);
}

.stat-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 167, 167, 0.15);
    border-radius: 16px;
    margin: 0 auto 20px;
    color: var(--color-secondary);
}

.stat-card__number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: var(--fw-bold);
    color: var(--color-white);
    line-height: 1;
    display: inline;
}

.stat-card__suffix {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: var(--fw-bold);
    color: var(--color-secondary);
    display: inline;
}

.stat-card__label {
    font-size: 14px;
    font-weight: var(--fw-medium);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-card__bar {
    width: 40px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
    margin: 16px auto 0;
    opacity: 0.5;
}

/* ─── Testimonials Section ─── */
.testimonials-section {
    background: var(--color-bg);
}

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

.testimonial-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 32px;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--color-secondary);
    box-shadow: 0 12px 40px rgba(24, 167, 167, 0.1);
    transform: translateY(-4px);
}

.testimonial-card--featured {
    border-color: var(--color-secondary);
    box-shadow: 0 8px 32px rgba(24, 167, 167, 0.12);
}

.testimonial-card--featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    border-radius: 20px 20px 0 0;
}

.testimonial-card__quote {
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.testimonial-card__stars {
    display: flex;
    gap: 2px;
    color: #F59E0B;
    margin-bottom: 16px;
}

.testimonial-card__text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-muted);
    flex: 1;
    margin-bottom: 24px;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(24, 167, 167, 0.1);
    color: var(--color-secondary);
    border-radius: 50%;
    font-weight: var(--fw-bold);
    font-size: 14px;
    flex-shrink: 0;
}

.testimonial-card__name {
    display: block;
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin-bottom: 2px;
}

.testimonial-card__treatment {
    font-size: 13px;
    color: var(--color-secondary);
}

/* ─── Trust Section ─── */
.trust-section {
    background: var(--color-bg);
}

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

.trust-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(11, 43, 76, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(11, 43, 76, 0.12);
}

.trust-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.trust-card:hover .trust-card__img img {
    transform: scale(1.06);
}

.trust-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 43, 76, 0.35) 0%, transparent 60%);
}

.trust-card__icon {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 1;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-secondary);
    color: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(24, 167, 167, 0.3);
}

.trust-card__body {
    padding: 24px;
}

.trust-card__title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin-bottom: 8px;
}

.trust-card__text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-muted);
    margin: 0;
}

/* ─── Hospitals Section ─── */
.hospitals-section {
    padding-top: 40px;
    padding-bottom: 40px;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.hospitals-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.hospital-logo {
    flex-shrink: 0;
}

.hospital-logo__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 32px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    color: var(--color-muted);
    transition: var(--transition);
    min-width: 160px;
    opacity: 0.5;
}

.hospital-logo__inner:hover {
    opacity: 1;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: 0 4px 16px rgba(24, 167, 167, 0.08);
}

.hospital-logo__inner span {
    font-size: 13px;
    font-weight: var(--fw-semibold);
    text-align: center;
}
/* ─── Page Hero (inner pages) ─── */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}

.page-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.page-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.page-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        linear-gradient(
            to right,
            rgba(5, 18, 35, 0.92) 0%,
            rgba(9, 32, 55, 0.78) 30%,
            rgba(11, 43, 76, 0.50) 60%,
            rgba(11, 43, 76, 0.30) 100%
        ),
        linear-gradient(
            to bottom,
            rgba(5, 18, 35, 0.3) 0%,
            transparent 40%,
            rgba(5, 18, 35, 0.4) 100%
        );
}

.page-hero__container {
    position: relative;
    z-index: 3;
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 60px;
}

.page-hero__title {
    color: var(--color-white);
    font-family: 'DM Serif Display', Georgia, serif;
    font-size: 44px;
    font-weight: 400;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.15;
}

.page-hero__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    margin-top: 10px;
}

.page-hero__badge {
    display: inline-block;
    background: rgba(24, 167, 167, 0.85);
    backdrop-filter: blur(8px);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.page-hero__badge:hover {
    background: var(--color-secondary);
    color: var(--color-white);
}

.page-hero__date {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Breadcrumb bar at bottom of hero */
.page-hero__breadcrumb {
    position: relative;
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.page-hero__breadcrumb ol {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 14px 0;
    flex-wrap: wrap;
}

.page-hero__breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.page-hero__breadcrumb li:not(:last-child)::after {
    content: '/';
    color: rgba(255, 255, 255, 0.3);
}

.page-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.page-hero__breadcrumb a:hover {
    color: var(--color-secondary);
}

.page-hero__breadcrumb li:last-child {
    color: var(--color-secondary);
    font-weight: var(--fw-medium);
}

/* ─── Page Content ─── */
.page-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-content h2 {
    margin-top: 40px;
    margin-bottom: 16px;
}

.page-content h3 {
    margin-top: 32px;
    margin-bottom: 12px;
}

.page-content p {
    color: var(--color-muted);
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin: 16px 0;
    padding-left: 24px;
    list-style: disc;
}

.page-content li {
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 8px;
}

.page-content strong {
    color: var(--color-text);
    font-weight: var(--fw-semibold);
}

/* ─── Content Hero Image (treatment/disease pages) ─── */
.content-hero-img {
    background: linear-gradient(135deg, #0B2B4C 0%, #14405E 100%);
    border-radius: 20px;
    padding: 48px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 32px;
    color: #fff;
}

.content-hero-img h2 {
    color: #fff !important;
    margin: 0 0 12px !important;
    padding: 0 !important;
    border: none !important;
    font-size: 28px !important;
}

.content-hero-img p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .content-hero-img {
        padding: 32px 24px;
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

/* ─── Tedavi / Hastalik Content ─── */
.tedavi-content h2,
.hastalik-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
}

.tedavi-content h2:first-child,
.hastalik-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.tedavi-content h3,
.hastalik-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.tedavi-content p,
.hastalik-content p {
    color: var(--color-muted);
    line-height: 1.8;
}

.tedavi-content ul,
.tedavi-content ol,
.hastalik-content ul,
.hastalik-content ol {
    margin: 12px 0;
    padding-left: 24px;
    list-style: disc;
}

.tedavi-content li,
.hastalik-content li {
    color: var(--color-muted);
    line-height: 1.8;
    margin-bottom: 6px;
}

/* Content notice */
.content-notice {
    margin-top: 40px;
    padding: 16px 20px;
    background: rgba(73, 197, 182, 0.06);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    font-size: 14px;
    color: var(--color-muted);
    font-style: italic;
}

.content-notice p {
    margin: 0;
    color: var(--color-muted);
}

/* Content CTA */
.content-cta {
    margin-top: 40px;
}

.content-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 32px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
}

.content-cta__inner h3 {
    font-size: 20px;
    margin: 0 0 6px;
    border: none;
    padding: 0;
}

.content-cta__inner p {
    margin: 0;
    font-size: 14px;
}

.content-cta__buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ─── Sidebar ─── */
.page-sidebar {
    position: sticky;
    top: calc(var(--header-h-scrolled) + 24px);
}

.sidebar-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    padding: 24px;
    margin-bottom: 24px;
}

.sidebar-card__title {
    font-size: 18px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    margin-bottom: 4px;
}

.sidebar-nav a {
    display: block;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-nav a:hover {
    background: var(--color-bg);
    color: var(--color-secondary);
}

.sidebar-nav li.active a {
    background: rgba(24, 167, 167, 0.08);
    color: var(--color-secondary);
    font-weight: var(--fw-semibold);
}

.sidebar-cta {
    background: var(--color-primary);
    border-radius: var(--card-radius);
    padding: 28px 24px;
    text-align: center;
}

.sidebar-cta h4 {
    color: var(--color-white);
    font-size: 18px;
    margin-bottom: 8px;
}

.sidebar-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin-bottom: 20px;
}

.sidebar-cta .btn {
    margin-bottom: 10px;
}

.sidebar-cta .btn:last-child {
    margin-bottom: 0;
}

/* ─── About Page ─── */
.about-page-layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 56px;
    align-items: center;
    margin-bottom: 56px;
}

.about-page-photo {
    position: relative;
}

.about-page-photo__frame {
    background: linear-gradient(160deg, #f0f4f8 0%, #e2e8f0 100%);
    border-radius: 24px;
    overflow: hidden;
    padding: 24px 24px 0;
}

.about-page-photo__frame img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(11, 43, 76, 0.12));
}

.about-page-photo__badge {
    position: absolute;
    bottom: 24px;
    right: -16px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    padding: 14px 22px;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(11, 43, 76, 0.2);
    z-index: 2;
}

.about-page-photo__badge-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: var(--fw-bold);
    color: var(--color-secondary);
    line-height: 1;
}

.about-page-photo__badge-text {
    font-size: 12px;
    font-weight: var(--fw-semibold);
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.about-page-content h2 {
    font-size: 32px;
    margin-bottom: 4px;
}

.about-page-tag {
    display: inline-block;
    background: rgba(24, 167, 167, 0.1);
    color: var(--color-secondary);
    padding: 5px 14px;
    border-radius: var(--btn-radius);
    font-size: 13px;
    font-weight: var(--fw-semibold);
    margin-bottom: 24px;
}

.about-page-content p {
    color: var(--color-muted);
    line-height: 1.8;
    font-size: 15px;
}

.about-page-stats {
    display: flex;
    gap: 20px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.about-page-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--color-bg);
    border-radius: 14px;
    flex: 1;
}

.about-page-stat svg {
    flex-shrink: 0;
    color: var(--color-secondary);
}

.about-page-stat strong {
    display: block;
    font-size: 18px;
    font-weight: var(--fw-bold);
    color: var(--color-primary);
    line-height: 1.2;
}

.about-page-stat span {
    font-size: 12px;
    color: var(--color-muted);
}

.about-approach {
    margin-top: 24px;
}

.about-approach__inner {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    padding: 36px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-approach__inner h3 {
    margin: 16px 0 12px;
    font-size: 24px;
}

.about-approach__inner p {
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── About Page: Tag Items ─── */
.about-page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 16px 0 24px;
}

.about-page-tag-item {
    display: inline-block;
    background: rgba(24, 167, 167, 0.08);
    color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
}

/* ─── About Page: Yaklaşımımız (Full) ─── */
.about-approach-full {
    max-width: 800px;
    margin: 0 auto;
}

.about-approach-full p {
    color: var(--color-muted);
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 20px;
}

.about-approach-highlight {
    background: var(--color-white);
    border-left: 4px solid var(--color-secondary);
    border-radius: 12px;
    padding: 28px 32px;
    margin-top: 28px;
    box-shadow: var(--card-shadow);
}

.about-approach-highlight h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.about-approach-highlight p {
    color: var(--color-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── About Page: Process Grid ─── */
.about-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-process-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    padding: 32px 28px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

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

.about-process-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(24, 167, 167, 0.1);
    color: var(--color-secondary);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--fw-bold);
    margin-bottom: 20px;
}

.about-process-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.about-process-card p {
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* ─── About Page: Çalışma Alanları Grid ─── */
.about-areas-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-area-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--card-radius);
    padding: 28px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
}

.about-area-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--card-shadow-hover);
}

.about-area-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.about-area-card p {
    color: var(--color-muted);
    line-height: 1.7;
    font-size: 15px;
    margin: 0;
}

/* ─── About Page: Microcopy ─── */
.about-microcopy {
    text-align: center;
    color: var(--color-muted);
    font-size: 13px;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid var(--color-border);
}

/* ─── Contact Page ─── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 24px;
}

.contact-info__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-info__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--color-bg);
    border-radius: 12px;
}

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

.contact-info__card h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.contact-info__card p {
    font-size: 14px;
    color: var(--color-muted);
    margin: 0;
}

.contact-info__card a {
    color: var(--color-muted);
    text-decoration: none;
}

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

.contact-map__placeholder {
    background: var(--color-bg);
    border: 1px dashed var(--color-border);
    border-radius: var(--card-radius);
    padding: 60px;
    text-align: center;
    color: var(--color-muted);
    font-size: 14px;
}

/* ─── Form ─── */
.contact-form__desc {
    color: var(--color-muted);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group .required {
    color: #E53E3E;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(24, 167, 167, 0.1);
}

.form-group--checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-group--checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    accent-color: var(--color-secondary);
}

.form-group--checkbox label {
    font-size: 13px;
    color: var(--color-muted);
    margin: 0;
}

.form-group--checkbox a {
    color: var(--color-secondary);
    text-decoration: underline;
}

/* Form Messages */
.form-message {
    margin-top: 16px;
    padding: 14px 18px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
}
.form-message--success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}
.form-message--error {
    background: #fce4ec;
    color: #c62828;
    border: 1px solid #ef9a9a;
}
/* ═══════════════════════════════════════
   BLOG — Professional Single Post Layout
   ═══════════════════════════════════════ */

/* ─── Page Hero Meta ─── */
.page-hero__meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 16px;
}

.page-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero__meta-item svg {
    opacity: 0.6;
}

/* ─── Single Layout (Content + Sidebar) ─── */
.single-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 48px;
    align-items: start;
}

/* ─── Single Post ─── */
.single-post {
    min-width: 0;
}

/* ─── Author Bar ─── */
.author-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    margin-bottom: 32px;
    gap: 16px;
}

.author-bar__left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-bar__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--color-bg);
    flex-shrink: 0;
}

.author-bar__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bar__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-bar__name {
    font-weight: var(--fw-semibold);
    font-size: 15px;
    color: var(--color-primary);
}

.author-bar__title {
    font-size: 13px;
    color: var(--color-muted);
}

.author-bar__right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-bar__share-label {
    font-size: 13px;
    color: var(--color-muted);
    font-weight: var(--fw-medium);
}

.author-bar__share {
    display: flex;
    gap: 6px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-muted);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.share-btn:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: rgba(24, 167, 167, 0.05);
}

.share-btn--copy.copied {
    border-color: var(--color-secondary);
    background: var(--color-secondary);
    color: var(--color-white);
}

/* ─── Featured Image ─── */
.single-post__image {
    margin-bottom: 36px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.single-post__image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ─── Post Content Typography ─── */
.single-post__content {
    line-height: 1.85;
    color: var(--color-text);
    font-size: 16.5px;
}

.single-post__content h2 {
    margin-top: 48px;
    margin-bottom: 20px;
    font-size: 26px;
    color: var(--color-primary);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-bg);
}

.single-post__content h3 {
    margin-top: 36px;
    margin-bottom: 16px;
    font-size: 21px;
    color: var(--color-primary);
}

.single-post__content h4 {
    margin-top: 28px;
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--color-primary);
}

.single-post__content p {
    margin-bottom: 20px;
    color: #4a5568;
}

.single-post__content > p:first-child {
    font-size: 18px;
    line-height: 1.8;
    color: var(--color-text);
    font-weight: 450;
}

.single-post__content a {
    color: var(--color-secondary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.single-post__content a:hover {
    color: var(--color-accent);
}

/* Lists */
.single-post__content ul,
.single-post__content ol {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.single-post__content ul li,
.single-post__content ol li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.7;
}

.single-post__content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-secondary);
}

.single-post__content ol {
    counter-reset: ol-counter;
}

.single-post__content ol li {
    counter-increment: ol-counter;
}

.single-post__content ol li::before {
    content: counter(ol-counter);
    position: absolute;
    left: 0;
    top: 1px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--color-secondary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: var(--fw-semibold);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Blockquote */
.single-post__content blockquote {
    margin: 32px 0;
    padding: 24px 28px 24px 28px;
    border-left: 4px solid var(--color-secondary);
    background: linear-gradient(135deg, rgba(24, 167, 167, 0.04) 0%, rgba(73, 197, 182, 0.04) 100%);
    border-radius: 0 16px 16px 0;
    font-style: italic;
    color: var(--color-text);
    font-size: 17px;
    line-height: 1.75;
    position: relative;
}

.single-post__content blockquote::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 60px;
    color: var(--color-secondary);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.single-post__content blockquote p {
    margin-bottom: 0;
    color: var(--color-text);
}

/* Images in content */
.single-post__content img {
    border-radius: 12px;
    margin: 28px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

/* ─── Info Box ─── */
.info-box {
    margin: 32px 0;
    padding: 24px 28px;
    border-radius: 16px;
    border: 1px solid;
    display: flex;
    gap: 16px;
}

.info-box__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.info-box__content h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.info-box__content p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.7;
}

.info-box__content ul {
    margin: 8px 0 0;
    padding-left: 0;
}

.info-box__content li {
    font-size: 14.5px;
    padding-left: 20px !important;
    margin-bottom: 6px !important;
}

.info-box__content li::before {
    width: 6px !important;
    height: 6px !important;
    top: 9px !important;
}

/* Info box variants */
.info-box--info {
    background: rgba(59, 130, 246, 0.04);
    border-color: rgba(59, 130, 246, 0.15);
}

.info-box--info .info-box__icon {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.info-box--info h4 { color: #1e40af; }

.info-box--warning {
    background: rgba(245, 158, 11, 0.04);
    border-color: rgba(245, 158, 11, 0.15);
}

.info-box--warning .info-box__icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.info-box--warning h4 { color: #92400e; }

.info-box--success {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.15);
}

.info-box--success .info-box__icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.info-box--success h4 { color: #065f46; }

.info-box--danger {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.15);
}

.info-box--danger .info-box__icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.info-box--danger h4 { color: #991b1b; }

/* ─── Key Takeaway Box ─── */
.key-takeaway {
    margin: 36px 0;
    padding: 28px 32px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d3a5c 100%);
    border-radius: 16px;
    color: var(--color-white);
}

.key-takeaway__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: var(--fw-semibold);
    margin-bottom: 16px;
    opacity: 0.9;
}

.key-takeaway ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.key-takeaway li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.key-takeaway li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: var(--fw-bold);
}

/* ─── Comparison Table ─── */
.comparison-table {
    margin: 32px 0;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 20px;
    text-align: left;
    font-size: 14px;
    font-weight: var(--fw-semibold);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    font-size: 14.5px;
    color: #4a5568;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) td {
    background: var(--color-bg);
}

/* ─── Tags ─── */
.single-post__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--color-border);
}

.single-post__tags-label {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
}

.tag {
    display: inline-block;
    padding: 5px 14px;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    font-size: 13px;
    color: var(--color-muted);
    text-decoration: none;
    transition: var(--transition);
}

.tag:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    background: rgba(24, 167, 167, 0.04);
}

/* ─── Author Bio ─── */
.author-bio {
    display: flex;
    gap: 24px;
    margin-top: 36px;
    padding: 28px 32px;
    background: var(--color-bg);
    border-radius: 16px;
    border: 1px solid var(--color-border);
}

.author-bio__avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--color-white);
    border: 3px solid var(--color-white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.author-bio__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-bio__content {
    min-width: 0;
}

.author-bio__label {
    font-size: 12px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-secondary);
}

.author-bio__name {
    margin: 4px 0 10px;
    font-size: 18px;
    color: var(--color-primary);
}

.author-bio__desc {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--color-muted);
    margin-bottom: 12px;
}

.author-bio__link {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--color-secondary);
    text-decoration: none;
}

.author-bio__link:hover {
    color: var(--color-accent);
}

/* ─── Content CTA ─── */
.content-cta {
    margin-top: 36px;
    padding: 32px 36px;
    background: linear-gradient(135deg, rgba(24, 167, 167, 0.06) 0%, rgba(73, 197, 182, 0.06) 100%);
    border: 1px solid rgba(24, 167, 167, 0.15);
    border-radius: 16px;
    display: flex;
    gap: 20px;
}

.content-cta__icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--color-secondary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.content-cta__text h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--color-primary);
}

.content-cta__text p {
    margin: 0;
    font-size: 14.5px;
    color: var(--color-muted);
}

.content-cta__buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ─── Sidebar ─── */
.single-sidebar {
    position: sticky;
    top: calc(var(--header-h-scrolled) + 24px);
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Table of Contents */
.toc-widget {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
}

.toc-widget__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    margin: 0 0 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--color-border);
}

.toc-widget__title svg {
    color: var(--color-secondary);
}

.toc-widget__nav a {
    display: block;
    padding: 8px 0 8px 16px;
    font-size: 13.5px;
    color: var(--color-muted);
    text-decoration: none;
    border-left: 2px solid var(--color-border);
    transition: var(--transition);
    line-height: 1.4;
}

.toc-widget__nav a:hover,
.toc-widget__nav a.is-active {
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.toc-widget__nav a + a {
    margin-top: 2px;
}

/* Sidebar Contact */
.sidebar-contact {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
}

.sidebar-contact__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(24, 167, 167, 0.1);
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}

.sidebar-contact h4 {
    margin: 0 0 6px;
    font-size: 16px;
    color: var(--color-primary);
}

.sidebar-contact p {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--color-muted);
}

.sidebar-contact__phone {
    display: block;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    text-decoration: none;
    margin-bottom: 16px;
}

.sidebar-contact__phone:hover {
    color: var(--color-secondary);
}

/* ─── Related Posts ─── */
.related-posts {
    margin-top: 56px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}

.related-posts__title {
    font-size: 24px;
    margin-bottom: 28px;
    color: var(--color-primary);
}

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

.related-card {
    display: block;
    text-decoration: none;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.related-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.related-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.related-card__body {
    padding: 20px;
}

.related-card__cat {
    display: inline-block;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.related-card__title {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.4;
    color: var(--color-primary);
}

.related-card__date {
    font-size: 13px;
    color: var(--color-muted);
}

/* ─── Post Navigation ─── */
.post-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.post-nav__item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 20px 24px;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    text-decoration: none;
    transition: var(--transition);
}

.post-nav__item:hover {
    border-color: var(--color-secondary);
    background: rgba(24, 167, 167, 0.03);
}

.post-nav__next {
    text-align: right;
}

.post-nav__label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: var(--fw-medium);
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-nav__title {
    font-size: 15px;
    font-weight: var(--fw-semibold);
    color: var(--color-primary);
    line-height: 1.4;
}

/* ─── No results ─── */
.no-results {
    text-align: center;
    padding: 60px 0;
}

.no-results h2 {
    margin-bottom: 12px;
}

.no-results p {
    color: var(--color-muted);
    margin-bottom: 24px;
}

/* ─── Search results ─── */
.search-result {
    padding: 24px 0;
    border-bottom: 1px solid var(--color-border);
}

.search-result h3 {
    margin-bottom: 8px;
}

.search-result h3 a {
    color: var(--color-primary);
    text-decoration: none;
}

.search-result h3 a:hover {
    color: var(--color-secondary);
}

.search-result__excerpt {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 8px;
}

.search-result__link {
    font-size: 14px;
    font-weight: var(--fw-semibold);
    color: var(--color-secondary);
    text-decoration: none;
}

/* ─── Pagination ─── */
.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 48px;
}

.nav-links a,
.nav-links span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: var(--fw-medium);
    text-decoration: none;
    transition: var(--transition);
}

.nav-links a {
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.nav-links a:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.nav-links .current {
    background: var(--color-secondary);
    color: var(--color-white);
    border: 1px solid var(--color-secondary);
}

/* ═══════════════════════════════════════
   RESPONSIVE — Blog
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .single-layout {
        grid-template-columns: 1fr;
    }

    .single-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

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

    .content-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .author-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .author-bio {
        flex-direction: column;
        text-align: center;
    }

    .author-bio__avatar {
        margin: 0 auto;
    }

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

    .content-cta__icon {
        margin: 0 auto;
    }

    .content-cta__inner {
        flex-direction: column;
        align-items: center;
    }

    .content-cta__buttons {
        flex-direction: column;
        width: 100%;
    }

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

    .single-sidebar {
        grid-template-columns: 1fr;
    }

    .related-posts__grid {
        grid-template-columns: 1fr;
    }

    .post-nav {
        grid-template-columns: 1fr;
    }

    .page-hero__meta {
        flex-direction: column;
        gap: 8px;
    }

    .info-box {
        flex-direction: column;
    }

    .key-takeaway {
        padding: 24px;
    }

    .comparison-table {
        overflow-x: auto;
    }
}
/* ─── Footer ─── */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.8);
}

.footer-main {
    padding: 56px 0 48px;
}

/* ─── Footer Top: Logo + CTA ─── */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-logo-link {
    display: inline-block;
    text-decoration: none;
    flex-shrink: 0;
}

.footer-logo-img {
    height: 180px;
    width: auto;
}

.footer-top__right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-top__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-top__right .btn {
    white-space: nowrap;
}

/* ─── Divider ─── */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 40px 0;
}

/* ─── Footer Grid ─── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 48px;
}

/* ─── Brand Column ─── */
.footer-desc {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
    max-width: 340px;
    margin-bottom: 24px;
}

/* ─── Social Icons ─── */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.25s ease;
}

.footer-social__link:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ─── Column Titles ─── */
.footer-col-title {
    font-family: var(--font-heading);
    font-weight: var(--fw-semibold);
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--color-secondary);
    border-radius: 2px;
}

/* ─── Footer Links ─── */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 1px;
    background: var(--color-secondary);
    transition: width 0.2s ease;
}

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

.footer-links a:hover::before {
    width: 12px;
}

/* ─── Contact List ─── */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

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

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* ─── Footer Bottom ─── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

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

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

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

.footer-legal a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--color-accent);
}
/* ─── WhatsApp FAB ─── */
.whatsapp-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-whatsapp);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

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

.whatsapp-fab svg {
    flex-shrink: 0;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}
/* ─── Mobile Bottom Bar ─── */
.mobile-bottom-bar {
    display: none; /* Shown via responsive.css on mobile */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    z-index: var(--z-mobile-bar);
    padding: 0;
}

.mobile-bottom-bar__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 8px;
    text-decoration: none;
    font-size: 11px;
    font-weight: var(--fw-medium);
    color: var(--color-text);
    transition: color 0.2s;
}

.mobile-bottom-bar__item:hover {
    color: var(--color-secondary);
}

.mobile-bottom-bar__item--whatsapp {
    color: var(--color-whatsapp);
}

.mobile-bottom-bar__item--primary {
    color: var(--color-secondary);
}
/* ──────────────────────────────────────
   RESPONSIVE — Tablet (max-width: 1024px)
   ────────────────────────────────────── */
@media (max-width: 1024px) {

    :root {
        --section-py: 56px;
    }

    h1 { font-size: 36px; }
    h2 { font-size: 30px; }
    h3 { font-size: 24px; }

    /* Header */
    .header-nav,
    .header-actions {
        display: none;
    }

    .header-mobile {
        display: flex;
    }

    /* Hero */
    .hero__container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__title {
        font-size: 60px;
    }

    .hero__lead {
        max-width: 100%;
    }

    .hero__card {
        width: 100%;
        max-width: 360px;
        padding: 20px 24px;
    }

    /* Grids */
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-6 { grid-template-columns: repeat(2, 1fr); }

    /* Layout sidebar */
    .layout-sidebar {
        grid-template-columns: 1fr;
    }

    .page-sidebar {
        position: static;
    }

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

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

    /* Process */
    .process-cards {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .proc-card {
        max-width: 480px;
        width: 100%;
    }

    .proc-connector {
        margin-top: 0;
        transform: rotate(90deg);
    }

    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }

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

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

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

    /* Hospitals */
    .hospitals-grid {
        gap: 24px;
    }

    /* Contact band */
    .contact-band__inner {
        flex-direction: column;
        text-align: center;
    }

    /* About (homepage) */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-photo__frame {
        max-width: 420px;
        margin: 0 auto;
    }

    .about-photo__frame img {
        width: 100%;
        margin-left: 0;
    }

    .about-photo__exp {
        right: 0;
    }

    .about-row {
        flex-direction: column;
        align-items: stretch;
    }

    /* About (inner page) */
    .about-page-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-page-photo__frame {
        max-width: 340px;
        margin: 0 auto;
    }

    .about-page-photo__badge {
        right: 0;
    }

    .about-page-stats {
        flex-wrap: wrap;
    }

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

    .about-areas-grid {
        grid-template-columns: 1fr;
    }

    /* Contact */
    .contact-layout {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-logo-img {
        height: 140px;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

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

/* ──────────────────────────────────────
   RESPONSIVE — Mobile (max-width: 768px)
   ────────────────────────────────────── */
@media (max-width: 768px) {

    :root {
        --section-py: 40px;
        --container-px: 16px;
    }

    h1 { font-size: 32px; }
    h2 { font-size: 26px; }
    h3 { font-size: 22px; }
    h4 { font-size: 19px; }

    /* Mobile bottom bar visible */
    .mobile-bottom-bar {
        display: flex;
    }

    body {
        padding-bottom: 60px;
    }

    /* Adjust WhatsApp FAB above bottom bar */
    .whatsapp-fab {
        bottom: 76px;
    }

    /* Grids */
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-6,
    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .exp-card--wide {
        grid-column: span 1;
        max-width: none;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-card {
        padding: 24px 16px;
    }

    .stat-card__number {
        font-size: 36px;
    }

    .stat-card__suffix {
        font-size: 28px;
    }

    .stat-card__icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }

    /* Trust */
    .trust-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Hospitals */
    .hospitals-grid {
        gap: 16px;
    }

    .hospital-logo__inner {
        padding: 16px 24px;
        min-width: 140px;
    }

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

    .section-header-row {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 32px;
    }

    /* Hero */
    .hero {
        min-height: 85vh;
    }

    .hero__title {
        font-size: 48px;
    }

    .hero__subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 14px;
    }

    .hero__container {
        padding-top: calc(var(--header-h) + 24px);
        padding-bottom: 60px;
    }

    .hero__card {
        max-width: 100%;
        padding: 18px 20px;
    }

    .hero__card p {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .hero__card-btn {
        padding: 11px 20px;
        font-size: 14px;
    }

    .hero__scroll {
        display: none;
    }

    /* About section */
    .about-info__title {
        font-size: 28px;
    }

    /* About page process */
    .about-process-grid {
        grid-template-columns: 1fr;
    }

    .about-approach-highlight {
        padding: 20px 24px;
    }

    /* Page hero */
    .page-hero {
        min-height: 260px;
    }

    .page-hero__title {
        font-size: 32px;
    }

    .page-hero__container {
        padding-bottom: 32px;
    }

    /* Content CTA */
    .content-cta__inner {
        flex-direction: column;
        text-align: center;
    }

    .content-cta__buttons {
        width: 100%;
        flex-direction: column;
    }

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

    /* Contact band */
    .contact-band {
        padding: 40px 0;
    }

    .contact-band__text h2 {
        font-size: 24px;
    }

    .contact-band__actions {
        flex-direction: column;
        width: 100%;
    }

    .contact-band__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-main {
        padding: 40px 0 32px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-top__right {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        width: 100%;
    }

    .footer-top__right .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-logo-img {
        height: 120px;
    }

    .footer-divider {
        margin: 28px 0;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    /* 404 */
    .error-404__number {
        font-size: 80px;
    }

    .error-404__actions {
        flex-direction: column;
    }

    .error-404__actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* Blog cards */
    .blog-card__body {
        padding: 20px;
    }

    /* Forms */
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
    }
}

/* ──────────────────────────────────────
   RESPONSIVE — Small (max-width: 480px)
   ────────────────────────────────────── */
@media (max-width: 480px) {

    h1 { font-size: 28px; }
    h2 { font-size: 24px; }

    .hero__title {
        font-size: 36px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-sm {
        padding: 8px 16px;
        font-size: 13px;
    }

    .quick-card {
        padding: 24px 20px;
    }

    .treatment-card {
        padding: 24px 20px;
    }

    .accordion-trigger {
        padding: 14px 18px;
        font-size: 14px;
    }

    .accordion-panel {
        padding: 0 18px 14px;
    }

    .cta-card {
        padding: 28px 20px;
    }

    .sidebar-cta {
        padding: 24px 20px;
    }
}

/* ──────────────────────────────────────
   RESPONSIVE — 404 Page
   ────────────────────────────────────── */
.error-404 {
    text-align: center;
    padding: 40px 0;
}

.error-404__number {
    font-family: var(--font-heading);
    font-size: 120px;
    font-weight: var(--fw-bold);
    color: var(--color-secondary);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 16px;
}

.error-404 h2 {
    margin-bottom: 12px;
}

.error-404 p {
    color: var(--color-muted);
    max-width: 480px;
    margin: 0 auto 28px;
}

.error-404__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ──────────────────────────────────────
   Search form
   ────────────────────────────────────── */
.search-form {
    display: flex;
    gap: 8px;
}

.search-form__input {
    flex: 1;
    padding: 10px 16px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 15px;
}

.search-form__input:focus {
    outline: none;
    border-color: var(--color-secondary);
}

/* ──────────────────────────────────────
   Comments
   ────────────────────────────────────── */
.comments-area {
    max-width: 800px;
    margin: 40px auto 0;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.comments-title {
    margin-bottom: 24px;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .comment {
    padding: 20px 0;
    border-bottom: 1px solid var(--color-border);
}

.comment-list .comment-body {
    display: flex;
    gap: 16px;
}

.comment-list .comment-author img {
    border-radius: 50%;
}

.comment-respond {
    margin-top: 32px;
}

.comment-form label {
    display: block;
    font-weight: var(--fw-medium);
    margin-bottom: 6px;
    font-size: 14px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    font-size: 15px;
    margin-bottom: 16px;
}

.comment-form input:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
}

.comment-form .submit {
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 12px 28px;
    border: none;
    border-radius: var(--btn-radius);
    font-weight: var(--fw-semibold);
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.comment-form .submit:hover {
    background: var(--color-accent);
}
