/* =========================================================
   ROOT ART CLINIC — TEDAVİ SÜRECİ SAYFASI
   Ana rootclinic.css temasına bağlıdır.
   Renkler ve genel site dili değiştirilmez.
========================================================= */

.active-link {
    color: var(--blue) !important;
}

/* HERO */
.treatment-hero {
    position: relative;
    min-height: 760px;
    padding: 150px 0 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(25, 118, 210, .08), transparent 30%),
        linear-gradient(135deg, #fff 0%, #f5faff 100%);
}

.treatment-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 80px;
    align-items: center;
}

.treatment-hero-content {
    max-width: 720px;
}

.treatment-hero h1 {
    margin: 25px 0;
}

.treatment-hero-content>p {
    max-width: 650px;
    font-size: 18px;
    color: var(--muted);
}

.treatment-hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 34px;
}

.treatment-quick-info {
    display: flex;
    gap: 42px;
    margin-top: 50px;
}

.treatment-quick-info div {
    display: flex;
    flex-direction: column;
}

.treatment-quick-info strong {
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    color: var(--navy);
}

.treatment-quick-info span {
    font-size: 12px;
    color: var(--muted);
}

.treatment-hero-visual {
    position: relative;
}

.hero-treatment-image {
    position: relative;
    height: 590px;
    overflow: hidden;
    border-radius: 30px;
    box-shadow:
        0 30px 80px rgba(18, 48, 74, .14),
        0 10px 30px rgba(25, 118, 210, .07);
}

.hero-treatment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

.hero-treatment-image:hover img {
    transform: scale(1.025);
}

.hero-treatment-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg,
            rgba(18, 48, 74, 0) 48%,
            rgba(18, 48, 74, .18) 100%);
}

.hero-image-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(12px);
    color: var(--navy);
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(18, 48, 74, .12);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px var(--blue-light);
}

.treatment-hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.treatment-hero-orb-one {
    width: 440px;
    height: 440px;
    right: -190px;
    top: 80px;
    background: rgba(25, 118, 210, .055);
}

.treatment-hero-orb-two {
    width: 180px;
    height: 180px;
    left: -90px;
    bottom: 30px;
    background: rgba(25, 118, 210, .04);
}

/* OVERVIEW */
.treatment-overview {
    background: #fff;
}

.treatment-heading {
    max-width: 760px;
}

.step-map {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
    margin-top: 65px;
}

.step-map a {
    position: relative;
    min-height: 115px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #f8fbfe;
    transition: .3s ease;
}

.step-map a:hover {
    transform: translateY(-4px);
    border-color: rgba(25, 118, 210, .35);
    background: #fff;
    box-shadow: 0 15px 40px rgba(30, 80, 120, .08);
}

.step-map span {
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.step-map b {
    color: var(--navy);
    font-size: 13px;
    line-height: 1.3;
}

/* STEP SECTIONS */
.treatment-step {
    position: relative;
    overflow: hidden;
    background: #fff;
}

.treatment-step-alt {
    background: var(--bg);
}

.step-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.step-layout.reverse .step-image-wrap {
    order: 2;
}

.step-layout.reverse .step-content {
    order: 1;
}

.step-image-wrap {
    position: relative;
    min-width: 0;
}

.step-image-wrap img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    object-position: center;
    border-radius: 28px;
    box-shadow: 0 25px 65px rgba(18, 48, 74, .11);
    transition: transform .8s cubic-bezier(.22, .61, .36, 1);
}

.step-image-wrap:hover img {
    transform: scale(1.018);
}

.step-number {
    position: absolute;
    z-index: 4;
    top: -25px;
    left: -25px;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--blue);
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    box-shadow: 0 15px 35px rgba(18, 48, 74, .13);
    border: 1px solid var(--border);
}

.image-caption {
    position: absolute;
    z-index: 4;
    left: 22px;
    bottom: 22px;
    padding: 9px 13px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .91);
    backdrop-filter: blur(10px);
    color: var(--navy);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .13em;
}

.step-content {
    min-width: 0;
}

.step-content h2 {
    margin: 22px 0;
}

.step-lead {
    max-width: 620px;
    font-size: 18px;
    line-height: 1.7;
}

.info-list {
    display: grid;
    gap: 0;
    margin-top: 35px;
    border-top: 1px solid var(--border);
}

.info-list>div {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
}

