/* HERO SECTION */
.hero {
    background: linear-gradient(135deg, rgba(3, 4, 94, 0.9) 0%, rgba(5, 7, 122, 0.8) 100%), 
                url('https://images.unsplash.com/photo-1587595431973-160d0d94add1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2000&q=80') no-repeat center center/cover;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(184, 251, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 127, 17, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(74, 107, 255, 0.1) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero h1 {
    animation: slideUp 1s var(--ease-bounce) both;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 500;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: slideUp 1s 0.2s var(--ease-bounce) both;
}

.hero-buttons {
    animation: slideUp 1s 0.4s var(--ease-bounce) both;
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* FLOATING ELEMENTS */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating {
    position: absolute;
    background: var(--glass-bg);
    border-radius: 50%;
    animation: float 6s var(--ease-smooth) infinite;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.floating:nth-child(1) {
    width: 120px;
    height: 120px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    background: rgba(184, 251, 60, 0.2);
}

.floating:nth-child(2) {
    width: 80px;
    height: 80px;
    top: 65%;
    left: 85%;
    animation-delay: 2s;
    background: rgba(255, 127, 17, 0.2);
}

.floating:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 35%;
    left: 90%;
    animation-delay: 4s;
    background: rgba(74, 107, 255, 0.2);
}

.floating:nth-child(4) {
    width: 100px;
    height: 100px;
    top: 75%;
    left: 12%;
    animation-delay: 1s;
    background: rgba(147, 51, 234, 0.2);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-20px) rotate(120deg) scale(1.05);
    }
    66% {
        transform: translateY(10px) rotate(240deg) scale(0.95);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE HERO */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
}