/* YUKI HEALTH — THRIVE Rehabilitation Wing */
/* Page-specific styles only. Reuses global tokens/classes from style.css
   (colors #F47A20/#FF8533/#E86A10, #FFF8F2 background, Inter font,
   .container/.btn/.section-title/.section-subtitle/.faq-*/.contact-*). */

/* Eyebrow label */
.thrive-eyebrow {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #F47A20;
    margin-bottom: 1rem;
}

/* Hero */
.thrive-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(244, 122, 32, 0.08), transparent 60%);
}

.thrive-wordmark {
    font-size: clamp(3.5rem, 14vw, 8rem);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #F47A20 0%, #FF8533 60%, #E86A10 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Approved THRIVE wordmark artwork (thrive/thrive-logo.png) — used in the
   hero, where its opaque near-white backing blends into the page background.
   Not reused on the orange final-CTA strip, where that backing would show
   as a box; the CSS text wordmark (.thrive-wordmark above) covers that case. */
.thrive-wordmark-heading {
    margin: 0 auto 1.25rem;
    line-height: 0;
}

.thrive-wordmark-img {
    display: block;
    width: min(100%, 560px);
    height: auto;
    margin: 0 auto;
}

.thrive-hero-headline {
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 600;
    color: #222222;
    margin-bottom: 1rem;
}

.thrive-hero-copy {
    max-width: 560px;
    margin: 0 auto 2.5rem;
    color: #555;
    font-size: clamp(1rem, 2vw, 1.15rem);
}

.thrive-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Generic flow path — used by "What is THRIVE" and "The THRIVE Approach" */
.flow-path {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 900px;
    margin: 3rem auto 0;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 16px rgba(244, 122, 32, 0.08);
}

.flow-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F47A20 0%, #FF8533 100%);
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-step-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.flow-step-desc {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.thrive-statement {
    text-align: center;
    font-weight: 500;
    color: #F47A20;
    font-size: 1.1rem;
    margin-top: 2rem;
}

@media (min-width: 769px) {
    .flow-path {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .flow-step {
        flex: 1 1 260px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/* Three journeys */
.journeys-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.journey-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #F47A20;
}

.journey-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 0.5rem;
}

.journey-title {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.journey-desc {
    color: #666;
    margin: 0;
}

@media (min-width: 769px) {
    .journeys-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Areas of care */
.care-areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}

.care-area-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-area-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(244, 122, 32, 0.15);
}

.care-area-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #F47A20;
    margin-bottom: 0.5rem;
}

.care-area-title {
    font-size: 1.35rem;
    margin-bottom: 0.35rem;
}

.care-area-tagline {
    color: #F47A20;
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.care-area-focus {
    list-style: none;
    padding: 0;
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.care-area-focus li {
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.care-area-focus li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F47A20;
}

@media (min-width: 769px) {
    .care-areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Who may benefit — grouped accordion (reuses .faq-item/.faq-question/.faq-answer) */
.benefit-category {
    margin-bottom: 2rem;
}

.benefit-category-title {
    font-size: 1.1rem;
    color: #222;
    margin-bottom: 0.75rem;
}

.benefit-examples-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 0.5rem;
}

.condition-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.condition-tags li {
    background: rgba(244, 122, 32, 0.08);
    color: #d2691e;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* For families */
.family-principles {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    text-align: center;
}

.family-principle-title {
    color: #F47A20;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.family-principle-desc {
    color: #666;
    margin: 0;
}

@media (min-width: 769px) {
    .family-principles {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Why THRIVE */
.why-list {
    list-style: none;
    padding: 0;
    margin: 3rem auto 0;
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.why-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: white;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.why-icon {
    flex-shrink: 0;
    color: #F47A20;
    font-size: 1.25rem;
}

.why-title {
    font-weight: 600;
    margin-bottom: 0.15rem;
}

.why-desc {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Team placeholder */
.team-placeholder {
    max-width: 560px;
    margin: 3rem auto 0;
    text-align: center;
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.team-placeholder p {
    margin-bottom: 0.5rem;
}

/* Next step CTA */
.thrive-next-step {
    text-align: center;
}

.next-step-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Final CTA strip */
.thrive-final-cta {
    background: linear-gradient(135deg, #F47A20 0%, #FF8533 100%);
    color: white;
    text-align: center;
    padding: 5rem 0;
}

.thrive-final-cta .thrive-wordmark {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
    font-size: clamp(2.5rem, 8vw, 4.5rem);
}

.thrive-final-cta h3 {
    color: white;
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    margin-bottom: 1.5rem;
}

.thrive-final-cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 0 auto 2rem;
}

.thrive-final-cta .btn-secondary {
    background: white;
    color: #F47A20;
    border-color: white;
}

.thrive-final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}

/* Tamil text — Inter has no Tamil glyphs, so use Noto Sans Tamil explicitly */
.tamil-text {
    font-family: 'Noto Sans Tamil', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Conditions / Areas of Care — bilingual master list */
.conditions-list {
    max-width: 900px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.condition-row {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 0.25rem 1rem;
    align-items: start;
    background: white;
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.condition-number {
    color: #F47A20;
    font-weight: 700;
    font-size: 0.95rem;
}

.condition-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.condition-en {
    font-weight: 600;
    color: #222222;
}

.condition-ta {
    color: #666;
    font-size: 0.95rem;
}

@media (min-width: 700px) {
    .condition-row {
        grid-template-columns: 2.5rem 1fr 1fr;
        align-items: center;
    }

    .condition-text {
        display: contents;
    }

    .condition-en,
    .condition-ta {
        padding: 0 0.5rem;
    }
}

/* Homepage teaser card (embedded in index.html services section) */
.thrive-teaser {
    margin-top: 2rem;
    background: linear-gradient(135deg, #F47A20 0%, #FF8533 100%);
    border-radius: 20px;
    padding: 2rem;
    color: white;
    text-align: center;
}

.thrive-teaser h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.thrive-teaser p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.thrive-teaser .btn-secondary {
    background: white;
    color: #F47A20;
    border-color: white;
}

.thrive-teaser .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
}
