:root {
    --primary: #13b8c8;
    --primary-dark: #0795a8;
    --navy: #062b4f;
    --navy-2: #0b3b67;
    --sky: #eafaff;
    --soft: #f5fbfd;
    --text: #203044;
    --muted: #6d7b8a;
    --white: #ffffff;
    --border: #dcecf2;
    --shadow: 0 22px 55px rgba(6, 43, 79, 0.12);
    --radius: 26px;
    --transition: 220ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

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

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 1000;
    padding: 10px 14px;
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
}

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

.topbar {
    background: var(--navy);
    color: rgba(255, 255, 255, 0.86);
    font-size: 14px;
}

.topbar__inner,
.topbar__info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.topbar__inner {
    min-height: 44px;
}

.topbar i {
    color: var(--primary);
    margin-right: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(220, 236, 242, 0.72);
    transition: box-shadow var(--transition);
}

.site-header.is-scrolled {
    box-shadow: 0 14px 40px rgba(6, 43, 79, 0.08);
}

.nav {
    min-height: 82px;
    display: flex;
    align-items: center;
    gap: 28px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    min-width: max-content;
}

.logo--image img {
    width: 210px;
    height: 76px;
    object-fit: contain;
}

.logo--footer.logo--image {
    display: inline-flex;
    padding: 10px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
}

.logo--footer.logo--image img {
    width: 220px;
    height: 82px;
}

.logo__mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), #55d9e5);
    box-shadow: 0 14px 30px rgba(19, 184, 200, 0.28);
}

.logo strong,
.logo small {
    display: block;
    line-height: 1.1;
}

.logo strong {
    font-size: 22px;
    letter-spacing: -0.04em;
}

.logo small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
}

.nav-menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-menu a {
    padding: 10px 13px;
    border-radius: 999px;
    color: #34495f;
    font-weight: 700;
    font-size: 14px;
    transition: color var(--transition), background var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-dark);
    background: var(--sky);
}

.nav-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 14px;
    background: var(--sky);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 21px;
    height: 2px;
    margin: 5px auto;
    background: var(--navy);
    transition: transform var(--transition), opacity var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
}

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

.btn--primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 18px 36px rgba(19, 184, 200, 0.28);
}

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

.btn--small {
    min-height: 42px;
    padding: 10px 18px;
    font-size: 14px;
}

.btn--light {
    color: var(--navy);
    background: var(--white);
}

.btn--text {
    padding: 0;
    min-height: auto;
    color: var(--primary-dark);
    background: transparent;
}

.section {
    padding: 100px 0;
}

