:root {
    --brand: #176f73;
    --brand-dark: #12565a;
    --text: #1f4f53;
    --muted: #5b7577;
    --surface: #ffffff;
    --surface-alt: #f4fbfb;
    --border: rgba(35,156,163,0.16);
}

* {
    box-sizing: border-box;
}

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 2000;
    padding: 12px 16px;
    border-radius: 8px;
    background: #fff;
    color: var(--brand-dark);
    font-weight: 800;
    transform: translateY(-150%);
    transition: transform 160ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

:where(a, button, input, select, textarea):focus-visible {
    outline: 3px solid #f0a202;
    outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #eef6f6;
    color: var(--text);
}

a {
    color: var(--brand);
}

a:hover {
    text-decoration: underline;
}

.container {
    width: min(95%, 1100px);
    margin: 0 auto;
    padding: 0 0 40px;
}

header {
    background: var(--brand);
    color: white;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
}

nav .container {
    width: min(98%, 1600px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 20px 0;
}

nav .logo {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: max-content;
    color: white;
    text-decoration: none;
}

nav .logo img {
    height: 58px;
    width: auto;
    border-radius: 14px;
    background: rgba(255,255,255,0.14);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.logo-text {
    font-size: clamp(1.65rem, 2vw, 2.2rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.nav-panel {
    justify-self: end;
    width: 100%;
    max-width: none;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

nav .nav-links {
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-end;
    gap: 6px;
    margin: 0;
    padding: 0;
}

nav .nav-links li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    padding: 11px 10px;
    border-radius: 999px;
    text-decoration: none;
    transition: background 180ms ease, opacity 180ms ease, transform 180ms ease;
}

nav .nav-links li a:hover {
    opacity: 1;
    background: rgba(255,255,255,0.14);
    transform: translateY(-1px);
}

.hero {
    margin: 30px 0;
    position: relative;
    text-align: center;
    color: white;
    padding: 72px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(35,156,163,0.92), rgba(35,156,163,0.82)),
                url("hero.556841a94111.jpeg") center/cover no-repeat;
    min-height: 340px;
    display: grid;
    place-items: center;
}

.home-hero {
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1fr);
    overflow: hidden;
    padding: 0;
    background: #fff;
}

.home-hero-media {
    align-self: stretch;
    min-height: 500px;
    background: var(--brand-dark);
}

.home-hero-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
    object-position: center 44%;
}

.home-hero .hero-copy {
    align-content: center;
    padding: clamp(30px, 5vw, 72px);
}

.home-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.65rem, 4.5vw, 4.7rem);
}

.home-hero .hero-subtitle {
    max-width: 550px;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    letter-spacing: -0.04em;
}

.hero-subtitle {
    margin: 18px auto 0;
    color: rgba(255,255,255,0.94);
    max-width: 720px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.hero-actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    margin-top: 28px;
}

.btn-primary,
.btn-secondary,
.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border-radius: 999px;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, opacity 180ms ease;
}

.btn-primary,
.btn-secondary,
.header-cta,
.mobile-action-bar a {
    min-height: 48px;
}


/* Calm page motion keeps the clinical interface responsive without feeling busy. */
@keyframes content-reveal {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes hero-image-drift {
    from {
        transform: scale(1.035);
    }
    to {
        transform: scale(1);
    }
}

@keyframes navigation-reveal {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

main .container > * {
    animation: content-reveal 520ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

main .container > *:nth-child(2) {
    animation-delay: 70ms;
}

main .container > *:nth-child(3) {
    animation-delay: 130ms;
}

main .container > *:nth-child(4) {
    animation-delay: 190ms;
}

.home-hero-media img {
    animation: hero-image-drift 900ms ease-out both;
}

.action-card,
.care-card,
.trust-card,
.clinic-card,
.review-card,
.quick-link-card,
.service-catalog-card {
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.action-card:hover,
.care-card:hover,
.trust-card:hover,
.clinic-card:hover,
.review-card:hover,
.quick-link-card:hover,
.service-catalog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(18, 110, 114, 0.12);
}

body.menu-open .header-navigation {
    animation: navigation-reveal 220ms ease-out both;
}

.mobile-action-bar {
    animation: content-reveal 420ms ease-out 180ms both;
}

@media (prefers-reduced-motion: reduce) {
    main .container > *,
    .home-hero-media img,
    .mobile-action-bar,
    body.menu-open .header-navigation {
        animation: none;
    }
}
.btn-primary {
    background: white;
    color: var(--brand);
    padding: 14px 30px;
    box-shadow: 0 16px 30px rgba(35,156,163,0.16);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 35px rgba(35,156,163,0.2);
}

.btn-secondary {
    background: rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.95);
    padding: 14px 30px;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.22);
}

.btn-link {
    background: transparent;
    color: var(--brand-dark);
    padding: 0;
}

.btn-link::after {
    content: " →";
}

.section-intro,
.locations p,
.service-list,
blockquote,
.quick-link-card,
.stat-card {
    font-size: 1rem;
    color: var(--muted);
}

.section-intro {
    max-width: 760px;
    margin: 18px auto 0;
    line-height: 1.9;
}

h2 {
    margin: 0;
    color: var(--brand);
    font-size: clamp(1.7rem, 2.4vw, 2.25rem);
}

.section-heading {
    margin-bottom: 10px;
}

.section-heading::after {
    content: "";
    display: block;
    width: 60px;
    height: 4px;
    margin: 14px auto 0;
    border-radius: 999px;
    background: rgba(35,156,163,0.28);
}

section {
    margin-top: 52px;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 26px;
}

.card {
    background: var(--surface);
    flex: 1 1 280px;
    min-width: 250px;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(35,156,163,0.10);
}

.card h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
}

.card p {
    margin: 0;
    line-height: 1.75;
}

.stats-section {
    margin: 52px auto 0;
    width: min(calc(100vw - 64px), 1500px);
    max-width: none;
    margin-left: 50%;
    transform: translateX(-50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.stat-card {
    background: var(--surface);
    border-radius: 18px;
    padding: 22px 20px;
    border: 1px solid var(--border);
    box-shadow: 0 14px 28px rgba(35,156,163,0.08);
    text-align: center;
}

.stat-card span {
    display: block;
    color: var(--brand);
    font-size: 1.55rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.stat-card p {
    margin: 0;
    line-height: 1.7;
}

.container .stats-section {
    width: min(calc(100vw - 64px), 1500px);
    max-width: none;
    margin: 52px 0 0 50%;
    transform: translateX(-50%);
}

.container .stats-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

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

.service-list {
    list-style: none;
    padding: 0;
    margin: 26px auto 0;
    max-width: 720px;
    display: grid;
    gap: 12px;
    line-height: 1.8;
}

.service-list li {
    position: relative;
    padding-left: 30px;
}

.service-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--brand);
    font-size: 1.4rem;
    line-height: 1.4;
}

.quick-links {
    margin-top: 42px;
}

.quick-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.quick-link-card {
    display: block;
    padding: 24px 22px;
    border-radius: 18px;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.quick-link-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(35,156,163,0.12);
}

.locations {
    text-align: center;
}

.locations p {
    margin: 18px auto 0;
    max-width: 760px;
    line-height: 1.8;
}

.locations iframe {
    margin-top: 22px;
    width: 100%;
    max-width: 760px;
    min-height: 280px;
    border-radius: 18px;
    border: 0;
}

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

.clinics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
    margin-top: 26px;
    text-align: left;
}

