.profile-section {
    padding: 40px 0 100px;
    background: var(--light-gray);
}

.profile-wrapper {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.profile-header {
    background: linear-gradient(135deg, #FFF5F0 0%, #FFE8E0 100%);
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.profile-main {
    display: flex;
    gap: 30px;
    align-items: center;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.online-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4CAF50;
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.profile-info h1 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: var(--black);
    margin-bottom: 10px;
}

.profile-info .experience {
    color: var(--gray);
    font-size: 16px;
    margin-bottom: 10px;
}

.rating-large {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.rating-large i {
    color: #FFC107;
    font-size: 20px;
}

.rating-large span {
    color: var(--gray);
    font-size: 16px;
    margin-left: 10px;
}

.profile-info .languages {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-red));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 24px;
    font-weight: 700;
}

.profile-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn-chat-large,
.btn-call-large {
    padding: 15px 40px;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    min-width: 200px;
}

.btn-chat-large {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    color: var(--white);
}

.btn-call-large {
    background: linear-gradient(135deg, var(--primary-red), #D62828);
    color: var(--white);
}

.btn-chat-large:hover,
.btn-call-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.profile-content {
     display: block;   /* remove grid */
    padding: 40px;
    width: 100%;
}
.profile-main-content {
    width: 100%;
}

.content-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border);
    margin-bottom: 25px;
}

.content-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 20px;
}

.content-card p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.skills-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.skill-tag {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(230, 57, 70, 0.1));
    color: var(--primary-orange);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid var(--primary-orange);
}

.reviews-list {
    margin-bottom: 20px;
}

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.review-header h4 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 5px;
}

.review-stars {
    color: #FFC107;
    font-size: 14px;
}

.review-date {
    margin-left: auto;
    color: var(--gray);
    font-size: 13px;
}

.review-item p {
    color: var(--gray);
    line-height: 1.7;
    margin: 0;
}

.btn-load-more {
    width: 100%;
    padding: 12px;
    background: var(--white);
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-load-more:hover {
    background: var(--primary-orange);
    color: var(--white);
}

.sidebar-card {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 20px;
    font-weight: 600;
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

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

.stat-row span {
    color: var(--gray);
    font-size: 14px;
}

.stat-row strong {
    color: var(--primary-orange);
    font-size: 16px;
}

.sidebar-card p {
    color: var(--gray);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card i {
    color: var(--primary-orange);
}

.sticky-action-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 999;
    display: none;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.sticky-info h4 {
    font-size: 16px;
    color: var(--black);
    margin-bottom: 3px;
}

.sticky-info p {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 14px;
}

.sticky-buttons {
    display: flex;
    gap: 12px;
}

.btn-chat-sticky,
.btn-call-sticky {
    padding: 12px 25px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-chat-sticky {
    background: linear-gradient(135deg, var(--primary-orange), var(--accent-orange));
    color: var(--white);
}

.btn-call-sticky {
    background: linear-gradient(135deg, var(--primary-red), #D62828);
    color: var(--white);
}

@media (max-width: 968px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

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

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

    .profile-sidebar {
        order: -1;
    }

    .sticky-action-bar {
        display: block;
    }

    .profile-actions {
        display: none;
    }
}

@media (max-width: 480px) {
    .profile-img {
        width: 120px;
        height: 120px;
    }

    .profile-info h1 {
        font-size: 28px;
    }

    .btn-chat-large,
    .btn-call-large {
        min-width: 150px;
        padding: 12px 30px;
        font-size: 16px;
    }

    .sticky-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-chat-sticky,
    .btn-call-sticky {
        padding: 10px 20px;
        font-size: 14px;
    }
}
