/* =============================================
   HERO COMPONENT CSS
   ============================================= */

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--dark);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-image: url('../../img/hero-risol.jpg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 0.1s ease;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(43, 43, 43, 0.88) 0%,
            rgba(43, 43, 43, 0.55) 50%,
            rgba(43, 43, 43, 0.25) 100%);
    z-index: 1;
}

.hero-overlay-accent {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 60%,
            rgba(255, 250, 240, 0.08) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 92px 0 20px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 210, 48, 0.15);
    border: 1.5px solid rgba(255, 210, 48, 0.5);
    border-radius: 50px;
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    margin-bottom: 12px;
    animation: fadeInDown 0.8s ease both;
}

.hero-eyebrow svg {
    width: 14px;
    height: 14px;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 3.2rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 12px;
    animation: fadeInUp 0.9s ease 0.15s both;
}

.hero-headline .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-headline .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(255, 210, 48, 0.3);
    border-radius: 4px;
    z-index: -1;
}

.hero-sub {
    font-size: clamp(0.88rem, 1.5vw, 1rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 560px;
    margin-bottom: 18px;
    font-weight: 300;
    animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.45s both;
}

.hero-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 24px rgba(255, 210, 48, 0.45);
    letter-spacing: 0.02em;
}

.hero-cta-primary:hover {
    background: var(--primary-dark);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(255, 210, 48, 0.55);
}

.hero-cta-primary i {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    letter-spacing: 0.02em;
}


.hero-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.hero-cta-secondary i {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Hero stats bar */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease 0.6s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 2px;
}

.hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

/* Hero image right panel */
.hero-image-col {
    position: relative;
    z-index: 2;
    text-align: center;
    animation: floatIn 1.2s ease 0.3s both;
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-product-showcase {
    position: relative;
    display: inline-block;
}

.hero-product-img {
    width: 100%;
    max-width: 360px;
    height: 360px;
    object-fit: cover;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
    animation: morphShape 8s ease-in-out infinite;
}

@keyframes morphShape {

    0%,
    100% {
        border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
    }

    50% {
        border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%;
    }
}

.hero-float-badge {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-float-badge.badge-1 {
    top: 10%;
    right: -20px;
    animation-delay: 0s;
}

.hero-float-badge.badge-2 {
    bottom: 15%;
    left: -30px;
    animation-delay: 1.5s;
}

.float-badge-icon {
    font-size: 1.6rem;
}

.float-badge-text strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--dark);
}

.float-badge-text span {
    font-size: 0.72rem;
    color: var(--gray-500);
}

/* Hero scroll indicator */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: fadeInUp 0.9s ease 1s both;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(8px);
        opacity: 0.2;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding: 92px 0 20px;
    }

    .hero-image-col {
        display: none;
    }

    .hero-section {
        height: 100vh;
        min-height: 520px;
    }
}

@media (max-width: 576px) {
    .hero-cta-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        gap: 20px;
    }

    .hero-stat-divider {
        display: none;
    }
}

/* =============================================
   HERO WAVE DIVIDER
   ============================================= */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    margin-bottom: -7px;
}

/* Animation */
.hero-waves>g>use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}

.hero-waves>g.wave1>use {
    animation-delay: -2s;
    animation-duration: 7s;
}

.hero-waves>g.wave2>use {
    animation-delay: -3s;
    animation-duration: 10s;
}

.hero-waves>g.wave3>use {
    animation-delay: -4s;
    animation-duration: 13s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}