.info-list span {
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.info-list p {
    font-size: 14px;
}

.step-note {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 30px;
    padding: 20px;
    border-left: 3px solid var(--blue);
    background: var(--blue-light);
}

.step-note strong {
    color: var(--navy);
    font-size: 14px;
}

.step-note span {
    color: var(--muted);
    font-size: 13px;
}

/* DETAIL CARDS */
.detail-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 21px;
    margin-top: 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 10px 35px rgba(30, 80, 120, .045);
}

.detail-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 18px;
    font-weight: 700;
}

.detail-card strong {
    display: block;
    margin-bottom: 4px;
    color: var(--navy);
}

.detail-card p {
    font-size: 13px;
}

/* NUMBERED POINTS */
.numbered-points {
    display: grid;
    gap: 13px;
    margin-top: 35px;
}

.numbered-points>div {
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 17px 18px;
    border: 1px solid var(--border);
    border-radius: 13px;
    background: #fff;
}

.numbered-points b {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 11px;
}

.numbered-points span {
    color: var(--text);
    font-size: 14px;
}

/* ANESTEZİ */
.anesthesia-box {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-top: 35px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
}

.anesthesia-mark {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 22px;
    font-weight: 700;
}

.anesthesia-box strong {
    color: var(--navy);
}

.anesthesia-box p {
    margin-top: 5px;
    font-size: 13px;
}

.small-disclaimer {
    margin-top: 20px;
    font-size: 12px;
}

/* DONÖR */
.split-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 35px;
}

.split-info>div {
    padding: 22px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
}

.split-info strong {
    display: block;
    margin-bottom: 7px;
    color: var(--navy);
}

.split-info p {
    font-size: 13px;
}

/* GREFT */
.greft-card {
    margin-top: 35px;
    padding: 28px;
    border-radius: 20px;
    background: var(--navy);
    box-shadow: 0 20px 50px rgba(18, 48, 74, .13);
}

.greft-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
    color: #d9efff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
}

.greft-card p {
    margin-top: 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 14px;
}

/* FUE */
.fue-process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 35px;
}

.fue-process>div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
}

.fue-process span {
    display: block;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
}

.fue-process strong {
    display: block;
    color: var(--navy);
    font-size: 14px;
}

.fue-process p {
    margin-top: 5px;
    font-size: 12px;
}

/* IMPLANTASYON */
.implant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 35px;
}

.implant-grid>div {
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: #fff;
}

.implant-grid span {
    display: block;
    color: var(--blue);
    font-size: 11px;
    font-weight: 800;
    margin-bottom: 14px;
}

.implant-grid strong {
    display: block;
    color: var(--navy);
    margin-bottom: 5px;
}

.implant-grid p {
    font-size: 12px;
}

/* KONTROL */
.check-panel {
    margin-top: 35px;
    border-top: 1px solid var(--border);
}

.check-panel>div {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.check-panel span {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 800;
    font-size: 12px;
}

.check-panel p {
    font-size: 14px;
}

/* İYİLEŞME */
.recovery-timeline {
    position: relative;
    display: grid;
    gap: 13px;
    margin-top: 35px;
}

.recovery-timeline>div {
    display: grid;
    grid-template-columns: 105px 1fr;
    gap: 15px;
    padding: 17px 18px;
    border-left: 3px solid var(--blue);
    background: #fff;
    border-radius: 0 12px 12px 0;
}

.recovery-timeline strong {
    color: var(--navy);
    font-size: 13px;
}

.recovery-timeline span {
    color: var(--muted);
    font-size: 13px;
}

/* SUMMARY */
.treatment-summary {
    background: #fff;
}

.summary-card {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: center;
    padding: 65px;
    border: 1px solid var(--border);
    border-radius: 28px;
    background:
        radial-gradient(circle at 100% 0, rgba(25, 118, 210, .07), transparent 38%),
        #f8fbfe;
}

.summary-card h2 {
    margin: 20px 0;
}

.summary-card p {
    max-width: 550px;
    font-size: 15px;
}

.summary-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.summary-flow>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.summary-flow span {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--border);
    color: var(--blue);
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 10px 25px rgba(30, 80, 120, .06);
}

.summary-flow b {
    color: var(--navy);
    font-size: 12px;
}

.summary-flow i {
    width: 35px;
    height: 1px;
    background: var(--border);
    margin-bottom: 29px;
}

/* AFTERCARE */
.treatment-aftercare {
    background: var(--bg);
}

.treatment-aftercare .aftercare-grid {
    align-items: center;
}

/* CTA */
.treatment-cta {
    background: var(--blue);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .treatment-hero-grid {
        gap: 45px;
    }

    .step-layout {
        gap: 55px;
    }

    .step-image-wrap img {
        height: 500px;
    }

    .summary-card {
        gap: 40px;
        padding: 50px;
    }
}

