:root {
    --hero-dark: #031722;
    --hero-blue: #087eb7;
    --hero-cyan: #16b8c8;
    --hero-white: #ffffff;
    --hero-muted: rgba(255, 255, 255, 0.72);
}

.bysamy-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: var(--hero-dark);
}

.bysamy-hero-slider,
.bysamy-hero-slider .carousel-inner,
.bysamy-hero-slider .carousel-item {
    position: relative;
    min-height: 760px;
}

.bysamy-hero-slider .carousel-item {
    overflow: hidden;
}

.min-vh-75 {
    min-height: 760px;
}

/* IMAGE */

.bysamy-hero-media {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.bysamy-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.04);
    transition: transform 9s ease;
}

.bysamy-hero-slider .carousel-item.active .bysamy-hero-image {
    transform: scale(1.13);
}

/* OVERLAYS */

.bysamy-hero-overlay,
.bysamy-hero-gradient,
.bysamy-hero-pattern {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bysamy-hero-overlay {
    background:
        linear-gradient(
            90deg,
            rgba(2, 18, 28, 0.94) 0%,
            rgba(2, 18, 28, 0.78) 38%,
            rgba(2, 18, 28, 0.40) 68%,
            rgba(2, 18, 28, 0.15) 100%
        );
}

.bysamy-hero-gradient {
    background:
        linear-gradient(
            0deg,
            rgba(3, 23, 34, 0.88) 0%,
            transparent 38%
        ),
        radial-gradient(
            circle at 75% 40%,
            rgba(22, 184, 200, 0.12),
            transparent 35%
        );
}

.bysamy-hero-pattern {
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.05) 1px,
            transparent 1px
        );
    background-size: 85px 85px;
}

/* CONTENT */

.bysamy-hero-container {
    position: relative;
    z-index: 5;
}

.bysamy-hero-content {
    max-width: 760px;
    padding: 85px 0 120px;
}

.bysamy-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 22px;
    color: #8de8ef;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.bysamy-eyebrow-line {
    width: 45px;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        var(--hero-blue),
        var(--hero-cyan)
    );
}

.bysamy-hero-title {
    max-width: 760px;
    margin: 0 0 25px;
    color: #ffffff;
    font-size: clamp(48px, 5.5vw, 82px);
    line-height: 1.02;
    font-weight: 800;
    letter-spacing: -3px;
}

.bysamy-hero-title span {
    display: block;
    color: #80e1e9;
}

.bysamy-hero-description {
    max-width: 650px;
    margin-bottom: 33px;
    color: var(--hero-muted);
    font-size: 16px;
    line-height: 1.9;
}

/* BUTTONS */

.bysamy-hero-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.bysamy-hero-primary,
.bysamy-hero-secondary {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    padding: 0 24px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.bysamy-hero-primary {
    color: #ffffff;
    background: linear-gradient(
        135deg,
        var(--hero-blue),
        var(--hero-cyan)
    );
    box-shadow: 0 17px 38px rgba(8, 126, 183, 0.32);
}

.bysamy-hero-primary:hover {
    transform: translateY(-4px);
    color: #ffffff;
    box-shadow: 0 22px 45px rgba(8, 126, 183, 0.40);
}

.bysamy-hero-secondary {
    border: 1px solid rgba(255, 255, 255, 0.30);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.bysamy-hero-secondary:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.65);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
}

.bysamy-play-icon {
    width: 31px;
    height: 31px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.13);
}

/* FEATURES */

.bysamy-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-top: 42px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.bysamy-hero-feature {
    display: flex;
    align-items: center;
    gap: 11px;
}

.bysamy-hero-feature > i {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(22, 184, 200, 0.25);
    border-radius: 12px;
    color: #7de1e9;
    background: rgba(22, 184, 200, 0.09);
}

.bysamy-hero-feature strong,
.bysamy-hero-feature span {
    display: block;
}

.bysamy-hero-feature strong {
    margin-bottom: 3px;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
}

.bysamy-hero-feature span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 9px;
}

/* RIGHT CARD */

.bysamy-hero-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 27px;
    color: #ffffff;
    background: rgba(3, 23, 34, 0.46);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.30);
    backdrop-filter: blur(18px);
}

.bysamy-hero-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 3px;
    border-radius: 0 0 10px 10px;
    background: linear-gradient(
        90deg,
        var(--hero-blue),
        var(--hero-cyan)
    );
}

.bysamy-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px;
}

.bysamy-card-top > span {
    color: #7ee1e9;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.bysamy-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    font-size: 12px;
}

.bysamy-card-rating i {
    color: #ffc857;
}

.bysamy-hero-card h3 {
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 1.3;
    font-weight: 800;
}

.bysamy-hero-card > p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
    line-height: 1.8;
}

.bysamy-card-list {
    display: grid;
    gap: 10px;
    margin-bottom: 23px;
}

.bysamy-card-list div {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.045);
    font-size: 11px;
    font-weight: 700;
}

.bysamy-card-list i {
    color: var(--hero-cyan);
}

.bysamy-card-whatsapp {
    width: 100%;
    min-height: 51px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 13px;
    color: #ffffff;
    background: #25d366;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.25s ease;
}

.bysamy-card-whatsapp:hover {
    transform: translateY(-3px);
    color: #ffffff;
}

