/* =========================================================
   1) ROOT / RESET / BASE
========================================================= */
:root {
    --green-900: #0a5d35;
    --green-800: #0d7a45;
    --green-700: #11a15a;
    --green-600: #20b36a;
    --mint-100: #eaf7f0;
    --line-200: #dfe7e3;
    --dark-900: #1f2a24;
    --text-800: #24312b;
    --text-500: #5d6d65;
    --bg-soft: #f5f8f6;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: var(--text-800);
    background: #fff;
}

h1, h2, h3, h4 {
    font-family: "Inter", sans-serif;
    font-weight: 700;
    letter-spacing: 0;
}

/* =========================================================
   2) HEADER
========================================================= */
.top-header {
    border-bottom: 1px solid #dcdcdc;
}

    .top-header .container {
        padding-left: 0;
        padding-right: 0;
    }

.header-row {
    min-height: 138px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

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

.brand-logo {
    width: auto;
    display: block;
    max-width:360px;
}

/* desktop top langs (kullanıyorsan) */
.top-langs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 6px;
}

.lang-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid #b8d8c7;
    border-radius: 6px;
    background: #fff;
    color: var(--green-800);
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

    .lang-link img {
        width: 16px;
        height: 12px;
        object-fit: cover;
        border-radius: 2px;
    }

    .lang-link:hover,
    .lang-link.active {
        border-color: var(--green-700);
        color: var(--green-700);
        background: #f3fbf6;
    }

