:root {
    --color-navy: #163966;
    --color-navy-deep: #0d2340;
    --color-teal: #66c6bc;
    --color-sand: #f6efe5;
    --color-ink: #102033;
    --color-muted: #576579;
    --color-border: rgba(22, 57, 102, 0.12);
    --shadow-soft: 0 24px 60px rgba(13, 35, 64, 0.12);
    --shadow-card: 0 18px 40px rgba(13, 35, 64, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1160px, calc(100vw - 2rem));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Manrope", sans-serif;
    color: var(--color-ink);
    background:
        radial-gradient(circle at top right, rgba(102, 198, 188, 0.18), transparent 28%),
        linear-gradient(180deg, #fdfbf8 0%, #f8f3ec 100%);
}

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

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

button {
    font: inherit;
}

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

.section {
    position: relative;
    padding: 5.5rem 0;
}

.topbar {
    background: var(--color-navy-deep);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.9rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 46px;
}

.topbar-inner p {
    margin: 0;
}

.topbar-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px);
    background: rgba(255, 250, 244, 0.84);
    border-bottom: 1px solid rgba(22, 57, 102, 0.08);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    min-height: 86px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    min-width: 0;
}

.brand img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.18rem;
    min-width: 0;
}

.brand-copy strong {
    font-size: 1rem;
}

.brand-copy span {
    color: var(--color-muted);
    font-size: 0.86rem;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1.6rem;
    font-weight: 600;
    color: var(--color-muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--color-navy);
}

.header-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    min-height: 52px;
    padding: 0 1.5rem;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.header-cta,
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--color-navy) 0%, #245ca0 100%);
    box-shadow: 0 18px 34px rgba(22, 57, 102, 0.18);
}

.header-cta:hover,
.button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 38px rgba(22, 57, 102, 0.22);
}

.button-secondary {
    color: var(--color-navy);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(22, 57, 102, 0.14);
}

.button-secondary:hover {
    transform: translateY(-2px);
    background: #fff;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow-card);
}

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

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(102, 198, 188, 0.16);
    color: var(--color-navy);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 999px;
    background: var(--color-teal);
}

h1,
h2 {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: var(--color-navy-deep);
}

h1 {
    font-size: clamp(3.2rem, 6vw, 5.8rem);
    margin-top: 1.25rem;
}

h2 {
    font-size: clamp(2.5rem, 4vw, 4.25rem);
    margin-top: 1rem;
}

h3 {
    margin: 0;
    font-size: 1.35rem;
    color: var(--color-navy-deep);
}

p {
    margin: 0;
    line-height: 1.8;
    color: var(--color-muted);
}

.hero {
    overflow: clip;
    padding-top: 6.25rem;
    padding-bottom: 6rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    position: relative;
    z-index: 2;
}

.hero-lead {
    margin-top: 1.4rem;
    max-width: 650px;
    font-size: 1.08rem;
}

.hero-tags,
.chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.hero-tags span,
.chip-list span {
    padding: 0.72rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(22, 57, 102, 0.1);
    color: var(--color-navy);
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(13, 35, 64, 0.05);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
}

.hero-stats article,
.contact-cards article {
    padding: 1.15rem 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(22, 57, 102, 0.09);
    box-shadow: 0 18px 40px rgba(13, 35, 64, 0.05);
}

.hero-stats strong,
.contact-cards strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-navy-deep);
}

.hero-stats span,
.contact-cards span {
    color: var(--color-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.hero-visual {
    position: relative;
    min-height: 640px;
}

.hero-main-card {
    position: absolute;
    right: 0;
    top: 0;
    width: min(100%, 530px);
    padding: 1rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(22, 57, 102, 0.1);
    box-shadow: var(--shadow-soft);
}

.hero-main-card img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 24px;
}

.hero-card-badge {
    position: absolute;
    left: 2rem;
    bottom: 2rem;
    padding: 1rem 1.15rem;
    border-radius: var(--radius-md);
    background: rgba(255, 250, 244, 0.9);
    max-width: 280px;
    box-shadow: 0 16px 34px rgba(13, 35, 64, 0.12);
}

.hero-card-badge span,
.hero-side-card span,
.profile-role {
    display: block;
    margin-bottom: 0.28rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: var(--color-navy);
    text-transform: uppercase;
}

.hero-card-badge strong,
.hero-side-card strong {
    color: var(--color-navy-deep);
}

.hero-side-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 0.9rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(22, 57, 102, 0.09);
    box-shadow: var(--shadow-card);
}

