:root {
    --brand-primary: #0267bc;
    --brand-accent: #53d6f7;
    --brand-deep: #01345f;
    --brand-ink: #0b1f36;

    /* Subtle blue-tinted surfaces: keeps the brand colour present (less "white" overall). */
    --surface: rgba(245, 250, 255, 0.92);
    --surface-solid: #ffffff;

    --shadow-soft: 0 18px 55px rgba(2, 20, 50, 0.10);
    --shadow-strong: 0 30px 90px rgba(2, 20, 50, 0.22);

    --radius-lg: 20px;
    --radius-xl: 26px;

    /* Bootstrap overrides (CSS variables) */
    --bs-primary: var(--brand-primary);
    --bs-primary-rgb: 2, 103, 188;

    --bs-link-color: var(--brand-primary);
    --bs-link-hover-color: #014e8f;
}

html {
    scroll-padding-top: 6.2rem;
}

@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

body {
    font-family: "Roboto", system-ui, -apple-system, Segoe UI, Arial, sans-serif;
    color: #0f172a;
    background:
        radial-gradient(900px 520px at 18% -10%, rgba(83, 214, 247, 0.32), transparent 62%),
        radial-gradient(900px 520px at 82% 0%, rgba(2, 103, 188, 0.26), transparent 62%),
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(235, 247, 255, 1));
}

@media (prefers-reduced-motion: no-preference) {
    section:target,
    footer:target {
        animation: targetGlow 1.25s ease;
    }
}

@keyframes targetGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(83, 214, 247, 0);
    }
    35% {
        box-shadow: 0 0 0 14px rgba(83, 214, 247, 0.16);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(83, 214, 247, 0);
    }
}

a {
    text-underline-offset: 3px;
}

:focus-visible {
    outline: 3px solid rgba(83, 214, 247, 0.85);
    outline-offset: 3px;
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 8px;
    padding: 10px 12px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    z-index: 2000;
}

.skip-link:focus {
    left: 12px;
}

/* ------------------------------
   Buttons
------------------------------- */

.btn-primary {
    border: 0;
    background-image: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    box-shadow: 0 18px 55px rgba(2, 103, 188, 0.22);
}

.btn,
.btn-primary,
.btn-outline-secondary,
.btn-cta {
    transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

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

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

.btn-primary:hover {
    filter: brightness(0.97);
}

.btn-primary:active {
    filter: brightness(0.95);
}

.btn-outline-secondary {
    border-color: rgba(15, 23, 42, 0.22);
}

.btn-outline-secondary:hover {
    background: rgba(15, 23, 42, 0.05);
    border-color: rgba(15, 23, 42, 0.32);
}

/* ------------------------------
   Reveal on scroll
------------------------------- */

.js [data-controller~="reveal"] {
    opacity: 0;
    transform: translateY(16px);
    filter: blur(0.6px);
    transition:
        opacity 640ms ease,
        transform 640ms cubic-bezier(0.2, 0.8, 0.2, 1),
        filter 640ms ease;
    will-change: transform, opacity;
}

.js [data-controller~="reveal"].is-revealed {
    opacity: 1;
    transform: none;
    filter: none;
}

@media (prefers-reduced-motion: reduce) {
    .js [data-controller~="reveal"] {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }
}

.btn-cta {
    background-image: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    border: 0;
    color: #ffffff;
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    box-shadow: 0 18px 55px rgba(2, 103, 188, 0.22);
}

.btn-cta:hover {
    color: #ffffff;
    filter: brightness(0.97);
}

/* ------------------------------
   Header / Navigation
------------------------------- */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    color: #ffffff;
    background: linear-gradient(135deg, rgba(1, 52, 95, 0.96), rgba(2, 103, 188, 0.90));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.site-header.is-scrolled {
    background: linear-gradient(135deg, rgba(1, 52, 95, 0.98), rgba(2, 103, 188, 0.92));
    box-shadow: 0 14px 44px rgba(2, 20, 50, 0.20);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    min-width: 0;
    flex: 0 1 auto;
}

.site-brand__logo {
    display: block;
    height: 52px;
    width: auto;
    max-width: min(42vw, 320px);
    filter: drop-shadow(0 10px 20px rgba(2, 20, 50, 0.22));
    transition: transform 180ms ease, height 180ms ease;
}

.site-header.is-scrolled .site-brand__logo {
    height: 46px;
}

@media (min-width: 992px) {
    .site-brand__logo {
        height: 60px;
        max-width: 360px;
    }

    .site-header.is-scrolled .site-brand__logo {
        height: 52px;
    }
}

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.nav-toggle {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 14px;
    padding: 10px 12px;
    line-height: 0;
    color: #ffffff;
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.18);
}