/* COUNTER */

.bysamy-slide-counter {
    position: absolute;
    right: 45px;
    top: 50%;
    z-index: 7;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    transform: translateY(-50%);
    color: #ffffff;
}

.bysamy-current-slide {
    font-size: 18px;
    font-weight: 800;
}

.bysamy-counter-line {
    width: 1px;
    height: 55px;
    background: rgba(255, 255, 255, 0.35);
}

.bysamy-total-slide {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
}

/* BOTTOM */

.bysamy-slider-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 8;
    min-height: 90px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(3, 23, 34, 0.50);
    backdrop-filter: blur(14px);
}

.bysamy-slider-bottom-inner {
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.bysamy-hero-indicators {
    position: static;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.bysamy-hero-indicators button {
    width: 38px !important;
    height: 38px !important;
    margin: 0 !important;
    border: 1px solid rgba(255, 255, 255, 0.16) !important;
    border-radius: 11px !important;
    opacity: 1 !important;
    color: rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.05) !important;
    text-indent: 0 !important;
}

.bysamy-hero-indicators button.active {
    border-color: var(--hero-cyan) !important;
    color: #ffffff;
    background: var(--hero-blue) !important;
}

.bysamy-hero-indicators button span {
    font-size: 10px;
    font-weight: 800;
}

.bysamy-slider-progress {
    position: relative;
    flex: 1;
    height: 2px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.14);
}

.bysamy-slider-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform-origin: left;
    background: linear-gradient(
        90deg,
        var(--hero-blue),
        var(--hero-cyan)
    );
    animation: bysamyProgress 6.5s linear infinite;
}

@keyframes bysamyProgress {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.bysamy-slider-controls {
    display: flex;
    align-items: center;
    gap: 9px;
}

.bysamy-slider-arrow {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transition:
        transform 0.25s ease,
        background 0.25s ease;
}

.bysamy-slider-arrow:hover {
    transform: translateY(-3px);
    background: var(--hero-blue);
}

/* SCROLL */

.bysamy-scroll-indicator {
    position: absolute;
    right: 25px;
    bottom: 118px;
    z-index: 8;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: rotate(-90deg);
    transform-origin: right bottom;
    color: rgba(255, 255, 255, 0.60);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
}

/* ANIMATIONS */

.bysamy-hero-eyebrow,
.bysamy-hero-title,
.bysamy-hero-description,
.bysamy-hero-actions,
.bysamy-hero-features,
.bysamy-hero-card {
    opacity: 0;
    transform: translateY(35px);
}

.carousel-item.active .bysamy-hero-eyebrow {
    animation: heroFadeUp 0.7s 0.15s forwards;
}

.carousel-item.active .bysamy-hero-title {
    animation: heroFadeUp 0.8s 0.28s forwards;
}

.carousel-item.active .bysamy-hero-description {
    animation: heroFadeUp 0.8s 0.40s forwards;
}

.carousel-item.active .bysamy-hero-actions {
    animation: heroFadeUp 0.8s 0.52s forwards;
}

.carousel-item.active .bysamy-hero-features {
    animation: heroFadeUp 0.8s 0.64s forwards;
}

.carousel-item.active .bysamy-hero-card {
    animation: heroFadeUp 0.9s 0.45s forwards;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */

@media (max-width: 1199.98px) {
    .bysamy-hero-slider,
    .bysamy-hero-slider .carousel-inner,
    .bysamy-hero-slider .carousel-item,
    .min-vh-75 {
        min-height: 700px;
    }

    .bysamy-slide-counter,
    .bysamy-scroll-indicator {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .bysamy-hero-slider,
    .bysamy-hero-slider .carousel-inner,
    .bysamy-hero-slider .carousel-item,
    .min-vh-75 {
        min-height: 650px;
    }

    .bysamy-hero-content {
        padding-top: 75px;
        padding-bottom: 125px;
    }

    .bysamy-hero-title {
        font-size: 58px;
    }
}

@media (max-width: 767.98px) {
    .bysamy-hero-slider,
    .bysamy-hero-slider .carousel-inner,
    .bysamy-hero-slider .carousel-item,
    .min-vh-75 {
        min-height: 620px;
    }

    .bysamy-hero-title {
        font-size: 45px;
        letter-spacing: -1.5px;
    }

    .bysamy-hero-description {
        font-size: 14px;
        line-height: 1.75;
    }

    .bysamy-hero-features {
        display: none;
    }

    .bysamy-slider-progress {
        display: none;
    }

    .bysamy-slider-bottom-inner {
        justify-content: space-between;
    }
}

@media (max-width: 575.98px) {
    .bysamy-hero-slider,
    .bysamy-hero-slider .carousel-inner,
    .bysamy-hero-slider .carousel-item,
    .min-vh-75 {
        min-height: 640px;
    }

    .bysamy-hero-content {
        padding-top: 60px;
    }

    .bysamy-hero-title {
        font-size: 38px;
    }

    .bysamy-hero-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .bysamy-hero-primary,
    .bysamy-hero-secondary {
        width: 100%;
    }

    .bysamy-slider-controls {
        display: none;
    }

    .bysamy-hero-indicators {
        width: 100%;
        justify-content: center;
    }
}