:root {
    --blue-950: #072147;
    --blue-900: #0b4b9a;
    --blue-800: #1163c7;
    --blue-700: #1b7be7;
    --sky-100: #e9f4ff;
    --sky-50: #f7fbff;
    --gold-500: #ffc928;
    --gold-400: #ffd95d;
    --gold-300: #ffea9d;
    --gold-100: #fff7d2;
    --orange-100: #fff0de;
    --slate-950: #10243c;
    --slate-800: #28445f;
    --slate-700: #557089;
    --slate-500: #7e93a8;
    --surface: rgba(255, 255, 255, 0.9);
    --surface-strong: #ffffff;
    --surface-soft: #f5f9ff;
    --line: rgba(16, 36, 60, 0.1);
    --line-strong: rgba(16, 36, 60, 0.16);
    --success: #136846;
    --success-bg: #e7fbef;
    --error: #a92a40;
    --error-bg: #fff1f4;
    --shadow-xl: 0 32px 80px rgba(7, 33, 71, 0.18);
    --shadow-lg: 0 24px 56px rgba(7, 33, 71, 0.14);
    --shadow-md: 0 18px 40px rgba(7, 33, 71, 0.1);
    --shadow-sm: 0 12px 24px rgba(7, 33, 71, 0.08);
    --radius-xl: 32px;
    --radius-lg: 26px;
    --radius-md: 20px;
    --radius-sm: 16px;
    --container: min(1240px, calc(100vw - 32px));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--slate-950);
    background:
        radial-gradient(circle at top right, rgba(17, 99, 199, 0.18), transparent 30%),
        radial-gradient(circle at 10% 16%, rgba(255, 201, 40, 0.2), transparent 22%),
        linear-gradient(180deg, #edf6ff 0%, #fffdf4 38%, #f2f8ff 100%);
}

body.menu-open {
    overflow: hidden;
}

body.lightbox-open {
    overflow: hidden;
}

::selection {
    background: rgba(23, 112, 210, 0.18);
    color: var(--slate-950);
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

button {
    color: inherit;
}

iframe {
    width: 100%;
    border: 0;
}

main section[id] {
    scroll-margin-top: 126px;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.section {
    padding: 92px 0;
}

.section--surface {
    background:
        radial-gradient(circle at top left, rgba(255, 201, 40, 0.12), transparent 22%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.36), rgba(17, 99, 199, 0.06)),
        #f8fbff;
}

.section--contrast {
    color: #fff;
    background:
        radial-gradient(circle at 12% 16%, rgba(247, 183, 49, 0.18), transparent 24%),
        linear-gradient(135deg, var(--blue-950), var(--blue-800));
}

.section--reports {
    background:
        radial-gradient(circle at bottom right, rgba(17, 99, 199, 0.14), transparent 26%),
        radial-gradient(circle at top left, rgba(255, 201, 40, 0.16), transparent 20%),
        linear-gradient(180deg, #fffdf1, #edf5ff);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 201, 40, 0.2);
    box-shadow: inset 0 0 0 1px rgba(255, 201, 40, 0.36);
    color: var(--blue-900);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow--light {
    background: linear-gradient(180deg, #ffe790, #ffd34d);
    box-shadow: inset 0 0 0 1px rgba(255, 201, 40, 0.5);
    color: #ffffff;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading--compact {
    max-width: 100%;
}

.section-heading--compact h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    max-width: none;
    white-space: nowrap;
}

.section-heading h2,
.hero h1,
.info-card h3,
.doctor-card h3,
.form-card h3,
.contact-card h3,
.media-card h3,
.route-card h3,
.route-note h3,
.site-footer h3,
.panel h3,
.mega-menu__intro h3 {
    margin: 0;
    font-family: "Inter", sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-heading h2,
.hero h1 {
    margin-top: 18px;
    line-height: 1.05;
}

.section-heading h2 {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
}

.section-heading p,
.hero__lead,
.hero__sublead,
.reading-copy,
.info-card p,
.doctor-card p,
.reports-copy p,
.form-copy p,
.contact-card p,
.media-card p,
.route-card p,
.route-note p,
.site-footer p,
.mega-menu__intro p {
    color: var(--slate-700);
    line-height: 1.75;
}

.section--contrast .section-heading p,
.section--contrast .info-card p {
    color: rgba(255, 255, 255, 0.78);
}

.topbar {
    position: relative;
    z-index: 41;
    background:
        linear-gradient(90deg, rgba(255, 201, 40, 0.16), transparent 22%),
        linear-gradient(135deg, var(--blue-900), var(--blue-950));
    color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 10px 0;
}

.topbar__note,
.topbar__actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.topbar__actions {
    justify-self: end;
}

.topbar__note {
    font-size: 0.96rem;
    line-height: 1.4;
}

.topbar__badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--gold-500);
    color: var(--blue-950);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.topbar__actions a {
    position: relative;
    font-weight: 600;
    opacity: 0.9;
    white-space: nowrap;
}

.topbar__actions a:hover,
.topbar__actions a:focus-visible {
    opacity: 1;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-left: 4px;
}

.language-switcher__label {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
}

.language-switcher__select {
    min-height: 34px;
    padding: 0 34px 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 201, 40, 0.16));
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 201, 40, 0.16)),
        linear-gradient(45deg, transparent 50%, #ffffff 50%),
        linear-gradient(135deg, #ffffff 50%, transparent 50%);
    background-position:
        0 0,
        calc(100% - 16px) 13px,
        calc(100% - 11px) 13px;
    background-size:
        100% 100%,
        6px 6px,
        6px 6px;
    background-repeat: no-repeat;
}

.language-switcher__select:focus {
    outline: none;
    border-color: rgba(255, 201, 40, 0.5);
    box-shadow: 0 0 0 3px rgba(255, 201, 40, 0.16);
}

.language-switcher__select option {
    color: var(--slate-950);
}

.icon-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(255, 201, 40, 0.3), rgba(17, 99, 199, 0.14));
    box-shadow: inset 0 0 0 1px rgba(255, 201, 40, 0.2);
    color: var(--blue-900);
}