.section--soft {
    background: linear-gradient(180deg, var(--soft), #ffffff);
}

.section--navy {
    color: var(--white);
    background: radial-gradient(circle at 20% 10%, rgba(19, 184, 200, 0.3), transparent 30%), linear-gradient(135deg, var(--navy), #041a31);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow--light {
    color: #aef4fb;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy);
    line-height: 1.13;
    letter-spacing: -0.045em;
}

.section--navy h2,
.section--navy h3,
.cta-card h2 {
    color: var(--white);
}

h1 {
    font-size: clamp(42px, 6vw, 72px);
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
}

h3 {
    font-size: 22px;
}

p {
    color: var(--muted);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 110px;
    background: linear-gradient(135deg, #f4fdff 0%, #ffffff 52%, #e9fbff 100%);
}

.hero__shape {
    position: absolute;
    border-radius: 999px;
    filter: blur(4px);
    opacity: 0.65;
}

.hero__shape--one {
    width: 360px;
    height: 360px;
    right: -130px;
    top: 40px;
    background: rgba(19, 184, 200, 0.22);
}

.hero__shape--two {
    width: 260px;
    height: 260px;
    left: -110px;
    bottom: 40px;
    background: rgba(6, 43, 79, 0.09);
}

.hero__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 54px;
    align-items: center;
}

.hero__content p {
    max-width: 660px;
    font-size: 19px;
}

.hero__actions,
.hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.hero__actions {
    margin: 34px 0;
}

.hero__trust div {
    min-width: 132px;
    padding: 16px 18px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.hero__trust strong,
.hero__trust span {
    display: block;
}

.hero__trust strong {
    color: var(--navy);
    font-size: 25px;
}

.hero__trust span {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.hero__visual {
    position: relative;
}

.hero-card {
    overflow: hidden;
    position: relative;
    border: 12px solid var(--white);
    border-radius: 42px;
    box-shadow: var(--shadow);
}

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

.hero-card__badge,
.hero-mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 18px 44px rgba(6, 43, 79, 0.14);
}

.hero-card__badge {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    padding: 16px;
    font-weight: 800;
}

.hero-card__badge i,
.hero-mini-card i {
    color: var(--primary);
    font-size: 24px;
}

.hero-mini-card {
    position: absolute;
    left: -24px;
    top: 70px;
    max-width: 260px;
    padding: 18px;
}

.hero-mini-card strong,
.hero-mini-card span {
    display: block;
}

.hero-mini-card span {
    color: var(--muted);
    font-size: 13px;
}

.split {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.split--reverse {
    grid-template-columns: 0.82fr 1.18fr;
}

.split__media {
    position: relative;
}

.split__media img {
    width: 100%;
    min-height: 430px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.experience-card {
    position: absolute;
    right: -18px;
    bottom: 26px;
    max-width: 180px;
    padding: 22px;
    border-radius: 24px;
    color: var(--white);
    background: var(--navy);
    box-shadow: var(--shadow);
}

.experience-card strong {
    display: block;
    font-size: 38px;
}

.feature-list {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.feature-list div,
.check-list li,
.service-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #42556b;
}

.feature-list i,
.check-list i,
.service-card li i {
    margin-top: 5px;
    color: var(--primary);
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading--between {
    max-width: none;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    text-align: left;
}

.section-heading--between .section-heading__lead {
    margin: 12px 0 0;
    max-width: 520px;
    color: var(--muted);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.55;
}

.why-grid,
.service-grid,
.doctor-grid,
.blog-grid,
.values-grid,
.stats__grid,
.process,
.testimonial-grid,
.gallery-grid {
    display: grid;
    gap: 24px;
}

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

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

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

.doctor-grid,
.blog-grid,
.values-grid,
.stats__grid,
.process {
    grid-template-columns: repeat(3, 1fr);
}

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

.why-card,
.service-card,
.testimonial,
.blog-card,
.value-card,
.info-panel,
.form-card,
.appointment-box,
.service-menu,
.contact-card,
.stat-card,
.process__item,
.timeline__item {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(6, 43, 79, 0.06);
}

.why-card,
.service-card,
.testimonial,
.blog-card,
.value-card,
.info-panel,
.process__item,
.timeline__item {
    padding: 30px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.why-card:hover,
.service-card:hover,
.blog-card:hover,
.value-card:hover,
.doctor-card:hover {
    transform: translateY(-8px);
    border-color: rgba(19, 184, 200, 0.45);
    box-shadow: var(--shadow);
}

.why-card i,
.value-card i,
.service-card__icon,
.detail-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    border-radius: 18px;
    color: var(--primary);
    background: var(--sky);
    font-size: 24px;
}

.service-card p {
    min-height: 84px;
}

.service-card a,
.blog-card a {
    color: var(--primary-dark);
    font-weight: 900;
}

.service-card ul,
.check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 24px;
    display: grid;
    gap: 10px;
}

.doctors-band {
    padding-bottom: 150px;
}

.doctor-card {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.doctor-card img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    object-position: top;
}

.doctor-card div {
    padding: 24px;
}

.doctor-card h3 {
    margin: 0 0 8px;
    font-size: clamp(22px, 2.3vw, 26px);
    color: var(--navy);
    font-weight: 800;
}

.doctor-card p {
    margin-bottom: 0;
    color: var(--primary-dark);
    font-weight: 800;
}

.stats {
    position: relative;
    z-index: 2;
    margin-top: -70px;
}

.stat-card {
    padding: 30px;
    text-align: center;
}

.stat-card strong {
    display: block;
    color: var(--navy);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1;
}

.stat-card span {
    color: var(--muted);
    font-weight: 800;
}

.process__item {
    position: relative;
}

.process__item span,
.timeline__item span {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    color: var(--white);
    background: var(--navy);
    font-weight: 900;
}

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

.stars {
    margin-bottom: 12px;
    color: #f7b731;
    letter-spacing: 2px;
}

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

.gallery-grid img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 54px;
    align-items: start;
}

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

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

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
}

.faq-item button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border: 0;
    background: transparent;
    color: var(--navy);
    font: inherit;
    font-weight: 900;
    text-align: left;
    cursor: pointer;
}

.faq-item i {
    color: var(--primary);
    transition: transform var(--transition);
}

.faq-item button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-item__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition);
}

.faq-item__body p {
    overflow: hidden;
    margin: 0;
    padding: 0 22px;
}

.faq-item.is-open .faq-item__body {
    grid-template-rows: 1fr;
}

.faq-item.is-open .faq-item__body p {
    padding-bottom: 20px;
}

.cta-section {
    padding: 40px 0;
}

.cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 52px;
    border-radius: 34px;
    color: var(--white);
    background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.25), transparent 28%), linear-gradient(135deg, var(--primary), var(--navy));
    box-shadow: var(--shadow);
}

