/* ================================
   FULL WIDTH HERO IMAGE SLIDER
================================ */

.hero {
    --hero-cyan: #20d9e8;
    --hero-green: #69e76f;
    --hero-dark: #020b16;
    --hero-white: #ffffff;
    --hero-muted: rgba(235, 250, 255, 0.82);
    --hero-line: rgba(255, 255, 255, 0.2);

    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    overflow: hidden;
    background: var(--hero-dark);
    color: var(--hero-white);
}

.hero-stage {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition:
        opacity 0.9s ease,
        visibility 0.9s ease;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    z-index: 2;
}

.hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.08);
    transition: transform 6.5s ease;
}

.hero-slide.active .hero-img {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(
            90deg,
            rgba(1, 8, 15, 0.9) 0%,
            rgba(1, 16, 27, 0.72) 42%,
            rgba(1, 12, 22, 0.32) 74%,
            rgba(1, 8, 15, 0.62) 100%
        ),
        linear-gradient(
            180deg,
            rgba(1, 8, 15, 0.18) 0%,
            rgba(1, 8, 15, 0.82) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 3;
    width: min(760px, calc(100% - 170px));
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 0 120px;
    margin-left: 7vw;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    margin: 0 0 18px;
    color: var(--hero-cyan);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.hero-eyebrow::before {
    content: "";
    width: 44px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--hero-cyan), var(--hero-green));
}

.hero-content h1 {
    margin: 0 0 22px;
    font-size: clamp(44px, 6.8vw, 96px);
    line-height: 0.95;
    letter-spacing: -0.06em;
    color: #fff;
    max-width: 860px;
}

.hero-text {
    max-width: 650px;
    margin: 0 0 34px;
    color: var(--hero-muted);
    font-size: clamp(16px, 1.4vw, 20px);
    line-height: 1.75;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    width: fit-content;
    min-height: 60px;
    padding: 8px 8px 8px 26px;
    border-radius: 999px;
    color: #00131b;
    text-decoration: none;
    font-weight: 950;
    background: linear-gradient(135deg, var(--hero-cyan), var(--hero-green));
    box-shadow:
        0 20px 50px rgba(32, 217, 232, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.55);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 28px 70px rgba(32, 217, 232, 0.34),
        inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.hero-btn i {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 19, 27, 0.94);
    color: #fff;
    font-size: 22px;
    font-style: normal;
    transition: transform 0.3s ease;
}

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

/* ================================
   RIGHT SIDE MODERN SLIDER BUTTONS
================================ */

.hero-controls {
    position: absolute;
    z-index: 20;
    right: 34px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 12px;
    border: 1px solid var(--hero-line);
    border-radius: 999px;
    background: rgba(1, 12, 22, 0.5);
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.hero-arrow,
.hero-dot {
    border: 0;
    cursor: pointer;
    font: inherit;
}

.hero-arrow {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 20px;
    font-weight: 900;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease,
        box-shadow 0.3s ease;
}

.hero-arrow:hover {
    color: #00131b;
    background: linear-gradient(135deg, var(--hero-cyan), var(--hero-green));
    transform: scale(1.08);
    box-shadow: 0 12px 34px rgba(32, 217, 232, 0.28);
}

.hero-dots {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-dot {
    position: relative;
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    overflow: hidden;
    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}

.hero-dot span {
    position: relative;
    z-index: 2;
    font-size: 12px;
    font-weight: 950;
}

.hero-dot::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--hero-cyan), var(--hero-green));
    opacity: 0;
    transform: scale(0.5);
    transition:
        opacity 0.3s ease,
        transform 0.3s ease;
}

.hero-dot:hover,
.hero-dot.active {
    color: #00131b;
    transform: scale(1.08);
}

.hero-dot:hover::before,
.hero-dot.active::before {
    opacity: 1;
    transform: scale(1);
}

.hero-dot.active {
    box-shadow: 0 12px 34px rgba(32, 217, 232, 0.3);
}

/* ================================
   SLIDE TEXT ANIMATION
================================ */

.hero-slide.active .hero-eyebrow,
.hero-slide.active h1,
.hero-slide.active .hero-text,
.hero-slide.active .hero-btn {
    animation: heroTextUp 0.8s ease both;
}

.hero-slide.active h1 {
    animation-delay: 0.08s;
}

.hero-slide.active .hero-text {
    animation-delay: 0.16s;
}

.hero-slide.active .hero-btn {
    animation-delay: 0.24s;
}

@keyframes heroTextUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

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

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 1024px) {
    .hero {
        min-height: 620px;
    }

    .hero-content {
        width: min(720px, calc(100% - 130px));
        margin-left: 5vw;
    }

    .hero-controls {
        right: 22px;
    }
}

@media (max-width: 768px) {
    .hero {
        height: 100svh;
        min-height: 620px;
    }

    .hero-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(1, 8, 15, 0.42) 0%,
                rgba(1, 8, 15, 0.74) 42%,
                rgba(1, 8, 15, 0.94) 100%
            );
    }

    .hero-content {
        width: calc(100% - 36px);
        margin: 0;
        padding: 90px 18px 150px;
        justify-content: flex-end;
    }

    .hero-content h1 {
        font-size: clamp(38px, 11vw, 58px);
        line-height: 1;
        margin-bottom: 16px;
    }

    .hero-text {
        font-size: 15px;
        line-height: 1.62;
        margin-bottom: 26px;
    }

    .hero-controls {
        top: auto;
        right: 18px;
        bottom: 28px;
        transform: none;
        flex-direction: row;
        gap: 9px;
        padding: 9px;
    }

    .hero-dots {
        flex-direction: row;
        gap: 7px;
    }

    .hero-arrow,
    .hero-dot {
        width: 40px;
        height: 40px;
    }

    .hero-dot span {
        font-size: 11px;
    }
}

@media (max-width: 520px) {
    .hero {
        min-height: 590px;
    }

    .hero-content {
        width: 100%;
        padding: 84px 16px 132px;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 0.13em;
        margin-bottom: 12px;
    }

    .hero-eyebrow::before {
        width: 30px;
    }

    .hero-content h1 {
        font-size: clamp(34px, 12vw, 48px);
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-btn {
        width: 100%;
        justify-content: space-between;
        min-height: 56px;
        padding-left: 20px;
    }

    .hero-btn i {
        width: 42px;
        height: 42px;
    }

    .hero-controls {
        left: 16px;
        right: 16px;
        bottom: 18px;
        justify-content: center;
        border-radius: 999px;
    }

    .hero-arrow,
    .hero-dot {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 380px) {
    .hero {
        min-height: 560px;
    }

    .hero-content {
        padding: 76px 14px 120px;
    }

    .hero-content h1 {
        font-size: 31px;
    }

    .hero-text {
        font-size: 13px;
    }

    .hero-arrow,
    .hero-dot {
        width: 32px;
        height: 32px;
    }

    .hero-dot span {
        font-size: 10px;
    }
}