:root {
    --primary: #0b4f91;
    --primary-dark: #071f3a;
    --primary-soft: #eef7ff;
    --secondary: #f4a11a;
    --text-dark: #172033;
    --text-muted: #5f6b7a;
    --white: #ffffff;
    --soft: #f7fbff;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Poppins', Arial, sans-serif;
    color: var(--text-dark);
    background: #ffffff;
    overflow-x: hidden;
}



.navbar {
    background: rgba(255, 255, 255, 0.98);
    min-height: 112px;
    border-bottom: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 6px 22px rgba(15, 23, 42, 0.04);
    backdrop-filter: blur(12px);
    padding-top: 6px;
    padding-bottom: 6px;
}

.navbar .container {
    max-width: 1180px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    width: 170px;
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 0;
    margin-right: 28px;
}

.navbar-brand img {
    height: 128px !important;
    width: auto;
    max-width: none !important;
    max-height: none !important;
    object-fit: contain;
    display: block;
    transform: none !important;
    transform-origin: center;
}

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.nav-link {
    color: #172033 !important;
    font-size: 15.5px;
    font-weight: 600;
    margin: 0 8px;
    padding: 10px 4px !important;
    position: relative;
    transition: 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 4px;
    right: 4px;
    bottom: -3px;
    height: 3px;
    border-radius: 10px;
    background: var(--primary);
    transform: scaleX(0);
    transition: 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}



.hero {
    padding: 150px 0 24px;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 145, 0.07), transparent 32%),
        radial-gradient(circle at top right, rgba(244, 161, 26, 0.08), transparent 28%),
        #ffffff;
}

.hero .container {
    max-width: 960px;
}

.hero h1 {
    margin: 0 auto;
    max-width: 850px;
    color: #172033;
    font-size: clamp(31px, 3.55vw, 50px);
    line-height: 1.22;
    font-weight: 800;
    letter-spacing: 0.2px;
}

.hero p {
    max-width: 760px;
    margin: 16px auto 0;
    color: #334155;
    font-size: 16px;
    line-height: 1.7;
}

.hero .mt-4 {
    margin-top: 24px !important;
}


.btn-main,
.btn-outline-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    border-radius: 9px;
    padding: 11px 24px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-main {
    background: var(--primary);
    color: #ffffff !important;
    border: 2px solid var(--primary);
}

.btn-main:hover {
    background: #073f78;
    border-color: #073f78;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(11, 79, 145, 0.22);
}

.btn-outline-main {
    background: #ffffff;
    color: var(--primary) !important;
    border: 2px solid var(--primary);
}

.btn-outline-main:hover {
    background: var(--primary);
    color: #ffffff !important;
    transform: translateY(-2px);
}



.section-title {
    color: #172033;
    font-size: clamp(26px, 2.45vw, 34px);
    font-weight: 800;
    line-height: 1.25;
}

.section-subtitle {
    max-width: 820px;
    margin: 12px auto 0;
    color: var(--text-muted);
    font-size: 15.5px;
    line-height: 1.7;
}



.service-section {
    padding: 34px 0 68px;
}

.service-section .container {
    max-width: 1040px;
}

.service-section .text-center.mb-5 {
    margin-bottom: 32px !important;
}

.service-section .row {
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.service-section .col-md-6,
.service-section .col-lg-4 {
    display: flex;
    justify-content: center;
}

.service-card {
    width: 100%;
    max-width: 245px;
    border-radius: 18px;
    overflow: hidden;
    border: none;
    background: #ffffff;
    box-shadow: 0 15px 34px rgba(15, 23, 42, 0.12);
    transition: 0.28s ease;
}

.service-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: 0.35s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(15, 23, 42, 0.18);
}

.service-card:hover img {
    transform: scale(1.025);
}