.cta-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.blog-card span {
    display: block;
    margin-bottom: 14px;
    color: var(--primary-dark);
    font-weight: 900;
    font-size: 13px;
}

.blog-card--rich {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card--rich .blog-card__media {
    display: block;
    line-height: 0;
    overflow: hidden;
    border-radius: var(--radius) var(--radius) 0 0;
}

.blog-card--rich .blog-card__media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.blog-card--rich:hover .blog-card__media img {
    transform: scale(1.04);
}

.blog-card__body {
    padding: 26px 28px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    display: block;
    margin-bottom: 12px;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.02em;
}

.blog-card--rich h2,
.blog-card--rich h3 {
    margin: 0 0 12px;
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.3;
}

.blog-card--rich h2 a,
.blog-card--rich h3 a {
    color: inherit;
    text-decoration: none;
}

.blog-card--rich h2 a:hover,
.blog-card--rich h3 a:hover {
    color: var(--primary);
}

.blog-card--rich p {
    margin: 0 0 18px;
    flex: 1;
    color: var(--muted);
    line-height: 1.6;
}

.blog-card__more {
    margin-top: auto;
    align-self: flex-start;
}

.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 8px;
}

.blog-filter {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--white);
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    transition: border-color var(--transition), background var(--transition), color var(--transition);
}

.blog-filter:hover {
    border-color: rgba(19, 184, 200, 0.45);
    color: var(--primary);
}

.blog-filter.is-active {
    border-color: transparent;
    background: linear-gradient(135deg, var(--primary), var(--navy));
    color: var(--white);
}

.blog-empty {
    text-align: center;
    padding: 48px 24px;
    color: var(--muted);
    font-weight: 600;
}

.blog-aside__card {
    margin-top: 12px;
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    box-shadow: 0 12px 34px rgba(6, 43, 79, 0.06);
    display: grid;
    gap: 16px;
    max-width: 640px;
}

.blog-aside__card h3 {
    margin: 0;
}

.blog-aside__card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.blog-aside__card .btn--outline {
    justify-self: start;
}

.page-hero--compact {
    padding: 72px 0 64px;
}

.page-hero--compact h1 {
    margin-top: 12px;
}

.blog-article-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 40px;
    align-items: start;
}

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

.blog-article__figure {
    margin: 0 0 28px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 12px 34px rgba(6, 43, 79, 0.06);
}

.blog-article__figure img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
}

.blog-article__content {
    font-size: 17px;
    line-height: 1.75;
    color: #2c3d4d;
}

.blog-article__footer {
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    font-size: 15px;
    color: var(--muted);
}

.blog-article__footer p {
    margin: 0;
}

.blog-article__footer a {
    color: var(--primary-dark);
    font-weight: 800;
}

.blog-article-sidebar {
    position: sticky;
    top: 100px;
}

.page-hero {
    padding: 92px 0;
    color: var(--white);
    background: radial-gradient(circle at 20% 20%, rgba(19, 184, 200, 0.36), transparent 26%), linear-gradient(135deg, var(--navy), #041a31);
}

.page-hero h1 {
    max-width: 850px;
    color: var(--white);
}

.page-hero p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
}

.detail-layout,
.appointment-layout,
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 36px;
    align-items: start;
}

.detail-content {
    padding-right: 16px;
}

.detail-content p {
    font-size: 17px;
}

.detail-sidebar {
    display: grid;
    gap: 22px;
    position: sticky;
    top: 110px;
}

.appointment-box,
.service-menu,
.form-card {
    padding: 28px;
}

.service-menu {
    display: grid;
    gap: 8px;
}

.service-menu a {
    padding: 12px 14px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 800;
}

.service-menu a.active,
.service-menu a:hover {
    color: var(--primary-dark);
    background: var(--sky);
}

.doctor-grid--page {
    grid-template-columns: repeat(3, 1fr);
}

.doctor-card--page span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
}

.doctor-card--page .doctor-card__bio {
    line-height: 1.65;
    font-weight: 500;
}

.seo-prose__columns {
    display: grid;
    gap: clamp(22px, 3vw, 36px);
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 18px;
}

.seo-prose .seo-prose__columns h3 {
    margin: 12px 0 10px;
    font-size: 1.1rem;
    color: var(--primary-dark);
}

.seo-prose .seo-prose__columns p {
    margin: 10px 0 0;
    line-height: 1.75;
    color: var(--muted);
}

.seo-prose .seo-prose__columns strong {
    color: var(--navy);
    font-weight: 800;
}

