/* Doctor Profile Specific Styles */

.profile-hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, rgba(44, 119, 68, 0.05) 0%, rgba(232, 175, 63, 0.05) 100%);
}

.profile-hero-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 3rem;
    align-items: start;
}

.profile-image-wrapper {
    position: relative;
}

.profile-image-wrapper img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.profile-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.profile-badge i {
    font-size: 1.5rem;
}

.profile-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.qualification {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.specialty {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

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

.stat i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.stat strong {
    display: block;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.stat span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.profile-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.profile-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* About Doctor Section */
.about-doctor {
    padding: 4rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
}

.main-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.main-content h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 2rem 0 1rem;
}

.lead {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.main-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 2rem;
    margin: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 0 0 3px var(--primary-color);
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.timeline-date {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    margin: 0;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.expertise-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.expertise-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.expertise-item h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.expertise-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Treatment List */
.treatment-list {
    list-style: none;
    margin: 1.5rem 0;
}

.treatment-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.treatment-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Sidebar */
.sidebar-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.sidebar-card h3 {
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.sidebar-card.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.sidebar-card.highlight h3,
.sidebar-card.highlight p {
    color: var(--white);
}

.specialization-list {
    list-style: none;
}

.specialization-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--light-color);
}

.specialization-list li:last-child {
    border-bottom: none;
}

.specialization-list i {
    color: var(--primary-color);
}

.timing-item {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-color);
}

.timing-item:last-child {
    border-bottom: none;
}

.timing-item .day {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.timing-item .time {
    color: var(--text-light);
    font-size: 0.95rem;
}

.language-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.language-tags .tag {
    background: var(--light-color);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
}

/* Services Offered Section */
.services-offered {
    padding: 4rem 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-card ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* Appointment Booking Section */
.appointment-booking {
    padding: 4rem 0;
    background: var(--white);
}

.booking-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.appointment-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 500;
}

/* Contact Doctor Section */
.contact-doctor {
    padding: 3rem 0;
    background: var(--light-color);
}

.contact-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.contact-card h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.contact-card > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 2rem;
    background: var(--light-color);
    border-radius: 15px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
    min-width: 150px;
}

.contact-method:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-5px);
}

.contact-method i {
    font-size: 2rem;
}

.contact-method span {
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 992px) {
    .profile-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .profile-image-wrapper {
        max-width: 300px;
        margin: 0 auto;
    }

    .profile-actions {
        justify-content: center;
    }

    .content-wrapper {
        grid-template-columns: 1fr;
    }

    .sidebar {
        order: -1;
    }

    .profile-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .profile-info h1 {
        font-size: 2rem;
    }

    .profile-stats {
        padding: 1rem;
    }

    .stat {
        flex-direction: column;
        text-align: center;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        flex-direction: column;
    }

    .contact-method {
        width: 100%;
    }
}