/* =========================================================
   THERAPIST / FIND THE RIGHT THERAPIST PAGE
   Page-specific styles only.
   Shared reset, typography, colors, container and base UI
   come from base.css.
   ========================================================= */

.therapist-page {
    min-height: 100vh;
    background: #f7f4ec;
}

/* =========================
   RESULT / OVERVIEW SECTION
   ========================= */

.therapist-result {
    position: relative;
    min-height: 100vh;
    padding: 42px 0 70px;
    overflow: hidden;
}

.result-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.result-glow-one {
    top: -210px;
    right: -120px;
    background: rgba(220, 238, 229, .75);
}

.result-glow-two {
    bottom: -240px;
    left: -180px;
    background: rgba(234, 243, 237, .9);
}

.therapist-container {
    position: relative;
    z-index: 2;
}

.result-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 28px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #5f716b;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease, transform .2s ease;
}

.back-link:hover {
    color: #205446;
    transform: translateX(-3px);
}

.match-status {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 9px 13px;
    border: 1px solid rgba(47, 111, 94, .13);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    color: #205446;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(23, 55, 47, .05);
}

.status-dot,
.online-indicator span {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-radius: 50%;
    background: #3e9a70;
    box-shadow: 0 0 0 5px rgba(62, 154, 112, .12);
}

/* =========================
   QUALITY CARD
   ========================= */

.quality-card {
    display: grid;
    grid-template-columns: .78fr 1.22fr;
    min-height: 500px;
    overflow: hidden;
    border: 1px solid rgba(23, 55, 47, .10);
    border-radius: 34px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 30px 90px rgba(23, 55, 47, .12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.quality-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 500px;
    padding: 38px 44px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 15%, rgba(220, 238, 229, .18), transparent 30%),
        linear-gradient(145deg, #205446, #2f6f5e);
    color: white;
}

.quality-visual::before,
.quality-visual::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .10);
    border-radius: 50%;
    pointer-events: none;
}

.quality-visual::before {
    width: 360px;
    height: 360px;
    right: -180px;
    top: -150px;
}

.quality-visual::after {
    width: 250px;
    height: 250px;
    left: -140px;
    bottom: -130px;
}

.visual-inner {
    position: relative;
    z-index: 2;
    max-width: 420px;
}

.visual-label {
    display: inline-block;
    margin-bottom: 18px;
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 999px;
    background: rgba(255, 255, 255, .10);
    color: #dceee5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.visual-icon {
    width: 72px;
    height: 72px;
    display: grid;
    place-items: center;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 22px;
    background: rgba(255, 255, 255, .12);
    color: #dceee5;
    font-size: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.quality-visual h1 {
    max-width: 500px;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 68px);
    line-height: .98;
    letter-spacing: -.065em;
}

.quality-visual h1 em {
    color: #dceee5;
    font-style: normal;
}

.quality-visual p {
    max-width: 430px;
    margin-top: 18px;
    color: rgba(255, 255, 255, .76);
    font-size: 16px;
    line-height: 1.8;
}

.visual-stat {
    position: absolute;
    z-index: 3;
    left: 50px;
    bottom: 45px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 16px;
    background: rgba(255, 255, 255, .10);
    color: rgba(255, 255, 255, .88);
    font-size: 11px;
    font-weight: 700;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.visual-stat i {
    color: #dceee5;
}

.quality-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px clamp(30px, 5vw, 70px);
}

.profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #2f6f5e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.profile-kicker > span {
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #2f6f5e;
}

.quality-content > h2 {
    margin-top: 13px;
    color: #17372f;
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4vw, 57px);
    line-height: 1;
    letter-spacing: -.06em;
}

.quality-intro {
    max-width: 650px;
    margin-top: 20px;
    color: #536760;
    font-size: 15px;
    line-height: 1.8;
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.quality-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    border: 1px solid rgba(23, 55, 47, .08);
    border-radius: 18px;
    background: rgba(247, 244, 236, .62);
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.quality-item:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 12px 30px rgba(23, 55, 47, .08);
}

