/* =========================
   GLOBAL
========================= */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f9fafc;
    color: #1f2937;
}

a {
    text-decoration: none;
}

/* =========================
   NAVBAR
========================= */
.navbar-modern {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    transition: 0.3s;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.logo {
    height: 40px;
}

.navbar-modern .nav-link {
    font-weight: 500;
    color: #333;
    margin: 0 10px;
    position: relative;
}

.navbar-modern .nav-link:hover {
    color: #4f46e5;
}

/* ACTIVE LINK */
.navbar-modern .nav-link.active {
    color: #4f46e5;
    font-weight: 600;
}

/* BUTTON */
.btn-modern {
    border-radius: 10px;
    font-weight: 600;
    padding: 10px 18px;
}

/* =========================
   DROPDOWN
========================= */
.dropdown-modern {
    border: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dropdown-modern .dropdown-item {
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
}

.dropdown-modern .dropdown-item:hover {
    background: #f3f4f6;
}

/* =========================
   HERO
========================= */
.hero-split {
    padding-top: 120px;
    padding-bottom: 80px;
}

.badge-soft {
    display: inline-block;
    background: #eef2ff;
    color: #4f46e5;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.hero-title {
    font-size: 42px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 500px;
}

.hero-img {
    max-height: 400px;
}

/* =========================
   SECTION TITLE
========================= */
.section-title {
    font-weight: 700;
    font-size: 28px;
}

/* =========================
   CARD MODERN
========================= */
.card-modern {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.card-modern h5 {
    font-weight: 600;
    margin-bottom: 10px;
}

.card-modern p {
    font-size: 14px;
    color: #6b7280;
}

.card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* =========================
   PARTNER SLIDER
========================= */
.partner-section {
    background: #ffffff;
}

.partner-slider {
    overflow: hidden;
    position: relative;
}

.slide-track {
    display: flex;
    width: calc(200px * 12);
    animation: scroll 25s linear infinite;
}

.slide {
    width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide img {
    max-width: 120px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.slide img:hover {
    filter: grayscale(0);
    opacity: 1;
}

/* ANIMATION */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   KONTAK
========================= */
section.bg-light {
    background-color: #f3f4f6 !important;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #111827;
    color: #9ca3af;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-img {
        max-height: 300px;
    }

    .navbar-modern .nav-link {
        margin: 5px 0;
    }
}