.clinic-card {
    display: grid;
    gap: 18px;
    align-content: start;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px;
    box-shadow: 0 14px 28px rgba(35,156,163,0.08);
}

.clinic-card h3,
.branch-list h3,
.contact-clinic h3 {
    margin: 0 0 10px;
    color: var(--text);
    font-size: 1.15rem;
}

.clinic-address,
.clinic-details,
.branch-list p,
.contact-clinic p,
.empty-state {
    color: var(--muted);
    line-height: 1.7;
}

.clinic-address,
.branch-list p,
.contact-clinic p {
    margin: 0;
}

.clinic-details {
    display: grid;
    gap: 12px;
    margin: 0;
}

.clinic-details div {
    display: grid;
    gap: 4px;
}

.clinic-details dt {
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.clinic-details dd {
    margin: 0;
}

.clinic-card iframe {
    width: 100%;
    min-height: 180px;
    border-radius: 8px;
}

.clinic-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
}

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

.branch-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 22px;
    text-align: left;
}

.branch-list article {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px;
}

.branch-list p + p {
    margin-top: 8px;
}

.testimonials {
    margin-top: 50px;
}

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

.review-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 16px 32px rgba(35,156,163,0.08);
}

.review-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: flex-start;
}

.review-topline h3 {
    margin: 0;
    color: var(--text);
    font-size: 1.2rem;
}

.review-meta,
.review-time {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.review-time {
    white-space: nowrap;
}

.review-stars {
    margin: 16px 0 12px;
    color: #f5b301;
    letter-spacing: 0.18em;
    font-size: 1.15rem;
}

.review-text {
    margin: 0;
    color: var(--text);
    line-height: 1.8;
}

blockquote {
    max-width: 760px;
    margin: 24px auto;
    padding: 24px 28px;
    background: var(--surface);
    border-left: 5px solid var(--brand);
    border-radius: 18px;
    box-shadow: 0 16px 32px rgba(35,156,163,0.08);
    line-height: 1.85;
}

blockquote span {
    display: block;
    margin-top: 14px;
    color: var(--text);
    font-weight: 700;
}

.about-page {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.about-page > p {
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.85;
}

.about-band {
    padding-top: 8px;
}

.about-band p {
    color: var(--muted);
    line-height: 1.8;
}

footer {
    background: var(--brand);
    color: white;
    padding: 26px 0;
    font-size: 0.95rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    align-items: center;
}

footer p {
    margin: 0;
}

@media (max-width: 1100px) {
    nav .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 860px) {
    nav .container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .nav-panel {
        width: 100%;
        max-width: none;
        justify-self: stretch;
        border-radius: 28px;
        padding: 10px;
    }

    nav .logo {
        min-width: 0;
    }

    .logo-text {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }

    nav .nav-links {
        justify-content: flex-start;
    }

    .stats-section {
        width: 100%;
        margin-left: auto;
        transform: none;
    }

    .container .stats-section {
        width: 100%;
        margin-left: auto;
        transform: none;
    }

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

    .container .stats-grid {
        grid-template-columns: repeat(2, minmax(180px, 1fr));
    }

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

@media (max-width: 720px) {
    nav .logo {
        gap: 12px;
    }

    nav .logo img {
        height: 50px;
    }

    nav .nav-links {
        gap: 8px;
    }

    nav .nav-links li {
        flex: 1 1 calc(50% - 8px);
    }

    nav .nav-links li a {
        width: 100%;
        min-height: 44px;
        font-size: 0.95rem;
        padding: 12px 14px;
    }

    .cards,
    .quick-cards,
    .stats-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .container .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 48px 18px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .service-list {
        padding: 0 12px;
    }

    .service-hero {
        padding: 48px 18px;
    }
}

@media (max-width: 520px) {
    nav .nav-panel {
        padding: 8px;
    }

    nav .nav-links li {
        flex: 1 1 100%;
    }

    .logo-text {
        font-size: 1.35rem;
    }
}

/* 2026 app shell refresh */
:root {
    --brand: #168a92;
    --brand-dark: #0f5960;
    --accent: #f3a83b;
    --ink: #102f33;
    --soft: #eefafa;
    --ring: rgba(22, 138, 146, 0.18);
}

body {
    background:
        radial-gradient(circle at top left, rgba(35, 156, 163, 0.16), transparent 32rem),
        linear-gradient(135deg, #f7fcfc 0%, #edf8f7 45%, #fff8ee 100%);
    color: var(--ink);
}

.app-shell {
    display: grid;
    grid-template-columns: 292px minmax(0, 1fr);
    min-height: 100vh;
}

.sidebar {
    position: sticky;
    top: 0;
    z-index: 30;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 24px 18px;
    background: rgba(255, 255, 255, 0.84);
    border-right: 1px solid rgba(22, 138, 146, 0.16);
    box-shadow: 22px 0 60px rgba(15, 89, 96, 0.08);
    backdrop-filter: blur(18px);
    transition: width 220ms ease, padding 220ms ease, transform 220ms ease;
}

.sidebar-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.sidebar .logo {
    color: var(--ink);
}

.sidebar .logo img {
    height: 46px;
    border-radius: 14px;
}

.side-nav {
    display: grid;
    gap: 8px;
}

.side-nav a {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    color: #315f64;
    font-weight: 800;
    text-decoration: none;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.side-nav a:hover,
.side-nav a:focus-visible {
    background: var(--soft);
    color: var(--brand-dark);
    transform: translateX(2px);
}

.sidebar-card {
    margin-top: auto;
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--brand), #36b6bd);
    color: white;
    box-shadow: 0 18px 34px rgba(22, 138, 146, 0.24);
}

.sidebar-card span {
    color: rgba(255, 255, 255, 0.84);
}

.sidebar-card a {
    color: white;
    font-weight: 800;
}

.page-shell {
    min-width: 0;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    min-height: 72px;
    padding: 14px clamp(18px, 4vw, 44px);
    background: rgba(247, 252, 252, 0.8);
    border-bottom: 1px solid rgba(22, 138, 146, 0.12);
    backdrop-filter: blur(18px);
}

.sidebar-toggle {
    width: 44px;
    height: 44px;
    display: inline-grid;
    place-items: center;
    gap: 4px;
    border: 1px solid rgba(22, 138, 146, 0.2);
    border-radius: 14px;
    background: white;
    color: var(--brand-dark);
    cursor: pointer;
}

.sidebar-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
}

.sidebar-close {
    display: none;
    font-size: 1.7rem;
    line-height: 1;
}

.topbar-brand {
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.topbar-cta {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--brand);
    color: white;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(22, 138, 146, 0.22);
}

body.sidebar-collapsed .app-shell {
    grid-template-columns: 0 minmax(0, 1fr);
}

body.sidebar-collapsed .sidebar {
    width: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
    border-right: 0;
}

main .container {
    width: min(92%, 1180px);
    padding: 28px 0 56px;
}

header {
    display: none;
}

.hero {
    overflow: hidden;
    min-height: 520px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
    place-items: stretch;
    gap: clamp(28px, 5vw, 56px);
    padding: clamp(34px, 6vw, 68px);
    text-align: left;
    color: var(--ink);
    background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(238,250,250,0.9));
    border: 1px solid rgba(22, 138, 146, 0.14);
    border-radius: 32px;
    box-shadow: 0 28px 80px rgba(15, 89, 96, 0.12);
}

.hero::after {
    content: "";
    grid-column: 2;
    grid-row: 1 / span 3;
    min-height: 420px;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(22, 138, 146, 0.08), rgba(22, 138, 146, 0)),
        url("hero.556841a94111.jpeg") center/cover no-repeat;
    box-shadow: 0 24px 60px rgba(15, 89, 96, 0.18);
}

.hero h1,
.hero-subtitle,
.hero-actions {
    grid-column: 1;
}

.hero h1 {
    align-self: end;
    max-width: 760px;
    color: var(--ink);
    font-size: clamp(2.8rem, 7vw, 5.6rem);
    line-height: 0.95;
}

.hero-subtitle {
    margin: 18px 0 0;
    max-width: 670px;
    color: #42676b;
    font-size: clamp(1.05rem, 1.6vw, 1.28rem);
}

.hero-actions {
    justify-content: flex-start;
    align-self: start;
}

.btn-primary {
    background: var(--brand);
    color: white;
    text-decoration: none;
    box-shadow: 0 16px 34px rgba(22, 138, 146, 0.24);
}

.btn-secondary {
    background: white;
    color: var(--brand-dark);
    border: 1px solid rgba(22, 138, 146, 0.18);
    text-decoration: none;
}

.card,
.stat-card,
.clinic-card,
.review-card,
.quick-link-card,
.service-panel,
.instruction-list li,
blockquote,
.contact-details,
.appointment-form,
.contact-form {
    border-radius: 22px;
    border: 1px solid rgba(22, 138, 146, 0.12);
    box-shadow: 0 18px 46px rgba(15, 89, 96, 0.08);
}

.appointment-form,
.contact-form {
    max-width: 760px;
    padding: clamp(22px, 4vw, 36px);
}

.form-group input,
.form-group select,
.form-group textarea {
    border: 1px solid rgba(22, 138, 146, 0.18);
    border-radius: 14px;
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px var(--ring);
}

.toast-stack {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 80;
    display: grid;
    gap: 10px;
    max-width: min(380px, calc(100vw - 32px));
}

.toast {
    padding: 14px 16px;
    border-radius: 16px;
    background: white;
    color: var(--ink);
    border-left: 5px solid var(--brand);
    box-shadow: 0 18px 48px rgba(15, 89, 96, 0.18);
    animation: toast-in 280ms ease both, toast-out 400ms ease 6s forwards;
}

.toast-error {
    border-left-color: #dc3545;
}

@keyframes toast-in {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes toast-out {
    to { opacity: 0; transform: translateY(12px); pointer-events: none; }
}

@media (max-width: 960px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar,
    body.sidebar-collapsed .sidebar {
        position: fixed;
        width: min(320px, calc(100vw - 44px));
        padding: 22px 18px;
        transform: translateX(-105%);
        overflow: visible;
        border-right: 1px solid rgba(22, 138, 146, 0.16);
    }

    body.sidebar-open .sidebar {
        transform: translateX(0);
    }

    body.sidebar-open .sidebar-backdrop {
        position: fixed;
        inset: 0;
        z-index: 25;
        display: block;
        background: rgba(12, 43, 47, 0.34);
        backdrop-filter: blur(3px);
    }

    .sidebar-close {
        display: inline-grid;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero::after {
        grid-column: 1;
        grid-row: auto;
        min-height: 280px;
    }
}

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

    .topbar-cta {
        display: none;
    }

    .hero {
        padding: 28px 20px;
        border-radius: 24px;
    }
}

/* Full-width home banner */
.home-hero {
    position: relative;
    display: block;
    min-height: 610px;
    padding: 0;
    isolation: isolate;
    background: var(--brand-dark);
}

.home-hero::before {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 38, 40, 0.2) 0%, rgba(5, 38, 40, 0.1) 42%, rgba(5, 38, 40, 0.86) 100%);
}