.icon-chip svg,
.header-socials svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(18px);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 250, 255, 0.95));
    border-bottom: 1px solid rgba(16, 36, 60, 0.08);
    box-shadow: 0 10px 32px rgba(16, 36, 60, 0.04);
}

.site-header__inner {
    display: grid;
    grid-template-columns: minmax(270px, 360px) auto minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    padding: 14px 0;
}

.notice-bar {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid rgba(17, 99, 199, 0.08);
    background:
        linear-gradient(90deg, rgba(255, 201, 40, 0.14), rgba(255, 255, 255, 0.96) 24%, rgba(233, 244, 255, 0.96));
}

.notice-bar__inner {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 16px;
    padding: 12px 0;
}

.notice-bar__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-900);
    white-space: nowrap;
}

.notice-bar__label strong {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.notice-bar__icon {
    width: 38px;
    height: 38px;
}

.notice-bar__viewport {
    overflow: hidden;
    min-width: 0;
}

.notice-bar__track {
    display: flex;
    width: max-content;
    animation: notice-scroll 34s linear infinite;
}

.notice-bar:hover .notice-bar__track {
    animation-play-state: paused;
}

.notice-bar__group {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 14px;
    flex-shrink: 0;
}

.notice-bar__item {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(17, 99, 199, 0.12);
    background: rgba(255, 255, 255, 0.96);
    color: var(--slate-800);
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

@keyframes notice-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.header-branding {
    display: block;
    min-width: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.brand img {
    width: 64px;
    height: 64px;
    padding: 5px;
    border-radius: 20px;
    object-fit: cover;
    background: #fff;
    border: 2px solid rgba(255, 201, 40, 0.45);
    box-shadow: var(--shadow-sm);
}

.brand__text {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.brand strong {
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.brand small {
    color: var(--slate-700);
    line-height: 1.45;
    font-size: 0.95rem;
}

.header-badges,
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.header-badges span,
.footer-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(23, 112, 210, 0.08);
    border: 1px solid rgba(23, 112, 210, 0.08);
    color: var(--blue-900);
    font-size: 0.76rem;
    font-weight: 700;
}

.site-nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    min-width: 0;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    flex: 1 1 auto;
    flex-wrap: nowrap;
    min-width: 0;
}

.nav-item {
    position: relative;
}

.site-nav__link,
.site-nav__toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 12px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--slate-800);
    font-size: 0.92rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__toggle:hover,
.site-nav__toggle:focus-visible,
.nav-item--mega.is-expanded > .site-nav__toggle {
    background: rgba(255, 201, 40, 0.22);
    color: var(--blue-900);
    transform: translateY(-1px);
}

.site-nav__caret {
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.2s ease;
}

.nav-item--mega.is-expanded .site-nav__caret,
.nav-item--mega:hover .site-nav__caret,
.nav-item--mega:focus-within .site-nav__caret {
    transform: rotate(-135deg) translateY(-1px);
}

.mega-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 50%;
    width: min(940px, calc(100vw - 48px));
    padding: 24px;
    border-radius: var(--radius-xl);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: minmax(250px, 0.9fr) minmax(0, 1.1fr);
    gap: 22px;
    transform: translate(-50%, 12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.nav-item--mega.is-expanded .mega-menu,
.nav-item--mega:hover .mega-menu,
.nav-item--mega:focus-within .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.mega-menu__intro {
    padding: 24px;
    border-radius: 24px;
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(247, 183, 49, 0.2), transparent 34%),
        linear-gradient(180deg, var(--blue-900), var(--blue-950));
}

.mega-menu__intro h3 {
    margin: 16px 0 12px;
    font-size: 2rem;
    line-height: 1.08;
}

.mega-menu__intro p {
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.mega-menu__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.mega-menu__intro .button--ghost {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.mega-menu__columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.mega-menu__column {
    padding: 8px 0;
}

.mega-menu__column h4 {
    margin: 0 0 12px;
    color: var(--slate-950);
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

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

.mega-menu__links a {
    display: grid;
    gap: 4px;
    padding: 14px 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #fffef7);
    border: 1px solid rgba(255, 201, 40, 0.26);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.mega-menu__links a:hover,
.mega-menu__links a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(17, 99, 199, 0.22);
    box-shadow: var(--shadow-sm);
}

.mega-menu__links strong {
    font-size: 0.96rem;
    font-weight: 800;
    color: var(--slate-950);
}

.mega-menu__links span {
    color: var(--slate-700);
    font-size: 0.9rem;
    line-height: 1.55;
}

.header-cta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 0;
}

.header-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--blue-900);
    background: rgba(23, 112, 210, 0.08);
    border: 1px solid rgba(23, 112, 210, 0.08);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.header-socials a:hover,
.header-socials a:focus-visible {
    transform: translateY(-2px);
    background: rgba(247, 183, 49, 0.12);
    border-color: rgba(247, 183, 49, 0.18);
}

.header-cta__secondary,
.header-cta__button {
    min-height: 48px;
    padding-inline: 18px;
}

.menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 0;
    border-radius: 16px;
    background: rgba(23, 112, 210, 0.08);
    cursor: pointer;
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: var(--slate-950);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 82px 0 72px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.hero::before {
    width: 540px;
    height: 540px;
    top: -220px;
    right: -100px;
    background: radial-gradient(circle, rgba(17, 99, 199, 0.24), transparent 68%);
}

.hero::after {
    width: 420px;
    height: 420px;
    left: -80px;
    bottom: -160px;
    background: radial-gradient(circle, rgba(255, 201, 40, 0.22), transparent 66%);
}

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 34px;
    align-items: center;
    padding: 32px;
    border: 1px solid rgba(17, 99, 199, 0.08);
    border-radius: 36px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(237, 246, 255, 0.96) 52%, rgba(255, 248, 216, 0.9));
    box-shadow: var(--shadow-lg);
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(2.2rem, 4.8vw, 3.7rem);
    color: var(--blue-900);
}

.hero__lead {
    margin: 0 0 14px;
    font-size: 1.12rem;
}

.hero__sublead {
    margin: 0;
    max-width: 760px;
}

.hero-points {
    display: grid;
    gap: 12px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li,
.check-list li {
    position: relative;
    padding-left: 28px;
    line-height: 1.7;
}

.hero-points li::before,
.check-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-500), var(--blue-700));
    box-shadow: 0 0 0 5px rgba(247, 183, 49, 0.16);
}

