/* Hero Component Styles */

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95) 0%, rgba(22, 45, 107, 0.95) 100%);
    z-index: 1;
}

.hero-section h1 {
    animation: slideInUp 0.8s var(--ease-out);
}

.hero-section .lead {
    animation: slideInUp 0.8s var(--ease-out) 0.15s both;
}

.hero-cta {
    animation: slideInUp 0.8s var(--ease-out) 0.3s both;
}

.hero-cta .btn-warning {
    box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
}

.hero-cta .btn-warning:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(245, 166, 35, 0.4);
}

.hero-section img {
    animation: slideInRight 0.8s var(--ease-out) 0.4s both;
    max-height: 500px;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero-section {
        text-align: center;
    }

    .hero-section img {
        margin-top: var(--space-8);
        max-height: 350px;
    }
}

@media (max-width: 767.98px) {
    .hero-section img {
        max-height: 280px;
    }

    .hero-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}