.appointment-layout {
    grid-template-columns: 0.88fr 1.12fr;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.contact-cards div {
    padding: 20px;
    border-radius: 18px;
    background: var(--soft);
}

.contact-cards i {
    color: var(--primary);
}

.contact-cards strong,
.contact-cards span {
    display: block;
}

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

.form-grid__full {
    grid-column: 1 / -1;
}

label {
    display: grid;
    gap: 8px;
    color: var(--navy);
    font-weight: 900;
}

input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--text);
    background: var(--white);
    font: inherit;
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(19, 184, 200, 0.12);
}

label small {
    color: #c0392b;
    font-weight: 700;
}

.form-card .btn {
    margin-top: 22px;
}

.alert {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 800;
}

.alert--success {
    color: #0f6b46;
    background: #e8fff4;
}

.contact-layout {
    grid-template-columns: 0.8fr 1.2fr;
}

.contact-info {
    display: grid;
    gap: 18px;
}

.contact-card {
    display: flex;
    gap: 16px;
    padding: 22px;
}

.contact-card i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 14px;
    color: var(--primary);
    background: var(--sky);
}

.contact-card h2 {
    margin-bottom: 6px;
    font-size: 20px;
}

.contact-card p {
    margin-bottom: 0;
}

.map-card {
    overflow: hidden;
    min-height: 470px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.map-card iframe {
    width: 100%;
    height: 470px;
    border: 0;
}

.map-card--stack {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border);
}

.map-card__cta {
    margin: 0;
    padding: 14px 18px;
    text-align: center;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.map-card__cta .btn {
    width: 100%;
    max-width: 320px;
}

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

.footer {
    position: relative;
    overflow: hidden;
    padding-top: 78px;
    color: rgba(255, 255, 255, 0.78);
    background: #041a31;
}

.footer__glow {
    position: absolute;
    width: 360px;
    height: 360px;
    right: -120px;
    top: -160px;
    border-radius: 50%;
    background: rgba(19, 184, 200, 0.25);
    filter: blur(8px);
}

.footer__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.35fr 0.75fr 0.9fr 1.1fr;
    gap: 36px;
}

.logo--footer strong,
.footer h3 {
    color: var(--white);
}

.logo--footer small,
.footer p,
.footer li {
    color: rgba(255, 255, 255, 0.72);
}

.footer__links,
.footer__contact {
    display: grid;
    gap: 12px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer__links a:hover,
.footer__contact a:hover {
    color: var(--primary);
}

.footer__contact i {
    margin-right: 10px;
    color: var(--primary);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.socials a,
.floating-whatsapp {
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.12);
}

.socials a {
    width: 42px;
    height: 42px;
}

.footer__bottom {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 54px;
    padding: 22px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__bottom p {
    margin: 0;
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 90;
    width: 58px;
    height: 58px;
    background: #25d366;
    box-shadow: 0 16px 34px rgba(37, 211, 102, 0.35);
    font-size: 28px;
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1100px) {
    .why-grid,
    .service-grid,
    .process {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero__grid,
    .split,
    .split--reverse,
    .faq-layout,
    .appointment-layout,
    .contact-layout,
    .detail-layout,
    .blog-article-wrap {
        grid-template-columns: 1fr;
    }

    .detail-sidebar,
    .blog-article-sidebar {
        position: static;
    }

    .hero-mini-card {
        left: 20px;
    }
}

@media (max-width: 920px) {
    .topbar {
        display: none;
    }

    .nav {
        min-height: 74px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .nav__cta {
        display: none;
    }

    .nav-menu {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        display: grid;
        gap: 6px;
        padding: 16px;
        border: 1px solid var(--border);
        border-radius: 22px;
        background: var(--white);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity var(--transition), transform var(--transition);
    }

    .nav-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

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

    .doctor-grid,
    .doctor-grid--page,
    .blog-grid,
    .values-grid,
    .stats__grid,
    .testimonial-grid,
    .timeline__grid,
    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 70px 0;
    }

    .hero {
        padding: 62px 0 76px;
    }

    .logo--image img {
        width: 166px;
        height: 60px;
    }

    .hero-card img {
        height: 420px;
    }

    .hero-mini-card {
        position: static;
        margin-top: 16px;
    }

    .section-heading--between,
    .cta-card,
    .footer__bottom {
        display: grid;
        align-items: start;
    }

    .why-grid,
    .service-grid,
    .service-grid--wide,
    .doctor-grid,
    .doctor-grid--page,
    .blog-grid,
    .values-grid,
    .stats__grid,
    .process,
    .testimonial-grid,
    .gallery-grid,
    .timeline__grid,
    .footer__grid,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 34px;
    }

    .page-hero {
        padding: 70px 0;
    }

    .split__media img,
    .gallery-grid img {
        min-height: auto;
        height: 280px;
    }

    .experience-card {
        right: 12px;
    }

    .floating-whatsapp {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}