.hero__actions,
.career-cta,
.contact-actions,
.doctor-card__actions,
.contact-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__actions {
    margin-top: 30px;
}

.career-cta {
    margin-top: 28px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 16px;
    border: 1px solid transparent;
    font-weight: 800;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    box-shadow: 0 16px 30px rgba(11, 75, 154, 0.22);
}

.button--secondary {
    color: var(--blue-900);
    background: linear-gradient(180deg, #fff8d8, #ffe98f);
    border-color: rgba(255, 201, 40, 0.34);
}

.button--ghost {
    color: var(--slate-950);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(17, 99, 199, 0.16);
}

.button--compact {
    min-height: 44px;
    padding: 0 16px;
    font-size: 0.92rem;
}

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

.stat-card {
    padding: 22px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 251, 255, 0.98));
    border: 1px solid rgba(17, 99, 199, 0.1);
    border-top: 4px solid var(--gold-500);
    box-shadow: var(--shadow-sm);
}

.stat-card:nth-child(even) {
    border-top-color: var(--blue-700);
}

.stat-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--blue-900);
    font-size: 1.55rem;
    font-weight: 800;
}

.stat-card span {
    color: var(--slate-700);
    font-size: 0.94rem;
    line-height: 1.6;
}

.hero__visual {
    display: grid;
    gap: 18px;
    min-width: 0;
}