.quality-icon {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #dceee5;
    color: #205446;
    font-size: 14px;
}

.quality-item h3 {
    color: #17372f;
    font-size: 12px;
    font-weight: 800;
}

.quality-item p {
    margin-top: 3px;
    color: #718078;
    font-size: 10px;
    line-height: 1.65;
}

.profile-divider {
    width: 100%;
    height: 1px;
    margin: 27px 0 23px;
    background: rgba(23, 55, 47, .10);
}

/* =========================
   REACH OUT
   ========================= */

.contact-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.eyebrow-small {
    display: block;
    margin-bottom: 5px;
    color: #2f6f5e;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.contact-heading h2 {
    color: #17372f;
    font-family: "Manrope", sans-serif;
    font-size: 26px;
    line-height: 1.1;
    letter-spacing: -.045em;
}

.online-indicator {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #39705f;
    font-size: 11px;
    font-weight: 800;
    white-space: nowrap;
}

.contact-intro {
    margin-top: 10px;
    color: #708079;
    font-size: 12px;
    line-height: 1.65;
}

/* =========================
   CONTACT OPTIONS
   ========================= */

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.contact-card {
    position: relative;
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 11px;
    padding: 14px;
    overflow: hidden;
    border: 1px solid rgba(23, 55, 47, .10);
    border-radius: 18px;
    background: white;
    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: linear-gradient(135deg, rgba(220, 238, 229, .55), transparent);
    transition: opacity .25s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: rgba(47, 111, 94, .22);
    box-shadow: 0 15px 35px rgba(23, 55, 47, .10);
}

.contact-card:hover::before {
    opacity: 1;
}

.contact-icon,
.contact-text,
.contact-arrow {
    position: relative;
    z-index: 1;
}

.contact-icon {
    width: 39px;
    height: 39px;
    flex: 0 0 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #eaf3ed;
    color: #205446;
    font-size: 18px;
}

.contact-text {
    min-width: 0;
    display: grid;
    gap: 1px;
}

.contact-text strong {
    color: #17372f;
    font-size: 12px;
    font-weight: 800;
}

.contact-text span {
    overflow: hidden;
    color: #708079;
    font-size: 10px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.contact-arrow {
    margin-left: auto;
    color: #789087;
    font-size: 10px;
    transition: transform .2s ease;
}

.contact-card:hover .contact-arrow {
    transform: translate(2px, -2px);
}

.instagram .contact-icon {
    color: #b44b75;
}

.telegram .contact-icon {
    color: #2389c9;
}

.email .contact-icon {
    color: #8a6950;
}

/* =========================
   TRUST STRIP
   ========================= */

.trust-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border: 1px solid rgba(23, 55, 47, .08);
    border-radius: 20px;
    background: rgba(255, 255, 255, .62);
}

.trust-item > i {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: #dceee5;
    color: #205446;
    font-size: 14px;
}

.trust-item strong,
.trust-item span {
    display: block;
}

.trust-item strong {
    color: #17372f;
    font-size: 12px;
    font-weight: 800;
}

.trust-item span {
    margin-top: 2px;
    color: #718078;
    font-size: 10px;
}

/* =========================
   STORY SECTION
   ========================= */

.story {
    padding: 105px 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.story-visual {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(23, 55, 47, .14);
}

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

.story h2 {
    color: #17372f;
    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 66px);
    line-height: 1;
    letter-spacing: -.06em;
}

.story h2 span {
    color: #2f6f5e;
}

.section-label {
    color: #2f6f5e;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-weight: 800;
    margin-bottom: 14px;
}

.intro-text {
    color: #5f716b;
    font-size: 18px;
    max-width: 590px;
}

.intro-text p + p {
    margin-top: 18px;
}

/* =========================
   QUOTE
   ========================= */

