
/* Hero Section */
.doctors-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 16rem 0 4rem 0;
    text-align: center;
    color: white;
}

.doctors-hero .page-header {
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    text-align: center;
}

/* Doktorlar Bölümü */
.doctors-section {
    padding: 4rem 0;
    background: white;
}

.doctors-section .section-header {
    text-align: left;
    margin-bottom: 2rem;
}



/* Dinamik Paragraf */
.specialty-intro {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 3rem;
    text-align: left;
}

/* Doktor Kartları - Güçlü seçiciler */
html body .doctors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Tablet için 2 sütun */
@media (max-width: 1024px) and (min-width: 768px) {
    html body .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

/* Mobil için 1 sütun */
@media (max-width: 767px) {
    html body .doctors-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

html body .doctor-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

html body .doctor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

html body .doctor-photo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f7fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 3px solid #e2e8f0;
}

html body .doctor-photo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

html body .doctor-photo i {
    font-size: 2.5rem;
    color: #cbd5e0;
}

html body .doctor-info {
    text-align: center;
}

html body .doctor-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

html body .doctor-name a {
    color: inherit;
    text-decoration: none;
}

html body .doctor-hospital {
    font-size: 1rem;
    color: #718096;
    margin-bottom: 1.5rem;
}

html body .doctor-actions {
    text-align: center;
}

html body .doctor-actions .btn {
    background: #007bff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

html body .doctor-actions .btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
}



/* Modern FAQ Stilleri */
/* FAQ Section */
.faq-section {
    border-radius: 20px;
    padding: 3rem 0;
    margin-top: 2rem;
}

.faq-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.faq-section .section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* FAQ Grid */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* FAQ Cards */
.faq-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: #cbd5e1;
}

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

/* FAQ Icon */
.faq-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* FAQ Content */
.faq-content {
    flex: 1;
    min-width: 0;
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    color: #64748b;
    line-height: 1.6;
    font-size: 0.95rem;
}

.faq-answer p {
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-section {
        padding: 2rem 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .doctors-section .section-title {
        font-size: 2rem;
    }

    .faq-section {
        padding: 1.5rem 0;
        border-radius: 15px;
    }
    
    .faq-section .section-title {
        font-size: 1.8rem;
    }
    
    .faq-card {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .faq-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

 
