

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0a0a0f;
}

/* Animated Background */
.hero-bg-animated {
    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 30%, #16213e 60%, #0f3460 100%);
    animation: bgShift 15s ease-in-out infinite;
    background-size: 400% 400%;
}

@keyframes bgShift {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

/* Parallax Image */
.hero-parallax {
    opacity: 0.15;
    transform: scale(1.1);
    animation: parallaxMove 20s ease-in-out infinite;
}

@keyframes parallaxMove {
    0%, 100% { transform: scale(1.1) translate(0, 0); }
    50% { transform: scale(1.15) translate(-10px, -10px); }
}

/* Overlay */
.hero-overlay {
    background: linear-gradient(
        135deg,
        rgba(220, 53, 69, 0.15) 0%,
        rgba(0, 0, 0, 0.7) 50%,
        rgba(253, 126, 20, 0.1) 100%
    );
}

/* Grid Pattern */
.hero-grid-pattern {
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.5;
}

/* Floating Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    z-index: 1;
}

.hero-orb-1 {
    width: 500px;
    height: 500px;
    background: #dc3545;
    top: -150px;
    right: -100px;
    animation: orbFloat1 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: #fd7e14;
    bottom: -100px;
    left: -50px;
    animation: orbFloat2 10s ease-in-out infinite;
}

.hero-orb-3 {
    width: 250px;
    height: 250px;
    background: #667eea;
    top: 50%;
    left: 50%;
    animation: orbFloat3 12s ease-in-out infinite;
}

@keyframes orbFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -30px) scale(1.1); }
    66% { transform: translate(-30px, 50px) scale(0.9); }
}

@keyframes orbFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-40px, 20px) scale(1.15); }
    66% { transform: translate(20px, -40px) scale(0.85); }
}

@keyframes orbFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, 30px) scale(1.2); }
}

/* Welcome Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b7a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease-in-out infinite;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dc3545;
    animation: dotPulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 20px rgba(220, 53, 69, 0.2); }
    50% { box-shadow: 0 0 40px rgba(220, 53, 69, 0.4); }
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* Hero Title */
.hero-title {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-title-gradient {
    display: block;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ef4444 0%, #f97316 30%, #f59e0b 60%, #ef4444 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
    letter-spacing: -2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-title-sub {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
    margin-top: 5px;
}

/* Description */
.hero-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 550px;
    margin-bottom: 2rem;
}

.text-highlight {
    color: #ff6b7a;
    font-weight: 600;
    position: relative;
}

/* Stats Mini Cards */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: center;
}

.hero-stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2px;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Buttons */
.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #dc3545, #fd7e14);
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.4);
    color: white;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary i {
    transition: transform 0.3s ease;
}

.hero-btn-primary:hover i {
    transform: translateX(5px);
}

.hero-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateY(-3px);
}

/* 3D Floating Cards */
.hero-3d-element {
    position: relative;
    animation: float3D 6s ease-in-out infinite;
}

@keyframes float3D {
    0%, 100% { transform: translateY(0) rotateY(0deg); }
    25% { transform: translateY(-20px) rotateY(5deg); }
    75% { transform: translateY(10px) rotateY(-5deg); }
}

.floating-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    color: white;
    margin-bottom: 15px;
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card-2 {
    animation-delay: 2s;
    margin-left: 30px;
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.floating-card-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.floating-card h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1rem;
}

.floating-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    transform: translateX(-50%) translateY(5px);
}

.scroll-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: #dc3545;
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% { top: 8px; opacity: 1; }
    100% { top: 24px; opacity: 0; }
}

/* Responsive */
@media (max-width: 991px) {
    .hero-stats {
        justify-content: center;
    }
    .hero-title-gradient {
        font-size: clamp(2.5rem, 10vw, 4rem);
    }
    .hero-title-sub {
        font-size: clamp(1.2rem, 4vw, 1.8rem);
    }
}

@media (max-width: 575px) {
    .hero-stats {
        gap: 1rem;
    }
    .hero-btn-primary,
    .hero-btn-outline {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}