.home-hero .home-hero-media {
    position: absolute;
    z-index: -2;
    inset: 0;
    min-height: 0;
}

.home-hero .home-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center 47%;
}

.home-hero .hero-copy {
    min-height: 610px;
    max-width: 610px;
    margin-left: auto;
    padding: clamp(38px, 6vw, 88px);
    color: white;
}

.home-hero .hero-kicker,
.home-hero h1,
.home-hero .hero-subtitle {
    color: white;
}

.home-hero .hero-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.36);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

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

.home-hero .btn-primary {
    background: white;
    color: var(--brand-dark);
}

.home-hero .btn-secondary {
    border-color: rgba(255, 255, 255, 0.55);
    background: transparent;
    color: white;
}

@media (max-width: 720px) {
    .home-hero,
    .home-hero .hero-copy {
        min-height: 620px;
    }

    .home-hero::before {
        background: linear-gradient(180deg, rgba(5, 38, 40, 0.1) 0%, rgba(5, 38, 40, 0.88) 70%, rgba(5, 38, 40, 0.94) 100%);
    }

    .home-hero .hero-copy {
        padding: 220px 24px 30px;
    }
}

/* Home banner: compact building image at left, clear care message at right. */
.home-hero {
    display: grid;
    grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
    min-height: 520px;
    overflow: hidden;
    background: #fff;
}

.home-hero::before {
    display: none;
}

.home-hero .home-hero-media {
    position: relative;
    z-index: auto;
    inset: auto;
    min-height: 0;
    padding: 28px 0 28px 28px;
    background: linear-gradient(135deg, #eff8f6, #ffffff);
}

.home-hero .home-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 14px 34px rgba(18, 110, 114, 0.13);
}

.home-hero .hero-copy {
    display: grid;
    align-content: center;
    min-height: 520px;
    max-width: none;
    margin-left: 0;
    padding: clamp(34px, 5vw, 74px);
    color: var(--ink);
    background: #fff;
}

.home-hero .hero-kicker,
.home-hero h1 {
    color: var(--ink);
}

