/* PROFILE SECTION START */

.profile-section {
    padding: 90px 0;
    background: radial-gradient(circle at top left, rgba(216, 192, 122, 0.12), transparent 45%),
                linear-gradient(135deg, #080d05 0%, #172d06 50%, #284a0d 100%);
    position: relative;
    overflow: hidden;
}

/* Image Wrapper & Badges */
.profile-img-card {
    position: relative;
    border-radius: 32px;
    padding: 10px;
    background: rgba(42, 36, 29, 0.4);
    border: 1px solid rgba(216, 192, 122, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.profile-img-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 192, 122, 0.5);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.7), 0 0 20px rgba(216, 192, 122, 0.15);
}

.profile-img-wrapper {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.profile-img-wrapper img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.profile-img-card:hover .profile-img-wrapper img {
    transform: scale(1.02);
}

.profile-status-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 5;
    background: rgba(10, 15, 8, 0.82);
    border: 1px solid rgba(216, 192, 122, 0.35);
    backdrop-filter: blur(14px);
    color: #ffffff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.profile-pulse-dot {
    width: 9px;
    height: 9px;
    background-color: #39d98a;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(57, 217, 138, 0.7);
    animation: profilePulse 1.8s infinite;
}

@keyframes profilePulse {
    0% {
        box-shadow: 0 0 0 0 rgba(57, 217, 138, 0.7);
    }
    70% {
        box-shadow: 0 0 0 9px rgba(57, 217, 138, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(57, 217, 138, 0);
    }
}

/* Right Side Content Card */
.profile-content-card {
    background: rgba(42, 36, 29, 0.85);
    backdrop-filter: blur(20px);
    border-radius: 35px;
    padding: 45px;
    border: 1px solid rgba(216, 192, 122, 0.2);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}

.profile-header-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 10px;
}

.profile-sub-tag {
    color: #d8c07a;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.profile-availability {
    color: #cfcfcf;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.avail-dot {
    width: 7px;
    height: 7px;
    background-color: #39d98a;
    border-radius: 50%;
}

.profile-title {
    color: #ffffff;
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 18px;
}

.profile-title span {
    display: block;
    color: #d8c07a;
    margin-top: 6px;
}

.profile-description {
    color: #d6d6d6;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Tags Grid */
.profile-tags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 35px;
}

.profile-tag-item {
    background: rgba(18, 16, 13, 0.8);
    border: 1px solid rgba(216, 192, 122, 0.18);
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.profile-tag-item span {
    color: #d8c07a;
    font-weight: 500;
}

.profile-tag-item:hover {
    border-color: #d8c07a;
    background: rgba(216, 192, 122, 0.12);
    transform: translateY(-2px);
}

/* Call To Action Buttons */
.profile-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.profile-btn-primary {
    background: #d8c07a;
    color: #111111;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(216, 192, 122, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-btn-primary:hover {
    background: #e6ce88;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(216, 192, 122, 0.4);
}

.profile-btn-outline {
    border: 1px solid #d8c07a;
    color: #d8c07a;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.profile-btn-outline:hover {
    background: rgba(216, 192, 122, 0.12);
    color: #ffffff;
    border-color: #e6ce88;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .profile-section {
        padding: 60px 0;
    }

    .profile-img-wrapper img {
        height: 440px;
    }

    .profile-content-card {
        padding: 32px;
        margin-top: 10px;
    }

    .profile-title {
        font-size: 36px;
    }

    .profile-tags-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .profile-section {
        padding: 45px 0;
    }

    .profile-title {
        font-size: 28px;
    }

    .profile-tags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .profile-tag-item {
        padding: 10px 8px;
        font-size: 12px;
    }

    .profile-actions {
        flex-direction: column;
        width: 100%;
    }

    .profile-btn-primary,
    .profile-btn-outline {
        width: 100%;
        text-align: center;
    }
}

/* PROFILE SECTION END */



/* PROFILE SECTION START */

.profile-about-section {
    padding: 50px 0;
    background: radial-gradient(circle at top left, rgba(216, 192, 122, 0.12), transparent 40%),
                linear-gradient(135deg, #080d05 0%, #1f3c05 50%, #284a0d 100%);
    position: relative;
    overflow: hidden;
    color: #ffffff;
}

.profile-meta-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.profile-meta-badge {
    color: #d8c07a;
    border: 1px solid rgba(216, 192, 122, 0.4);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    background: rgba(42, 36, 29, 0.5);
    backdrop-filter: blur(10px);
}

.profile-meta-status {
    color: #e2e2e2;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-live-dot {
    width: 10px;
    height: 10px;
    background-color: #39d98a;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(57, 217, 138, 0.7);
    animation: profilePulse 1.8s infinite;
}

@keyframes profilePulse {
    0% { box-shadow: 0 0 0 0 rgba(57, 217, 138, 0.7); }
    70% { box-shadow: 0 0 0 9px rgba(57, 217, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(57, 217, 138, 0); }
}

.profile-main-content {
    max-width: 1200px;
    margin: 0 auto 50px auto;
}

.profile-main-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 25px;
}

.profile-main-title span {
    color: #d8c07a;
    text-shadow: 0 0 20px rgba(216, 192, 122, 0.2);
}

.profile-text-wrapper p {
    color: #d6d6d6;
    font-size: 17px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.profile-action-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 35px;
    flex-wrap: wrap;
}

.profile-btn-primary {
    background: #d8c07a;
    color: #111111;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 60px;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(216, 192, 122, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.profile-btn-primary:hover {
    background: #e6ce88;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(216, 192, 122, 0.4);
}

.profile-btn-outline {
    border: 1px solid #d8c07a;
    color: #d8c07a;
    text-decoration: none;
    padding: 16px 38px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(42, 36, 29, 0.4);
}

.profile-btn-outline:hover {
    background: rgba(216, 192, 122, 0.15);
    color: #ffffff;
    border-color: #e6ce88;
    transform: translateY(-3px);
}

.profile-cards-row {
    margin-top: 20px;
}

.profile-feature-card {
    background: #2a241d;
    border: 1px solid rgba(216, 192, 122, 0.2);
    border-radius: 24px;
    padding: 35px 30px;
    height: 100%;
    transition: all 0.35s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.profile-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216, 192, 122, 0.6);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 20px rgba(216, 192, 122, 0.1);
}

.profile-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(216, 192, 122, 0.12);
    border: 1px solid rgba(216, 192, 122, 0.25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d8c07a;
    font-size: 22px;
    margin-bottom: 20px;
}

.profile-feature-card h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 12px;
}

.profile-feature-card p {
    color: #c7c7c7;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

@media(max-width: 991px) {
    .profile-about-section {
        padding: 70px 0;
    }

    .profile-main-title {
        font-size: 42px;
    }

    .profile-text-wrapper p {
        font-size: 16px;
    }
}

@media(max-width: 576px) {
    .profile-about-section {
        padding: 50px 0;
    }

    .profile-main-title {
        font-size: 30px;
    }

    .profile-action-buttons {
        flex-direction: column;
        width: 100%;
    }

    .profile-btn-primary,
    .profile-btn-outline {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .profile-feature-card {
        padding: 25px 20px;
    }
}

/* PROFILE SECTION END */