/* Soru Detay Sayfası CSS - Kurumsal Tasarım */
.soru-detay {
    padding-top: 0;
}

.soru-hero {
    margin-bottom: 2rem;
    text-align: left;
}

.soru-header {
    position: relative;
}

.soru-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.answer-section {
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    position: relative;
}

.answer-section::before {
    display: none;
}

.answer-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.answer-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: #34495e;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Responsive Doctor CTA Box Styles */
.doctor-cta-box {
    margin: 2rem 0;
}

/* Responsive Medicine CTA Box Styles */
.medicine-cta-box {
    margin: 2rem 0;
}

.cta-container {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.cta-container:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cta-text {
    flex: 1;
}

.cta-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.cta-description {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #007bff;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #007bff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 50px;
    white-space: nowrap;
}

.cta-button-secondary {
    background: #25d366;
    border-color: #25d366;
}

.cta-button-secondary:hover {
    background: #128c7e;
    border-color: #128c7e;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Medicine CTA Secondary Button - Warning Color for Side Effects */
.medicine-cta-box .cta-button-secondary {
    background: #ff9800;
    border-color: #ff9800;
}

.medicine-cta-box .cta-button-secondary:hover {
    background: #f57c00;
    border-color: #f57c00;
    box-shadow: 0 6px 20px rgba(255, 152, 0, 0.4);
}

.cta-button:hover {
    background: #0056b3;
    border-color: #0056b3;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cta-icon i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Medicine CTA Icon - Purple Theme */
.medicine-cta-box .cta-icon {
    background: linear-gradient(135deg, #9c27b0 0%, #7b1fa2 100%);
}

/* Responsive CTA Box */
@media (max-width: 768px) {
    .cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cta-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .cta-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .cta-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.95rem;
        min-height: 48px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .cta-container {
        padding: 1.5rem;
    }
    
    .cta-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-description {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-buttons {
        gap: 0.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        min-height: 45px;
    }
}

.related-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.related-link:hover {
    color: #2980b9;
    text-decoration: underline;
}

.soru-content {
    margin-bottom: 3rem;
}

.soru-meta {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    color: #6c757d;
    margin-top: 1.5rem;
    border: 1px solid #e9ecef;
}

.soru-meta small {
    color: #6c757d !important;
    font-size: 0.9rem;
    font-weight: 400;
}

.sidebar-content {
    position: sticky;
    top: 100px;
    border-left: 1px solid #e9ecef;
    padding-left: 2rem;
}

.sidebar-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 2rem;
    box-shadow: none;
    transition: none;
    position: relative;
}

.sidebar-card::before {
    display: none;
}

.sidebar-card:hover {
    border-color: transparent;
    box-shadow: none;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e9ecef;
}

.related-content-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-content-info h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.related-content-type {
    color: #7f8c8d;
    font-size: 0.9rem;
    margin: 0;
}

.other-questions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.other-question-item {
    padding: 0;
    background: transparent;
    border-radius: 0;
    transition: none;
    border: none;
    position: relative;
}

.other-question-item::before {
    display: none;
}

.other-question-item:hover {
    background: transparent;
    border-color: transparent;
}

.other-question-item:hover .other-question-link {
    color: #1976d2;
    text-decoration: underline;
}

.other-question-link {
    color: #34495e;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.4;
    display: block;
    transition: color 0.2s ease;
    padding: 0.75rem 0;
    font-weight: 400;
}

.other-question-link:hover {
    color: #1976d2;
    text-decoration: underline;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .soru-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .answer-section {
        padding: 0;
    }
    
    .answer-text {
        margin-bottom: 1.5rem;
    }
    
    .sidebar-content {
        position: static;
        margin-top: 2rem;
        border-left: none;
        padding-left: 0;
    }
    
    .soru-detay {
        padding-top: 1rem;
    }
}

@media (max-width: 576px) {
    .soru-title {
        font-size: 1.8rem;
        margin-bottom: 1.25rem;
    }
    
    .answer-text {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
}

/* Header altında kalmama için */
.container.my-5 {
    margin-top: 120px !important; /* Header yüksekliği + ekstra spacing */
    padding-top: 2rem;
}

/* Sayfa içeriği için genel spacing */
.container.my-5 {
    margin-top: 120px !important;
    margin-bottom: 3rem !important;
}

/* Soru detay sayfası için özel spacing */
.soru-detay {
    padding-top: 0;
}

.soru-hero {
    margin-bottom: 3rem;
    padding-top: 1rem;
}

/* Responsive header spacing */
@media (max-width: 768px) {
    .container.my-5 {
        margin-top: 100px !important;
    }
}
