.profile-hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.8), rgba(108, 117, 125, 0.7));
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0d6efd, #6c757d);
}

.company-logo-large {
    max-height: 100px;
    width: auto;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.social-links .social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    margin: 0.25rem;
}

.social-link.facebook { background: #3b5998; }
.social-link.twitter { background: #1da1f2; }
.social-link.linkedin { background: #0077b5; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube { background: #ff0000; }
.social-link.tiktok { background: #000000; }
.social-link.snapchat { background: #FFFC00; color: #000; }
.social-link.github { background: #333; }
.social-link.website { background: #28a745; }

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: white;
}

.social-link.snapchat:hover {
    color: #000;
}

.stats-section .stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.stats-section .stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #0d6efd;
}

.stat-label {
    font-size: 1.1rem;
    color: #6c757d;
    margin: 0;
}

.section-header .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343a40;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0d6efd, #6c757d);
    margin: 0 auto;
    border-radius: 2px;
}

.vmv-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.vmv-icon {
    font-size: 2rem;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.vmv-content h4 {
    margin-bottom: 1rem;
    color: #343a40;
    font-weight: bold;
}

.vmv-content p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.company-info-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.company-info-card h5 {
    color: #343a40;
    font-weight: bold;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.2rem;
    width: 20px;
    margin-top: 0.2rem;
}

.info-item a {
    color: #495057;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #0d6efd;
}

.info-item > div {
    flex-grow: 1;
}

.services-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.services-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.services-card h4 {
    margin-bottom: 1.5rem;
    color: #343a40;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
}

.service-item i {
    margin-right: 0.5rem;
}

.services-list hr {
    margin: 1.5rem 0;
    border-color: #e9ecef;
}

.awards-card {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.awards-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.awards-card i {
    margin-bottom: 1.5rem;
}

.company-description {
    padding: 1.5rem 0;
}

.company-description h4 {
    color: #343a40;
    font-weight: bold;
    margin-bottom: 1rem;
}

/* تحسينات responsive */
@media (max-width: 768px) {
    .profile-hero-section {
        min-height: 60vh;
        padding: 2rem 0;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .company-logo-large {
        max-height: 80px;
    }
    
    .social-links .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .stat-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .vmv-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        align-items: center;
    }
    
    .vmv-icon {
        margin-top: 0;
    }
    
    .company-info-card {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .services-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .awards-card {
        padding: 2rem;
    }
    
    .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

@media (max-width: 576px) {
    .social-links {
        justify-content: center !important;
    }
    
    .social-links .social-link {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0.15rem;
    }
    
    .stat-card {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        font-size: 2.5rem;
    }
    
    .company-info-card {
        padding: 1rem;
    }
    
    .services-card {
        padding: 1rem;
    }
    
    .awards-card {
        padding: 1.5rem;
    }
}

/* تحسينات إضافية للتجربة */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* تحسين عرض النصوص العربية والإنجليزية */
[dir="ltr"] {
    text-align: left;
}

.text-muted {
    opacity: 0.8;
}

/* تحسين تصميم الأزرار */
.btn-outline-primary {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(13, 110, 253, 0.3);
}