.about-section {
    padding: 70px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.about-box {
    padding: 32px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.about-box p {
    color: #465568;
    line-height: 1.8;
}

.feature-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* ==============================
   LEGALITAS
============================== */

.legal-section {
    padding: 70px 0;
    background: #ffffff;
}

.legal-card {
    max-width: 760px;
    margin: auto;
    padding: 36px 26px;
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.logo-ahu {
    width: 88px;
    height: auto;
    border-radius: 8px;
    margin: 18px 0;
}

/* ==============================
   FOOTER
============================== */

.footer {
    padding: 48px 0 24px;
    background: linear-gradient(135deg, #071f3a, #0b2d52);
    color: #ffffff;
}

.footer-logo {
    width: 160px;
    height: auto;
    margin-bottom: 14px;
}

.footer p,
.footer a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.footer a:hover {
    color: #ffffff;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

/* ==============================
   FLOATING WHATSAPP
============================== */

.floating-wa {
    position: fixed;
    right: 22px;
    bottom: 24px;
    z-index: 999;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(37, 211, 102, 0.35);
    transition: 0.25s ease;
}

.floating-wa:hover {
    transform: translateY(-3px);
}

/* ==============================
   RESPONSIVE TABLET
============================== */

@media (max-width: 991px) {
    .navbar {
        min-height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar-brand {
        width: 150px;
        height: 82px;
    }

    .navbar-brand img {
        height: 78px !important;
        transform: scale(1.35);
    }

    .nav-link {
        margin: 3px 0;
        padding: 9px 0 !important;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        padding: 112px 0 24px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15.5px;
    }

    .service-section {
        padding-top: 32px;
    }

    .service-section .row {
        max-width: 650px;
    }

    .service-card {
        max-width: 275px;
    }
}

/* ==============================
   RESPONSIVE MOBILE
   Logo tengah, hamburger kanan, menu dropdown rapi
============================== */

@media (max-width: 576px) {
    .navbar {
        min-height: 96px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .navbar .container {
        position: relative;
        min-height: 78px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .navbar-brand {
        position: absolute;
        left: 50%;
        top: 50%;
        width: 150px;
        height: 78px;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: visible;
        transform: translate(-50%, -50%);
        z-index: 2;
    }

    .navbar-brand img {
        height: 86px !important;
        width: auto;
        max-width: 150px !important;
        max-height: none !important;
        object-fit: contain;
        display: block;
        transform: none !important;
    }

    .navbar-toggler {
        position: absolute;
        right: 14px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 4;
        margin: 0;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 12px;
        right: 12px;
        width: auto;
        margin-top: 8px;
        padding: 14px 18px;
        background: #ffffff;
        border: 1px solid rgba(11, 79, 145, 0.10);
        border-radius: 0px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.14);
        text-align: center;
        z-index: 3;
    }

    .navbar-nav {
        gap: 2px;
    }

    .nav-link {
        margin: 0;
        padding: 10px 0 !important;
        font-size: 15px;
        font-weight: 600;
    }

    .nav-link::after {
        display: none;
    }

    .hero {
        padding: 116px 0 18px;
    }

    .hero h1 {
        font-size: 26px;
        line-height: 1.35;
    }

    .hero p {
        font-size: 14.5px;
        line-height: 1.65;
    }

    .hero .d-flex {
        gap: 10px !important;
    }

    .btn-main,
    .btn-outline-main {
        width: 100%;
        max-width: 260px;
        margin: auto;
    }

    .service-section {
        padding: 30px 0 55px;
    }

    .service-section .text-center.mb-5 {
        margin-bottom: 26px !important;
    }

    .service-card {
        max-width: 295px;
    }

    .about-section,
    .legal-section {
        padding: 55px 0;
    }

    .about-box {
        padding: 24px;
    }

    .legal-card {
        padding: 30px 20px;
    }

    .floating-wa {
        width: 50px;
        height: 50px;
        right: 16px;
        bottom: 18px;
    }
}

/* ==============================
   VERY SMALL MOBILE
============================== */

@media (max-width: 380px) {
    .hero h1 {
        font-size: 24px;
    }

    .service-card {
        max-width: 275px;
    }

    .navbar-brand {
        width: 138px;
        height: 72px;
    }

    .navbar-brand img {
        height: 80px !important;
        max-width: 138px !important;
        transform: none !important;
    }

    .navbar-collapse {
        left: 10px;
        right: 10px;
    }
}



/* ==============================
   INNER PAGE / HALAMAN DALAM
============================== */

.inner-hero {
    padding: 170px 0 60px;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 145, 0.08), transparent 32%),
        radial-gradient(circle at top right, rgba(244, 161, 26, 0.08), transparent 28%),
        #ffffff;
}

.inner-hero h1 {
    font-size: clamp(30px, 3.5vw, 46px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.25;
}

.inner-hero p {
    max-width: 780px;
    margin: 16px auto 0;
    color: #465568;
    line-height: 1.8;
}

.content-section {
    padding: 70px 0;
}

.content-section.pt-0 {
    padding-top: 0 !important;
}





/* ==============================
   CONTACT PAGE
============================== */

.contact-card {
    height: 100%;
    padding: 28px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.contact-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.contact-card h5 {
    font-weight: 800;
    color: var(--text-dark);
}

.contact-card p {
    color: #5f6b7a;
    line-height: 1.7;
}

.map-box {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
    border: 1px solid rgba(11, 79, 145, 0.10);
    background: #ffffff;
}

.map-box iframe {
    width: 100% !important;
    height: 420px !important;
    border: 0;
    display: block;
}

/* Responsive halaman dalam dan kontak */
@media (max-width: 991px) {
    .inner-hero {
        padding: 145px 0 50px;
    }

    .content-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .inner-hero {
        padding: 125px 0 42px;
    }

    .inner-hero h1 {
        font-size: 28px;
    }

    .inner-hero p {
        font-size: 14.5px;
    }

    .content-section {
        padding: 50px 0;
    }

    .contact-card {
        padding: 24px;
    }

    .map-box iframe {
        height: 340px !important;
    }
}


/* ==============================
   ABOUT PAGE - MODERN VERSION
============================== */

.about-profile-card,
.about-legal-card,
.vision-premium,
.about-cta-box {
    border-radius: 26px;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.about-profile-card {
    padding: 34px;
}

.about-profile-card p {
    color: #465568;
    line-height: 1.85;
}

.about-legal-card {
    padding: 34px;
    height: 100%;
    background:
        radial-gradient(circle at top right, rgba(244, 161, 26, 0.10), transparent 35%),
        linear-gradient(180deg, #ffffff, #f8fbff);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.vision-premium {
    padding: 42px;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 145, 0.10), transparent 30%),
        radial-gradient(circle at bottom right, rgba(244, 161, 26, 0.12), transparent 32%),
        #ffffff;
}

.vision-premium p {
    max-width: 900px;
    margin: 0 auto;
    color: #465568;
    font-size: 17px;
    line-height: 1.9;
}

.mission-card {
    height: 100%;
    padding: 26px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
    transition: 0.25s ease;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.mission-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 18px;
}

.mission-card h5 {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.mission-card p {
    color: #5f6b7a;
    line-height: 1.75;
    margin-bottom: 0;
}

.about-value-card {
    height: 100%;
    padding: 26px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
    text-align: center;
}

.about-value-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    border-radius: 16px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.about-value-card h5 {
    font-weight: 800;
    color: var(--primary);
}

.about-value-card p {
    color: #5f6b7a;
    line-height: 1.7;
}

.about-cta-box {
    padding: 38px 26px;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 145, 0.10), transparent 35%),
        linear-gradient(135deg, #ffffff, #f7fbff);
}

@media (max-width: 576px) {
    .about-profile-card,
    .about-legal-card,
    .vision-premium,
    .about-cta-box {
        padding: 26px;
        border-radius: 22px;
    }

    .vision-premium p {
        font-size: 15.5px;
        line-height: 1.8;
    }

    .mission-card {
        padding: 24px;
    }
}
/* ==============================
   ABOUT PAGE - CLEAN CORPORATE
============================== */

.lk-about-intro {
    padding: 34px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.lk-about-intro h2 {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 18px;
}

.lk-about-intro p {
    color: #465568;
    line-height: 1.9;
    margin-bottom: 18px;
}

.lk-about-legal {
    padding: 30px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top right, rgba(244, 161, 26, 0.12), transparent 35%),
        linear-gradient(180deg, #ffffff, #f8fbff);
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.lk-about-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.lk-vision-box {
    padding: 34px;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 145, 0.08), transparent 34%),
        #ffffff;
    border-left: 5px solid var(--primary);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.lk-vision-box p {
    color: #465568;
    line-height: 1.9;
    font-size: 16.5px;
    margin-bottom: 0;
}

.lk-mission-clean {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    counter-reset: mission;
}

.lk-mission-clean li {
    counter-increment: mission;
    position: relative;
    padding: 18px 20px 18px 66px;
    margin-bottom: 14px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    color: #465568;
    line-height: 1.75;
}

.lk-mission-clean li::before {
    content: counter(mission);
    position: absolute;
    left: 20px;
    top: 18px;
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lk-value-strip {
    padding: 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, #071f3a, #0b4f91);
    color: #ffffff;
}

.lk-value-strip h2 {
    color: #ffffff;
}

.lk-value-item {
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.10);
    height: 100%;
}

.lk-value-item h5 {
    font-weight: 800;
    color: #ffffff;
}

.lk-value-item p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .lk-about-intro,
    .lk-about-legal,
    .lk-vision-box,
    .lk-value-strip {
        padding: 24px;
        border-radius: 20px;
    }

    .lk-mission-clean li {
        padding: 16px 16px 16px 58px;
    }

    .lk-mission-clean li::before {
        left: 16px;
        top: 16px;
    }
}

/* ==============================
   VISI MISI - PREMIUM CLEAN
============================== */

.lk-vm-section {
    padding: 75px 0;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 145, 0.08), transparent 30%),
        radial-gradient(circle at bottom right, rgba(244, 161, 26, 0.10), transparent 28%),
        #f7fbff;
}

.lk-vision-premium-card {
    position: relative;
    overflow: hidden;
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, #071f3a, #0b4f91);
    color: #ffffff;
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18);
}

.lk-vision-premium-card::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    right: -70px;
    top: -70px;
    border-radius: 50%;
    background: rgba(244, 161, 26, 0.18);
}

.lk-vision-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.lk-vision-premium-card h2 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 16px;
}

.lk-vision-premium-card p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.9;
    font-size: 16.5px;
    margin-bottom: 0;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.lk-mission-modern-card {
    height: 100%;
    padding: 26px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    transition: 0.25s ease;
}

.lk-mission-modern-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
}

.lk-mission-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.lk-mission-no {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
}

.lk-mission-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: rgba(244, 161, 26, 0.12);
    color: #d98200;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.lk-mission-modern-card h5 {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.lk-mission-modern-card p {
    color: #5f6b7a;
    line-height: 1.75;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .lk-vm-section {
        padding: 55px 0;
    }

    .lk-vision-premium-card {
        padding: 28px;
        border-radius: 22px;
    }

    .lk-vision-premium-card p {
        font-size: 15px;
        line-height: 1.8;
    }

    .lk-mission-modern-card {
        padding: 24px;
    }
}
/* ==============================
   FIX VISI MISI - SAMAKAN DESAIN
============================== */

