/* ============================================
   HERO SLIDER - Industry Grade Professional
   Enhanced with Badges, Stats, and Dual Buttons
   ============================================ */

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(218, 65, 65, 0.12);
    border: 1px solid rgba(218, 65, 65, 0.25);
    border-radius: 40px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease;
    align-self: flex-start;
}

.hero-badge .badge-icon {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #da4141, #b83434);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #FCFCFC;
}

.hero-badge .badge-text {
    font-size: 11px;
    font-weight: 700;
    color: #da4141;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Hero Title with Highlight */
.hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #FCFCFC;
    animation: fadeInUp 0.8s ease 0.2s both;
    max-width: 900px;
}

.hero-title .title-highlight {
    background: linear-gradient(135deg, #da4141 0%, #e35d5d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Hero Description */
.hero-description {
    font-size: clamp(0.95rem, 1.5vw, 1.125rem);
    line-height: 1.7;
    color: #D0D0D0;
    max-width: 650px;
    margin-bottom: 35px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

/* Hero Buttons - Dual Style */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    text-decoration: none;
    border: none;
    cursor: pointer;
}

/* Primary Button */
.btn-hero.btn-primary {
    background: linear-gradient(135deg, #da4141 0%, #b83434 100%);
    color: #FCFCFC;
    box-shadow: 0 8px 30px rgba(218, 65, 65, 0.3);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 45px rgba(218, 65, 65, 0.5);
}

/* Outline Button */
.btn-hero.btn-outline {
    background: transparent;
    color: #FCFCFC;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-hero i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

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

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #da4141 0%, #e35d5d 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat .stat-label {
    font-size: 12px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Slider Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .slide-content {
        padding: 140px 20px 80px;
        min-height: auto;
    }
    
    .hero-badge {
        padding: 6px 16px;
    }
    
    .hero-badge .badge-text {
        font-size: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 13px 28px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 130px 20px 60px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-stat {
        flex-direction: row;
        align-items: center;
        gap: 12px;
    }
    
    .hero-stat .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat .stat-label {
        font-size: 11px;
    }
}