.quote {
    padding: 0 0 105px;
    background: #fff;
}

.quote-box {
    padding: 65px clamp(25px, 6vw, 80px);
    border-radius: 30px;
    background: #f7f4ec;
    text-align: center;
}

.quote-box blockquote {
    max-width: 850px;
    margin: 0 auto;
    color: #17372f;
    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -.055em;
}

.quote-box cite {
    display: block;
    margin-top: 20px;
    color: #708079;
    font-size: 12px;
    font-style: normal;
}

/* =========================
   REVEAL
   ========================= */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s ease, transform .7s ease;
}

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

/* =========================================================
TESTIMONIALS
Added section — existing sections remain unchanged
========================================================= */

.testimonials-section {
padding: 105px 0 115px;
background: #f7f4ec;
position: relative;
overflow: hidden;
}

.testimonials-section::before {
content: "";
position: absolute;
width: 420px;
height: 420px;
left: -250px;
top: -180px;
border-radius: 50%;
background: rgba(220, 238, 229, .55);
filter: blur(8px);
pointer-events: none;
}

.testimonials-section .container {
position: relative;
z-index: 2;
}

/* HEADER */

.testimonials-header {
display: grid;
grid-template-columns: 1fr .65fr;
align-items: end;
gap: 70px;
margin-bottom: 48px;
}

.testimonials-header h2 {
margin-top: 8px;
color: #17372f;
font-family: "Manrope", sans-serif;
font-size: clamp(40px, 5vw, 64px);
line-height: 1;
letter-spacing: -.06em;
}

.testimonials-header h2 span {
color: #2f6f5e;
}

.testimonials-header > p {
max-width: 420px;
color: #708079;
font-size: 15px;
line-height: 1.8;
}

/* CARDS */

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

.testimonial-card {
position: relative;
min-height: 330px;
display: flex;
flex-direction: column;
padding: 28px;
border: 1px solid rgba(23, 55, 47, .10);
border-radius: 25px;
background: #ffffff;
box-shadow: 0 18px 50px rgba(23, 55, 47, .07);
transition:
transform .3s ease,
box-shadow .3s ease,
border-color .3s ease;
}

.testimonial-card:hover {
transform: translateY(-7px);
border-color: rgba(47, 111, 94, .20);
box-shadow: 0 25px 65px rgba(23, 55, 47, .12);
}

/* FEATURED CARD */

.testimonial-featured {
background: #205446;
border-color: transparent;
color: white;
transform: translateY(-10px);
box-shadow: 0 25px 65px rgba(23, 55, 47, .16);
}

.testimonial-featured:hover {
transform: translateY(-17px);
}

/* CARD TOP */

