:root {
    --primary: #147eae;
    --primary-dark: #075f89;
    --navy: #12324a;
    --text: #486173;
    --muted: #6f8492;
    --bg: #f5fbfe;
    --white: #fff;
    --line: #dcecf3;
    --shadow: 0 20px 50px rgba(10, 67, 94, .10)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Inter, Arial, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: #fff
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1160px, 92%);
    margin: auto
}

.section {
    padding: 90px 0
}

.section.alt {
    background: var(--bg)
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e7f7fd;
    color: var(--primary-dark);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase
}

.section-head {
    max-width: 720px;
    margin-bottom: 50px
}

.section-head h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.15;
    color: var(--navy);
    margin: 15px 0
}

.section-head p {
    color: var(--muted);
    font-size: 16px
}

header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(220, 236, 243, .8)
}

.nav {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand img {
    height: 62px;
    width: auto
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    font-weight: 600;
    color: #2d5265;
    font-size: 14px
}

.nav-links a {
    transition: .25s
}

.nav-links a:hover {
    color: var(--primary)
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(20, 126, 174, .22)
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    font-size: 24px;
    color: var(--navy)
}

.hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #effaff 0%, #fff 56%, #edf9fd 100%)
}

.hero:before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(20, 126, 174, .08);
    right: -180px;
    top: -220px
}

.hero-grid {
    min-height: 660px;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1
}

.hero h1 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    font-size: clamp(44px, 5.5vw, 70px);
    line-height: 1.03;
    letter-spacing: -.04em;
    margin: 20px 0
}

.hero h1 span {
    color: var(--primary)
}

.hero p {
    max-width: 630px;
    color: #5d7383;
    font-size: 18px
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 30px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 21px;
    border-radius: 13px;
    font-weight: 800;
    border: 1px solid transparent;
    transition: .25s
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 12px 28px rgba(20, 126, 174, .22)
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: var(--primary-dark)
}

.btn-light {
    background: #fff;
    color: var(--navy);
    border-color: var(--line)
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #5f7480;
    font-weight: 600
}

.trust-item i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #e2f6fc;
    color: var(--primary)
}

.hero-card {
    background: #fff;
    border-radius: 30px;
    padding: 18px;
    box-shadow: var(--shadow);
    border: 1px solid #e5f1f6;
    position: relative
}

.hero-card .clinic-logo {
    width: 100%;
    height: 430px;
    object-fit: contain;
    border-radius: 22px;
    background: #f3fafc
}

.hero-card-badge {
    position: absolute;
    left: -18px;
    bottom: 32px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 15px 18px;
    border-radius: 16px;
    box-shadow: 0 16px 35px rgba(10, 67, 94, .13);
    display: flex;
    align-items: center;
    gap: 12px
}

.hero-card-badge .icon {
    width: 43px;
    height: 43px;
    border-radius: 12px;
    background: #e5f8fd;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 19px
}

.hero-card-badge strong {
    display: block;
    color: var(--navy);
    font-size: 14px
}

.hero-card-badge small {
    display: block;
    color: var(--muted);
    font-size: 11px
}

.quick-strip {
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line)
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.quick-item {
    padding: 25px 24px;
    display: flex;
    gap: 14px;
    align-items: center;
    border-right: 1px solid var(--line)
}

.quick-item:last-child {
    border-right: 0
}

.quick-item i {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #eaf8fc;
    color: var(--primary);
    display: grid;
    place-items: center
}

.quick-item strong {
    display: block;
    color: var(--navy);
    font-size: 14px
}

.quick-item span {
    font-size: 12px;
    color: var(--muted)
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.service-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 12px 35px rgba(10, 67, 94, .05);
    transition: .25s
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow)
}

.service-icon {
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: #e9f8fd;
    color: var(--primary);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 20px
}

.service-card h3 {
    color: var(--navy);
    font-size: 19px;
    margin-bottom: 8px
}

.service-card p {
    font-size: 14px;
    color: var(--muted)
}

.about-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 55px;
    align-items: center
}

.about-visual {
    position: relative
}

.about-box {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 16px;
    box-shadow: var(--shadow)
}

.about-box-inner {
    min-height: 470px;
    border-radius: 20px;
    background: linear-gradient(140deg, #e7f8fd, #f8fcfe);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.about-box-inner img {
    width: 88%;
    max-width: 460px;
    max-height: 430px;
    object-fit: contain
}

.about-float {
    position: absolute;
    right: -22px;
    top: 35px;
    background: #fff;
    border-radius: 17px;
    padding: 15px 18px;
    box-shadow: 0 16px 30px rgba(10, 67, 94, .12);
    border: 1px solid var(--line)
}

.about-float strong {
    display: block;
    color: var(--primary);
    font-size: 24px
}

.about-float span {
    font-size: 12px;
    color: var(--muted)
}

.about-content h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.15;
    margin: 15px 0
}

.about-content p {
    color: var(--muted);
    margin-bottom: 16px
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px
}

.credential {
    padding: 15px;
    border-radius: 15px;
    background: #f6fbfd;
    border: 1px solid var(--line)
}