.home-hero .hero-kicker {
    border-color: var(--border);
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.home-hero .hero-subtitle {
    color: var(--muted);
}

.home-hero .btn-primary {
    background: var(--brand);
    color: white;
}

.home-hero .btn-secondary {
    border-color: var(--border);
    background: white;
    color: var(--brand-dark);
}

@media (max-width: 720px) {
    .home-hero {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .home-hero .home-hero-media {
        min-height: 420px;
        padding: 20px 20px 0;
    }

    .home-hero .home-hero-media img {
        border-radius: 14px 14px 0 0;
    }

    .home-hero .hero-copy {
        min-height: 0;
        padding: 32px 24px;
    }
}

/* Form Styling */
.appointment-intro {
    text-align: center;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.appointment-form {
    max-width: 500px;
    margin: 0 auto;
    background: var(--surface);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(35,156,163,0.1);
}

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

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

.field-help {
    margin: 7px 0 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(35,156,163,0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-group[hidden] {
    display: none;
}

.service-form {
    max-width: 620px;
}

.checkbox-group ul {
    list-style: none;
    padding: 12px 14px;
    margin: 0;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: white;
    display: grid;
    gap: 10px;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    font-weight: 500;
}

.checkbox-group input {
    width: auto;
    margin: 0;
}

.error {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 4px;
}

.service-hero {
    margin: 30px 0;
    text-align: center;
    color: white;
    padding: 68px 24px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(28,109,112,0.96), rgba(35,156,163,0.88));
}

.service-hero h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    letter-spacing: -0.04em;
}

.service-hero .section-intro {
    color: rgba(255,255,255,0.94);
}

.service-kicker {
    margin: 0 0 12px;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255,255,255,0.82);
}

.service-panel-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.service-panel {
    background: var(--surface);
    padding: 26px;
    border-radius: 18px;
    border: 1px solid var(--border);
    box-shadow: 0 14px 28px rgba(35,156,163,0.08);
}

.service-panel h2 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.service-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.75;
}

.instruction-section {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
}

.instruction-list {
    margin: 22px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.instruction-list li {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    color: var(--muted);
    line-height: 1.65;
}

/* Messages */
.messages {
    max-width: 500px;
    margin: 0 auto 30px;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

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

.contact-info h2 {
    color: var(--brand);
    margin-bottom: 16px;
}

.contact-details {
    background: var(--surface);
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(35,156,163,0.08);
}

.contact-details p {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-clinic + .contact-clinic {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.contact-clinic p:last-child {
    margin-bottom: 0;
}

.contact-form-section h2 {
    color: var(--brand);
    margin-bottom: 20px;
}

.contact-form {
    background: var(--surface);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(35,156,163,0.1);
}

/* Providers Page */
.providers-page {
    margin-top: 28px;
}

.providers-intro {
    max-width: 760px;
    color: var(--muted);
    line-height: 1.8;
}

.provider-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.provider-card {
    background: var(--surface);
    padding: 28px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 18px 42px rgba(35,156,163,0.10);
}

.provider-card img {
    width: 100%;
    max-width: 220px;
    display: block;
    border-radius: 20px;
    margin-bottom: 18px;
    object-fit: cover;
}

.provider-card h2 {
    font-size: clamp(1.5rem, 2vw, 1.9rem);
    margin-bottom: 10px;
}

.provider-card h4 {
    margin: 0 0 14px;
    color: var(--brand-dark);
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.provider-card p {
    margin: 0 0 12px;
    line-height: 1.75;
}

.provider-highlights {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.8;
}

.provider-highlights li + li {
    margin-top: 8px;
}

.publication-section {
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid rgba(35,156,163,0.18);
}

.publication-label {
    margin-bottom: 12px;
    color: var(--brand-dark);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.publication-card {
    background: linear-gradient(180deg, rgba(35,156,163,0.08), rgba(35,156,163,0.03));
    border: 1px solid rgba(35,156,163,0.16);
    border-radius: 20px;
    padding: 22px;
}

.publication-title {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 700;
}

.publication-meta {
    color: var(--muted);
}

.publication-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--brand);
    color: white;
    font-weight: 700;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.publication-link:hover {
    background: var(--brand-dark);
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(35,156,163,0.16);
}

.feature-links {
    display: grid;
    gap: 14px;
}

.feature-card {
    display: block;
    padding: 18px 20px;
    background: var(--surface);
    border: 1px solid rgba(35,156,163,0.16);
    border-radius: 18px;
    text-decoration: none;
    color: var(--text);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
    text-decoration: none;
    transform: translateY(-1px);
    border-color: rgba(35,156,163,0.28);
    box-shadow: 0 16px 28px rgba(35,156,163,0.10);
}

.feature-card strong {
    display: block;
    line-height: 1.6;
}

.feature-source {
    display: inline-block;
    margin-bottom: 8px;
    color: var(--brand-dark);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.book-card {
    background: linear-gradient(135deg, rgba(35,156,163,0.1), rgba(255,255,255,0.95));
    border: 1px solid rgba(35,156,163,0.18);
    border-radius: 22px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.book-card::after {
    content: "Book";
    position: absolute;
    top: 16px;
    right: 18px;
    color: rgba(28,109,112,0.18);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .provider-card {
        padding: 24px;
    }
}

/* Osborn Saathi */
.saathi-widget {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
}

.saathi-toggle {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-dark), var(--brand));
    color: #fff;
    font: inherit;
    font-weight: 800;
    padding: 16px 22px;
    box-shadow: 0 20px 35px rgba(35,156,163,0.24);
    cursor: pointer;
    animation: saathi-float 4s ease-in-out infinite;
}

.saathi-toggle:hover {
    transform: translateY(-1px);
}

.saathi-panel {
    position: absolute;
    right: 0;
    bottom: 74px;
    width: min(92vw, 380px);
    max-height: min(78vh, 680px);
    display: grid;
    grid-template-rows: auto 1fr auto auto auto;
    gap: 14px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(35,156,163,0.16);
    border-radius: 24px;
    padding: 18px;
    box-shadow: 0 28px 70px rgba(15, 89, 96, 0.22);
    backdrop-filter: blur(18px);
}

.saathi-panel[hidden] {
    display: none !important;
}

.saathi-panel-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

.saathi-panel-header h2 {
    font-size: 1.3rem;
}

.saathi-eyebrow {
    margin: 0 0 4px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.saathi-close {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
}

.saathi-messages {
    display: grid;
    gap: 12px;
    overflow-y: auto;
    min-height: 240px;
    max-height: 340px;
    padding-right: 4px;
}

.saathi-message {
    display: flex;
}

.saathi-message p {
    margin: 0;
    max-width: 86%;
    padding: 13px 15px;
    border-radius: 18px;
    line-height: 1.65;
}

.saathi-message ul {
    margin: 8px 0 0;
    padding-left: 18px;
}

.saathi-message li + li {
    margin-top: 4px;
}

.saathi-message-bot p {
    background: #f3fbfb;
    color: var(--text);
    border: 1px solid rgba(22, 138, 146, 0.12);
    border-top-left-radius: 8px;
}

.saathi-message-user {
    justify-content: flex-end;
}

.saathi-message-user p {
    background: linear-gradient(135deg, var(--brand), #27aeb6);
    color: #fff;
    border-top-right-radius: 8px;
}

.saathi-typing {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    min-width: 54px;
}

.saathi-typing span {
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand);
    animation: saathi-dot 900ms ease-in-out infinite;
}

.saathi-typing span:nth-child(2) {
    animation-delay: 120ms;
}

.saathi-typing span:nth-child(3) {
    animation-delay: 240ms;
}

.saathi-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.saathi-quick-actions button {
    border: 1px solid rgba(35,156,163,0.18);
    background: #fff;
    color: var(--brand-dark);
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    min-height: 44px;
    padding: 9px 12px;
    border-radius: 999px;
    cursor: pointer;
}

.saathi-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.saathi-input {
    width: 100%;
    resize: none;
    min-height: 52px;
    max-height: 120px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(35,156,163,0.18);
    font: inherit;
    background: #fff;
}

.saathi-input:focus {
    outline: none;
    border-color: var(--brand);
    box-shadow: 0 0 0 3px rgba(35,156,163,0.10);
}

.saathi-send {
    border: 0;
    border-radius: 999px;
    background: var(--brand);
    color: #fff;
    font: inherit;
    font-weight: 700;
    min-height: 44px;
    padding: 10px 18px;
    cursor: pointer;
}

@keyframes saathi-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes saathi-dot {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.45; }
    40% { transform: translateY(-5px); opacity: 1; }
}

.saathi-send:disabled,
.saathi-input:disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.saathi-disclaimer {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
    line-height: 1.55;
}

.saathi-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;
}

@media (max-width: 720px) {
    .saathi-widget {
        right: 14px;
        bottom: 14px;
    }

    .saathi-panel {
        right: 0;
        bottom: 68px;
        width: min(94vw, 360px);
        padding: 16px;
    }

    .saathi-toggle {
        padding: 14px 18px;
    }
}

/* Stronger modern healthcare art direction */
:root {
    --brand: #239ca3;
    --brand-dark: #0f6469;
    --brand-bright: #35c0c8;
    --brand-teal: #009688;
    --accent: #ffb84d;
    --ink: #0b3538;
    --muted: #557a7d;
    --surface-alt: #edfafa;
    --border: rgba(35, 156, 163, 0.16);
}

body {
    background:
        radial-gradient(circle at 12% 4%, rgba(53, 192, 200, 0.24), transparent 28rem),
        radial-gradient(circle at 86% 14%, rgba(35, 156, 163, 0.18), transparent 30rem),
        linear-gradient(135deg, #f6ffff 0%, #eafafa 45%, #f8fffd 100%);
}

.topbar {
    min-height: 84px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 16px 46px rgba(15, 100, 105, 0.08);
}

.topbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
}

.topbar-brand img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    box-shadow: 0 10px 28px rgba(15, 100, 105, 0.1);
}

.sidebar-toggle {
    border-color: rgba(35, 156, 163, 0.2);
    background: linear-gradient(180deg, #ffffff, #f3fbff);
    color: var(--brand-dark);
    box-shadow: 0 12px 28px rgba(15, 100, 105, 0.1);
}

.topbar-cta,
.btn-primary,
.saathi-toggle,
.saathi-send {
    background: linear-gradient(135deg, var(--brand-dark), var(--brand), var(--brand-bright));
    color: white;
    box-shadow: 0 18px 42px rgba(35, 156, 163, 0.28);
}

.topbar-cta:hover,
.btn-primary:hover,
.saathi-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 52px rgba(35, 156, 163, 0.34);
}

.sidebar {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(235, 252, 252, 0.94)),
        linear-gradient(135deg, rgba(53, 192, 200, 0.14), transparent);
    border-right-color: rgba(35, 156, 163, 0.18);
}

.side-nav a {
    color: #284f66;
}

.side-nav a:hover,
.side-nav a:focus-visible {
    background: linear-gradient(135deg, rgba(35, 156, 163, 0.14), rgba(0, 150, 136, 0.1));
    color: var(--brand-dark);
}

.sidebar-card {
    background:
        linear-gradient(135deg, rgba(15, 100, 105, 0.96), rgba(35, 156, 163, 0.94)),
        radial-gradient(circle at top right, rgba(255, 184, 77, 0.36), transparent 9rem);
}

.hero {
    position: relative;
    isolation: isolate;
    min-height: min(720px, calc(100vh - 132px));
    margin-top: 26px;
    padding: clamp(34px, 6vw, 76px);
    background:
        radial-gradient(circle at 88% 16%, rgba(53, 192, 200, 0.16), transparent 18rem),
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 250, 250, 0.96));
    border: 1px solid rgba(35, 156, 163, 0.14);
    box-shadow: 0 36px 90px rgba(15, 100, 105, 0.16);
}

.hero::before {
    content: "";
    position: absolute;
    inset: auto -8% -20% 48%;
    z-index: -1;
    height: 380px;
    background: linear-gradient(135deg, rgba(35, 156, 163, 0.16), rgba(0, 150, 136, 0.08));
    border-radius: 999px;
    filter: blur(2px);
    transform: rotate(-8deg);
}

.hero::after {
    border-radius: 34px;
    background:
        linear-gradient(180deg, rgba(11, 53, 56, 0.06), rgba(11, 53, 56, 0.22)),
        url("hero.556841a94111.jpeg") center 47% / 168% auto no-repeat;
    box-shadow:
        0 30px 70px rgba(15, 100, 105, 0.24),
        0 0 0 12px rgba(255, 255, 255, 0.86);
}

.hero-kicker {
    grid-column: 1;
    align-self: end;
    width: fit-content;
    margin: 0 0 14px;
    padding: 9px 13px;
    border: 1px solid rgba(35, 156, 163, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    color: var(--ink);
    font-size: clamp(3rem, 7.5vw, 6.4rem);
    letter-spacing: -0.07em;
}

.hero-subtitle {
    color: #426d70;
    font-size: clamp(1.08rem, 1.55vw, 1.34rem);
    line-height: 1.75;
}

.hero-trust {
    grid-column: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: #e8fafa;
    color: var(--brand-dark);
    font-size: 0.9rem;
    font-weight: 800;
}

.btn-secondary {
    color: var(--brand-dark);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(35, 156, 163, 0.18);
    box-shadow: 0 14px 32px rgba(15, 100, 105, 0.08);
}

h2 {
    color: var(--brand-dark);
    letter-spacing: -0.035em;
}

.stat-card span {
    color: var(--brand);
}

.card,
.stat-card,
.clinic-card,
.review-card,
.quick-link-card,
.service-panel,
.instruction-list li,
blockquote,
.contact-details,
.appointment-form,
.contact-form {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(35, 156, 163, 0.13);
    box-shadow: 0 22px 52px rgba(15, 100, 105, 0.1);
}

.service-list li::before,
a {
    color: var(--brand);
}

.saathi-panel {
    border-color: rgba(35, 156, 163, 0.16);
    box-shadow: 0 30px 72px rgba(15, 100, 105, 0.24);
}

@media (max-width: 960px) {
    .hero::after {
        background:
            linear-gradient(180deg, rgba(11, 53, 56, 0.02), rgba(11, 53, 56, 0.16)),
            url("hero.556841a94111.jpeg") center 48% / 150% auto no-repeat;
    }
}

@media (max-width: 640px) {
    .topbar-brand img {
        width: 36px;
        height: 36px;
    }

    .topbar-brand span {
        max-width: 170px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .hero h1 {
        font-size: clamp(2.7rem, 18vw, 4.6rem);
    }
}

/* Trust-first clinic website redesign */
:root {
    --brand: #126E72;
    --brand-dark: #0B4F52;
    --brand-soft: #DCEFEB;
    --brand-pale: #EEF7F4;
    --accent: #F5C76D;
    --ink: #12383B;
    --muted: #5B7372;
    --page: #F7F8F4;
    --surface: #FFFFFF;
    --border: rgba(18, 110, 114, 0.14);
}

body {
    background: var(--page);
    color: var(--ink);
    font-size: 16px;
}

.container {
    width: min(92%, 1180px);
}

.announcement-bar {
    background: var(--brand-dark);
    color: white;
    font-size: 0.95rem;
}

.announcement-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 9px 0;
}

.announcement-bar a {
    color: white;
    font-weight: 800;
    white-space: nowrap;
}

.site-header {
    display: block;
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(247, 248, 244, 0.92);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(14px);
}

.header-top {
    background: linear-gradient(90deg, #ffffff 0%, #fbfdfc 55%, #f4faf8 100%);
    border-bottom: 1px solid var(--border);
}

.header-top-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    width: min(95%, 1720px);
    min-height: 104px;
    align-items: center;
    gap: 24px;
    padding-bottom: 0;
}

.header-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 12px 0 18px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 18px 38px rgba(18, 110, 114, 0.12);
}

.header-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(14px, 1.6vw, 24px);
    min-height: 68px;
    padding: 0;
}