.nav-toggle__icon {
    position: relative;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
    display: inline-block;
}

.nav-toggle__icon::before,
.nav-toggle__icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 999px;
}

.nav-toggle__icon::before {
    top: -6px;
}

.nav-toggle__icon::after {
    top: 6px;
}

.primary-nav {
    display: none;
}

.primary-nav.is-open {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 14px 0 18px;
    background: linear-gradient(135deg, rgba(2, 103, 188, 0.98), rgba(83, 214, 247, 0.90));
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.primary-nav.is-open > ul {
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
}

.primary-nav .nav-link {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.primary-nav .nav-link.active,
.primary-nav .nav-link:hover {
    color: #ffffff;
}

@media (min-width: 992px) {
    .primary-nav {
        display: block !important;
        position: static;
        background: transparent;
        border: 0;
        padding: 0;
    }

    .primary-nav .nav-link {
        padding: 6px 8px;
        border-radius: 10px;
        text-decoration: none;
        transition: background 180ms ease, color 180ms ease;
    }

    .primary-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.14);
        text-decoration: none;
    }

    .primary-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.18);
    }
}

body.nav-open {
    overflow: hidden;
}

/* ------------------------------
   Hero
------------------------------- */

.hero {
    position: relative;
    min-height: 72vh;
    overflow: hidden;
}

.hero__slides {
    position: absolute;
    inset: 0;
    contain: layout paint style;
}

.hero__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 900ms ease;
}

.hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero__slide picture {
    display: block;
    width: 100%;
    height: 100%;
}

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

.hero__slide--doctor img {
    object-position: center 18%;
}

.hero__slide--consultation img {
    object-position: center 32%;
}

@media (max-width: 991.98px) {
    .hero__slide--doctor img {
        object-position: center 12%;
    }

    .hero__slide--consultation img {
        object-position: 58% 32%;
    }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(1, 52, 95, 0.84), rgba(2, 103, 188, 0.34) 55%, rgba(0, 0, 0, 0.08));
}

.hero__content {
    position: relative;
    z-index: 1;
    padding-top: 7.8rem;
    padding-bottom: 4.8rem;
    color: #ffffff;
}

.hero__kicker {
    font-size: 0.95rem;
    letter-spacing: 0.4px;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 10px;
}

.hero__title {
    font-size: clamp(2.2rem, 3vw + 1rem, 3.4rem);
    font-weight: 900;
    letter-spacing: 0.2px;
    margin-bottom: 12px;
}

.hero__lead {
    max-width: 46rem;
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.125rem;
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    color: rgba(255, 255, 255, 0.90);
    font-size: 0.95rem;
}

.hero__meta i {
    margin-right: 8px;
    color: rgba(83, 214, 247, 0.92);
}

.hero__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.30);
    background: rgba(0, 0, 0, 0.20);
    color: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    display: grid;
    place-items: center;
}

.hero__nav:hover {
    background: rgba(0, 0, 0, 0.32);
}

.hero__nav--prev {
    left: 14px;
}

.hero__nav--next {
    right: 14px;
}

@media (max-width: 575.98px) {
    .hero__nav {
        display: none;
    }
}

/* ------------------------------
   Sections / Typography
------------------------------- */

.section-title {
    font-weight: 900;
    letter-spacing: 0.2px;
    color: #0b2340;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 86px;
    height: 6px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

.section--alt {
    background: linear-gradient(180deg, rgba(2, 103, 188, 0.08), rgba(83, 214, 247, 0.08));
}

.page-hero {
    background:
        radial-gradient(900px 420px at 18% 0%, rgba(83, 214, 247, 0.26), transparent 58%),
        radial-gradient(900px 420px at 82% 0%, rgba(2, 103, 188, 0.20), transparent 58%),
        linear-gradient(120deg, rgba(1, 52, 95, 0.10), rgba(2, 103, 188, 0.10));
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.page-hero--fees {
    background:
        radial-gradient(900px 420px at 22% 0%, rgba(83, 214, 247, 0.30), transparent 60%),
        radial-gradient(900px 420px at 78% 0%, rgba(2, 103, 188, 0.24), transparent 60%),
        linear-gradient(120deg, rgba(1, 52, 95, 0.12), rgba(2, 103, 188, 0.12));
}

.page-hero--services {
    background:
        radial-gradient(900px 420px at 24% 0%, rgba(83, 214, 247, 0.30), transparent 60%),
        radial-gradient(900px 420px at 76% 0%, rgba(2, 103, 188, 0.24), transparent 60%),
        linear-gradient(120deg, rgba(1, 52, 95, 0.12), rgba(2, 103, 188, 0.12));
}

/* ------------------------------
   Cards
------------------------------- */

.about-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-strong);
}

