/**
 * Modern Hero Section - YAGPDB-Inspired Clean Design
 * Custom Scrapline branding with smooth animations
 */
.hero-modern {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1d29 0%, #0f111a 100%);
    overflow: hidden;
    padding: 4rem 2rem;
}
.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
/* Custom Scrapline Text Logo */
.scrapline-logo-text {
    margin-bottom: 2rem;
}
.brand-text {
    font-size: 5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin: 0;
    line-height: 1;
    text-transform: uppercase;
}
.brand-scrap {
    color: #ff5c00;
    text-shadow: 0 0 30px rgba(255, 92, 0, 0.5);
}
.brand-line {
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}
.brand-underline {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #ff5c00 0%, transparent 100%);
    margin: 1rem auto 0;
    border-radius: 2px;
}
/* Subtitle */
.hero-subtitle-modern {
    font-size: 1.3rem;
    color: #b0b3b8;
    line-height: 1.6;
    margin: 0 auto 3rem;
    max-width: 700px;
    font-weight: 400;
}
/* Stats Counter */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 3rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    max-width: 600px;
}
.stat-item {
    flex: 1;
    text-align: center;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ff5c00;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 0.9rem;
    color: #b0b3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.stat-divider {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
}
/* Buttons */
.hero-buttons-modern {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.btn-primary-modern,
.btn-secondary-modern {
    padding: 1rem 2.5rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}
.btn-primary-modern {
    background: linear-gradient(135deg, #ff5c00 0%, #e65100 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(255, 92, 0, 0.3);
    border: none;
}
.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 92, 0, 0.5);
}
.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
/* Animated Background Shapes (YAGPDB-inspired) */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
}
.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #ff5c00 0%, #e65100 100%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}
.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}
.shape-3 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #ff5c00 0%, #e65100 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}
@keyframes 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);
    }
}
/* Slide Up Fade Animation */
.slide-up-fade {
    opacity: 0;
    animation: slideUpFade 1s ease forwards;
}
.delay-1 {
    animation-delay: 0.2s;
}
.delay-2 {
    animation-delay: 0.4s;
}
.delay-3 {
    animation-delay: 0.6s;
}
@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .hero-modern {
        padding: 2rem 1rem;
        min-height: auto;
    }
    .hero-content-modern {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }
    .scrapline-logo-text {
        margin-bottom: 1rem;
    }
    .brand-text {
        font-size: 2.75rem;
    }
    .brand-underline {
        width: 100px;
        margin: 0.75rem auto 0;
    }
    .hero-subtitle-modern {
        font-size: 1rem;
        line-height: 1.5;
        margin: 1.25rem 0 1.5rem 0;
        padding: 0;
    }
    /* Stats Section - Mobile Optimized */
    .hero-stats {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
        margin: 1.5rem 0;
    }
    .stat-item {
        width: 100%;
    }
    .stat-number {
        font-size: 2.25rem;
        margin-bottom: 0.25rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
    .stat-divider {
        width: 60%;
        height: 1px;
        margin: 0.5rem auto;
    }
    /* Buttons - Mobile Optimized */
    .hero-buttons-modern {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        gap: 0.75rem;
        margin: 1.5rem 0 0 0;
        padding: 0;
    }
    .btn-primary-modern,
    .btn-secondary-modern {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    .shape {
        filter: blur(50px);
        opacity: 0.08;
    }
}
@media (max-width: 480px) {
    .brand-text {
        font-size: 2.25rem;
    }
    .hero-subtitle-modern {
        font-size: 0.95rem;
    }
    .stat-number {
        font-size: 2rem;
    }
}