.header-navigation .header-inner {
    width: min(94%, 760px);
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 28px rgba(18, 110, 114, 0.08);
}

body.menu-open .header-navigation {
    display: block;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    justify-self: center;
    padding-left: 0;
    color: var(--ink);
    font-weight: 900;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.site-brand span {
    display: flex;
    align-items: center;
    min-height: 74px;
    font-size: clamp(1.18rem, 1.45vw, 1.42rem);
    line-height: 1;
}

.site-brand img {
    width: 152px;
    height: 74px;
    object-fit: contain;
    border-radius: 20px;
    background: white;
    padding: 7px 12px;
    border: 1px solid rgba(18, 110, 114, 0.06);
    box-shadow: 0 10px 28px rgba(18, 110, 114, 0.08);
}

.header-top .header-cta {
    justify-self: end;
    min-width: 230px;
    min-height: 54px;
    font-size: 1rem;
    box-shadow: 0 12px 26px rgba(18, 110, 114, 0.16);
}

.primary-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: center;
    justify-content: flex-start;
    gap: 2px;
}

.primary-nav a {
    position: relative;
    padding: 13px 14px;
    border-radius: 12px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
    transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
    background: var(--brand-soft);
    color: var(--brand-dark);
    transform: translateY(-1px);
}

.header-cta,
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: var(--brand);
    color: white;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(18, 110, 114, 0.18);
}

