/* ===================================
   Hero Section - Redesigned (Clean & Fresh)
   =================================== */

/* Simplified Badge */
.hero-badge-simple {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    opacity: 0.95;
}

/* New Title with More Spacing */
.hero-title-new {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 35px;
    letter-spacing: -0.02em;
}

.hero-title-main {
    display: block;
    color: white;
    text-shadow: 
        0 3px 10px rgba(0, 0, 0, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.hero-title-accent-new {
    display: block;
    background: linear-gradient(135deg, 
        #fef08a 0%,   /* Light yellow */
        #fde047 25%,  /* Bright yellow */
        #fbbf24 50%,  /* Golden yellow */
        #f59e0b 75%,  /* Amber */
        #f97316 100%  /* Orange */
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8));
    text-shadow: none;
}

/* Simplified Subtitle */
.hero-subtitle-new {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 60px;
    color: white;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.3);
}

/* New CTA Design - Primary Button Emphasized */
.hero-cta-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-hero-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #fcd34d 0%, #f97316 50%, #c2410c 100%);
    color: white;
    padding: 28px 60px;
    border-radius: 60px;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 
        0 10px 30px rgba(251, 191, 36, 0.5),
        0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 15px 40px rgba(251, 191, 36, 0.6),
        0 6px 15px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fbbf24 0%, #ea580c 50%, #b91c1c 100%);
}

.btn-hero-text {
    font-size: 20px;
    margin-bottom: 8px;
}

.btn-hero-note {
    font-size: 13px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

/* Compact Stats - Horizontal Single Line */
.hero-stats-compact {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 15px;
    color: white;
    opacity: 0.9;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.stat-compact {
    font-weight: 400;
}

.stat-compact strong {
    font-weight: 700;
    font-size: 17px;
    margin-right: 4px;
}

.stat-divider-compact {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title-new {
        font-size: 42px;
    }
    
    .hero-subtitle-new {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .btn-hero-primary {
        padding: 24px 45px;
        font-size: 18px;
    }
    
    .btn-hero-text {
        font-size: 18px;
    }
    
    .hero-stats-compact {
        flex-direction: column;
        gap: 12px;
        font-size: 14px;
    }
    
    .stat-divider-compact {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title-new {
        font-size: 32px;
    }
    
    .hero-subtitle-new {
        font-size: 15px;
    }
    
    .btn-hero-primary {
        padding: 20px 35px;
        font-size: 16px;
    }
    
    .btn-hero-text {
        font-size: 16px;
    }
    
    .btn-hero-note {
        font-size: 12px;
    }
}