.lk-vm-section {
    padding: 75px 0;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 145, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(244, 161, 26, 0.10), transparent 28%),
        #f7fbff;
}

/* Card visi tetap premium */
.lk-vision-premium-card {
    margin-bottom: 48px;
}

/* Bungkus area misi supaya terasa satu keluarga dengan visi */
.lk-vm-section .row.g-4 {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #071f3a, #0b4f91);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.15);
}

/* Judul Misi di atas card */
.lk-vm-section .text-center.mb-5:nth-of-type(2) {
    margin-top: 12px;
}

/* Card misi dibuat navy-soft, bukan putih polos */
.lk-mission-modern-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.lk-mission-modern-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.lk-mission-modern-card h5 {
    color: #ffffff;
}

.lk-mission-modern-card p {
    color: rgba(255, 255, 255, 0.82);
}

.lk-mission-no {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.lk-mission-icon {
    background: rgba(244, 161, 26, 0.18);
    color: #ffc66d;
}

/* Mobile */
@media (max-width: 576px) {
    .lk-vm-section {
        padding: 55px 0;
    }

    .lk-vision-premium-card {
        margin-bottom: 34px;
    }

    .lk-vm-section .row.g-4 {
        padding: 22px;
        border-radius: 22px;
    }
}
/* ==============================
   FIX VISI MISI - SAMAKAN DESAIN
============================== */

.lk-vm-section {
    padding: 75px 0;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 145, 0.10), transparent 32%),
        radial-gradient(circle at bottom right, rgba(244, 161, 26, 0.10), transparent 28%),
        #f7fbff;
}