.hero-slider {
    display: grid;
    gap: 18px;
    padding: 18px;
    border-radius: 30px;
    border: 1px solid rgba(17, 99, 199, 0.1);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 250, 230, 0.98));
    box-shadow: var(--shadow-lg);
}

.hero-slider__stage {
    position: relative;
}

.hero-slide {
    display: none;
    gap: 16px;
}

.hero-slide.is-active {
    display: grid;
    animation: hero-slide-fade 0.35s ease;
}

.hero-slide__media {
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(17, 99, 199, 0.1);
    background: linear-gradient(180deg, #ffffff, #eef6ff);
}

.hero-slide__media img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.hero-slide__content {
    padding: 22px;
    border-radius: 22px;
    border: 1px solid rgba(255, 201, 40, 0.26);
    background: linear-gradient(180deg, #ffffff, #fff8dd);
}

.hero-slide__label {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255, 201, 40, 0.22);
    color: var(--blue-900);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-slide__content h3 {
    margin: 16px 0 10px;
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--blue-900);
    letter-spacing: -0.02em;
}

.hero-slide__content p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.7;
}

.hero-slider__footer {
    display: grid;
    gap: 16px;
}

.hero-slider__quick-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-slider__quick-link {
    display: grid;
    gap: 5px;
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(17, 99, 199, 0.1);
    background: linear-gradient(135deg, #eef6ff, #ffffff);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hero-slider__quick-link:hover,
.hero-slider__quick-link:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(255, 201, 40, 0.32);
    box-shadow: var(--shadow-sm);
}

.hero-slider__quick-link strong {
    color: var(--blue-900);
    font-size: 0.98rem;
    font-weight: 800;
}

.hero-slider__quick-link span {
    color: var(--slate-700);
    font-size: 0.9rem;
    line-height: 1.55;
}

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

.hero-slider__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: #fff;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 14px 24px rgba(11, 75, 154, 0.18);
}

.hero-slider__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1 1 auto;
}

.hero-slider__dot {
    width: 11px;
    height: 11px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 99, 199, 0.26);
    cursor: pointer;
    transition: width 0.2s ease, background-color 0.2s ease;
}

.hero-slider__dot.is-active {
    width: 36px;
    background: linear-gradient(135deg, var(--gold-500), var(--blue-700));
}

@keyframes hero-slide-fade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-card {
    padding: 22px;
    border-radius: 28px;
    border: 1px solid rgba(17, 99, 199, 0.1);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-lg);
}

