/* ========================================
   HERO SECTION - PREMIUM REDESIGN
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #141b3d 50%, #0a0e27 100%);
}

/* Animated Background */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 184, 0, 0.08) 0%, transparent 40%);
    animation: gradientShift 15s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 215, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 215, 0, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Particles */
.hero::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(255, 215, 0, 0.3), transparent),
        radial-gradient(3px 3px at 50% 50%, rgba(255, 215, 0, 0.2), transparent),
        radial-gradient(2px 2px at 80% 10%, rgba(255, 215, 0, 0.4), transparent),
        radial-gradient(2px 2px at 90% 60%, rgba(255, 215, 0, 0.3), transparent);
    background-size: 200% 200%;
    animation: particlesFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particlesFloat {

    0%,
    100% {
        background-position: 0% 0%;
    }

    25% {
        background-position: 100% 0%;
    }

    50% {
        background-position: 100% 100%;
    }

    75% {
        background-position: 0% 100%;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Text Section */
.hero-text-section {
    animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(255, 184, 0, 0.1) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.4);
    }
}

.hero-badge svg {
    animation: shieldPulse 2s ease-in-out infinite;
}

@keyframes shieldPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.hero-main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    font-family: 'Outfit', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 50%, #ffd700 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 3s linear infinite;
    display: inline-block;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #a0a8c1;
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 0.3rem;
    animation: countUp 2s ease-out;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
    color: #0a0e27;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-primary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.5);
}

.btn-hero-primary span,
.btn-hero-primary svg {
    position: relative;
    z-index: 1;
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(5px);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
}

/* Product Showcase */
.hero-product-showcase {
    position: relative;
    animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-carousel {
    position: relative;
    perspective: 1500px;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 500px;
    transform-style: preserve-3d;
}

.carousel-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 350px;
    height: 450px;
    background: transparent;
    /* REMOVED BACKGROUND */
    backdrop-filter: none;
    /* REMOVED BLUR */
    border-radius: 30px;
    border: none;
    /* REMOVED BORDER */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%) rotateY(0deg) translateZ(0px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: none;
    /* REMOVED BOX SHADOW */
}

.carousel-item.active {
    opacity: 1;
    transform: translate(-50%, -50%) rotateY(0deg) translateZ(100px) scale(1.1);
    z-index: 10;
    border-color: transparent;
    /* REMOVED BORDER */
    box-shadow: none;
    /* REMOVED BOX SHADOW */
}

.carousel-item img {
    width: 100%;
    max-width: 250px;
    height: auto;
    max-height: 280px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: transform 0.5s ease;
}

.carousel-item.active img {
    transform: scale(1.05);
    animation: productFloat 3s ease-in-out infinite;
}

@keyframes productFloat {

    0%,
    100% {
        transform: translateY(0) scale(1.05);
    }

    50% {
        transform: translateY(-15px) scale(1.05);
    }
}

.product-info-overlay {
    margin-top: 2rem;
    text-align: center;
}

.product-info-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.product-info-overlay p {
    font-size: 1rem;
    color: #a0a8c1;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: linear-gradient(135deg, #ffd700 0%, #ffb800 100%);
    width: 32px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.indicator:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

/* Floating Badge */
.hero-decoration {
    position: absolute;
    top: 2rem;
    right: 2rem;
}

.floating-badge {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: floatBadge 3s ease-in-out infinite;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

.badge-icon {
    font-size: 1.2rem;
    animation: checkPulse 2s ease-in-out infinite;
}

@keyframes checkPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    color: #a0a8c1;
    font-size: 0.9rem;
    animation: fadeInUp 1s ease-out 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 215, 0, 0.5), transparent);
    animation: scrollLineMove 2s ease-in-out infinite;
}

@keyframes scrollLineMove {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-section {
        order: 2;
    }

    .hero-product-showcase {
        order: 1;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .carousel-track {
        height: 400px;
    }

    .carousel-item {
        width: 300px;
        height: 380px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 5rem 0 3rem;
    }

    .hero-main-title {
        font-size: 1.6rem;
    }

    .hero-lead {
        font-size: 0.9rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .stat-item {
        min-width: auto;
        padding: 0.5rem;
    }
    
    .stat-number {
        font-size: 1.2rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.8rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }

    .carousel-track {
        height: 260px;
    }

    .carousel-item {
        width: 180px;
        height: 240px;
        padding: 1rem;
    }

    .carousel-item img {
        max-width: 140px;
        max-height: 150px;
    }
    
    .product-info h3 {
        font-size: 0.9rem;
    }
    
    .product-info p {
        font-size: 0.75rem;
    }

    .floating-badge {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }

    .scroll-hint {
        display: none;
    }
    
    .hero-product-showcase {
        transform: scale(0.85);
        margin: -20px 0;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 0.8rem;
    }
    
    .hero {
        padding: 4.5rem 0 2rem;
    }

    .hero-main-title {
        font-size: 1.4rem;
        line-height: 1.3;
    }

    .stat-number {
        font-size: 1rem;
    }

    .carousel-track {
        height: 200px;
    }

    .carousel-item {
        width: 150px;
        height: 200px;
        padding: 0.8rem;
    }
    
    .carousel-item img {
        max-width: 110px;
        max-height: 120px;
    }
    
    .hero-product-showcase {
        transform: scale(0.75);
        margin: -30px 0;
    }
    
    .carousel-indicators {
        gap: 6px;
    }
    
    .carousel-indicators button {
        width: 8px;
        height: 8px;
    }
}