/* Card visi tetap premium */
.lk-vision-premium-card {
    margin-bottom: 48px;
}

/* Bungkus area misi supaya terasa satu keluarga dengan visi */
.lk-vm-section .row.g-4 {
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #071f3a, #0b4f91);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.15);
}

/* Judul Misi di atas card */
.lk-vm-section .text-center.mb-5:nth-of-type(2) {
    margin-top: 12px;
}

/* Card misi dibuat navy-soft, bukan putih polos */
.lk-mission-modern-card {
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: none;
    color: #ffffff;
    backdrop-filter: blur(10px);
}

.lk-mission-modern-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.14);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.lk-mission-modern-card h5 {
    color: #ffffff;
}

.lk-mission-modern-card p {
    color: rgba(255, 255, 255, 0.82);
}

.lk-mission-no {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.lk-mission-icon {
    background: rgba(244, 161, 26, 0.18);
    color: #ffc66d;
}

/* Mobile */
@media (max-width: 576px) {
    .lk-vm-section {
        padding: 55px 0;
    }

    .lk-vision-premium-card {
        margin-bottom: 34px;
    }

    .lk-vm-section .row.g-4 {
        padding: 22px;
        border-radius: 22px;
    }
}

/* ==============================
   PARTNER / MITRA SECTION
============================== */

.partner-section {
    padding: 70px 0;
    background: #ffffff;
}

.partner-card {
    height: 100%;
    padding: 28px;
    border-radius: 22px;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
}

.partner-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(15, 23, 42, 0.13);
}

