/*******************************************************************************
 * TERAPİ DETAY SAYFASI - ÖZEL STİL DOSYASI (terapi.css)
 * Ana Renk: #7f8c8d | Vurgu Renk: #2c3e50
 *******************************************************************************/

/* Genel Konteyner ve Arka Plan */
.therapy-detail-container {
    padding-top: 140px; /* Navbar ve çalışma saatleri boşluğu */
    background-color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Üst Başlık (Hero) Alanı */
.therapy-hero {
    text-align: center;
    padding: 60px 0;
    background-color: #fcfcfc;
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 60px;
}

.category-badge {
    color: #7f8c8d;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.therapy-hero h1 {
    font-size: 42px;
    color: #2c3e50;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-subtitle {
    font-size: 18px;
    color: #7f8c8d;
    font-style: italic;
}

.hero-line {
    width: 60px;
    height: 4px;
    background-color: #7f8c8d;
    margin: 25px auto 0;
}

/* İçerik Düzeni (Grid) */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 350px; /* Sol geniş, sağ dar */
    gap: 60px;
    margin-bottom: 80px;
}

/* Sol Ana Makale Alanı */
.main-article h3 {
    color: #2c3e50;
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.main-article h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #7f8c8d;
}

.text-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    text-align: justify;
}

.features-block {
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 4px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.feature-list li {
    font-size: 15px;
    color: #555;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: #7f8c8d;
    margin-right: 12px;
    font-size: 18px;
}

/* Sağ Sidebar */
.sidebar {
    position: sticky;
    top: 160px;
}

.sidebar-card {
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.info-card {
    background-color: #f4f6f7;
    border-left: 5px solid #7f8c8d;
}

.info-card i {
    font-size: 28px;
    color: #7f8c8d;
    margin-bottom: 15px;
    display: block;
}

.info-card p {
    font-style: italic;
    color: #5d6d7e;
    line-height: 1.6;
}

.contact-card {
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.contact-card h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

.contact-card p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 25px;
    line-height: 1.5;
}

.btn-sidebar {
    display: block;
    background-color: #7f8c8d;
    color: #ffffff;
    padding: 14px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    transition: background 0.3s ease;
}

.btn-sidebar:hover {
    background-color: #6c7a7b;
}

.back-navigation {
    text-align: center;
    margin-top: 20px;
}

.back-navigation a {
    color: #7f8c8d;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.back-navigation a:hover {
    text-decoration: underline;
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
    
    .therapy-hero h1 {
        font-size: 32px;
    }
}