:root {
    --bs-primary: #ff5722;
    --bs-success: #4caf50;
    --bs-danger: #e91e63;

    --mbd-blue-color: #10375C;
    --mbd-orange-color: #EB8317;
    --mbd-white-color: #EFEEEA;
}
/* ===========
    TEXT
=========== */
.text-primary {
    color: var(--mbd-blue-color) !important;
}

.text-mbd-blue {
    color: var(--mbd-blue-color) !important;
}

.text-mbd-orange {
    color: var(--mbd-orange-color) !important;
}
/* ===========
    BUTTON
=========== */
.btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn.btn-primary {
    background-color: var(--mbd-blue-color);
    border-color: var(--mbd-blue-color);
    color: var(--contrast-color);
}

.btn.btn-primary:hover {
    background-color: color-mix(in srgb, var(--mbd-blue-color), transparent 15%);
    border-color: color-mix(in srgb, var(--mbd-blue-color), transparent 15%);
    transform: translateY(-2px);
}

.btn.btn-outline {
    border: 2px solid color-mix(in srgb, var(--mbd-blue-color), transparent 70%);
    color: var(--mbd-blue-color);
    background: transparent;
}

.btn.btn-outline:hover {
    background-color: var(--mbd-blue-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
}

/* =========
   CAROUSEL
============ */

/* Ukuran tombol panah */
.custom-arrow {
    width: 60px;
    height: 60px;
    transition: background-color 0.3s ease, filter 0.3s ease;
    border-radius: 50%;
    /* Opsional: biar berbentuk lingkaran */
    display: flex;
    align-items: center;
    justify-content: center;
    top: 30% !important;
    /* transform: translateY(-50%) !important; */
}

/* Arrow default (putih) */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
    width: 40px;
    height: 40px;
    transition: filter 0.3s ease;
}

/* Saat tombol di-hover -> background jadi abu gelap + arrow jadi gelap */
.custom-arrow:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.custom-arrow:hover .carousel-control-prev-icon,
.custom-arrow:hover .carousel-control-next-icon {
    filter: invert(0);
    /* jadi dark */
}
/* =========
Trusted By
========= */
.trustedby-slider .swiper-wrapper {
    display: flex !important;
    justify-content: center !important;
    /* RATA TENGAH */
    align-items: center;
}
.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

/* Logo */
.trust-img {
    max-height: 100px;
    width: auto;
    opacity: 0.7;
    transition: 0.3s;
    filter: grayscale(100%);
}

.trust-img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* =======
SEJARAH
======== */
/* batas lebar gambar ketika float kanan (desktop) */
.sejarah-img {
    max-width: 45%;
}

/* di mobile ukuran gambar harus 100% dan float dilepas */
@media (max-width: 991.98px) {
    .sejarah-img {
        max-width: 100%;
        float: none !important;
        margin: 0 0 1rem 0 !important;
        /* jarak bawah */
    }
}

/* utilitas supaya teks rapi */
.text-justify {
    text-align: justify;
}

/* ======== */
/* pricing */
/* ======== */
.pricing-card {
    border-radius: 14px;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
}

.pricing-card .card-header h4 {
    font-size: 1.25rem;
}

.pricing-card ul li i {
    font-size: 1.1rem;
}
/*=======
   clamp 
 =======*/
.text-clamp {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    /* jumlah baris */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =======
   Misi
======== */
.misi-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 768px) {
    .misi-list {
        grid-template-columns: 1fr;
    }
}