.header-search {
    display: flex;
    align-items: center;
    min-height: 46px;
    height: 46px;
    padding: 4px 5px 4px 15px;
    border: 1px solid rgba(18, 110, 114, 0.18);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(18, 110, 114, 0.08);
    transition: border-color 180ms ease, box-shadow 180ms ease;
}

.header-navigation .header-search {
    width: 100%;
    margin-top: 12px;
}

.header-search:focus-within {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(35, 156, 163, 0.13);
}

.header-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: inherit;
    padding: 8px;
}

.header-search input::placeholder {
    color: var(--muted);
}

.header-search button {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 50%;
    background: var(--brand);
    color: white;
    cursor: pointer;
    transition: background 180ms ease, transform 180ms ease;
}

.header-search button:hover,
.header-search button:focus-visible {
    background: var(--brand-dark);
    transform: scale(1.05);
}

.header-search button span {
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 50%;
    position: relative;
}

.header-search button span::after {
    content: "";
    position: absolute;
    right: -5px;
    bottom: -3px;
    width: 6px;
    height: 2px;
    border-radius: 3px;
    background: currentColor;
    transform: rotate(45deg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    background: white;
    border: 1px solid var(--border);
    color: var(--brand-dark);
    font-weight: 900;
    text-decoration: none;
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: white;
    color: var(--brand-dark);
}

.header-top .menu-toggle {
    display: block;
    justify-self: start;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(18, 110, 114, 0.08);
}

/* Full navigation remains visible below the centered brand on larger screens. */
.header-navigation {
    position: static;
    display: block;
    padding: 0;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: none;
}

.header-navigation .header-inner {
    grid-template-columns: minmax(0, 1fr) minmax(255px, 300px);
    width: min(95%, 1720px);
    min-height: 70px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.primary-nav {
    display: flex;
    gap: 2px;
    padding-left: clamp(28px, 4vw, 72px);
}

.primary-nav a {
    padding: 11px clamp(7px, 0.75vw, 12px);
    border-radius: 999px;
}

.header-navigation .header-search {
    margin-top: 0;
}

@media (max-width: 1100px) {
    .header-navigation {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 100;
        display: none;
        padding: 12px 0 18px;
        background: rgba(255, 255, 255, 0.98);
        border-bottom: 1px solid var(--border);
        box-shadow: 0 18px 38px rgba(18, 110, 114, 0.12);
    }

    body.menu-open .header-navigation {
        display: block;
    }

    body:not(.menu-open) .header-navigation {
        visibility: hidden;
        pointer-events: none;
    }

    .header-navigation .header-inner {
        grid-template-columns: 1fr;
        width: min(94%, 760px);
        padding: 18px;
        border: 1px solid var(--border);
        border-radius: 20px;
        background: #fff;
        box-shadow: 0 10px 28px rgba(18, 110, 114, 0.08);
    }

    .primary-nav {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-left: 0;
    }

    .primary-nav a {
        padding: 13px 14px;
        border-radius: 12px;
    }

    .header-navigation .header-search {
        margin-top: 12px;
    }
}

.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 999px;
    background: currentColor;
}

main .container {
    padding: 34px 0 70px;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.78fr);
    gap: clamp(26px, 5vw, 64px);
    align-items: center;
    min-height: auto;
    margin: 10px 0 0;
    padding: clamp(28px, 5vw, 62px);
    border-radius: 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f8f5 100%);
    border: 1px solid var(--border);
    box-shadow: none;
}

.hero::before,
.hero::after {
    content: none;
}

.hero-copy {
    display: grid;
    gap: 18px;
}

.hero-kicker,
.section-kicker {
    margin: 0;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0;
    max-width: 780px;
    color: var(--ink);
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    line-height: 0.98;
    letter-spacing: -0.06em;
}

.hero-subtitle {
    margin: 0;
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(1.08rem, 1.5vw, 1.3rem);
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.hero-hours {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    max-width: 620px;
}

.hero-hours span {
    display: grid;
    gap: 3px;
    padding: 14px;
    border-radius: 14px;
    background: var(--brand-soft);
    color: var(--muted);
    line-height: 1.35;
}

.hero-hours strong {
    color: var(--ink);
    font-size: 0.95rem;
}

.hero-media {
    position: relative;
}

.hero-photo {
    min-height: clamp(360px, 46vw, 560px);
    border-radius: 18px;
    background: url("hero.556841a94111.jpeg") center 47% / 155% auto no-repeat;
    box-shadow: 0 18px 42px rgba(18, 110, 114, 0.16);
}

.hero-note {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    padding: 15px 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(18, 110, 114, 0.16);
}

.quick-actions-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 20px;
}

.action-card {
    display: grid;
    gap: 8px;
    min-height: 150px;
    padding: 22px;
    border-radius: 18px;
    background: var(--brand);
    color: white;
    text-decoration: none;
}

.action-card:nth-child(2) {
    background: var(--brand-dark);
}

.action-card:nth-child(3) {
    background: #1D8588;
}

.action-card span {
    color: rgba(255, 255, 255, 0.68);
    font-weight: 900;
}

.action-card strong {
    font-size: 1.25rem;
}

.action-card em {
    color: rgba(255, 255, 255, 0.82);
    font-style: normal;
}

.section-header {
    max-width: 760px;
    margin-bottom: 24px;
}

.section-header h2,
.doctor-trust h2,
.why-choose-us h2,
.services-overview h2,
.our-clinics h2,
.testimonials h2,
.quick-links h2 {
    color: var(--ink);
    font-size: clamp(1.9rem, 3vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
}

.section-header p:not(.section-kicker),
.section-intro {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.75;
}

.care-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.care-card,
.trust-card,
.clinic-card,
.review-card,
.quick-link-card {
    border-radius: 18px;
    background: white;
    border: 1px solid var(--border);
    box-shadow: none;
}

.care-card {
    padding: 22px;
}

.care-card span,
.trust-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 34px;
    margin-bottom: 18px;
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-dark);
    font-size: 0.8rem;
    font-weight: 900;
}