@media (max-width: 900px) {
    .treatment-hero {
        padding-top: 125px;
    }

    .treatment-hero-grid,
    .step-layout,
    .summary-card {
        grid-template-columns: 1fr;
    }

    .treatment-hero-content {
        max-width: none;
    }

    .hero-treatment-image {
        height: 500px;
    }

    .step-layout.reverse .step-image-wrap,
    .step-layout.reverse .step-content {
        order: initial;
    }

    .step-image-wrap img {
        height: 470px;
    }

    .step-number {
        left: 15px;
        top: -18px;
        width: 68px;
        height: 68px;
        font-size: 17px;
    }

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

    .summary-flow {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .treatment-hero {
        min-height: auto;
        padding: 110px 0 70px;
    }

    .treatment-hero h1 {
        font-size: 45px;
    }

    .treatment-hero-content>p {
        font-size: 16px;
    }

    .treatment-hero-actions {
        flex-direction: column;
    }

    .treatment-quick-info {
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 35px;
    }

    .hero-treatment-image {
        height: 390px;
        border-radius: 20px;
    }

    .hero-image-badge {
        left: 14px;
        right: 14px;
        bottom: 14px;
        justify-content: center;
        font-size: 11px;
    }

    .step-map {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 40px;
    }

    .step-map a {
        min-height: 92px;
        padding: 14px;
    }

    .step-map b {
        font-size: 12px;
    }

    .step-layout {
        gap: 42px;
    }

    .step-image-wrap img {
        height: 330px;
        border-radius: 20px;
    }

    .step-number {
        width: 58px;
        height: 58px;
        left: 10px;
        top: -14px;
        font-size: 15px;
    }

    .image-caption {
        left: 12px;
        bottom: 12px;
        font-size: 8px;
        padding: 8px 10px;
    }

    .step-lead {
        font-size: 16px;
    }

    .split-info,
    .fue-process,
    .implant-grid {
        grid-template-columns: 1fr;
    }

    .summary-card {
        padding: 30px 22px;
        border-radius: 20px;
    }

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

    .summary-flow i {
        display: none;
    }

    .summary-flow span {
        width: 55px;
        height: 55px;
    }

    .recovery-timeline>div {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .greft-card {
        padding: 22px;
    }

    .greft-top {
        flex-direction: column;
        gap: 7px;
    }

    .treatment-hero-orb-one {
        width: 260px;
        height: 260px;
        right: -150px;
    }
}

@media (prefers-reduced-motion: reduce) {

    .hero-treatment-image img,
    .step-image-wrap img {
        transition: none;
    }
}

/* HERO — görsel yerine editoryal süreç kartı */
.hero-process-card {
    position: relative;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 48px;
    border-radius: 30px;
    background:
        radial-gradient(circle at 85% 15%, rgba(25, 118, 210, .18), transparent 28%),
        linear-gradient(145deg, #12304a 0%, #174e79 58%, #1976d2 100%);
    box-shadow: 0 30px 80px rgba(18, 48, 74, .16);
}

.hero-process-card::before,
.hero-process-card::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .14);
    pointer-events: none;
}

.hero-process-card::before {
    width: 340px;
    height: 340px;
    right: -120px;
    top: -100px;
}

.hero-process-card::after {
    width: 230px;
    height: 230px;
    right: -60px;
    top: -45px;
}

.hero-process-line {
    position: absolute;
    left: 48px;
    top: 55px;
    width: 1px;
    height: 250px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .65), rgba(255, 255, 255, 0));
}

.hero-process-label {
    position: relative;
    z-index: 2;
    margin-left: 25px;
    color: #d9efff;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.hero-process-card strong {
    position: relative;
    z-index: 2;
    max-width: 470px;
    margin: 18px 0 12px;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.2;
}

.hero-process-card p {
    position: relative;
    z-index: 2;
    max-width: 480px;
    color: rgba(255, 255, 255, .72);
    font-size: 15px;
}

.hero-process-badges {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 28px;
}

.hero-process-badges span {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 999px;
    color: rgba(255, 255, 255, .85);
    background: rgba(255, 255, 255, .07);
    font-size: 10px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .hero-process-card {
        min-height: 430px;
    }
}

@media (max-width: 600px) {
    .hero-process-card {
        min-height: 360px;
        padding: 28px;
        border-radius: 20px;
    }

    .hero-process-line {
        left: 28px;
        top: 35px;
        height: 160px;
    }

    .hero-process-label {
        margin-left: 20px;
    }
}