/* Profile Page Styles */
.profile-page {
    padding-top: 80px;
    min-height: 100vh;
    background-color: var(--light-gray);
}

.profile-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Profile Header */
.profile-header {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-sm);
}

.profile-image {
    position: relative;
    width: 200px;
    height: 200px;
    flex-shrink: 0;
}

.profile-image img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile-image i {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: all var(--transition-normal);
}

.profile-image i:hover {
    transform: scale(1.1);
    background-color: var(--primary-dark);
}

.profile-info {
    flex: 1;
}

.profile-info h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.profile-info h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.patients {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.modalities {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tag {
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
}

.tag.online {
    background-color: #E8F5E9;
    color: #2E7D32;
}

.tag.presential {
    background-color: #E3F2FD;
    color: #1565C0;
}

.contact-btn {
    padding: 0.8rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
}

.contact-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Profile Content */
.profile-content {
    background-color: var(--white);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.info-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--medium-gray);
}

.info-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-section h3 {
    color: var(--text-color);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.info-section p {
    color: var(--text-light);
    line-height: 1.6;
}

.location-section h3 {
    margin-bottom: 0.5rem;
}

.location-section p {
    margin-bottom: 1rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .profile-container {
        padding: 1rem;
    }

    .profile-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .profile-image {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

    .modalities {
        justify-content: center;
    }

    .profile-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .profile-info h1 {
        font-size: 1.5rem;
    }

    .profile-info h2 {
        font-size: 1rem;
    }

    .modalities {
        flex-direction: column;
        gap: 0.5rem;
    }

    .tag {
        width: 100%;
        text-align: center;
    }

    .contact-btn {
        width: 100%;
    }

    .map-container {
        height: 300px;
    }
}