.about-card__img {
    width: 100%;
    height: 440px;
    object-fit: cover;
}

.about-card__panel {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 18px;
    background: linear-gradient(to top, rgba(1, 52, 95, 0.90), rgba(1, 52, 95, 0.0));
    color: #ffffff;
}

.about-card__name {
    font-weight: 900;
    font-size: 1.2rem;
}

.about-card__role {
    opacity: 0.92;
    font-size: 0.95rem;
}

@media (max-width: 991.98px) {
    .about-card__img {
        height: 360px;
    }
}

.feature-card,
.info-panel,
.service-card,
.fee-card,
.contact-card,
.form-card {
    background: var(--surface);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.feature-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
    padding: 18px;
}

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

.feature-card.modal-host-open,
.feature-card.modal-host-open:hover {
    transform: none !important;
}

.feature-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(83, 214, 247, 0.20);
    color: var(--brand-deep);
    margin-bottom: 12px;
}

.info-panel {
    padding: 18px;
}

.service-card,
.fee-card {
    padding: 18px;
}

.service-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(2, 103, 188, 0.10);
    color: var(--brand-deep);
    margin-bottom: 12px;
}

/* Contact & Form */
.contact-card {
    padding: 18px;
}

.contact-card__row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 10px 0;
}

.contact-card__row i {
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(83, 214, 247, 0.18);
    color: var(--brand-deep);
    flex: 0 0 auto;
}

.contact-card__row a {
    color: var(--brand-deep);
    text-decoration: none;
}

.contact-card__row a:hover {
    color: var(--brand-primary);
    text-decoration: underline;
}

.contact-card__note {
    margin-top: 8px;
    color: rgba(15, 23, 42, 0.68);
}

.form-card {
    overflow: hidden;
}

.form-card__header {
    padding: 16px 18px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(2, 103, 188, 0.06);
}

.form-card__disclaimer {
    padding: 0 18px 18px 18px;
}

.appointment-form {
    padding: 18px;
}

/* ------------------------------
   Modal
------------------------------- */

body.modal-open {
    overflow: hidden;
}

.modal-ux {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1050;
}

.modal-ux.is-open {
    display: block;
}

.modal-ux__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
}

.modal-ux__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(920px, calc(100% - 24px));
    max-height: calc(100vh - 24px);
    overflow: auto;
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-strong);
}

.modal-ux__close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #ffffff;
    display: grid;
    place-items: center;
    font-size: 24px;
    line-height: 1;
}

.modal-ux__close:hover {
    background: rgba(0, 0, 0, 0.04);
}



@supports (content-visibility: auto) {
    .home-section {
        content-visibility: auto;
        contain-intrinsic-size: auto 960px;
    }

    .home-section--modal-safe {
        content-visibility: visible;
        contain: none;
    }

    .section--deferred {
        content-visibility: auto;
        contain-intrinsic-size: auto 960px;
    }
}

.footer-logos__group {
    display: grid;
    gap: 10px;
}

.footer-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(108px, 1fr));
    gap: 12px;
}

.footer-logo-tile {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 26px rgba(2, 20, 50, 0.16);
}