.care-card h3,
.trust-card h3,
.card h3 {
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 1.18rem;
}

.care-card p,
.trust-card p,
.card p {
    color: var(--muted);
    line-height: 1.65;
}

.doctor-trust {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
    gap: 24px;
    align-items: stretch;
    padding: clamp(26px, 4vw, 42px);
    border-radius: 18px;
    background: var(--brand-soft);
}

.doctor-trust > div {
    display: grid;
    align-content: center;
    gap: 14px;
}

.doctor-meta {
    margin: 0;
    color: var(--brand-dark);
    font-weight: 900;
}

.doctor-trust blockquote {
    display: grid;
    align-content: center;
    margin: 0;
    border: 0;
    border-radius: 18px;
    background: white;
    color: var(--ink);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    font-weight: 900;
    line-height: 1.35;
}

.trust-band {
    padding: clamp(24px, 4vw, 38px);
    border-radius: 18px;
    background: white;
    border: 1px solid var(--border);
}

.trust-band .cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-card {
    padding: 24px;
    background: var(--page);
}

.stats-section {
    display: none;
}

.services-overview {
    padding: clamp(24px, 4vw, 38px);
    border-radius: 18px;
    background: white;
    border: 1px solid var(--border);
}

.service-list {
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    text-align: left;
}

.our-clinics,
.testimonials,
.quick-links {
    padding: clamp(24px, 4vw, 38px);
    border-radius: 18px;
    background: var(--brand-pale);
}

.saathi-toggle {
    background: var(--brand);
    box-shadow: 0 14px 30px rgba(18, 110, 114, 0.22);
}

.mobile-action-bar {
    display: none;
}

@media (max-width: 1240px) {
    .header-top-inner {
        width: min(94%, 1180px);
        min-height: 94px;
    }

    .header-navigation .header-inner {
        width: min(94%, 760px);
    }

    .header-cta {
        min-height: 44px;
    }

    .header-top .header-cta {
        min-width: auto;
        min-height: 48px;
    }

    .hero,
    .doctor-trust {
        grid-template-columns: 1fr;
    }

    .home-hero-media,
    .home-hero-media img {
        min-height: min(76vw, 560px);
    }

    .quick-actions-section,
    .care-grid,
    .trust-band .cards {
        grid-template-columns: 1fr;
    }

    .service-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .header-top-inner {
        min-height: 74px;
    }

    .site-brand img {
        width: 72px;
        height: 48px;
        padding: 4px 6px;
        border-radius: 14px;
    }

    .site-brand {
        justify-self: start;
        min-width: 0;
        gap: 8px;
    }

    .header-top-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 12px;
    }

    .site-brand {
        justify-self: center;
    }

    .header-cta {
        min-height: 40px;
        padding: 0 10px;
        font-size: 0.76rem;
        white-space: nowrap;
    }

    .header-top .header-cta {
        min-height: 40px;
    }

    .announcement-inner {
        display: grid;
        gap: 4px;
        text-align: center;
    }

    .site-brand span {
        display: block;
        min-height: 0;
        max-width: 118px;
        overflow: visible;
        font-size: 0.84rem;
        line-height: 1.1;
        letter-spacing: -0.02em;
        white-space: normal;
    }

    .header-navigation .header-inner {
        padding: 12px;
    }

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

    .hero {
        padding: 22px;
    }

    .home-hero {
        padding: 0;
    }

    .home-hero-media,
    .home-hero-media img {
        min-height: 390px;
    }

    .home-hero .hero-copy {
        padding: 30px 22px;
    }

    .hero h1 {
        font-size: clamp(2.45rem, 13vw, 3.8rem);
    }

    .hero-hours {
        grid-template-columns: 1fr;
    }

    .hero-photo {
        min-height: 320px;
        background-size: 145% auto;
    }

    .mobile-action-bar {
        position: fixed;
        left: 10px;
        right: 10px;
        bottom: 10px;
        z-index: 70;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 8px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.94);
        box-shadow: 0 16px 40px rgba(18, 110, 114, 0.2);
    }

    .mobile-action-bar a {
        display: grid;
        place-items: center;
        min-height: 46px;
        border-radius: 14px;
        background: var(--brand);
        color: white;
        font-weight: 900;
        text-decoration: none;
    }

    footer {
        padding-bottom: 96px;
    }
}

/* Keep the identity readable even on the narrowest supported phone widths. */
@media (max-width: 640px) {
    .header-top-inner {
        grid-template-columns: 48px minmax(0, 1fr) auto;
        align-items: center;
    }

    .site-brand {
        display: inline-flex !important;
        justify-self: start !important;
        width: 100%;
        min-width: 0;
        overflow: visible;
    }

    .site-brand img {
        display: block !important;
        flex: 0 0 64px;
        width: 64px;
        height: 46px;
    }

    .site-brand span {
        display: block !important;
        flex: 1 1 auto;
        min-width: 0;
        max-width: none;
        overflow: visible;
        color: var(--ink);
        font-size: clamp(0.72rem, 3.2vw, 0.88rem);
        font-weight: 900;
        line-height: 1.1;
        white-space: normal;
    }
}

