/* ===== CORPORATE HERO SECTION STYLES ===== */

/* Corporate Hero Section - Clean Light Design */
.hero-section-corporate {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    position: relative;
    border-bottom: 1px solid #e9ecef;
    padding: 4rem 0;
}

/* Large Logo - 360px (3x increase from 120px) */
.hero-logo-large {
    width: 360px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(13, 110, 253, 0.1));
}

.hero-logo-large:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 6px 12px rgba(13, 110, 253, 0.15));
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Corporate Brand Text */
.hero-title-corporate {
    font-size: 3rem;
    font-weight: 600;
    color: #212529;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Corporate Stats Cards - Enhanced Design */
.stat-card-corporate {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 2px solid rgba(61, 72, 117, 0.1);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 
        0 4px 20px rgba(61, 72, 117, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.stat-card-corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3D4875 0%, #5a6b9d 50%, #3D4875 100%);
    opacity: 0.8;
}

.stat-card-corporate::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(61, 72, 117, 0.04) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.stat-card-corporate:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 
        0 12px 40px rgba(61, 72, 117, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border-color: rgba(61, 72, 117, 0.2);
}

.stat-card-corporate:hover::before {
    height: 4px;
    opacity: 1;
    background: linear-gradient(90deg, #3D4875 0%, #4a5c94 25%, #6b7db8 50%, #4a5c94 75%, #3D4875 100%);
}

.stat-card-corporate .stat-value {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    display: block;
    position: relative;
    z-index: 2;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.stat-card-corporate .stat-value.text-primary {
    background: linear-gradient(135deg, #3D4875 0%, #5a6b9d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-corporate .stat-value.text-success {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-card-corporate .stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    position: relative;
    z-index: 2;
    color: #6c757d;
}

/* Corporate Action Buttons */
.hero-actions-corporate {
    margin-top: 2rem;
}

.hero-actions-corporate .btn {
    padding: 0.875rem 2rem;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-width: 2px;
}

.hero-actions-corporate .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(13, 110, 253, 0.25);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-logo-large {
        width: 250px;
    }
    
    .hero-title-corporate {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .stat-card-corporate {
        padding: 2rem 1.25rem;
        margin-bottom: 1rem;
    }
    
    .stat-card-corporate .stat-value {
        font-size: 2.2rem;
    }
    
    .stat-card-corporate .stat-label {
        font-size: 0.8rem;
        letter-spacing: 0.8px;
    }
    
    .hero-actions-corporate .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-logo-large {
        width: 200px;
    }
    
    .hero-title-corporate {
        font-size: 2rem;
    }
    
    .hero-section-corporate {
        padding: 2rem 0;
    }
    
    .stat-card-corporate {
        padding: 1.75rem 1rem;
        border-radius: 12px;
    }
    
    .stat-card-corporate .stat-value {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stat-card-corporate .stat-label {
        font-size: 0.75rem;
        letter-spacing: 0.6px;
    }
    
    .stat-card-corporate::after {
        width: 150px;
        height: 150px;
    }
}


