/* ============================================
   CORPORATE HERO SECTION - Premium Design
   ============================================ */

/* Main Hero Section */
.corporate-hero-section {
    position: relative;
    min-height: 85vh;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    padding: 0;
}

.corporate-hero-section .container {
    max-width: 1320px;
}

/* Animated Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(168, 85, 163, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(192, 132, 197, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(168, 85, 163, 0.05) 0%, transparent 70%);
    animation: gradientShift 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Floating Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: floatShape 20s infinite ease-in-out;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(168, 85, 163, 0.15) 0%, rgba(192, 132, 197, 0.1) 100%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(192, 132, 197, 0.15) 0%, rgba(168, 85, 163, 0.1) 100%);
    top: 50%;
    right: -5%;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(146, 69, 158, 0.12) 0%, rgba(168, 85, 163, 0.08) 100%);
    bottom: -10%;
    left: 30%;
    animation-delay: 10s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(192, 132, 197, 0.12) 0%, rgba(146, 69, 158, 0.08) 100%);
    top: 20%;
    right: 20%;
    animation-delay: 15s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Arabic Pattern Overlay */
.arabic-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(168, 85, 163, 0.02) 35px, rgba(168, 85, 163, 0.02) 70px);
    pointer-events: none;
}

/* Hero Content */
.hero-content-wrapper {
    position: relative;
    z-index: 10;
    color: #1e293b;
}

/* Trust Badge */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(168, 85, 163, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    box-shadow: 0 8px 25px rgba(168, 85, 163, 0.25);
    animation: badgePulse 3s infinite ease-in-out;
}

.trust-badge i {
    font-size: 1.1rem;
    color: #fbbf24;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(168, 85, 163, 0.25);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 12px 35px rgba(168, 85, 163, 0.35);
    }
}

/* Corporate Hero Title */
.corporate-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #0f172a;
    letter-spacing: -0.02em;
}

.gradient-text-primary {
    background: linear-gradient(135deg, #a855a3 0%, #92459e 50%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientAnimation 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradientAnimation {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Hero Lead Text */
.hero-lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #475569;
    max-width: 550px;
    margin-bottom: 2rem;
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 120px;
    text-align: center;
    padding: 1.5rem;
    background: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(168, 85, 163, 0.1);
    box-shadow: 0 4px 15px rgba(168, 85, 163, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-box:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 163, 0.3);
    box-shadow: 0 12px 30px rgba(168, 85, 163, 0.2);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a855a3, #c084c5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-icon {
    font-size: 2rem;
    color: #a855a3;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.stat-label {
    font-size: 0.9rem;
    color: #a855a3;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
    margin-top: 0.5rem;
}

/* CTA Buttons */
.hero-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    z-index: 11;
}

.btn-corporate-primary,
.btn-corporate-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-corporate-primary {
    background: linear-gradient(135deg, #a855a3 0%, #92459e 100%);
    color: white;
    border: none;
    box-shadow: 0 10px 30px rgba(168, 85, 163, 0.3);
}

.btn-corporate-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-corporate-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(168, 85, 163, 0.4);
    background: linear-gradient(135deg, #92459e 0%, #764ba2 100%);
    color: white;
}

.btn-corporate-primary:hover::before {
    left: 100%;
}

.btn-corporate-secondary {
    background: white;
    color: #a855a3;
    border: 2px solid #a855a3;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-corporate-secondary:hover {
    background: #a855a3;
    border-color: #a855a3;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 85, 163, 0.3);
    color: white;
}

/* Trust Indicators */
.trust-indicators {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #475569;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.25rem;
    color: #a855a3;
}

/* Hero Visual Section */
.hero-visual-wrapper {
    position: relative;
    z-index: 10;
    overflow: visible;
}

.hero-main-image {
    position: relative;
    animation: floatImage 6s ease-in-out infinite;
    overflow: visible;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.hero-main-image img {
    width: 100%;
    height: auto;
    border-radius: 20px !important;
    border: 3px solid white;
    box-shadow: 0 25px 60px rgba(168, 85, 163, 0.25);
}

/* Floating Elements */
.floating-element {
    position: absolute;
    z-index: 5;
}

.floating-card-content {
    background: white;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(168, 85, 163, 0.1);
    box-shadow: 0 10px 30px rgba(168, 85, 163, 0.15);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 180px;
    transition: all 0.3s ease;
}

.floating-card-content:hover {
    border-color: rgba(168, 85, 163, 0.3);
    box-shadow: 0 15px 40px rgba(168, 85, 163, 0.25);
}

.floating-card-content i {
    font-size: 1.5rem;
}

.floating-card-1 {
    top: 10%;
    left: -5%;
    animation: floatElement1 6s ease-in-out infinite;
}

.floating-card-2 {
    top: 50%;
    right: 0%;
    animation: floatElement2 7s ease-in-out infinite;
}

.floating-card-3 {
    bottom: 15%;
    left: 0%;
    animation: floatElement3 8s ease-in-out infinite;
}

@keyframes floatElement1 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(10px, -15px);
    }
}

@keyframes floatElement2 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(-10px, 15px);
    }
}

@keyframes floatElement3 {
    0%, 100% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, -10px);
    }
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
}

.hero-decoration-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(168, 85, 163, 0.15) 0%, rgba(192, 132, 197, 0.1) 100%);
    top: -50px;
    right: -50px;
    filter: blur(80px);
}

.hero-decoration-2 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(192, 132, 197, 0.15) 0%, rgba(168, 85, 163, 0.1) 100%);
    bottom: -50px;
    left: -50px;
    filter: blur(80px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    animation: scrollBounce 2s infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid #a855a3;
    border-radius: 25px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: #a855a3;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(15px);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .corporate-hero-section {
        min-height: 80vh;
    }
    
    .corporate-hero-title {
        font-size: 3rem;
    }
    
    .shape {
        filter: blur(40px);
    }
}

@media (max-width: 992px) {
    .corporate-hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .corporate-hero-title {
        font-size: 2.5rem;
    }
    
    .hero-lead-text {
        font-size: 1.1rem;
    }
    
    .hero-stats-row {
        gap: 1rem;
    }
    
    .stat-box {
        min-width: 100px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-icon {
        font-size: 1.75rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .hero-visual-wrapper {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .corporate-hero-section {
        min-height: auto;
        padding: 80px 0 50px;
    }
    
    .corporate-hero-title {
        font-size: 2rem;
    }
    
    .hero-lead-text {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .hero-stats-row {
        gap: 0.75rem;
    }
    
    .stat-box {
        min-width: 90px;
        padding: 1rem;
    }
    
    .hero-cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-corporate-primary,
    .btn-corporate-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .shape {
        display: none;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 576px) {
    .corporate-hero-section {
        padding: 60px 0 40px;
    }
    
    .corporate-hero-title {
        font-size: 1.75rem;
    }
    
    .trust-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .hero-stats-row {
        flex-direction: column;
    }
    
    .stat-box {
        width: 100%;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-icon {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .btn-corporate-primary,
    .btn-corporate-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* ============================================
   ANIMATIONS & TRANSITIONS
   ============================================ */

/* Smooth entrance animations */
.corporate-hero-section [data-aos] {
    transition-duration: 1000ms;
}

/* Hover effects enhancement */
.stat-box,
.trust-badge,
.btn-corporate-primary,
.btn-corporate-secondary {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Performance optimizations */
.hero-background,
.floating-shapes,
.shape,
.floating-element {
    will-change: transform;
}

