/* Light Modern Doctor Detail Page Styles */

/* Main Container */
.doctor-detail-page {
    background-color: #fafafa;
    min-height: 100vh;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    padding: 20px 0;
    background-color: transparent;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #495057;
}

.breadcrumb-item.active {
    color: #343a40;
    font-weight: 500;
}

/* Modern Hero Section with Blurred Background */
.doctor-hero {
    background-color: #f8f9fa;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 80px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 40px;
    overflow: hidden;
}

.doctor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(40px) brightness(0.3);
    transform: scale(1.2);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    position: relative;
    z-index: 3;
}

.hero-avatar {
    flex-shrink: 0;
}

.hero-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
}

.hero-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 6px solid rgba(255, 255, 255, 0.9);
    color: #6c757d;
    font-size: 4rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-info {
    flex-grow: 1;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 15px 0;
    line-height: 1.2;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 25px 0;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Contact Buttons */
.hero-contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-whatsapp-hero {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.btn-whatsapp-hero:hover {
    background-color: #25d366;
    color: white;
    border-color: #25d366;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-call-hero {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.btn-call-hero:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.btn-email-hero {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.btn-email-hero:hover {
    background-color: #6c757d;
    color: white;
    border-color: #6c757d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(108, 117, 125, 0.4);
}

.btn-directions-hero {
    background-color: rgba(255, 255, 255, 0.15);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.btn-directions-hero:hover {
    background-color: #28a745;
    color: white;
    border-color: #28a745;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

/* Info Cards */
.info-card {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f3f4;
    transition: box-shadow 0.2s ease;
}

.info-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #343a40;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-title i {
    color: #6c757d;
    font-size: 1.2rem;
}

.card-content {
    color: #495057;
    line-height: 1.7;
    font-size: 1rem;
}

/* Specialty Tags */
.specialty-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.specialty-tag {
    background-color: #f8f9fa;
    color: #495057;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.specialty-tag:hover {
    background-color: #e9ecef;
    color: #343a40;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 100px; /* Header yüksekliği + ekstra boşluk */
}

.contact-card {
    background-color: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f3f4;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.contact-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #343a40;
    margin: 0 0 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-title i {
    color: #6c757d;
    font-size: 1rem;
}

/* Contact Info */
.contact-info {
    margin: 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-item:first-child {
    padding-top: 0;
}

.contact-item i {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-details {
    flex-grow: 1;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 3px;
    font-weight: 500;
}

.contact-value {
    display: block;
    color: #343a40;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem;
}

.contact-value:hover {
    color: #495057;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-contact-buttons {
        justify-content: center;
    }
    
    .contact-sidebar {
        position: sticky;
        top: 90px; /* Mobilde header yüksekliği + ekstra boşluk */
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .doctor-hero {
        padding: 60px 0;
    }
    
    .hero-image,
    .hero-placeholder {
        width: 140px;
        height: 140px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .hero-contact-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .btn-whatsapp-hero,
    .btn-call-hero,
    .btn-email-hero,
    .btn-directions-hero {
        width: 100%;
        justify-content: center;
    }
    
    .info-card {
        padding: 20px;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .contact-card {
        padding: 20px;
    }
    
    .contact-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-image,
    .hero-placeholder {
        width: 120px;
        height: 120px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .specialty-tags {
        gap: 8px;
    }
    
    .specialty-tag {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

/* İlgili Sorular Bölümü */
.related-questions-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e9ecef;
}

.questions-list {
    margin-top: 2rem;
}

.question-item {
    background: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #e9ecef;
    transition: all 0.2s ease;
}

.question-item:hover {
    border-color: #1976d2;
    box-shadow: 0 4px 12px rgba(25, 118, 210, 0.15);
}

.question-title {
    margin-bottom: 1rem;
}

.question-title a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.question-title a:hover {
    color: #1976d2;
}

.question-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.question-date {
    color: #6c757d;
    font-size: 0.9rem;
} 