.testimonial-top {
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.testimonial-stars {
display: flex;
align-items: center;
gap: 4px;
color: #c59b55;
font-size: 12px;
}

.testimonial-quote-icon {
color: #dceee5;
font-size: 22px;
opacity: .85;
}

.testimonial-card:not(.testimonial-featured) .testimonial-quote-icon {
color: #2f6f5e;
}

/* TEXT */

.testimonial-text {
margin-top: 28px;
color: #405950;
font-family: "Manrope", sans-serif;
font-size: 18px;
font-weight: 600;
line-height: 1.65;
letter-spacing: -.02em;
}

.testimonial-featured .testimonial-text {
color: rgba(255, 255, 255, .90);
}

/* AUTHOR */

.testimonial-author {
display: flex;
align-items: center;
gap: 12px;
margin-top: auto;
padding-top: 28px;
}

.testimonial-avatar {
width: 43px;
height: 43px;
flex: 0 0 43px;
display: grid;
place-items: center;
border-radius: 50%;
background: #dceee5;
color: #205446;
font-family: "Manrope", sans-serif;
font-size: 14px;
font-weight: 800;
}

.testimonial-featured .testimonial-avatar {
background: rgba(255, 255, 255, .14);
color: #dceee5;
border: 1px solid rgba(255, 255, 255, .16);
}

.testimonial-author strong,
.testimonial-author span {
display: block;
}

.testimonial-author strong {
color: #17372f;
font-size: 12px;
font-weight: 800;
}

.testimonial-author span {
margin-top: 2px;
color: #7a8983;
font-size: 10px;
}

.testimonial-featured .testimonial-author strong {
color: white;
}

.testimonial-featured .testimonial-author span {
color: rgba(255, 255, 255, .58);
}

/* PRIVACY NOTE */

.testimonials-note {
display: flex;
align-items: center;
justify-content: center;
gap: 9px;
margin-top: 28px;
color: #718078;
font-size: 11px;
font-weight: 600;
}

.testimonials-note i {
color: #2f6f5e;
font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 900px) {

.testimonials-header {
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonials-header > p {
    max-width: 600px;
}

.testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 650px;
    margin: 0 auto;
}

.testimonial-featured {
    transform: none;
}

.testimonial-featured:hover {
    transform: translateY(-7px);
}

}

@media (max-width: 600px) {

.testimonials-section {
    padding: 80px 0 85px;
}

.testimonials-header {
    margin-bottom: 34px;
}

.testimonials-header h2 {
    font-size: clamp(38px, 11vw, 52px);
}

.testimonials-header > p {
    font-size: 14px;
}

.testimonial-card {
    min-height: 300px;
    padding: 23px;
    border-radius: 22px;
}

.testimonial-text {
    margin-top: 23px;
    font-size: 16px;
    line-height: 1.65;
}

.testimonial-author {
    padding-top: 23px;
}

.testimonials-note {
    align-items: flex-start;
    text-align: center;
    line-height: 1.6;
}

}

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

.testimonial-card {
    transition: none;
}

}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1000px) {
    .quality-card {
        grid-template-columns: 1fr;
    }

    .quality-visual {
        min-height: 470px;
    }

    .quality-card {
        min-height: 0;
    }

    .quality-content {
        padding: 45px 35px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .trust-strip {
        grid-template-columns: 1fr;
    }

    .story-grid {
        gap: 45px;
    }
}

@media (max-width: 800px) {
    .therapist-result {
        padding: 30px 0 50px;
    }

    .quality-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
    }

    .story {
        padding: 80px 0;
    }

    .quote {
        padding-bottom: 80px;
    }
}

@media (max-width: 600px) {
    .therapist-result {
        padding-top: 20px;
    }

    .result-top {
        align-items: flex-start;
    }

    .match-status {
        padding: 8px 10px;
        font-size: 10px;
    }

    .back-link {
        font-size: 11px;
    }

    .quality-card {
        border-radius: 25px;
    }

    .quality-visual {
        min-height: 430px;
        padding: 30px 22px;
    }

    .quality-visual h1 {
        font-size: clamp(40px, 12vw, 56px);
    }

    .quality-visual p {
        font-size: 14px;
    }

    .visual-stat {
        left: 22px;
        right: 22px;
        bottom: 25px;
    }

    .quality-content {
        padding: 34px 22px 27px;
    }

    .quality-content > h2 {
        font-size: clamp(34px, 10vw, 48px);
    }

    .quality-intro {
        font-size: 14px;
    }

    .quality-item {
        padding: 13px;
    }

    .contact-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-heading h2 {
        font-size: 23px;
    }

    .contact-intro {
        font-size: 11px;
    }

    .trust-item {
        padding: 15px;
    }

    .story-visual {
        border-radius: 25px;
    }

    .quote-box {
        padding: 45px 22px;
        border-radius: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-card,
    .quality-item,
    .back-link,
    .reveal {
        transition: none;
    }
}

/* =========================================================
   DESKTOP HEADER OFFSET
   ========================================================= */

@media (min-width: 901px) {
    .therapist-page {
        padding-top: 88px;
    }

    .therapist-result {
        padding-top: 42px;
    }
}