.partner-card img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    display: block;
}

@media (max-width: 576px) {
    .partner-section {
        padding: 55px 0;
    }

    .partner-card {
        padding: 24px;
    }

    .partner-card img {
        max-height: 110px;
    }
}


.legal-section {
    padding: 80px 0;
    background:
        radial-gradient(circle at top left, rgba(11, 79, 145, 0.08), transparent 28%),
        radial-gradient(circle at bottom right, rgba(244, 161, 26, 0.08), transparent 26%),
        #f8fbff;
}

.legal-showcase {
    padding: 38px;
    border-radius: 30px;
    background: linear-gradient(135deg, #071f3a, #0b4f91);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
    overflow: hidden;
    position: relative;
}

.legal-showcase::before {
    content: "";
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    top: -80px;
    right: -80px;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.legal-content h2 {
    color: #ffffff;
    font-size: clamp(30px, 3vw, 42px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
}

.legal-content p {
    color: rgba(255,255,255,0.88);
    line-height: 1.85;
    font-size: 16px;
    margin-bottom: 14px;
}

.legal-proof-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14);
    text-align: center;
    position: relative;
    z-index: 1;
}

.legal-proof-card h5 {
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.legal-proof-card .logo-ahu {
    width: 90px;
    height: auto;
    object-fit: contain;
    margin: 6px auto 16px;
    display: block;
}

.legal-number {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 14px;
    border-radius: 14px;
    background: #f4f8fc;
    color: #4d5c6d;
    font-size: 14px;
    line-height: 1.6;
    border: 1px solid rgba(11, 79, 145, 0.10);
}

.legal-mini-info {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.legal-mini-box {
    flex: 1 1 180px;
    padding: 16px 18px;
    border-radius: 18px;
    background: rgba(255,255,255,0.10);
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.10);
}

.legal-mini-box strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
}

.legal-mini-box span {
    color: rgba(255,255,255,0.78);
    font-size: 14px;
}

@media (max-width: 991px) {
    .legal-showcase {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .legal-section {
        padding: 55px 0;
    }

    .legal-showcase {
        padding: 24px;
        border-radius: 24px;
    }

    .legal-proof-card {
        padding: 22px;
        border-radius: 20px;
    }

    .legal-content h2 {
        font-size: 28px;
    }

    .legal-content p {
        font-size: 15px;
    }

    .legal-mini-box {
        flex: 1 1 100%;
    }
}


.legal-section {
    padding: 42px 0 !important;
}

.legal-section .container {
    max-width: 980px !important;
}

.legal-showcase {
    max-width: 960px !important;
    margin: 0 auto !important;
    padding: 24px !important;
    border-radius: 24px !important;
}

.legal-content h2 {
    font-size: clamp(24px, 2.2vw, 32px) !important;
    line-height: 1.25 !important;
    margin-bottom: 12px !important;
}

.legal-content p {
    font-size: 14.5px !important;
    line-height: 1.65 !important;
    margin-bottom: 10px !important;
}

.legal-badge {
    padding: 7px 13px !important;
    font-size: 13px !important;
    margin-bottom: 14px !important;
}

.legal-mini-info {
    margin-top: 16px !important;
    gap: 10px !important;
}

.legal-mini-box {
    padding: 12px 14px !important;
    border-radius: 14px !important;
}

.legal-mini-box strong {
    font-size: 14.5px !important;
}

.legal-mini-box span {
    font-size: 13px !important;
}

.legal-proof-card {
    max-width: 360px !important;
    margin: 0 auto !important;
    padding: 20px !important;
    border-radius: 20px !important;
}

.legal-proof-card h5 {
    font-size: 18px !important;
    margin-bottom: 10px !important;
}

.legal-proof-card .logo-ahu {
    width: 68px !important;
    margin: 4px auto 12px !important;
}

.legal-proof-card p {
    font-size: 14px !important;
    line-height: 1.6 !important;
}

.legal-number {
    margin-top: 12px !important;
    padding: 8px 12px !important;
    font-size: 13px !important;
    border-radius: 12px !important;
}

.legal-proof-card .btn-main {
    padding: 9px 18px !important;
    font-size: 14px !important;
    min-width: 0 !important;
}

@media (max-width: 991px) {
    .legal-showcase {
        max-width: 720px !important;
    }

    .legal-content {
        text-align: center;
    }

    .legal-mini-info {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .legal-section {
        padding: 36px 0 !important;
    }

    .legal-showcase {
        padding: 20px !important;
        border-radius: 20px !important;
    }

    .legal-content h2 {
        font-size: 24px !important;
    }

    .legal-content p {
        font-size: 14px !important;
    }

    .legal-proof-card {
        max-width: 100% !important;
        padding: 18px !important;
    }

    .legal-mini-info {
        display: none !important;
    }
}



.navbar {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.99), rgba(255,255,255,0.96)) !important;
    border-bottom: 1px solid rgba(11, 79, 145, 0.08) !important;
    box-shadow:
        0 18px 45px rgba(15, 23, 42, 0.10),
        0 4px 14px rgba(11, 79, 145, 0.06),
        inset 0 -1px 0 rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

/* Efek cahaya halus di bawah navbar */
.navbar::after {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: -1px;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(11, 79, 145, 0.28),
        rgba(244, 161, 26, 0.20),
        rgba(11, 79, 145, 0.28),
        transparent
    );
    opacity: 0.75;
}

/* Logo diberi shadow halus */
.navbar-brand img {
    filter: drop-shadow(0 8px 12px rgba(15, 23, 42, 0.10));
}

/* Menu elegan tanpa kotak berlebihan */
.nav-link {
    color: #172033 !important;
    font-weight: 700;
    letter-spacing: 0.1px;
    background: transparent !important;
    border-radius: 0 !important;
    padding: 10px 7px !important;
    margin: 0 8px !important;
    transition: color 0.25s ease, transform 0.25s ease;
}

.nav-link:hover {
    color: var(--primary) !important;
    transform: translateY(-1px);
}


.nav-link::after {
    content: "";
    position: absolute;
    left: 7px !important;
    right: 7px !important;
    bottom: -8px !important;
    height: 3px !important;
    border-radius: 999px;
    background: linear-gradient(90deg, #0b4f91, #2f80c9) !important;
    box-shadow: 0 6px 14px rgba(11, 79, 145, 0.30);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary) !important;
}


.navbar-toggler {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f2f7fc);
    border: 1px solid rgba(11, 79, 145, 0.12) !important;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.navbar-toggler:hover {
    background: #eef7ff;
    box-shadow: 0 10px 24px rgba(11, 79, 145, 0.14);
}


@media (max-width: 576px) {
    .navbar {
        box-shadow:
            0 14px 34px rgba(15, 23, 42, 0.12),
            0 3px 10px rgba(11, 79, 145, 0.06) !important;
    }

    .navbar::after {
        left: 0;
        right: 0;
        bottom: 0;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid rgba(11, 79, 145, 0.12) !important;
        box-shadow:
            0 20px 44px rgba(15, 23, 42, 0.16),
            0 4px 12px rgba(11, 79, 145, 0.07) !important;
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    .nav-link {
        margin: 2px 0 !important;
        padding: 11px 0 !important;
        border-radius: 12px !important;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(11, 79, 145, 0.06) !important;
    }

    .nav-link::after {
        display: none !important;
    }
}


.navbar-brand,
.navbar-brand img {
    background: transparent !important;
    box-shadow: none !important;
    filter: none !important;
}





.legal-section {
    background: #ffffff !important;
}

.partner-section {
    background: #ffffff !important;
}

.service-section {
    background: #ffffff !important;
}

/* ==============================
   PRIVACY POLICY PAGE
============================== */

.policy-box {
    padding: 36px;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid rgba(11, 79, 145, 0.10);
    box-shadow: 0 16px 38px rgba(15, 23, 42, 0.08);
}

.policy-box h2 {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 14px;
}

.policy-box h2:first-child {
    margin-top: 0;
}

.policy-box p,
.policy-box li {
    color: #465568;
    line-height: 1.85;
    font-size: 15.5px;
}

.policy-box ul {
    padding-left: 22px;
}

.policy-date {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .policy-box {
        padding: 24px;
        border-radius: 20px;
    }

    .policy-box h2 {
        font-size: 21px;
    }

    .policy-box p,
    .policy-box li {
        font-size: 14.5px;
    }
}

/* ==============================
   LEGALITAS FINAL - ELEGANT TRUST
============================== */

.legal-section {
    padding: 58px 0 !important;
    background: #ffffff !important;
}

.legal-section .container {
    max-width: 880px !important;
}

.legal-showcase {
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 30px !important;
    border-radius: 28px !important;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.16), transparent 28%),
        linear-gradient(135deg, #062544 0%, #0b4f91 100%) !important;
    box-shadow: 0 22px 52px rgba(15, 23, 42, 0.16) !important;
}

.legal-badge {
    background: rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
}

.legal-content h2 {
    font-size: clamp(26px, 2.5vw, 36px) !important;
    line-height: 1.25 !important;
}

.legal-content p {
    font-size: 15px !important;
    line-height: 1.75 !important;
}

.legal-mini-box {
    background: rgba(255, 255, 255, 0.11) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
}

.legal-proof-card {
    max-width: 340px !important;
    padding: 24px !important;
    border-radius: 22px !important;
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14) !important;
}

.legal-proof-card .logo-ahu {
    width: 74px !important;
}

.legal-number {
    font-size: 13px !important;
    background: #f7fbff !important;
}

@media (max-width: 576px) {
    .legal-section {
        padding: 46px 0 !important;
    }

    .legal-showcase {
        padding: 22px !important;
        border-radius: 22px !important;
    }

    .legal-content h2 {
        font-size: 25px !important;
    }

    .legal-mini-info {
        display: none !important;
    }

    .legal-proof-card {
        max-width: 100% !important;
    }
}