.header-meta {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.meta-item {
    min-height: 110px;
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid #d9d9d9;
}

    .meta-item strong {
        font-size: 14px;
        line-height: 1.1;
        font-weight: 700;
        color: #12202b;
    }

    .meta-item span {
        font-size: 16px;
        line-height: 1.2;
        color: #2d3b47;
    }

.meta-badge img {
    height: 110px;
    width: auto;
}

/* =========================================================
   3) NAV / MENU
========================================================= */
.mkdf-main-menu {
    background: #fff;
}

    .mkdf-main-menu .container {
        padding-left: 0;
        padding-right: 0;
    }

.nav-wrap {
    display: flex;
    align-items: center;
    min-height: 58px;
}

.mkdf-main-menu > .container > ul {
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2px;
    min-height: 58px;
    justify-content: flex-start;
}

.mkdf-main-menu .menu-item {
    position: relative;
}

    .mkdf-main-menu .menu-item > a {
        position: relative;
        display: block;
        text-decoration: none;
        color: #2e3b45;
        font-size: 14px;
        font-weight: 600;
        padding: 18px 14px;
        transition: color .2s ease;
    }

        .mkdf-main-menu .menu-item > a::after {
            content: "";
            position: absolute;
            left: 14px;
            right: 14px;
            bottom: -1px;
            height: 3px;
            background: var(--green-700);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .2s ease;
        }

    .mkdf-main-menu .menu-item:hover > a {
        color: var(--green-800);
    }

        .mkdf-main-menu .menu-item:hover > a::after {
            transform: scaleX(1);
        }

.mkdf-main-menu .item_outer {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.mkdf-main-menu .mkdf-menu-arrow {
    font-size: 12px;
    color: #60707c;
    margin-left: 2px;
    line-height: 1;
}

/* dropdown */
.mkdf-main-menu .second {
    position: absolute;
    left: 0;
    top: 100%;
    min-width: 250px;
    background: #f4f8f5;
    border: 1px solid var(--line-200);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
    z-index: 1000;
}

    .mkdf-main-menu .second .inner ul {
        list-style: none;
        margin: 0;
        padding: 8px 0;
    }

    .mkdf-main-menu .second .inner li a {
        display: block;
        padding: 10px 16px;
        color: #2e3b45;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
    }

        .mkdf-main-menu .second .inner li a:hover {
            background: var(--mint-100);
            color: var(--green-800);
        }

.mkdf-main-menu .menu-item:hover > .second {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* desktop language item right side */
.mkdf-main-menu .desktop-lang {
    margin-left: auto !important;
}

    .mkdf-main-menu .desktop-lang .second {
        left: auto;
        right: 0;
        min-width: 190px;
    }

/* =========================================================
   4) MOBILE CONTROLS (LANG + MENU BUTTON)
========================================================= */
.mobile-controls {
    display: none;
}

.lang-flag {
    width: 16px;
    height: 12px;
    object-fit: cover;
    border-radius: 2px;
    margin-right: 6px;
    vertical-align: -1px;
}

.menu-toggle {
    display: none;
    border: 1px solid #dbe4ea;
    background: #fff;
    color: #1f2f3a;
    border-radius: 6px;
    padding: 8px 12px;
    font-weight: 700;
    line-height: 1;
}

    .menu-toggle i {
        font-size: 14px;
        line-height: 1;
    }

/* nav içindeki toggle varsa gizli kalsın */
.mkdf-main-menu .nav-wrap > .menu-toggle {
    display: none !important;
}

/* mobile language button */
.mobile-lang {
    position: relative;
}

    .mobile-lang > a,
    .mobile-lang > a .item_text,
    .mobile-lang > a .mkdf-menu-arrow {
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        color: var(--green-800);
        border-color: #b8d8c7;
    }

    .mobile-lang > a {
        display: inline-flex;
        align-items: center;
        border: 1px solid #b8d8c7;
        background: #fff;
        border-radius: 6px;
        padding: 7px 10px;
    }

        .mobile-lang > a:hover {
            border-color: var(--green-700);
            color: var(--green-700);
            background: #f3fbf6;
        }

    .mobile-lang .second {
        position: absolute;
        right: 0;
        top: calc(100% + 6px);
        left: auto;
        min-width: 180px;
        background: #fff;
        border: 1px solid #e6eaee;
        box-shadow: 0 14px 24px rgba(0,0,0,.08);
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        z-index: 1100;
    }

    .mobile-lang.open > .second {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-lang .second .inner ul {
        list-style: none;
        margin: 0;
        padding: 8px 0;
    }

    .mobile-lang .second .inner li a {
        display: block;
        padding: 10px 14px;
        font-family: "Inter", sans-serif;
        font-size: 14px;
        font-weight: 600;
        color: #2e3b45;
        text-decoration: none;
        line-height: 1.25;
    }

        .mobile-lang .second .inner li a:hover {
            background: #f5f9f7;
            color: #0a7a44;
        }

/* =========================================================
   5) HERO / SLIDER
========================================================= */
.hero-slider {
    position: relative;
    overflow: hidden;
    min-height: 520px;
    background: #eef4f1;
}

.hero-track {
    position: relative;
    min-height: 520px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity .45s ease;
}

    .hero-slide.is-active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

/* Resim katmanı */
.hero-link,
.hero-link picture,
.hero-link img {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-link {
    position: absolute;
    inset: 0;
    z-index: 1;
}

    .hero-link img {
        width: 100%;
        height: 100%;
        min-height: 520px;
        object-fit: cover;
    }

/* Yazı katmanı - resmin üstüne */

.hero-slider {
    position: relative;
    overflow: hidden;
}

.hero-track {
    position: relative;
    min-height: 620px;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.8s ease, visibility 0s linear 0.8s;
}

    .hero-slide.is-active {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        z-index: 2;
        transition: opacity 0.8s ease;
    }

    .hero-slide picture,
    .hero-slide img {
        width: 100%;
        height: 100%;
        display: block;
    }

    .hero-slide img {
        object-fit: cover;
    }

.hero-slide .container {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 72px;
}

/* Okunabilirlik için hafif beyaz katman */
.hero-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient( 90deg, rgba(8, 24, 18, 0.62) 0%, rgba(10, 32, 23, 0.42) 34%, rgba(10, 32, 23, 0.18) 58%, rgba(10, 32, 23, 0.02) 78% );
    pointer-events: none;
}
.offer-tag {
    color: #b6e94b;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.hero-panel h1 {
    color: #fff;
    font-size: clamp(44px, 5.2vw, 76px);
    line-height: .98;
    margin: 0 0 12px;
    text-shadow: 0 8px 24px rgba(0, 0, 0, .25);
}

.offer-price {
    color: #8efcc1;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
    margin: 0 0 16px;
    font-weight: 800;
    text-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.offer-list span {
    background: rgba(4, 33, 23, 0.78);
    border: 1px solid rgba(182, 233, 75, .4);
    color: #fff;
    padding: 10px 14px;
    border-radius: 999px;
    font-weight: 700;
}


.hero-slide .container {
    align-items: flex-end;
    padding-top: 70px;
    padding-bottom: 80px;
}

.hero-panel {
    margin-top: 0;
    max-width: 100%;
}

    .hero-panel h1 {
        font-size: clamp(34px, 9vw, 48px);
        line-height: 1.02;
    }

.offer-price {
    font-size: clamp(40px, 11vw, 56px);
}


.hero-panel {
    max-width: 620px;
    margin-top: 22px;
    color: #fff;
}
.hero-dots {
    display: none !important;
}
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    z-index: 5;
}

    .hero-nav.prev {
        left: 14px;
    }

    .hero-nav.next {
        right: 14px;
    }

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

    .hero-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        border: 0;
        background: rgba(255, 255, 255, 0.6);
    }

        .hero-dots .dot.is-active {
            background: var(--green-700);
        }

@media (max-width: 991px) {
    .hero-slider,
    .hero-track {
        min-height: 420px;
    }

    .hero-link img {
        min-height: 420px;
    }

    .hero-nav {
        width: 34px;
        height: 34px;
    }
}

/* =========================================================
   6) HOME SECTIONS
========================================================= */

/* =========================================================
   QUICK INFO - CORPORATE STYLE
========================================================= */
.quick-info {
    margin-top: -34px;
    position: relative;
    z-index: 3;
}

.cards-row {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 24px rgba(20, 46, 36, 0.12);
    background: #fff;
}

.info-card {
    height: 100%;
    padding: 26px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* top */
    align-items: center; /* icon/yazı yatay ortalı kalsın */
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 auto 14px; /* ortala */
    font-size: 22px; /* icon büyüklüğü */
    border: 1px solid rgba(13, 122, 69, 0.22);
}

.info-card {
    text-align: center; /* başlık ve metin de ortalı olur */
}
@media (max-width: 767px) {
    .info-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }
}
/* Logo paletine uygun ama yumuşak tonlar */
.card-a {
    background: var(--green-600);
    color: #e6eaee;
}

.card-b {
    background: var(--green-900);
    color: #f3fbf6;
}

.card-c {
    background: var(--bg-soft);
    color: #1f3b2d;
}

    .card-a .info-icon,
    .card-b .info-icon,
    .card-c .info-icon {
        background: #ffffff;
        color: #0d7a45;
    }

.info-card h3 {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0;
}

.info-card p {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.45;
}

/* Vision yazısı daha sakin dursun */
.card-b p {
    font-weight: 500;
    line-height: 1.6;
    max-width: 32ch;
}

/* Mobil */
@media (max-width: 991px) {
    .quick-info {
        margin-top: -18px;
    }

    .info-card {
        min-height: 150px;
        padding: 20px;
    }

        .info-card h3 {
            font-size: 28px;
        }

        .info-card p {
            font-size: 27px;
            line-height: 1.4;
        }

    .card-a,
    .card-b {
        border-right: 0;
        border-bottom: 1px solid #e3ece7;
    }
}

@media (max-width: 767px) {
    .info-icon {
        width: 34px;
        height: 34px;
        font-size: 14px;
        margin-bottom: 10px;
    }

    .info-card h3 {
        font-size: 24px;
    }

    .info-card p {
        font-size: 22px;
    }
}



.section-space {
    padding: 30px 0;
}

.section-narrow {
    max-width: 980px;
}

.video-box {
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 7;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}

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

/* =========================================================
   SECTION COMMON (BUNLAR KALABİLİR)
========================================================= */
.section-title {
    margin-top: 40px;
    margin-bottom: 12px;
    font-size: 2rem;
}

.section-desc {
    color: var(--text-500);
    max-width: 640px;
    margin: 0 auto;
}

/* =========================================================
   PATIENT CARDS
========================================================= */
.patient-card {
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 25px rgba(24, 40, 51, 0.1);
}

    .patient-card > img {
        width: 100%;
        aspect-ratio: 16 / 11;
        object-fit: cover;
        display: block;
    }

    .patient-card a {
        display: block;
        text-align: center;
        padding: 12px;
        text-decoration: none;
        font-weight: 800;
        color: #fff;
        background: linear-gradient(90deg, var(--green-800), var(--green-700));
    }

/* =========================================================
   BEFORE / AFTER (jQuery plugin container)
========================================================= */
.ba-widget {
    width: 100%;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #eef2f4;
}

    .ba-widget img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* Plugin'in çizgisi ve handle'ı için temel görünüm düzeltmesi */
.beforeAfter-wrap .beforeAfter-separator {
    background: #ffffff !important;
}

    .beforeAfter-wrap .beforeAfter-separator::before {
        background: #ffffff !important;
        border: 1px solid #d2d8dd !important;
    }/* =========================================================
   SERVICES STRIP (TEK VE NİHAİ BLOK)
========================================================= */
.services-strip {
    background: #045f31;
    color: #d8efdf;
    padding: 86px 0 94px;
}

    .services-strip .row {
        --bs-gutter-x: 2rem;
        --bs-gutter-y: 3.4rem;
    }

.service-card {
    text-align: center;
    max-width: 390px;
    margin: 0 auto;
    color: #eaf6ef;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-icon {
    font-size: 60px;
    color: #b7d72a;
    margin-bottom: 18px;
    line-height: 1;
}
.service-card p.service-tag {
    color: #b7d72a;
}
.service-tag {
    margin: 0 0 8px;
    font-size: 34px;
    font-weight: 700;
    color: #b7d72a;
    line-height: 1.25;
}

.service-card h4 {
    margin: 0 0 10px;
    font-size: 20px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.2;
}

.service-card p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #e0efe6;
    font-weight: 500;
}

/* =========================================================
   SERVICES RESPONSIVE
========================================================= */
@media (max-width: 991px) {
    .services-strip {
        padding: 62px 0 66px;
    }

        .services-strip .row {
            --bs-gutter-x: 1rem;
            --bs-gutter-y: 2rem;
        }

    .service-icon {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .service-tag {
        font-size: 30px;
    }

    .service-card h4 {
        font-size: 34px;
    }

    .service-card p {
        font-size: 16px;
        line-height: 1.55;
    }
}

@media (max-width: 575px) {
    .service-tag {
        font-size: 26px;
    }

    .service-card h4 {
        font-size: 30px;
    }

    .service-card p {
        font-size: 12px;
        line-height: 1.45;
    }
}
.score-wrap {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.score-stars {
    color: #24a25f;
    letter-spacing: 2px;
    font-size: 1.4rem;
}

.score-value {
    font-family: "Oswald", sans-serif;
    font-size: 4rem;
    color: #1f2a30;
    line-height: 1;
}

.stats-band {
    padding: 50px 0;
    background: linear-gradient(90deg, #0f8b4f, #18a45f);
    color: #fff;
}

.stat-number {
    font-family: "Oswald", sans-serif;
    font-size: 2.2rem;
}

.stat-label {
    font-size: 0.95rem;
    font-weight: 700;
}

/* =========================================================
   7) CTA / FOOTER
========================================================= */
.cta-band {
    background: #15a35c;
    padding: 18px 0;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

    .cta-content p {
        margin: 0;
        font-weight: 700;
        color: #eefaf3;
    }

.site-footer {
    background: var(--dark-900);
    color: #afbac3;
    padding: 56px 0;
}

.brand-footer .brand-name {
    color: #d6df6b;
}

.brand-footer .brand-sub {
    color: #7d8a95;
}

.footer-copy {
    margin-top: 14px;
    max-width: 360px;
    font-size: 0.92rem;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        margin-bottom: 8px;
    }

.footer-form input,
.footer-form textarea {
    width: 100%;
    background: #2a3137;
    border: 1px solid #3a444c;
    color: #d6dee5;
    padding: 10px 12px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.footer-form button {
    border: 0;
    background: var(--lime-500);
    color: #29361a;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 800;
}

/* =========================================================
   8) RESPONSIVE
========================================================= */
@media (max-width: 1200px) {
    .header-row {
        min-height: 100px;
    }

    .meta-item {
        padding: 0 16px;
    }

        .meta-item strong,
        .meta-item span {
            font-size: 13px;
        }
}

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

    .header-row {
        min-height: 84px;
    }

    .brand-logo {
        max-width: 186px;
    }

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

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }

    .nav-wrap {
        display: block;
        min-height: auto;
        padding: 0;
    }

    .mkdf-main-menu {
        display: block !important;
    }

        .mkdf-main-menu > .container > ul {
            display: none;
            width: 100%;
            margin-top: 0;
            padding: 8px 0;
            border-top: 1px solid #e6eaee;
        }

        .mkdf-main-menu.menu-open > .container > ul {
            display: block !important;
        }

        .mkdf-main-menu .menu-item {
            width: 100%;
        }

            .mkdf-main-menu .menu-item > a {
                padding: 12px 6px;
            }

        .mkdf-main-menu .second {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            border: 0;
            box-shadow: none;
            display: none;
            min-width: 0;
        }

        .mkdf-main-menu .menu-item.open > .second {
            display: block;
            padding-left: 10px;
        }

        .mkdf-main-menu .desktop-lang {
            display: none;
        }

    .hero {
        min-height: 430px;
    }


}

@media (max-width: 767px) {
    .info-card {
        min-height: 140px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .section-space {
        padding: 54px 0;
    }
}
/* =========================================================
   HOME TREATMENTS SECTION
========================================================= */
.home-treatments {
    background: #f6f9f7;
    padding-bottom: 72px;
}

.treatments-head {
    margin-bottom: 22px;
}

.treatments-grid {
    margin-top: 8px;
}

.treatment-card {
    display: block;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #dfe7e3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(20, 46, 36, 0.08);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

    .treatment-card:hover {
        transform: translateY(-3px);
        border-color: #b8d8c7;
        box-shadow: 0 12px 26px rgba(20, 46, 36, 0.12);
    }

.treatment-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #edf4ef 0%, #e2ede7 100%);
    border-bottom: 1px solid #e4ece8;
}

.treatment-card h3 {
    margin: 0;
    padding: 16px 14px;
    font-size: 20px;
    line-height: 1.3;
    color: #1f3b2d;
    font-weight: 700;
    text-align: center;
}

@media (max-width: 991px) {
    .home-treatments {
        padding-top: 56px;
        padding-bottom: 56px;
    }

    .treatment-card h3 {
        font-size: 26px;
        padding: 14px 12px;
    }
}

@media (max-width: 575px) {
    .treatment-card h3 {
        font-size: 22px;
        line-height: 1.25;
    }
}
.treatment-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #edf4ef;
}

    .treatment-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.site-footer {
    background: #0f2f2d;
    color: #ffffff;
    padding: 70px 0 24px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
    gap: 44px;
}

.footer-logo {
    max-width: 190px;
    height: auto;
    margin-bottom: 22px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 360px;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #ffffff;
}

.footer-links,
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-links li,
    .footer-list li {
        margin-bottom: 13px;
        color: rgba(255, 255, 255, 0.74);
        font-size: 15px;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.74);
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-links a:hover {
            color: #ffffff;
        }

    .footer-list i {
        width: 22px;
        color: #5fd0a5;
    }

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

    .footer-social a {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        color: #ffffff;
        text-decoration: none;
        transition: all 0.2s ease;
    }

        .footer-social a:hover {
            background: #5fd0a5;
            color: #0f2f2d;
        }

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

    .footer-form input,
    .footer-form textarea {
        width: 100%;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.08);
        color: #ffffff;
        border-radius: 6px;
        padding: 12px 14px;
        outline: none;
    }

        .footer-form input::placeholder,
        .footer-form textarea::placeholder {
            color: rgba(255, 255, 255, 0.58);
        }

    .footer-form button {
        border: none;
        border-radius: 6px;
        background: #5fd0a5;
        color: #0f2f2d;
        font-weight: 700;
        padding: 12px 16px;
    }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 46px;
    padding-top: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 14px;
}

    .footer-bottom p {
        margin: 0;
    }

.footer-bottom-links {
    display: flex;
    gap: 18px;
}

    .footer-bottom-links a {
        color: rgba(255, 255, 255, 0.62);
        text-decoration: none;
    }

        .footer-bottom-links a:hover {
            color: #ffffff;
        }

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

@media (max-width: 575px) {
    .site-footer {
        padding-top: 48px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

.footer-logo {
    border-radius: 12px;
}

html,
body {
    overflow-x: hidden;
}

.reviews-section {
    background: #f7faf9;
}

.reviews-head {
    max-width: 680px;
    margin: 0 auto 38px;
}

.section-kicker {
    color: #0d7a45;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.review-card {
    background: #ffffff;
    border: 1px solid #e8eeee;
    border-radius: 8px;
    padding: 24px;
    min-height: 285px;
    box-shadow: 0 10px 28px rgba(15, 47, 45, 0.06);
}

.review-top {
    display: grid;
    grid-template-columns: 44px 1fr 22px;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.review-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #6d60c9;
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

    .review-letter.orange {
        background: #f15a24;
    }

.review-top h3 {
    font-size: 16px;
    font-weight: 800;
    margin: 0;
    color: #111827;
}

.review-top p {
    font-size: 14px;
    color: #7b8794;
    margin: 2px 0 0;
}

.review-google {
    width: 20px;
    height: 20px;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: #fbbc04;
    margin-bottom: 14px;
    font-size: 16px;
}

    .review-stars .fa-circle-check {
        color: #4285f4;
        font-size: 14px;
        margin-left: 4px;
    }

.review-text {
    color: #111827;
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-card.is-open .review-text {
    display: block;
}

.review-more {
    border: none;
    background: transparent;
    color: #8a8f98;
    padding: 0;
    font-size: 15px;
}

    .review-more:hover {
        color: #0d7a45;
    }

@media (max-width: 1199px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        padding: 20px;
    }
}
.reviews-section {
    background: #f7faf9;
    overflow-x: hidden;
}

.review-card {
    will-change: transform, opacity;
}

.article-middle {
    background: #f6f9f8;
}

.article-hero-simple {
    background: linear-gradient(135deg, #0f2f2d 0%, #0d7a45 100%);
    color: #ffffff;
}

    .article-hero-simple .breadcrumb a {
        color: rgba(255, 255, 255, 0.78);
    }

    .article-hero-simple .breadcrumb-item.active,
    .article-hero-simple .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.68);
    }

    .article-hero-simple .badge {
        border: 1px solid rgba(255, 255, 255, 0.22);
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }

    .article-hero-simple .lead {
        color: rgba(255, 255, 255, 0.82);
    }

.article-hero-img {
    max-height: 340px;
    width: 100%;
    object-fit: cover;
}

.article-card,
.article-sidebar-card {
    border-color: #e3ece9 !important;
    border-radius: 8px !important;
}

    .article-card h2,
    .article-sidebar-card h4 {
        color: #0f2f2d;
    }

    .article-card p {
        line-height: 1.85;
    }

.article-quote {
    background: #f1faf6;
    border-color: #0d7a45 !important;
    color: #163b36;
}

.article-feature-card {
    border-color: #e2ede9 !important;
    border-radius: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .article-feature-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(15, 47, 45, 0.08);
    }

.article-sidebar-card h4 {
    position: relative;
    padding-bottom: 12px;
}

    .article-sidebar-card h4::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 42px;
        height: 3px;
        border-radius: 3px;
        background: #0d7a45;
    }

.article-sidebar-card .list-group-item {
    border-color: #edf2f0;
}

.article-sidebar-card a:hover {
    color: #0d7a45 !important;
}

.article-recent-img {
    width: 80px;
    height: 64px;
    object-fit: cover;
}

.article-tags .badge {
    border: 1px solid #e1e8e5;
    background: #f5f8f7;
    color: #4f5d68;
    font-weight: 600;
}

    .article-tags .badge:hover {
        background: #0d7a45;
        color: #ffffff;
    }

@media (max-width: 575px) {
    .article-card {
        padding: 24px !important;
    }

    .article-hero-simple .display-5 {
        font-size: 34px;
    }

    .article-feature-card {
        padding: 18px !important;
    }
}

.article-hero-simple {
    min-height: 300px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: #ffffff;
}

    .article-hero-simple .container {
        position: relative;
        z-index: 2;
    }

    .article-hero-simple .breadcrumb a {
        color: rgba(255, 255, 255, 0.82);
    }

    .article-hero-simple .breadcrumb-item.active,
    .article-hero-simple .breadcrumb-item + .breadcrumb-item::before {
        color: rgba(255, 255, 255, 0.7);
    }

    .article-hero-simple .badge {
        border: 1px solid rgba(255, 255, 255, 0.24);
        background: rgba(255, 255, 255, 0.12);
        color: #ffffff;
    }

    .article-hero-simple .lead {
        max-width: 720px;
        color: rgba(255, 255, 255, 0.88);
    }

@media (max-width: 767px) {
    .article-hero-simple {
        min-height: 340px;
        background-position: center;
    }

        .article-hero-simple .display-5 {
            font-size: 34px;
        }
}
.article-hero-simple {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    color: #ffffff;
    background-image: var(--hero-bg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

    .article-hero-simple::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient( 90deg, rgba(15, 47, 45, 0.92) 0%, rgba(15, 47, 45, 0.72) 44%, rgba(15, 47, 45, 0.18) 100% );
        z-index: 1;
    }

    .article-hero-simple .container {
        position: relative;
        z-index: 2;
    }

.team-page {
    background: #f6f9f8;
}

.team-section {
    background: #f6f9f8;
}

.team-card {
    height: 100%;
    background: #ffffff;
    border: 1px solid #e3ece9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 47, 45, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .team-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 42px rgba(15, 47, 45, 0.11);
    }

.team-img {
    display: block;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: #eef5f3;
}

    .team-img img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center top;
    }
.team-info {
    display: block;
    padding: 20px;
    text-align: center;
    background: #ffffff;
}

    .team-info h3 {
        margin: 0 0 7px;
        color: #0f2f2d;
        font-size: 18px;
        font-weight: 800;
    }

        .team-info h3 a {
            color: inherit;
            text-decoration: none;
        }

    .team-info p {
        margin: 0;
        color: #0d7a45;
        font-size: 15px;
        font-weight: 700;
    }


.post-section {
    background: #f6f9f8;
}

.post-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e3ece9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 14px 34px rgba(15, 47, 45, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .post-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 42px rgba(15, 47, 45, 0.11);
    }

.post-img {
    display: block;
    width: 100%;
    flex-shrink: 0;
    overflow: hidden;
    background: #eef5f3;
}

    .post-img img {
        width: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
    }

.post-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 22px;
}

    .post-info h3 {
        margin: 0 0 10px;
        color: #0f2f2d;
        font-size: 19px;
        line-height: 1.35;
        font-weight: 800;
    }

        .post-info h3 a {
            color: inherit;
            text-decoration: none;
        }

            .post-info h3 a:hover {
                color: #0d7a45;
            }

    .post-info p {
        margin: 0 0 18px;
        color: #66737d;
        font-size: 15px;
        line-height: 1.65;
    }

.post-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0d7a45;
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

    .post-link:hover {
        color: #0f2f2d;
    }

    .post-link i {
        font-size: 13px;
    }

@media (max-width: 575px) {
    .post-img {
        height: 230px;
    }

    .post-info {
        padding: 20px;
    }
}

.treatment-mobile-img,
.treatment-side-img {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.treatment-mobile-img {
    max-height: 320px;
}

.treatment-side-img {
    max-height: 420px;
}