.floating-card--access {
    color: var(--slate-950);
    background:
        radial-gradient(circle at top right, rgba(255, 201, 40, 0.22), transparent 28%),
        linear-gradient(180deg, #eef6ff 0%, #ffffff 58%, #fff8df 100%);
    border-top: 6px solid var(--gold-500);
}

.floating-card--access .icon-chip {
    color: var(--blue-900);
    background: linear-gradient(135deg, rgba(255, 201, 40, 0.28), rgba(17, 99, 199, 0.12));
    box-shadow: inset 0 0 0 1px rgba(255, 201, 40, 0.22);
}

.floating-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.floating-card__header p {
    margin: 0 0 4px;
    color: inherit;
    opacity: 0.76;
}

.floating-card__header strong {
    display: block;
    color: inherit;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.35;
}

.hero-quick-actions {
    display: grid;
    gap: 12px;
}

.hero-quick-action {
    display: grid;
    gap: 6px;
    padding: 18px 18px 17px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    border: 1px solid rgba(11, 75, 154, 0.2);
    box-shadow: 0 14px 24px rgba(11, 75, 154, 0.16);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.hero-quick-action:hover,
.hero-quick-action:focus-visible {
    transform: translateY(-2px);
    background: linear-gradient(135deg, var(--blue-800), var(--blue-700));
    border-color: rgba(255, 201, 40, 0.18);
}

.hero-quick-action strong {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
}

.hero-quick-action span {
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.93rem;
    line-height: 1.6;
}

.hero-contact-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.hero-contact-strip a {
    display: grid;
    gap: 6px;
    padding: 16px;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff, #fff8df);
    border: 1px solid rgba(255, 201, 40, 0.3);
}

.hero-contact-strip span {
    color: var(--slate-700);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.hero-contact-strip strong {
    color: var(--blue-900);
    font-size: 0.98rem;
    line-height: 1.4;
}

.floating-card--map img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 22px;
    margin-bottom: 14px;
}

.floating-card--map p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.7;
}

.floating-card--map {
    border-top: 6px solid var(--blue-700);
    background: linear-gradient(180deg, #ffffff, #fffef7);
}

.quick-band {
    padding-top: 0;
}

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

.quick-band__grid article {
    padding: 26px;
    border-radius: 24px;
    border: 1px solid rgba(17, 99, 199, 0.1);
    box-shadow: var(--shadow-sm);
}

.quick-band__grid article:nth-child(1) {
    color: #fff;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
}

.quick-band__grid article:nth-child(2) {
    background: linear-gradient(180deg, #fff7d7, #fffef2);
    border-color: rgba(255, 201, 40, 0.34);
}

.quick-band__grid article:nth-child(3) {
    background: linear-gradient(180deg, #eef6ff, #ffffff);
}

.quick-band__grid article:nth-child(4) {
    background: linear-gradient(180deg, #fff1e2, #ffffff);
    border-color: rgba(255, 201, 40, 0.24);
}

.quick-band__grid span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: rgba(255, 201, 40, 0.18);
    color: var(--blue-900);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    font-weight: 800;
}

.quick-band__grid strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.3;
}

.quick-band__grid p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.7;
}

.quick-band__grid article:nth-child(1) span {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.quick-band__grid article:nth-child(1) p {
    color: rgba(255, 255, 255, 0.82);
}

.about-grid,
.dual-list-grid,
.reports-grid,
.directions-layout,
.form-layout,
.contact-layout,
.footer-grid {
    display: grid;
    gap: 24px;
}

.about-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

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

.panel,
.info-card,
.form-card,
.contact-card,
.media-card,
.map-card,
.route-card,
.route-note {
    border-radius: var(--radius-lg);
    border: 1px solid rgba(17, 99, 199, 0.08);
    border-top: 5px solid var(--gold-500);
    background: var(--surface-strong);
    box-shadow: var(--shadow-sm);
}

.panel,
.contact-card,
.route-note,
.form-card {
    padding: 30px;
}

.panel--soft {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 246, 255, 0.9), rgba(255, 248, 216, 0.42)),
        #fff;
}

.panel--accent {
    background:
        linear-gradient(180deg, rgba(255, 243, 221, 0.92), rgba(255, 255, 255, 0.96)),
        #fff;
}

.reading-copy {
    margin: 0;
    font-size: 1.04rem;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.about-highlights span,
.doctor-card__specialty,
.contact-actions a,
.contact-pills a,
.doctor-card__actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    font-weight: 700;
}

.about-highlights span {
    background: rgba(255, 201, 40, 0.18);
    border: 1px solid rgba(255, 201, 40, 0.2);
    color: var(--blue-900);
}

.founder-card {
    background:
        radial-gradient(circle at top right, rgba(255, 201, 40, 0.14), transparent 38%),
        linear-gradient(180deg, #ffffff, #f8fbff 70%, #fff8de);
}

.founder-card__label {
    color: var(--blue-700);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.founder-card h3 {
    margin: 14px 0 16px;
    font-size: 2rem;
}

.founder-card__message {
    margin-top: 24px;
    padding: 22px;
    border-radius: 22px;
    background: rgba(16, 36, 60, 0.04);
}

.founder-card__message h4 {
    margin: 0 0 12px;
    font-size: 1rem;
    font-weight: 800;
}

.cards-grid {
    display: grid;
    gap: 18px;
}

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

.cards-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-card {
    padding: 28px;
}

.info-card h3,
.media-card h3,
.route-card h3,
.route-note h3,
.contact-card h3,
.form-card h3 {
    margin-bottom: 14px;
    font-size: 1.4rem;
}

.section--contrast .info-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    border-top-color: var(--gold-500);
    color: #fff;
    backdrop-filter: blur(6px);
}

.info-card--package a {
    display: inline-flex;
    margin-top: 18px;
    color: var(--blue-700);
    font-weight: 800;
}

.doctor-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.doctor-card {
    padding: 30px;
    border-radius: 28px;
    color: var(--slate-950);
    box-shadow: var(--shadow-sm);
}

.doctor-card--neuro {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(247, 183, 49, 0.14), transparent 30%),
        linear-gradient(180deg, var(--blue-950), var(--blue-900));
}

.doctor-card--medicine {
    background: linear-gradient(180deg, rgba(238, 246, 255, 1), rgba(255, 255, 255, 1));
    border-top: 5px solid var(--blue-700);
}

.doctor-card--derma {
    background: linear-gradient(180deg, rgba(255, 244, 238, 1), rgba(255, 255, 255, 1));
    border-top: 5px solid var(--gold-500);
}

.doctor-card--gastro {
    background: linear-gradient(180deg, rgba(255, 249, 229, 1), rgba(255, 255, 255, 1));
    border-top: 5px solid #f19d38;
}

.doctor-card__specialty {
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: inherit;
}

.doctor-card--medicine .doctor-card__specialty,
.doctor-card--derma .doctor-card__specialty,
.doctor-card--gastro .doctor-card__specialty {
    background: rgba(23, 112, 210, 0.08);
    border-color: rgba(23, 112, 210, 0.1);
    color: var(--blue-900);
}

.doctor-card__qualifications,
.doctor-card__affiliation {
    margin: 0;
}

.doctor-card__top {
    display: grid;
    gap: 12px;
}

.doctor-card h3 {
    font-size: 2rem;
}

.doctor-card__meta {
    display: grid;
    gap: 10px;
    margin: 20px 0;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.doctor-card--medicine .doctor-card__meta,
.doctor-card--derma .doctor-card__meta,
.doctor-card--gastro .doctor-card__meta {
    border-color: rgba(16, 36, 60, 0.08);
}

.doctor-card__focus,
.check-list,
.contact-list,
.footer-links,
.schedule-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.doctor-card__focus {
    display: grid;
    gap: 12px;
    margin-bottom: 22px;
}

.doctor-card__focus li {
    position: relative;
    padding-left: 24px;
    line-height: 1.7;
}

.doctor-card__focus li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.72;
}

.doctor-card__actions a,
.contact-actions a,
.contact-pills a {
    background: linear-gradient(180deg, #fff7d8, #ffffff);
    border: 1px solid rgba(255, 201, 40, 0.3);
    color: var(--blue-900);
}

.doctor-card--neuro .doctor-card__actions a {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
}

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

.media-card {
    overflow: hidden;
}

.media-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.media-card__content {
    padding: 26px;
}

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

.gallery-card {
    display: grid;
    padding: 0;
    border: 1px solid rgba(17, 99, 199, 0.1);
    border-radius: 26px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    text-align: left;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gallery-card:hover,
.gallery-card:focus-visible {
    transform: translateY(-4px);
    border-color: rgba(255, 201, 40, 0.34);
    box-shadow: var(--shadow-md);
}

.gallery-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: linear-gradient(180deg, #eef6ff, #ffffff);
}

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

.gallery-card__content {
    display: grid;
    gap: 10px;
    padding: 22px;
}

.gallery-card__content strong {
    color: var(--slate-950);
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
}

.gallery-card__content span {
    color: var(--slate-700);
    line-height: 1.7;
    font-size: 0.94rem;
}

.gallery-lightbox[hidden] {
    display: none;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 80;
    display: grid;
    place-items: center;
    padding: 24px;
}

.gallery-lightbox.is-open {
    animation: gallery-lightbox-fade 0.24s ease;
}

.gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(4, 26, 56, 0.78);
    cursor: pointer;
}

.gallery-lightbox__dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: #ffffff;
    box-shadow: var(--shadow-xl);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
}

.gallery-lightbox__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(16, 36, 60, 0.74);
    color: #ffffff;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    z-index: 1;
}

