/* ==========================================================================
   Single Doctor Page Styles
   ========================================================================== */

/* Doctor Hero Section */
.doctor-hero {
    background: #ffffff;
    padding: 60px 0 40px;
}

.doctor-hero-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: start;
}

.doctor-photo {
    position: relative;
}

.doctor-profile-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.doctor-details {
    padding-top: 20px;
}

.doctor-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E31E24;
    margin-bottom: 10px;
    line-height: 1.2;
    border-bottom: 4px solid #E31E24;
    padding-bottom: 15px;
    display: inline-block;
}

/* Info Table */
.doctor-info-table {
    margin: 30px 0;
}

.info-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    font-weight: 700;
    color: #1a2b4a;
    font-size: 1rem;
}

.info-value {
    color: #666;
    font-size: 1rem;
}

/* Action Buttons */
.doctor-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.doctor-action-btn {
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: #E31E24;
    color: white;
    border: none;
}

.btn-primary:hover {
    background: #C41E24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
    color: white;
}

.btn-secondary {
    background: #E31E24;
    color: white;
    border: none;
}

.btn-secondary:hover {
    background: #C41E24;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4);
    color: white;
}

/* Breadcrumb */
.doctor-breadcrumb {
    background: #e3f2fd;
    padding: 15px 0;
    margin-bottom: 50px;
}

.breadcrumb-nav {
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-nav a {
    color: #E31E24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #C41E24;
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    margin: 0 10px;
    color: #999;
}

.breadcrumb-nav .current {
    color: #333;
    font-weight: 500;
}

/* Doctor Content */
.doctor-content {
    padding: 0 0 80px;
}

.content-section {
    margin-bottom: 50px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a2b4a;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
}

.section-content {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

.section-content p {
    margin-bottom: 15px;
}

/* Membership List */
.membership-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.membership-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.membership-list li:before {
    content: "◦";
    position: absolute;
    left: 0;
    color: #E31E24;
    font-size: 1.5rem;
    line-height: 1;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .doctor-hero-content {
        grid-template-columns: 300px 1fr;
        gap: 40px;
    }

    .doctor-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .doctor-hero {
        padding: 40px 0 30px;
    }

    .doctor-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .doctor-photo {
        max-width: 350px;
        margin: 0 auto;
    }

    .doctor-title {
        font-size: 1.8rem;
    }

    .info-row {
        grid-template-columns: 1fr;
        gap: 5px;
        padding: 12px 0;
    }

    .info-label {
        font-size: 0.9rem;
    }

    .info-value {
        font-size: 0.95rem;
        padding-left: 15px;
    }

    .doctor-actions {
        flex-direction: column;
    }

    .doctor-action-btn {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .doctor-hero {
        padding: 30px 0 20px;
    }

    .doctor-title {
        font-size: 1.5rem;
    }

    .breadcrumb-nav {
        font-size: 0.85rem;
    }

    .breadcrumb-nav .separator {
        margin: 0 5px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .doctor-action-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}