.credential b {
    display: block;
    color: var(--navy);
    font-size: 14px
}

.credential span {
    font-size: 12px;
    color: var(--muted)
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.special-card {
    border-radius: 19px;
    padding: 23px;
    background: #fff;
    border: 1px solid var(--line)
}

.special-card .num {
    font-size: 12px;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: .08em
}

.special-card h3 {
    color: var(--navy);
    margin: 9px 0 5px;
    font-size: 18px
}

.special-card p {
    font-size: 13px;
    color: var(--muted)
}

.timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.step {
    padding: 28px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--line)
}

.step-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px
}

.step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--primary);
    color: #fff;
    font-weight: 800
}

.step h3 {
    font-size: 18px;
    color: var(--navy)
}

.step p {
    font-size: 14px;
    color: var(--muted)
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.quote {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 26px
}

.stars {
    color: #f3b742;
    letter-spacing: 2px;
    margin-bottom: 13px
}

.quote p {
    font-size: 14px;
    color: #596f7e;
    margin-bottom: 18px
}

.quote strong {
    color: var(--navy);
    font-size: 14px
}

.quote span {
    display: block;
    color: var(--muted);
    font-size: 12px
}

.cta {
    background: linear-gradient(135deg, #075f89, #147eae);
    color: #fff;
    border-radius: 30px;
    padding: 45px 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 25px;
    align-items: center
}

.cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(28px, 4vw, 43px);
    line-height: 1.12;
    margin-bottom: 10px
}

.cta p {
    opacity: .9;
    max-width: 650px
}

.cta .btn-light {
    border: 0;
    color: var(--primary-dark)
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 25px
}

.contact-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 23px;
    padding: 28px
}

.contact-card h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 16px
}

.info {
    display: grid;
    gap: 14px
}

.info-row {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 13px 0;
    border-bottom: 1px solid #edf4f7
}

.info-row:last-child {
    border-bottom: 0
}

.info-row i {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    background: #eaf8fc;
    color: var(--primary);
    display: grid;
    place-items: center;
    flex: 0 0 auto
}

.info-row strong {
    display: block;
    color: var(--navy);
    font-size: 13px
}

.info-row span,
.info-row a {
    font-size: 13px;
    color: var(--muted)
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.form-control {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 14px;
    font: inherit;
    color: var(--navy);
    background: #fbfdfe;
    outline: none
}

.form-control:focus {
    border-color: #8bd0e6;
    box-shadow: 0 0 0 4px rgba(20, 126, 174, .08)
}

textarea.form-control {
    min-height: 125px;
    resize: vertical
}

.full {
    grid-column: 1/-1
}

.form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 10px
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #eaf8fc;
    border: 1px solid var(--line);
    min-height: 230px;
    box-shadow: 0 12px 30px rgba(10, 67, 94, .06)
}

.gallery-item:nth-child(1) {
    grid-column: span 7
}

.gallery-item:nth-child(2) {
    grid-column: span 5
}

.gallery-item:nth-child(3) {
    grid-column: span 4
}

.gallery-item:nth-child(4) {
    grid-column: span 4
}

.gallery-item:nth-child(5) {
    grid-column: span 4
}

.gallery-item img {
    width: 100%;
    height: 100%;
    min-height: 230px;
    object-fit: cover;
    transition: .4s
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 28px 20px 18px;
    background: linear-gradient(transparent, rgba(10, 45, 64, .76));
    color: #fff
}

.gallery-overlay h3 {
    font-size: 16px;
    margin: 0 0 3px
}

.gallery-overlay p {
    font-size: 12px;
    opacity: .9;
    margin: 0
}

.gallery-item:hover img {
    transform: scale(1.06)
}

@media (max-width:1024px) {
    .gallery-item:nth-child(n) {
        grid-column: span 6
    }
}

@media (max-width:760px) {
    .gallery-grid {
        grid-template-columns: 1fr
    }

    .gallery-item:nth-child(n) {
        grid-column: span 1
    }

    .gallery-item,
    .gallery-item img {
        min-height: 250px
    }
}

footer {
    background: #0e2d40;
    color: #bdd2dc;
    padding: 60px 0 20px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px
}

.footer-brand img {
    height: 62px;
    margin-bottom: 16px;
    background: #fff;
    padding: 5px;
    border-radius: 10px
}

.footer-links {
    display: grid;
    gap: 8px
}

footer h4 {
    color: #fff;
    margin-bottom: 14px;
    font-size: 14px
}

footer p,
footer a {
    font-size: 13px;
    color: #aac1cc
}

.copyright {
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
    font-size: 12px
}

.float-wa {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1bb669;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 25px;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
    z-index: 60
}

.to-top {
    position: fixed;
    right: 20px;
    bottom: 88px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    color: var(--navy);
    display: grid;
    place-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .1);
    opacity: 0;
    pointer-events: none;
    transition: .25s;
    z-index: 59
}

.to-top.show {
    opacity: 1;
    pointer-events: auto
}