/* Services catalogue */
.service-catalog { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 28px; }
.commitment-band { padding: clamp(30px, 5vw, 62px); border-radius: 20px; background: linear-gradient(135deg, #0d5e61, #16858a); color: white; text-align: center; }.commitment-band .section-kicker { color: #c9f1eb; }.commitment-band h2 { margin: 10px 0; color: white; font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -.05em; }.commitment-band p:last-child { max-width: 650px; margin: 0 auto; color: rgba(255,255,255,.86); line-height: 1.7; }
.service-catalog-card { display: flex; flex-direction: column; align-items: flex-start; padding: clamp(24px, 3vw, 34px); border: 1px solid var(--border); border-radius: 20px; background: white; }.service-catalog-card--critical { background: var(--brand-pale); }.service-catalog-card--emergency { background: #12383b; }.service-catalog-card--emergency h2, .service-catalog-card--emergency p, .service-catalog-card--emergency li, .service-catalog-card--emergency .btn-link { color: white; }.service-catalog-card--emergency .section-kicker { color: #aee5dc; }.service-catalog-card h2 { margin: 10px 0; color: var(--ink); font-size: clamp(1.55rem, 2.2vw, 2.15rem); letter-spacing: -.04em; }.service-catalog-card > p:not(.section-kicker) { margin: 0; color: var(--muted); line-height: 1.65; }.service-catalog-card h3 { margin: 22px 0 8px; color: var(--ink); font-size: .88rem; text-transform: uppercase; letter-spacing: .08em; }.service-catalog-card ul { display: grid; gap: 8px; margin: 0 0 22px; padding-left: 20px; color: var(--muted); line-height: 1.5; }.service-catalog-card li::marker { color: var(--brand); }.service-catalog-card .btn-link { margin-top: auto; font-weight: 900; }.service-icon { display: inline-flex; align-items: center; justify-content: center; min-width: 54px; min-height: 34px; padding: 6px 10px; border-radius: 999px; background: var(--brand-soft); color: var(--brand-dark); font-size: .78rem; font-weight: 900; }.service-catalog-card--emergency .service-icon { background: rgba(255,255,255,.14); color: white; }.service-catalog-card--emergency h3 { color: white; }
@media (max-width: 760px) { .service-catalog { grid-template-columns: 1fr; }.service-catalog-card { padding: 24px; } }

/* Pathology packages */
.package-section { padding: clamp(26px, 4vw, 48px); border-radius: 20px; background: #fff; border: 1px solid var(--border); }
.package-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 28px; }
.diagnostic-package { overflow: hidden; border: 1px solid var(--border); border-radius: 16px; background: var(--brand-pale); transition: box-shadow 180ms ease, transform 180ms ease; }
.diagnostic-package:hover { box-shadow: 0 12px 28px rgba(18, 110, 114, .1); transform: translateY(-2px); }
.diagnostic-package summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px; cursor: pointer; list-style: none; }
.diagnostic-package summary::-webkit-details-marker { display: none; }
.diagnostic-package summary span { display: grid; gap: 5px; }.diagnostic-package summary em { color: var(--brand); font-size: .78rem; font-style: normal; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }.diagnostic-package summary strong { color: var(--ink); font-size: 1.15rem; }.diagnostic-package summary b { flex: 0 0 auto; padding: 8px 10px; border-radius: 999px; background: white; color: var(--brand-dark); font-size: .8rem; white-space: nowrap; }.diagnostic-package[open] summary b::after { content: " · Hide"; }.diagnostic-package[open] summary b { font-size: 0; }.diagnostic-package[open] summary b::after { font-size: .8rem; }
.diagnostic-package ul { display: grid; gap: 9px; margin: 0; padding: 0 20px 22px 39px; color: var(--muted); line-height: 1.5; }.diagnostic-package li::marker { color: var(--brand); }
@media (max-width: 760px) { .package-grid { grid-template-columns: 1fr; }.package-section { padding: 26px 20px; }.diagnostic-package summary { padding: 17px; }.diagnostic-package ul { padding: 0 17px 20px 35px; } }

/* About page */
.about-hero, .about-focus, .about-support, .about-conditions { padding: clamp(30px, 5vw, 70px); border-radius: 20px; }
.about-hero { margin-top: 10px; background: linear-gradient(135deg, #0d5e61, #16858a); color: white; }
.about-hero h1 { max-width: 860px; margin: 14px 0; color: white; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -0.055em; }
.about-hero p:not(.section-kicker) { max-width: 740px; color: rgba(255,255,255,.88); font-size: 1.12rem; line-height: 1.7; }
.about-hero .section-kicker { color: #c9f1eb; }.about-hero .btn-primary { background: white; color: var(--brand-dark); }.about-hero .btn-secondary { border-color: rgba(255,255,255,.48); background: transparent; color: white; }
.about-focus { background: white; border: 1px solid var(--border); }.about-focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 28px; }.about-focus-grid article { padding: 24px; border-radius: 16px; background: var(--brand-pale); }.about-focus-grid span { color: var(--brand); font-weight: 900; }.about-focus-grid h3 { margin: 15px 0 9px; color: var(--ink); font-size: 1.2rem; }.about-focus-grid p { margin: 0; color: var(--muted); line-height: 1.65; }
.about-support { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 6vw, 90px); background: var(--brand-soft); }.about-support h2, .about-conditions h2 { margin: 10px 0; color: var(--ink); font-size: clamp(1.9rem, 3.5vw, 3.1rem); line-height: 1.08; letter-spacing: -0.045em; }.about-support p { color: var(--muted); line-height: 1.7; }.about-support ul { display: grid; gap: 14px; align-content: center; margin: 0; padding: 0; list-style: none; }.about-support li { position: relative; padding: 15px 18px 15px 38px; border-radius: 12px; background: white; color: var(--ink); font-weight: 700; line-height: 1.45; }.about-support li::before { content: "✓"; position: absolute; left: 16px; color: var(--brand); }
.about-conditions { background: white; border: 1px solid var(--border); }.about-condition-list { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }.about-condition-list span { padding: 11px 15px; border-radius: 999px; background: var(--brand-pale); color: var(--brand-dark); font-weight: 800; }
.services-emergency { padding: clamp(30px, 5vw, 60px); border-radius: 20px; background: #12383b; }.services-emergency .section-kicker { color: #aee5dc; }.services-emergency h2 { margin: 10px 0; color: white; font-size: clamp(2rem, 3.5vw, 3.15rem); line-height: 1.08; letter-spacing: -.045em; }.services-emergency .section-header p:not(.section-kicker) { color: rgba(255,255,255,.78); }.services-emergency-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 28px; }.services-emergency-grid span { display: flex; align-items: center; min-height: 82px; padding: 16px 18px; border: 1px solid rgba(255,255,255,.13); border-radius: 14px; background: rgba(255,255,255,.07); color: white; font-weight: 700; line-height: 1.4; }.services-emergency-grid span::before { content: "+"; flex: 0 0 auto; margin-right: 10px; color: #aee5dc; font-size: 1.25rem; }
@media (max-width: 900px) { .services-emergency-grid { grid-template-columns: repeat(2, 1fr); } } @media (max-width: 600px) { .services-emergency { padding: 28px 22px; }.services-emergency-grid { grid-template-columns: 1fr; } }
@media (max-width: 780px) { .about-focus-grid, .about-support { grid-template-columns: 1fr; }.about-hero, .about-focus, .about-support, .about-conditions { padding: 28px 22px; } }

/* Final home banner layout: compact building image at left. */
.home-hero {
    display: grid;
    grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
    min-height: 520px;
    padding: 0;
    overflow: hidden;
    background: #fff;
}

.home-hero::before {
    display: none;
}

.home-hero .home-hero-media {
    position: relative;
    z-index: auto;
    inset: auto;
    min-height: 0;
    padding: 28px 0 28px 28px;
    background: linear-gradient(135deg, #eff8f6, #ffffff);
}

.home-hero .home-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: contain;
    object-position: center;
    border-radius: 16px 0 0 16px;
    box-shadow: 0 14px 34px rgba(18, 110, 114, 0.13);
}

.home-hero .hero-copy {
    display: grid;
    align-content: center;
    min-height: 520px;
    max-width: none;
    margin-left: 0;
    padding: clamp(34px, 5vw, 74px);
    color: var(--ink);
    background: #fff;
}

.home-hero .hero-kicker,
.home-hero h1,
.home-hero .hero-subtitle {
    color: var(--ink);
}

.home-hero .hero-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--brand-soft);
    color: var(--brand-dark);
}

.home-hero .hero-subtitle {
    color: var(--muted);
}

.home-hero .btn-primary {
    background: var(--brand);
    color: white;
}

.home-hero .btn-secondary {
    border-color: var(--border);
    background: white;
    color: var(--brand-dark);
}

@media (max-width: 720px) {
    .home-hero { grid-template-columns: 1fr; min-height: 0; }
    .home-hero .home-hero-media { min-height: 420px; padding: 20px 20px 0; }
    .home-hero .home-hero-media img { border-radius: 14px 14px 0 0; }
    .home-hero .hero-copy { min-height: 0; padding: 32px 24px; }
}
