/* ===================================
   HERO SECTION STYLES - AAM WEBSITE
   =================================== */

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><circle fill="rgba(255,255,255,0.03)" cx="150" cy="150" r="50"/><circle fill="rgba(255,215,0,0.05)" cx="800" cy="200" r="80"/><circle fill="rgba(255,107,53,0.04)" cx="300" cy="700" r="60"/><circle fill="rgba(255,255,255,0.02)" cx="700" cy="600" r="40"/></svg>');
    animation: float 20s ease-in-out infinite;
}

.gradient-orbs::before,
.gradient-orbs::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.1), transparent);
    animation: orb-float 15s ease-in-out infinite;
}

.gradient-orbs::before {
    width: 300px;
    height: 300px;
    top: 20%;
    right: 10%;
    animation-delay: -5s;
}

.gradient-orbs::after {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    background: radial-gradient(circle, rgba(255,107,53,0.08), transparent);
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    50% { 
        transform: translateY(-20px) rotate(5deg); 
    }
}

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

.hero-content {
    max-width: 1200px;
    width: 100%;
    z-index: 2;
    position: relative;
    text-align: center;
}

.hero-intro {
    margin-bottom: 64px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: gentle-float 3s ease-in-out infinite;
}

@keyframes gentle-float {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-8px); 
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: slide-up 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-accent {
    background: linear-gradient(135deg, #ffd700, #ccac00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slide-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    line-height: 1.6;
    margin-bottom: 50px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #f8fafc;
    text-shadow: 0 1px 8px rgba(0,0,0,0.12);
}

.hero-subtitle strong {
    color: #ffd700;
    font-weight: 600;
}

/* Feature Cards */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.feature-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: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.premium-card:hover {
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.event-card:hover {
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.platform-card:hover {
    box-shadow: 0 20px 60px rgba(30, 60, 114, 0.4);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.card-icon.gold {
    background: linear-gradient(135deg, #ffd700, #ccac00);
    color: #333;
}

.card-icon.accent {
    background: linear-gradient(135deg, #ff6b35, #ff8f65);
}

.card-icon.primary {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
}

.card-badge {
    background: #ff6b35;
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-badge.exclusive {
    background: linear-gradient(135deg, #ffd700, #ccac00);
    color: #333;
}

.card-countdown {
    text-align: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 12px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.card-countdown span {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #ff6b35;
}

.card-countdown small {
    font-size: 10px;
    opacity: 0.8;
}

.card-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.card-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.card-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    opacity: 0.8;
}

.stat i {
    color: #ffd700;
    width: 16px;
}

.card-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    transition: all 0.3s ease;
}

.feature-card:hover .card-action {
    color: #ffd700;
}

.feature-card:hover .card-action i {
    transform: translateX(4px);
}

/* CTA Section */
.hero-cta {
    margin-bottom: 60px;
}

.cta-main {
    margin-bottom: 30px;
}

.btn-primary.pulse {
    animation: pulse 2s ease-in-out infinite;
    font-size: 18px;
    padding: 18px 36px;
    min-height: 60px;
    position: relative;
    overflow: hidden;
}

@keyframes pulse {
    0%, 100% { 
        box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4); 
    }
    50% { 
        box-shadow: 0 12px 40px rgba(255, 107, 53, 0.6); 
    }
}

.btn-sparkle {
    position: absolute;
    right: 20px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2); 
    }
}

.cta-secondary {
    display: flex;
    gap: 30px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

/* Trust Indicators */
.hero-trust {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    max-width: 500px;
    margin: 0 auto 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 8px;
}

.trust-label {
    font-size: 14px;
    opacity: 0.8;
    display: block;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: gentle-float 3s ease-in-out infinite;
    z-index: 3;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    margin: 0 auto 8px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { 
        top: 8px; 
        opacity: 1; 
    }
    50% { 
        top: 20px; 
        opacity: 0.3; 
    }
}

.scroll-text {
    font-size: 10px;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 100px 15px 60px;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 20px;
    }

    .card-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }

    .cta-secondary {
        flex-direction: column;
        gap: 20px;
    }

    .hero-trust {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .trust-number {
        font-size: 32px;
    }
}

@media (max-width: 575px) {
    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .feature-card {
        padding: 16px;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .card-content h3 {
        font-size: 18px;
    }

    .card-content p {
        font-size: 14px;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }

    .trust-number {
        font-size: 24px;
    }
}