.hero-side-card img {
    width: 92px;
    height: 92px;
    object-fit: cover;
    border-radius: 20px;
    background: linear-gradient(180deg, #f9f4ee 0%, #edf7f5 100%);
}

.hero-side-card-doctor {
    left: 0;
    bottom: 3.2rem;
    width: min(86%, 290px);
}

.hero-side-card-doctor img {
    object-fit: contain;
    object-position: center bottom;
}

.hero-side-card-clinic {
    right: 1.2rem;
    bottom: -1rem;
    width: min(74%, 260px);
}

.hero-orb {
    position: absolute;
    border-radius: 999px;
    filter: blur(12px);
    pointer-events: none;
}

.hero-orb-one {
    width: 280px;
    height: 280px;
    right: -60px;
    top: 120px;
    background: rgba(102, 198, 188, 0.18);
}

.hero-orb-two {
    width: 220px;
    height: 220px;
    left: -80px;
    bottom: 20px;
    background: rgba(22, 57, 102, 0.09);
}

.split-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.2rem;
    align-items: center;
}

.split-layout.reverse {
    grid-template-columns: 1.02fr 0.98fr;
}

.image-stack {
    position: relative;
    min-height: 560px;
}

.image-stack-main,
.image-stack-float,
.highlight-visual {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.image-stack-main {
    width: min(100%, 520px);
}

.image-stack-main img,
.image-stack-float img,
.highlight-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-stack-main img {
    min-height: 520px;
}

.image-stack-float {
    position: absolute;
    right: 0;
    bottom: 0;
    width: min(64%, 320px);
    border: 10px solid rgba(255, 250, 244, 0.95);
}

.image-stack-float img {
    min-height: 250px;
}

.section-copy h2,
.section-heading h2,
.cta-banner h2 {
    max-width: 820px;
}

.section-copy p + p {
    margin-top: 1rem;
}

.feature-list {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-list-item {
    padding: 1.25rem 1.35rem;
    border-left: 4px solid var(--color-teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: var(--shadow-card);
}

.feature-list-item strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-navy-deep);
}

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

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading p {
    margin-top: 1rem;
}

.why-section,
.doctor-section,
.cta-banner {
    background:
        radial-gradient(circle at top left, rgba(102, 198, 188, 0.14), transparent 30%),
        #fff;
}

.card-grid {
    display: grid;
    gap: 1.4rem;
}

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

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

.info-card,
.service-card,
.voice-card,
.profile-card,
.faq-item,
.contact-panel,
.map-panel,
.cta-banner-inner {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.info-card,
.service-card,
.voice-card {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.icon-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(102, 198, 188, 0.16), rgba(22, 57, 102, 0.12));
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.icon-badge svg {
    width: 1.45rem;
    height: 1.45rem;
    fill: currentColor;
}

.info-card p,
.service-card p,
.voice-card p {
    margin-top: 0.7rem;
}

.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    inset: auto -40px -40px auto;
    width: 120px;
    height: 120px;
    border-radius: 999px;
    background: rgba(102, 198, 188, 0.14);
}

.service-card ul {
    position: relative;
    z-index: 1;
    padding-left: 1rem;
    margin: 1rem 0 0;
    color: var(--color-muted);
}

.service-card li + li {
    margin-top: 0.55rem;
}

.section-cta {
    display: flex;
    justify-content: center;
    margin-top: 2.2rem;
}

.highlight-section {
    background: linear-gradient(180deg, rgba(223, 245, 242, 0.6) 0%, rgba(255, 250, 244, 0.72) 100%);
}

.check-list {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.check-item {
    position: relative;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(22, 57, 102, 0.08);
}

.check-item::before {
    content: "\2713";
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--color-navy);
    color: #fff;
    font-weight: 800;
}

.highlight-visual {
    position: relative;
    min-height: 560px;
}

.highlight-visual img {
    min-height: 560px;
}

.floating-note {
    position: absolute;
    left: 1.5rem;
    right: 1.5rem;
    bottom: 1.5rem;
    padding: 1.2rem 1.3rem;
    border-radius: var(--radius-md);
    background: rgba(255, 250, 244, 0.9);
    box-shadow: 0 18px 32px rgba(13, 35, 64, 0.15);
}

.floating-note strong {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--color-navy-deep);
}

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

.profile-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.4rem;
    padding: 1.4rem;
    border-radius: var(--radius-xl);
}

.profile-photo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
    border-radius: 26px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7eee3 0%, #eef8f7 100%);
}

.profile-photo img {
    width: 100%;
    height: 100%;
}

.doctor-photo img,
.team-photo img {
    object-fit: contain;
    object-position: center bottom;
}

.profile-copy p {
    margin-top: 0.8rem;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.6rem;
}

.reviews-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(223, 245, 242, 0.34) 100%);
}

.reviews-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 1.5rem;
    align-items: start;
}

.reviews-summary {
    padding: 1.6rem;
    border-radius: var(--radius-xl);
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-card);
}