.gallery-lightbox__media {
    background: #071c3a;
}

.gallery-lightbox__media img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
}

.gallery-lightbox__content {
    padding: 34px;
    background: linear-gradient(180deg, #ffffff, #fff8dd);
}

.gallery-lightbox__content h3 {
    margin: 0 0 14px;
    color: var(--slate-950);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.08;
}

.gallery-lightbox__content p {
    margin: 0;
    color: var(--slate-700);
    line-height: 1.8;
}

@keyframes gallery-lightbox-fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.reports-grid,
.form-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.94fr);
    align-items: start;
}

.reports-copy,
.form-copy {
    padding-top: 8px;
}

.check-list {
    display: grid;
    gap: 14px;
}

.route-list {
    display: grid;
    gap: 18px;
}

.directions-layout {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
    align-items: start;
}

.route-card {
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 18px;
    padding: 26px;
}

.route-card__step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
}

.map-card {
    overflow: hidden;
    min-height: 100%;
}

.map-card iframe {
    min-height: 100%;
    aspect-ratio: 1 / 1;
}

.site-form {
    display: grid;
    gap: 18px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.site-form label {
    display: grid;
    gap: 10px;
}

.site-form span {
    font-size: 0.92rem;
    font-weight: 700;
}

.site-form input,
.site-form select,
.site-form textarea {
    width: 100%;
    padding: 15px 16px;
    border: 1px solid rgba(17, 99, 199, 0.14);
    border-radius: 16px;
    background: #fff;
    color: var(--slate-950);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.site-form input:focus,
.site-form select:focus,
.site-form textarea:focus {
    outline: none;
    border-color: rgba(23, 112, 210, 0.42);
    box-shadow: 0 0 0 4px rgba(23, 112, 210, 0.12);
}

.site-form textarea {
    resize: vertical;
}

.form-alert {
    margin-bottom: 18px;
    padding: 15px 18px;
    border-radius: 16px;
    font-weight: 700;
}

.form-alert--success {
    color: var(--success);
    background: var(--success-bg);
    border: 1px solid rgba(19, 104, 70, 0.16);
}

.form-alert--error {
    color: var(--error);
    background: var(--error-bg);
    border: 1px solid rgba(169, 42, 64, 0.16);
}

.schedule-list {
    display: grid;
    gap: 16px;
    margin-top: 26px;
}

.schedule-list li {
    display: grid;
    gap: 6px;
    padding: 18px 20px;
    border-radius: 20px;
    background: linear-gradient(180deg, #fffdf3, #ffffff);
    border: 1px solid rgba(255, 201, 40, 0.26);
    box-shadow: var(--shadow-sm);
}

.contact-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(260px, 0.72fr) minmax(260px, 0.82fr);
    align-items: stretch;
}

.contact-card--primary {
    color: #fff;
    background:
        radial-gradient(circle at top right, rgba(247, 183, 49, 0.16), transparent 30%),
        linear-gradient(180deg, var(--blue-950), var(--blue-900));
}

.contact-card--primary p,
.contact-card--primary a,
.contact-card--primary li {
    color: rgba(255, 255, 255, 0.88);
}

.contact-card--support {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(238, 246, 255, 0.78), rgba(255, 248, 216, 0.56)),
        #fff;
}

.contact-list,
.footer-links {
    display: grid;
    gap: 14px;
}

.contact-list li,
.footer-links li {
    line-height: 1.7;
}

.site-footer {
    color: rgba(255, 255, 255, 0.88);
    background:
        radial-gradient(circle at top right, rgba(255, 201, 40, 0.16), transparent 20%),
        radial-gradient(circle at left bottom, rgba(17, 99, 199, 0.22), transparent 24%),
        linear-gradient(180deg, var(--blue-950), #041a38);
    padding: 72px 0 24px;
}

.footer-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(220px, 0.78fr) minmax(220px, 0.78fr) minmax(300px, 1fr);
    align-items: start;
}

.footer-about p {
    margin: 18px 0 0;
}

.brand--footer img {
    box-shadow: none;
}

.site-footer .brand strong,
.site-footer h3 {
    color: #fff;
}

.site-footer .brand small,
.site-footer p,
.site-footer a {
    color: rgba(255, 255, 255, 0.74);
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #fff;
}

.site-footer .footer-badges {
    margin-top: 18px;
}

.site-footer .footer-badges span {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.08);
}