@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        min-height: auto;
        padding: 75px 0
    }

    .hero-card {
        max-width: 640px
    }

    .quick-grid {
        grid-template-columns: 1fr 1fr
    }

    .quick-item:nth-child(2) {
        border-right: 0
    }

    .quick-item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line)
    }

    .services {
        grid-template-columns: 1fr 1fr
    }

    .special-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .timeline,
    .testimonials {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:760px) {
    .nav {
        height: 72px
    }

    .brand img {
        height: 52px
    }

    .menu-btn {
        display: block
    }

    .nav-links {
        position: absolute;
        left: 0;
        right: 0;
        top: 72px;
        background: #fff;
        border-bottom: 1px solid var(--line);
        padding: 18px 4%;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 5px
    }

    .nav-links.open {
        display: flex
    }

    .nav-links a {
        padding: 11px 10px
    }

    .nav-cta {
        text-align: center
    }

    .hero h1 {
        font-size: 43px
    }

    .hero p {
        font-size: 16px
    }

    .hero-card .clinic-logo {
        height: 360px
    }

    .quick-grid,
    .services,
    .special-grid,
    .timeline,
    .testimonials,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .quick-item {
        border-right: 0 !important;
        border-bottom: 1px solid var(--line)
    }

    .quick-item:last-child {
        border-bottom: 0
    }

    .section {
        padding: 68px 0
    }

    .section-head {
        margin-bottom: 32px
    }

    .credentials,
    .form-grid {
        grid-template-columns: 1fr
    }

    .cta {
        grid-template-columns: 1fr;
        padding: 32px 25px
    }

    .cta .btn {
        width: 100%
    }

    .about-float {
        right: 8px
    }
}


































/* =========================================
   GALLERY SECTION
========================================= */

.gallery-section {
    width: 100%;
    overflow: hidden;
}

.gallery-grid {
    width: 100%;
    display: flex;
    gap: 24px;
}


/* Gallery Card */

.gallery-item {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    cursor: pointer;
    background: #f5fbfe;
    box-sizing: border-box;
}


/* Gallery Image */

.gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}


/* Hover Zoom */

.gallery-item:hover img {
    transform: scale(1.08);
}


/* Overlay */

.gallery-overlay {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(7, 95, 137, 0.50);

    opacity: 0;

    transition: all 0.3s ease;
}


.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


/* Expand Icon */

.gallery-overlay span {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;
    color: #147eae;

    font-size: 20px;

    transform: scale(.7);

    transition: all .3s ease;
}


.gallery-item:hover .gallery-overlay span {
    transform: scale(1);
}


/* =========================================
   LIGHTBOX
========================================= */

.lightbox {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: rgba(5, 18, 28, 0.96);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 30px;

    opacity: 0;
    visibility: hidden;

    transition: opacity .3s ease,
                visibility .3s ease;

    z-index: 999999;

    box-sizing: border-box;
}


.lightbox.active {
    opacity: 1;
    visibility: visible;
}


/* Image Container */

.lightbox-image-wrap {
    width: min(900px, 82vw);
    height: min(80vh, 680px);

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}


/* Lightbox Image */

#lightboxImage {
    display: block;

    max-width: 100%;
    max-height: 100%;

    width: auto;
    height: auto;

    object-fit: contain;

    border-radius: 12px;

    box-shadow: 0 25px 80px rgba(0,0,0,.45);
}


/* =========================================
   CLOSE BUTTON
========================================= */

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 25px;

    width: 48px;
    height: 48px;

    border: none;
    outline: none;

    border-radius: 50%;

    background: rgba(255,255,255,.15);

    color: #fff;

    font-size: 21px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;

    transition: all .25s ease;
}


.lightbox-close:hover {
    background: #fff;
    color: #147eae;
    transform: rotate(90deg);
}


/* =========================================
   PREVIOUS / NEXT
========================================= */

.lightbox-prev,
.lightbox-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 52px;
    height: 52px;

    border: none;
    outline: none;

    border-radius: 50%;

    background: rgba(255,255,255,.15);

    color: #fff;

    font-size: 19px;

    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 10;

    transition: all .25s ease;
}


.lightbox-prev {
    left: 25px;
}


.lightbox-next {
    right: 25px;
}


.lightbox-prev:hover,
.lightbox-next:hover {
    background: #fff;
    color: #147eae;
}


/* =========================================
   COUNTER
========================================= */

.lightbox-counter {
    position: absolute;

    bottom: 20px;
    left: 50%;

    transform: translateX(-50%);

    color: #fff;

    background: rgba(255,255,255,.14);

    padding: 7px 16px;

    border-radius: 30px;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-item {
        height: 260px;
    }

    .lightbox-image-wrap {
        width: 78vw;
        height: 75vh;
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .gallery-item {
        height: 270px;
    }

    .lightbox {
        padding: 15px;
    }

    .lightbox-image-wrap {
        width: 94vw;
        height: 72vh;
    }

    #lightboxImage {
        max-width: 92vw;
        max-height: 72vh;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;

        width: 42px;
        height: 42px;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        left: 8px;
    }

    .lightbox-next {
        right: 8px;
    }

    .lightbox-counter {
        bottom: 12px;
    }

}