.reviews-summary p {
    margin-top: 1rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.6rem;
    padding: 1rem 1.1rem;
    border-radius: var(--radius-md);
    background: rgba(246, 239, 229, 0.75);
    border: 1px solid rgba(22, 57, 102, 0.08);
}

.google-badge strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--color-navy-deep);
}

.google-badge span {
    color: var(--color-muted);
    font-size: 0.94rem;
}

.google-mark {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.g-blue {
    color: #4285f4;
}

.g-red {
    color: #ea4335;
}

.g-yellow {
    color: #fbbc05;
}

.g-green {
    color: #34a853;
}

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

.review-card {
    padding: 1.35rem;
    border-radius: var(--radius-lg);
}

.review-head {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(22, 57, 102, 0.16), rgba(102, 198, 188, 0.22));
    color: var(--color-navy);
    font-weight: 800;
}

.review-head h3 {
    font-size: 1.05rem;
}

.review-head p {
    font-size: 0.92rem;
    color: var(--color-muted);
}

.review-stars {
    margin-top: 1rem;
    color: #f4b400;
    letter-spacing: 0.08em;
    font-size: 1rem;
}

.review-card > p:last-child {
    margin-top: 1rem;
}

.faq-shell {
    display: grid;
    grid-template-columns: 0.94fr 1.06fr;
    gap: 2rem;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-lg);
}

.faq-item summary {
    cursor: pointer;
    list-style: none;
    font-weight: 800;
    color: var(--color-navy-deep);
    padding-right: 2rem;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--color-navy);
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    margin-top: 0.9rem;
}

.contact-section {
    background: linear-gradient(180deg, rgba(13, 35, 64, 0.04) 0%, rgba(255, 250, 244, 0.4) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.98fr 1.02fr;
    gap: 1.4rem;
}

.contact-panel,
.map-panel {
    border-radius: var(--radius-xl);
    padding: 1.5rem;
}

.contact-panel p {
    margin-top: 1rem;
}

.contact-cards {
    display: grid;
    gap: 1rem;
    margin-top: 1.8rem;
}

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

.map-panel iframe {
    width: 100%;
    min-height: 520px;
    height: 100%;
    border: 0;
    border-radius: 26px;
}

.cta-banner {
    padding: 0 0 4.5rem;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.site-footer {
    padding: 1.7rem 0 5rem;
    border-top: 1px solid rgba(22, 57, 102, 0.08);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: var(--color-muted);
    font-weight: 600;
}

.floating-whatsapp {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 24;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.9rem 1rem;
    border-radius: 999px;
    background: #1ec96f;
    color: #fff;
    box-shadow: 0 18px 34px rgba(30, 201, 111, 0.26);
    font-weight: 800;
}

.floating-whatsapp svg {
    width: 1.2rem;
    height: 1.2rem;
    fill: currentColor;
}

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

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

@media (max-width: 1080px) {
    .header-cta {
        display: none;
    }

    .hero-grid,
    .split-layout,
    .split-layout.reverse,
    .reviews-layout,
    .faq-shell,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .three-up,
    .reviews-grid,
    .voice-grid,
    .doctor-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: 700px;
    }

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

@media (max-width: 860px) {
    .topbar-inner,
    .footer-inner,
    .cta-banner-inner {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1.2rem;
        border-radius: var(--radius-lg);
        background: rgba(255, 250, 244, 0.98);
        border: 1px solid rgba(22, 57, 102, 0.1);
        box-shadow: var(--shadow-soft);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 180ms ease, transform 180ms ease;
    }

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

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

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

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

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

    .hero-visual {
        min-height: 640px;
    }
}

@media (max-width: 640px) {
    .section {
        padding: 4.5rem 0;
    }

    .topbar {
        display: none;
    }

    .header-inner {
        min-height: 76px;
    }

    h1 {
        font-size: clamp(2.7rem, 12vw, 4.1rem);
    }

    h2 {
        font-size: clamp(2.1rem, 10vw, 3.2rem);
    }

    .hero {
        padding-top: 4.6rem;
    }

    .hero-main-card img {
        height: 400px;
    }

    .hero-side-card {
        width: calc(100% - 1rem);
        left: 0.5rem;
        right: 0.5rem;
    }

    .hero-side-card-doctor {
        bottom: 7rem;
    }

    .hero-side-card-clinic {
        bottom: 0;
    }

    .image-stack {
        min-height: 480px;
    }

    .image-stack-main img,
    .highlight-visual img {
        min-height: 420px;
    }

    .image-stack-float {
        width: 74%;
    }

    .four-up {
        grid-template-columns: 1fr;
    }

    .floating-whatsapp span {
        display: none;
    }
}