.footer-map {
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 201, 40, 0.08));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map p {
    margin: 0 0 16px;
}

.footer-map__frame {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.footer-map__frame iframe {
    aspect-ratio: 4 / 3;
}

.footer-map__button {
    margin-top: 16px;
    color: #000000;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 28px;
    margin-top: 34px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    background:
        linear-gradient(135deg, rgba(255, 201, 40, 0.14), rgba(11, 75, 154, 0.82)),
        rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
    margin: 0;
    color: #ffffff;
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 72;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #ffffff;
    box-shadow: 0 20px 36px rgba(18, 140, 126, 0.34);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 24px 42px rgba(18, 140, 126, 0.4);
    filter: saturate(1.06);
}

.whatsapp-float__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
}

.whatsapp-float__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (max-width: 1200px) {
    .site-header__inner {
        grid-template-columns: minmax(240px, 320px) auto 1fr;
        gap: 18px;
    }

    .site-nav-wrap {
        gap: 18px;
    }

    .site-nav__link,
    .site-nav__toggle {
        padding: 0 10px;
        font-size: 0.88rem;
    }

    .mega-menu {
        width: min(860px, calc(100vw - 44px));
    }
}

@media (max-width: 1100px) {
    .site-header__inner {
        grid-template-columns: minmax(0, 1fr) auto;
    }

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

    .site-nav-wrap {
        position: fixed;
        top: 96px;
        left: 16px;
        right: 16px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-radius: 28px;
        border: 1px solid rgba(16, 36, 60, 0.08);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: var(--shadow-xl);
        max-height: calc(100vh - 124px);
        overflow: auto;
    }

    .site-nav-wrap.is-open {
        display: flex;
    }

    .site-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav__link,
    .site-nav__toggle {
        width: 100%;
        justify-content: space-between;
        min-height: 52px;
        padding: 0 16px;
        border-radius: 18px;
        background: rgba(23, 112, 210, 0.04);
    }

    .nav-item--mega:hover .mega-menu,
    .nav-item--mega:focus-within .mega-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
    }

    .nav-item--mega.is-expanded .mega-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mega-menu {
        position: static;
        width: 100%;
        margin-top: 10px;
        padding: 18px;
        border-radius: 22px;
        box-shadow: none;
        display: none;
        grid-template-columns: 1fr;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mega-menu__intro {
        padding: 20px;
    }

    .mega-menu__intro h3 {
        font-size: 1.7rem;
    }

    .mega-menu__columns {
        grid-template-columns: 1fr;
    }

    .header-cta {
        justify-content: stretch;
        flex-direction: column;
        align-items: stretch;
    }

    .header-cta__secondary,
    .header-cta__button {
        width: 100%;
    }
}

