/* ===== ULTRA PREMIUM HERO ENHANCEMENTS ===== */

/* Animated Background Waves */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: cover;
    background-repeat: no-repeat;
    animation: waveMove 15s ease-in-out infinite;
    z-index: 2;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-50px); }
}

/* Premium Particle Effect */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.6);
    border-radius: 50%;
    animation: float 20s infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 15s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 18s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 20s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 19s; }
.particle:nth-child(6) { left: 60%; animation-delay: 5s; animation-duration: 17s; }
.particle:nth-child(7) { left: 70%; animation-delay: 2s; animation-duration: 21s; }
.particle:nth-child(8) { left: 80%; animation-delay: 4s; animation-duration: 15s; }
.particle:nth-child(9) { left: 90%; animation-delay: 1s; animation-duration: 18s; }
.particle:nth-child(10) { left: 15%; animation-delay: 3s; animation-duration: 16s; }

@keyframes float {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) scale(1);
        opacity: 0;
    }
}

/* Luxury Stats Bar */
.stats-bar {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    z-index: 4;
    background: rgba(10, 37, 64, 0.8);
    backdrop-filter: blur(20px);
    padding: 2rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 2rem;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--accent-gold);
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

/* Premium Badge Overlay */
.premium-badge {
    position: absolute;
    top: 100px;
    right: 50px;
    z-index: 4;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.95), rgba(193, 155, 46, 0.95));
    padding: 1.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); }
    50% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5); }
}

.premium-badge-icon {
    font-size: 2rem;
    color: var(--primary-color);
    display: block;
    text-align: center;
    margin-bottom: 0.5rem;
}

.premium-badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

/* Enhanced Wave Icon */
.wave-icon {
    position: relative;
    display: inline-block;
}

.wave-icon::before,
.wave-icon::after {
    content: '🌊';
    position: absolute;
    top: 0;
    opacity: 0.3;
    animation: waveSpread 2s ease-in-out infinite;
}

.wave-icon::before {
    left: -60px;
    animation-delay: 0.3s;
}

.wave-icon::after {
    right: -60px;
    animation-delay: 0.6s;
}

@keyframes waveSpread {
    0%, 100% { transform: scale(0.8); opacity: 0; }
    50% { transform: scale(1); opacity: 0.3; }
}

/* Luxury Divider */
.luxury-divider {
    position: relative;
    height: 100px;
    background: linear-gradient(to bottom, white 0%, transparent 100%);
    margin-top: -100px;
    z-index: 5;
}

.luxury-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.luxury-divider::after {
    content: '⚓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--accent-gold);
    background: white;
    padding: 0 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* Responsive Adjustments */
@media (max-width: 968px) {
    .stats-bar {
        bottom: 80px;
        padding: 1.5rem 0;
    }
    
    .stats-container {
        flex-wrap: wrap;
        gap: 2rem;
    }
    
    .stat-item {
        flex: 0 0 45%;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .premium-badge {
        top: 80px;
        right: 20px;
        padding: 1rem 1.5rem;
    }
    
    .premium-badge-icon {
        font-size: 1.5rem;
    }
    
    .premium-badge-text {
        font-size: 0.75rem;
    }
}

@media (max-width: 600px) {
    .stats-bar {
        display: none;
    }
    
    .premium-badge {
        display: none;
    }
    
    .wave-icon::before,
    .wave-icon::after {
        display: none;
    }
}
