/* =========================
   HERO PREMIUM
========================= */
section {
    scroll-margin-top: 80px;
}

.hero-carousel {
    position: relative;
}

.hero-premium {
    width: 100%;
    min-height: 85vh;

    display: flex;
    align-items: center;

    background: #fff;
    overflow: hidden;

    padding-top: 3px;
}

/* =========================
   HERO WRAP
========================= */

.hero-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0px 7%;
}

.hero-left {
    flex: 1;
    width: 100%;
}

.hero-left-content {
    width: 100%;
    max-width: 620px;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .hero-wrap {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-left {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero-left-content {
        max-width: 100%;
    }
}

.badge-hero {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 999px;
    background: #eef4ff;
    color: #2563eb;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-left h1 {
    font-size: 58px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    color: #111827;
}

.hero-left p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btns .btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
}

.hero-right {
    flex: 1;
    min-height: 550px;
    border-radius: 30px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.carousel-item {
    transition:
        transform 1s ease-in-out,
        opacity 0.8s ease;
}

/* =========================
   CLIENT LOGO
========================= */

.client-logo {
    width: 100%;
    max-width: 160px;
    object-fit: contain;
    transition: 0.3s;
    opacity: 0.8;
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* =========================
   MOBILE
========================= */

@media (max-width: 991px) {
    .hero-premium {
        min-height: auto;
        padding-top: 0;
        padding-bottom: 40px;
    }

    .hero-wrap {
        flex-direction: column-reverse;
        text-align: center;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-left {
        max-width: 100%;
    }

    .hero-left h1 {
        font-size: 38px;
        line-height: 1.2;
    }

    .hero-left p {
        font-size: 16px;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-right {
        width: 100%;
        min-height: 320px;
        border-radius: 20px;
    }
}

@media (max-width: 576px) {
    .hero-wrap {
        padding: 30px 15px;
    }

    .hero-left h1 {
        font-size: 30px;
    }

    .hero-left p {
        font-size: 15px;
    }

    .badge-hero {
        font-size: 12px;
        padding: 8px 14px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn {
        width: 100%;
    }

    .hero-right {
        min-height: 230px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}