@media (max-width: 980px) {
    .hero__grid,
    .about-grid,
    .dual-list-grid,
    .reports-grid,
    .directions-layout,
    .form-layout,
    .contact-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid--four,
    .cards-grid--three,
    .quick-band__grid,
    .hero-stats,
    .gallery-grid,
    .media-grid,
    .doctor-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero__visual {
        order: -1;
    }

    .hero__grid {
        padding: 26px;
    }

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

    .map-card iframe {
        aspect-ratio: 16 / 10;
    }

    .gallery-lightbox__dialog {
        grid-template-columns: 1fr;
    }

    .gallery-lightbox__media img {
        min-height: 320px;
    }
}

@media (max-width: 760px) {
    .section {
        padding: 80px 0;
    }

    .notice-bar__inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .notice-bar__label {
        justify-content: flex-start;
    }

    .notice-bar__item {
        min-height: 38px;
        padding: 0 14px;
        font-size: 0.88rem;
    }

    .hero {
        padding: 68px 0 56px;
    }

    .hero__grid {
        padding: 22px;
    }

    .hero-slide__media img {
        height: 260px;
    }

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

    .hero-slider__controls {
        justify-content: center;
    }

    .gallery-lightbox {
        padding: 16px;
    }

    .gallery-lightbox__content {
        padding: 24px;
    }

    .gallery-lightbox__content h3 {
        font-size: 1.6rem;
    }

    .topbar__inner {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .topbar__actions {
        justify-self: start;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 58px;
        height: 58px;
    }

    .brand img {
        width: 64px;
        height: 64px;
        border-radius: 20px;
    }

    .field-grid,
    .cards-grid--four,
    .cards-grid--three,
    .quick-band__grid,
    .hero-stats,
    .gallery-grid,
    .media-grid,
    .doctor-grid,
    .hero-contact-strip {
        grid-template-columns: 1fr;
    }

    .route-card {
        grid-template-columns: 1fr;
    }

    .route-card__step {
        width: 48px;
        height: 48px;
    }

    .footer-map__button,
    .button {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .notice-bar__track {
        animation: none;
    }
}

@media (max-width: 560px) {
    .topbar {
        font-size: 0.84rem;
    }

    .container {
        width: min(100vw - 24px, 1240px);
    }

    .site-header__inner {
        gap: 14px;
    }

    .brand strong {
        font-size: 1.02rem;
    }

    .brand small {
        font-size: 0.86rem;
    }

    .section-heading h2 {
        font-size: 1.95rem;
    }

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

    .hero__grid {
        padding: 18px;
        border-radius: 28px;
    }

    .hero-slide__content {
        padding: 18px;
    }

    .hero-slide__content h3 {
        font-size: 1.25rem;
    }

    .hero-slide__media img {
        height: 220px;
    }

    .panel,
    .info-card,
    .form-card,
    .contact-card,
    .route-card,
    .route-note,
    .footer-map {
        padding: 24px;
    }

    .floating-card {
        padding: 18px;
    }

    .site-nav-wrap {
        top: 88px;
        left: 12px;
        right: 12px;
        padding: 16px;
        border-radius: 24px;
    }
}
