/* Influencer Details Page Styles */
.influencer-hero {
    background-color: #f8f9fa;
    padding: 3rem 0;
}

.profile-header {
    display: flex;
    align-items: center;
}

.profile-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-right: 1rem;
}

.qr-code {
    width: 110px;
    height: 110px;
}

.profile-info h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.profile-info p {
    font-size: 0.9rem;
    color: gray;
}

.profile-info .category {
    display: inline-block;
    background: linear-gradient(135deg, #fe6440 0%, #f62d67 50%, #e41975 100%);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a i {
    font-size: 1rem;
}

.social-links a {
    background-color: white;
    color: #64748b;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 4px 7px;
    display: flex;
    align-items: center;
}

.social-links a:hover {
    background: linear-gradient(135deg, #fe6440 0%, #f62d67 50%, #e41975 100%);
    color: white;
    transform: translateY(-3px);

}

/* Gallery Section */
.gallery-section {
    padding: 3rem 0;
    margin-top: 100px;
    background-color: #f8f9fa;
}

.gallery-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #223366;
    position: relative;
    padding-bottom: 0.5rem;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #fe6440 0%, #f62d67 50%, #e41975 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}

.gallery-item {
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-item:nth-child(1) {
    border-radius: 0.8rem 0 0 0.8rem;
}

.gallery-item:nth-child(2) {
    border-radius: 0;
}

.gallery-item:nth-child(3) {
    border-radius: 0 0.8rem 0.8rem 0;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #223366;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.about-content {
    line-height: 1.8;
    color: #64748b;
}

.about-content i {
    color: var(--text-dark);
    font-size: 2rem;
}


.intro-text {
    color: #64748be1;
    font-size: 0.9rem;
}

.content-text {
    font-size: 1rem;
    line-height: 1.4;
}

/* تنسيق قسم المعلومات الشخصية */
.info-item {
    display: flex;
    align-items: center;
}

.info-label {
    font-weight: 600;
    color: #64748b;
}

.info-value {
    color: #64748b;
    margin-left: 10px;
}

.qr-code {
    border: 1px solid #dee2e6;
    padding: 5px;
    background: white;
}


/* Portfolio Section */
.portfolio-section {
    padding: 3rem 0;
}

.portfolio-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1rem;
}

.category-pill {
    cursor: pointer;
}

.portfolio-content {
    display: none;
}

.portfolio-content.active {
    display: block;
}

.portfolio-item {
    margin-bottom: 2rem;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);


    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Packages Section */
.packages-section {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.package-card {
    background-color: white;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.package-title {
    font-size: 1.5rem;
    color: #223366;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 2rem;
    font-weight: 700;
    color: #e41975;
    margin-bottom: 1.5rem;
}

.package-features {
    margin-bottom: 1.5rem;
}

.package-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.package-feature i {
    color: #e41975;
    margin-right: 0.75rem;
}

.package-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fe6440 0%, #f62d67 50%, #e41975 100%);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}


.influencers {
    background-color: #f8f9fa;
}

.influencers h2 {
    font-size: 1.8rem;
}

.influencers .swiper-wrapper {
    padding: 10px 0;
}

.influencer-card {
    box-shadow: none;
}

.influencer-card:hover {
    box-shadow: none;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--text-dark);
    background-color: rgba(255, 255, 255, 0.6);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--text-dark);
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 16px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .profile-header {
        flex-direction: column;
        text-align: center;
    }

    .profile-avatar {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }

    .social-links {
        justify-content: center;
    }

    .gallery-item img {
        height: 400px;
        border-radius: 0.8rem;
    }

    .portfolio-tabs {
        gap: 0.5rem;
        margin-bottom: 1rem;
    }

    .category-pill {
        font-size: 0.9rem;
    }
}