/* =========================================
   TREATMENT PAGES STYLES
   ========================================= */
.tr-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 100px 0 140px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.tr-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; width: 100%; height: 50px;
    background: #ffffff;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.tr-breadcrumbs {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
}
.tr-breadcrumbs a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}
.tr-breadcrumbs a:hover {
    color: #38bdf8;
}
.tr-hero-title {
    color: #ffffff !important;
    font-size: clamp(36px, 5vw, 56px);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}
.tr-hero-sub {
    color: #cbd5e1 !important;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 32px;
    line-height: 1.6;
}
.tr-overview {
    padding: 60px 0 80px;
    background: #ffffff;
    text-align: center;
}
.tr-overview-text {
    font-size: 20px;
    color: #334155;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}
.tr-overview-doc {
    font-weight: 700;
    color: #00A3C4;
}

/* Treatment Grid */
.tr-section {
    padding: 80px 0;
    background: #F8FAFC;
}
.tr-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.tr-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
}
.tr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}
.tr-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
    text-align: left;
    display: flex;
    flex-direction: column;
}
.tr-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.tr-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 163, 196, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #00A3C4;
}
.tr-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}
.tr-card-desc {
    color: #64748b;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* Features */
.tr-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.tr-feature {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.02);
}
.tr-feature-icon {
    font-size: 32px;
    margin-bottom: 16px;
}
.tr-feature-title {
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 10px;
}

/* FAQ */
.tr-faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.tr-faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    overflow: hidden;
}
.tr-faq-q {
    padding: 20px 24px;
    font-weight: 600;
    color: #1e293b;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}
.tr-faq-q:hover {
    background: #f8fafc;
}
.tr-faq-q::after {
    content: '+';
    font-size: 20px;
    color: #00A3C4;
    transition: transform 0.3s;
}
.tr-faq-item.active .tr-faq-q::after {
    transform: rotate(45deg);
}
.tr-faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    color: #475569;
    line-height: 1.6;
    transition: max-height 0.3s ease, padding 0.3s ease;
}
.tr-faq-item.active .tr-faq-a {
    padding: 0 24px 20px;
    max-height: 300px;
}
