/* ==========================================================================
   Hero Section - Modern Design
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: var(--z-base);
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(30, 58, 95, 0.7) 100%);
}

.hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--color-bg-primary), transparent);
}

.hero-content {
    position: relative;
    z-index: var(--z-base);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem var(--container-padding) 4rem;
    max-width: var(--container-max);
    margin: 0 auto;
    width: 100%;
}

.hero-text { max-width: 700px; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease forwards;
}

.badge-icon {
    width: 20px;
    height: 20px;
    color: var(--color-accent);
}

.hero-badge span:last-child {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    color: var(--color-text-light);
}

.hero-title {
    font-size: 4rem;
    font-weight: var(--weight-bold);
    color: var(--color-text-light);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-tagline {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.85);
    line-height: var(--leading-relaxed);
    margin-bottom: 2.5rem;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.hero-cta-group .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-cta-group .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text-light);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: var(--weight-bold);
    color: var(--color-accent);
    line-height: 1;
}

.stat-plus {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: var(--weight-bold);
    color: var(--color-accent);
}

.stat-label {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: var(--z-base);
    animation: fadeIn 1s ease 1.2s forwards;
    opacity: 0;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-mouse {
    width: 24px;
    height: 36px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--color-text-light);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(6px); opacity: 0.3; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 992px) {
    .hero-title { font-size: 3rem; }
    .hero-stats { gap: 2rem; }
    .stat-number { font-size: 2.5rem; }
}

@media (max-width: 768px) {
    .hero-content { padding: 6rem var(--container-padding) 3rem; }
    .hero-title { font-size: 2.5rem; }
    .hero-tagline { font-size: var(--text-base); }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
    .hero-stat { flex: 1; min-width: 80px; }
    .stat-number { font-size: 2rem; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 2rem; }
    .hero-badge { font-size: var(--text-xs); }
}