.footer-logo-tile picture {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo-tile img {
    width: auto;
    max-width: 100%;
    height: 40px;
    object-fit: contain;
    display: block;
}

@media (max-width: 575.98px) {
    .footer-logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-logo-tile {
        min-height: 64px;
        padding: 8px 10px;
    }

    .footer-logo-tile img {
        height: 34px;
    }
}

/* ------------------------------
   Scroll top
------------------------------- */

.scroll-top {
    position: fixed;
    right: 18px;
    bottom: 84px;
    width: 48px;
    height: 48px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(2, 20, 50, 0.18);
    display: grid;
    place-items: center;
    z-index: 1200;

    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* ------------------------------
   Footer
------------------------------- */

.site-footer {
    background: linear-gradient(135deg, #01345f, #012643);
    color: rgba(255, 255, 255, 0.92);
}

.site-footer a {
    color: rgba(255, 255, 255, 0.92);
}

.site-footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 28px;
    align-items: start;
}

@media (max-width: 991.98px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-logo {
    height: 74px;
    width: auto;
    border-radius: 18px;
    filter: drop-shadow(0 14px 24px rgba(2, 20, 50, 0.36));
}

.footer-brand__title {
    font-weight: 900;
    letter-spacing: 0.2px;
}

.footer-brand__subtitle {
    margin-top: 2px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

.footer-heading {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.84);
    margin-bottom: 12px;
}

.footer-heading--small {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 0.78rem;
    opacity: 0.86;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.footer-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-list li i {
    width: 18px;
    margin-top: 2px;
    color: rgba(83, 214, 247, 0.92);
}

.footer-list--compact {
    gap: 6px;
}

.footer-list--compact li {
    display: block;
    color: rgba(255, 255, 255, 0.82);
}

.footer-quicklinks {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-quicklinks a {
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-quicklinks a:hover {
    border-bottom-color: rgba(255, 255, 255, 0.52);
    text-decoration: none;
}

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

.footer-social {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.14);
    text-decoration: none;
}

.footer-social:hover {
    background: rgba(255, 255, 255, 0.12);
    text-decoration: none !important;
}

.footer-social i {
    color: rgba(83, 214, 247, 0.92);
}

.footer-social span {
    font-weight: 700;
    font-size: 0.92rem;
}

.footer-logos {
    display: grid;
    gap: 22px;
    margin-top: 28px;
}

.footer-logos__title {
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.88);
}

.footer-sep {
    border-color: rgba(255, 255, 255, 0.14);
    margin: 26px 0 18px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: space-between;
    align-items: center;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.84);
}

.footer-bottom__links {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-disclaimer {
    margin-top: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-lg);
    padding: 10px 14px;
    background: rgba(0, 0, 0, 0.16);
}

.footer-disclaimer summary {
    cursor: pointer;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.90);
}

.footer-disclaimer__content {
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
}

/* ------------------------------
   Clinic locations page
------------------------------- */

.clinic-locations-page__intro {
    max-width: 760px;
}

.clinic-location-list {
    display: grid;
    gap: 24px;
}

.clinic-location-card {
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--shadow-strong);
    overflow: hidden;
    scroll-margin-top: 110px;
}

.clinic-location-card__content {
    padding: 24px;
}

.clinic-location-card__title {
    margin-bottom: 10px;
    font-weight: 900;
}

.clinic-location-card__text {
    margin-bottom: 10px;
    color: rgba(15, 23, 42, 0.78);
    line-height: 1.7;
}

.clinic-location-card__address {
    margin-bottom: 14px;
    color: rgba(15, 23, 42, 0.82);
}

.clinic-location-card__directions-label {
    margin-bottom: 10px;
    color: rgba(15, 23, 42, 0.68);
    font-size: 0.92rem;
    font-weight: 700;
}

.clinic-location-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.clinic-location-card__actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
}

.clinic-location-card__actions .btn:focus-visible {
    outline: 2px solid rgba(2, 103, 188, 0.32);
    outline-offset: 2px;
}

.clinic-location-card__map {
    padding: 0 24px 24px;
}

.clinic-location-card__map iframe {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
}

@media (max-width: 767.98px) {
    .clinic-location-card__content {
        padding: 20px 18px;
    }

    .clinic-location-card__map {
        padding: 0 18px 18px;
    }

    .clinic-location-card__actions {
        gap: 10px;
    }

    .clinic-location-card__actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ------------------------------
   Footer clinic locations
------------------------------- */

.footer-clinic-section {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-clinic-section__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-clinic-section__link {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.90rem;
    white-space: nowrap;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-clinic-section__link:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    text-decoration: none;
}

.footer-clinic-section__link:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

.footer-clinics {
    margin-top: 0;
}

.footer-clinics__intro {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
    max-width: 80ch;
}

.footer-clinic-list {
    display: grid;
    gap: 12px;
}

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

.footer-clinic-card {
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    padding: 14px;
    display: flex;
    flex-direction: column;
}

.footer-clinic-card__title {
    margin-bottom: 6px;
    color: #ffffff;
    font-weight: 750;
    line-height: 1.4;
}

.footer-clinic-card__address {
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.92rem;
    line-height: 1.5;
    flex-grow: 1;
}

.footer-clinic-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-clinic-card__actions a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.footer-clinic-card__actions a:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.22);
    color: #ffffff;
    text-decoration: none;
}

.footer-clinic-card__actions a:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.9);
    outline-offset: 2px;
}

@media (max-width: 991.98px) {
    .footer-clinic-section__header {
        flex-direction: column;
        align-items: flex-start;
    }

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