/* ============================================================
   MITSUBISHI JABODETABEK — PREMIUM DESIGN SYSTEM (Dark Luxury)
   Loaded last, overrides Bootstrap Creative theme.
   ============================================================ */

:root {
    --ink-950: #070b13;
    --ink-900: #0a0f1a;
    --ink-850: #0e1524;
    --ink-800: #121b2e;
    --ink-700: #1c2940;
    --ink-600: #47536b;
    --ink-500: #6a7589;
    --ink-400: #8a94a7;
    --ink-300: #b6bfcf;
    --ink-200: #dfe4ec;
    --ink-100: #eef1f6;
    --ink-50: #f6f7fa;

    --gold: #c9a35c;
    --gold-2: #eeddb1;
    --gold-deep: #9c7a3a;
    --red: #e0242c;
    --red-2: #ff3d46;
    --red-dark: #8f0f14;
    --wa: #23c25f;

    --grad-red: linear-gradient(135deg, #ff3d46 0%, #c1121a 55%, #8f0f14 100%);
    --grad-gold: linear-gradient(135deg, #eeddb1 0%, #c9a35c 55%, #9c7a3a 100%);
    --grad-ink: linear-gradient(135deg, #101827 0%, #0a0f1a 60%, #070b13 100%);

    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --shadow-lg: 0 24px 60px rgba(5, 9, 18, .22);
    --shadow-md: 0 14px 34px rgba(5, 9, 18, .16);
    --shadow-sm: 0 8px 22px rgba(5, 9, 18, .10);
}

/* ---------- Base ---------- */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ink-500);
    background: var(--ink-50);
    font-weight: 400;
    letter-spacing: .01em;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body .content {
    overflow: hidden;
}

h1, h2, h3, h4, h5, .h1, .h2, .h3, .h4, .h5 {
    font-family: 'Sora', 'Manrope', sans-serif;
    color: var(--ink-900);
    font-weight: 700;
    letter-spacing: -.02em;
}

a {
    color: var(--red);
    transition: color .25s ease;
}

a:hover {
    color: var(--red-2);
    text-decoration: none;
}

::selection {
    background: var(--red);
    color: #fff;
}

::-webkit-scrollbar {
    width: 11px;
}

::-webkit-scrollbar-track {
    background: var(--ink-950);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--gold), var(--red));
    border-radius: 99px;
    border: 3px solid var(--ink-950);
}

.text-warning { color: var(--gold) !important; }
.text-danger { color: var(--red) !important; }
.text-white-75 { color: rgba(255, 255, 255, .78) !important; }

body .bg-primary {
    background: var(--grad-ink) !important;
}

body .bg-light {
    background-color: var(--ink-50) !important;
}

/* ---------- Buttons ---------- */
body .btn {
    border-radius: 999px;
    font-family: 'Sora', sans-serif;
    letter-spacing: .08em;
    font-weight: 700;
    font-size: .82rem;
}

.btn-xl { padding: 1.05rem 2.3rem; }
.btn-lg { padding: .85rem 1.9rem; }
.btn-sm { padding: .5rem 1.1rem; font-size: .76rem; }

.btn-gold {
    background: var(--grad-gold);
    color: #1d1510;
    box-shadow: 0 12px 26px rgba(201, 163, 92, .32);
    border: 0;
    transition: all .3s ease;
}

.btn-gold:hover, .btn-gold:focus {
    background: var(--grad-gold);
    color: #121212;
    transform: translateY(-3px);
    box-shadow: 0 18px 38px rgba(201, 163, 92, .44);
}

.btn-red {
    background: var(--grad-red);
    color: #fff;
    box-shadow: 0 12px 26px rgba(224, 36, 44, .34);
    border: 0;
    transition: all .3s ease;
}

.btn-red:hover, .btn-red:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(224, 36, 44, .46);
}

.btn-outline-gold {
    border: 1.5px solid rgba(238, 221, 177, .55);
    color: var(--gold-2);
    background: rgba(255, 255, 255, .03);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all .3s ease;
}

.btn-outline-gold:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #181310;
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(201, 163, 92, .38);
}

.btn-wa {
    background: linear-gradient(135deg, #31d06c, #159a45);
    color: #fff;
    border: 0;
    box-shadow: 0 12px 26px rgba(21, 154, 69, .32);
    transition: all .3s ease;
}

.btn-wa:hover, .btn-wa:focus {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(21, 154, 69, .44);
}

body .btn-success {
    background: linear-gradient(135deg, #31d06c, #159a45);
    border: 0;
    color: #fff;
    box-shadow: 0 12px 26px rgba(21, 154, 69, .32);
}

body .btn-success:hover {
    background: linear-gradient(135deg, #3ee07c, #1bab50);
    color: #fff;
    transform: translateY(-3px);
}

body .btn-danger {
    background: var(--grad-red);
    border: 0;
    color: #fff;
    box-shadow: 0 12px 26px rgba(224, 36, 44, .32);
}

body .btn-danger:hover {
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Site Header (topbar + navbar) ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
}

.topbar-wrap {
    background: linear-gradient(90deg, var(--ink-950), var(--ink-900));
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    transition: height .35s ease, border-color .35s ease;
    overflow: hidden;
    height: 42px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-size: .78rem;
    color: rgba(255, 255, 255, .62);
    height: 100%;
}

.topbar a {
    color: rgba(255, 255, 255, .72);
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    transition: color .2s ease;
}

.topbar a:hover { color: var(--gold-2); }

.topbar i {
    color: var(--gold);
    width: 15px;
    text-align: center;
    font-size: .85rem;
}

.topbar-left { display: flex; align-items: center; gap: 1.6rem; }
.topbar-right { display: flex; align-items: center; gap: 1.4rem; }

.topbar-social { display: flex; align-items: center; gap: .55rem; }

.topbar-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .78);
    font-size: .72rem;
}

.topbar-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #161310;
}

.site-header.scrolled .topbar-wrap {
    height: 0;
    border-bottom-color: transparent;
}

/* ---------- Navbar ---------- */
#mainNav.premium-nav {
    position: absolute;
    top: 42px;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(7, 11, 19, .82), rgba(10, 15, 26, .62));
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    padding-top: .85rem;
    padding-bottom: .85rem;
    transition: top .35s ease, padding .35s ease, background .35s ease, box-shadow .35s ease;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.site-header.scrolled #mainNav.premium-nav {
    top: 0;
}

#mainNav.navbar-scrolled {
    background: rgba(7, 11, 19, .94) !important;
    padding-top: .6rem;
    padding-bottom: .6rem;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .4);
}

#mainNav.premium-nav .navbar-brand {
    display: inline-flex;
    align-items: center;
    padding: 0;
}

.brand-logo {
    height: 44px;
    filter: drop-shadow(0 4px 14px rgba(0, 0, 0, .5));
    transition: height .3s ease;
}

#mainNav.navbar-scrolled .brand-logo { height: 38px; }

#mainNav.premium-nav .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 10px;
    padding: .28rem .58rem;
    background: rgba(255, 255, 255, .05);
}

#mainNav.premium-nav .navbar-toggler:focus { outline: none; }

.premium-nav .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainNav.premium-nav .nav-link {
    color: rgba(255, 255, 255, .85) !important;
    font-family: 'Sora', sans-serif;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    padding: .55rem 1rem;
    position: relative;
}

#mainNav.premium-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 100%;
    bottom: .2rem;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    transition: right .3s ease;
}

#mainNav.premium-nav .nav-link:hover, #mainNav.premium-nav .nav-link.active {
    color: #fff !important;
}

#mainNav.premium-nav .nav-link:hover::after {
    right: 1rem;
}

.nav-quick { gap: .55rem; }

.nav-icon-link {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .26);
    font-size: 15px;
    transition: all .3s ease;
}

.nav-icon-link:hover {
    background: var(--gold);
    color: #101010;
    border-color: transparent;
    transform: translateY(-2px);
}

.nav-icon-link.wa:hover {
    background: linear-gradient(135deg, #31d06c, #159a45);
    color: #fff;
}

.btn-nav-cta {
    font-family: 'Sora', sans-serif;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    padding: .72rem 1.45rem;
    border-radius: 999px;
    background: var(--grad-red);
    box-shadow: 0 8px 24px rgba(224, 36, 44, .38);
    transition: all .3s ease;
    white-space: nowrap;
}

.btn-nav-cta:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(224, 36, 44, .5);
}

@media (max-width: 991.98px) {
    .topbar-wrap { display: none !important; }

    #mainNav.premium-nav {
        top: 0;
        background: rgba(7, 11, 19, .96) !important;
        padding-top: .7rem;
        padding-bottom: .7rem;
    }

    #mainNav.premium-nav .navbar-collapse {
        background: rgba(8, 12, 21, .98);
        padding: 1rem 1.25rem 1.35rem;
        border-radius: 0 0 20px 20px;
        margin-top: .7rem;
        border: 1px solid rgba(255, 255, 255, .08);
        box-shadow: 0 26px 50px rgba(0, 0, 0, .45);
    }

    #mainNav.premium-nav .nav-link {
        padding: .8rem .5rem;
        font-size: .82rem;
    }

    #mainNav.premium-nav .nav-link::after { display: none; }

    #mainNav.premium-nav .btn-nav-cta { margin-top: .6rem; }
}

/* ---------- Hero (homepage) ---------- */
body .masthead {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 12rem;
    padding-bottom: 7rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: none;
    overflow: hidden;
}

.masthead::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
}

.masthead-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(1100px 600px at 78% 8%, rgba(224, 36, 44, .24), transparent 62%),
        radial-gradient(900px 500px at 6% 90%, rgba(201, 163, 92, .14), transparent 60%),
        linear-gradient(180deg, rgba(7, 11, 19, .86) 0%, rgba(7, 11, 19, .54) 45%, rgba(7, 11, 19, .93) 100%);
}

/* ---------- Masthead slider / carousel ---------- */
.masthead-carousel,
.masthead-carousel .carousel-inner {
    position: absolute;
    inset: 0;
}

.masthead-carousel .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.masthead-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.masthead-slide.static { z-index: 0; }

.masthead-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(7, 11, 19, .55);
    border: 1px solid rgba(238, 221, 177, .35);
    color: var(--gold-2);
    border-radius: 50%;
    font-size: 1.2rem;
    opacity: .95;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.masthead-nav:hover,
.masthead-nav:focus {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
    text-decoration: none;
    opacity: 1;
}

.masthead-nav.prev { left: 30px; }
.masthead-nav.next { right: 30px; }

@media (max-width: 767.98px) {
    .masthead-nav { width: 46px; height: 46px; font-size: 1rem; }
    .masthead-nav.prev { left: 14px; }
    .masthead-nav.next { right: 14px; }
}

.masthead .container {
    position: relative;
    z-index: 2;
}

.masthead-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    color: var(--gold-2);
    letter-spacing: .36em;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.35rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(238, 221, 177, .3);
    border-radius: 999px;
    padding: .5rem 1.3rem;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-eyebrow i { color: var(--gold); }

.hero-title {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    text-shadow: 0 14px 50px rgba(0, 0, 0, .45);
    margin-bottom: 0;
}

.hero-divider {
    width: 88px;
    height: 3px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    opacity: 1;
    margin: 1.6rem auto;
}

.hero-desc {
    color: rgba(255, 255, 255, .84);
    font-size: 1.05rem;
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

.hero-actions {
    margin-top: 2.1rem;
    display: flex;
    gap: .9rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-phone-line {
    margin-top: 1.9rem;
    color: rgba(255, 255, 255, .55);
    font-size: .78rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    font-weight: 700;
}

.hero-phone-line a {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gold-2);
    letter-spacing: .02em;
    margin-left: .5rem;
}

.hero-phone-line a:hover { color: #fff; }

.scroll-indicator {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    width: 26px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, .45);
    border-radius: 999px;
    z-index: 2;
    display: inline-flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 8px;
}

.scroll-indicator span {
    width: 3px;
    height: 9px;
    border-radius: 999px;
    background: var(--gold);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0% { opacity: 0; transform: translateY(0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translateY(12px); }
}

@media (min-width: 992px) {
    .hero-title { font-size: 3.5rem; }

    .scroll-indicator { bottom: 92px; }
}

@media (min-width: 1200px) {
    .hero-title { font-size: 4rem; }
}

@media (max-width: 991.98px) {
    body .masthead { min-height: 88vh; padding-top: 8.5rem; padding-bottom: 6rem; }
    .hero-title { font-size: 2.1rem; }
    .hero-desc { font-size: .97rem; }
    .scroll-indicator { display: none; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
    position: relative;
    z-index: 4;
    margin-top: -3.4rem;
    padding-bottom: 1rem;
}

.trust-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem 1rem;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .4rem 1.1rem;
    border-right: 1px solid var(--ink-100);
}

.trust-item:last-child { border-right: 0; }

.trust-icon {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--grad-ink);
    color: var(--gold);
    font-size: 22px;
    box-shadow: var(--shadow-sm);
}

.trust-value {
    display: block;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.05rem;
    color: var(--ink-900);
    line-height: 1.2;
}

.trust-label {
    display: block;
    font-size: .72rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-400);
    font-weight: 600;
    margin-top: .25rem;
}

@media (max-width: 991.98px) {
    .trust-inner { grid-template-columns: repeat(2, 1fr); gap: 1.4rem .5rem; }
    .trust-item { border-right: 0; }
}

@media (max-width: 575.98px) {
    .trust-inner { grid-template-columns: 1fr; }
    .trust-item { justify-content: center; text-align: center; flex-direction: column; gap: .6rem; }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
    position: relative;
    min-height: 44vh;
    display: flex;
    align-items: flex-end;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 13.5rem 0 3.6rem;
    overflow: hidden;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(760px 320px at 14% 0%, rgba(224, 36, 44, .22), transparent 70%),
        radial-gradient(700px 320px at 90% 90%, rgba(201, 163, 92, .16), transparent 65%),
        linear-gradient(180deg, rgba(7, 11, 19, .86) 0%, rgba(7, 11, 19, .6) 40%, rgba(7, 11, 19, .88) 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    z-index: 3;
    background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 2.6rem;
    letter-spacing: -.02em;
    text-shadow: 0 12px 40px rgba(0, 0, 0, .4);
    margin: .4rem 0 0;
    text-transform: uppercase;
}

.crumbs {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: rgba(255, 255, 255, .55);
    font-size: .76rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.crumbs a { color: var(--gold-2); }
.crumbs a:hover { color: #fff; }
.crumbs .sep { font-size: .7rem; color: rgba(255, 255, 255, .4); }

@media (max-width: 575.98px) {
    .page-hero { min-height: 38vh; padding-top: 9.5rem; }
    .page-hero-title { font-size: 1.7rem; }
}

/* ---------- Sections ---------- */
.section-block { position: relative; padding: 5.5rem 0; }

.section-dark {
    position: relative;
    background: var(--grad-ink);
    color: rgba(255, 255, 255, .78);
    overflow: hidden;
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 420px at 12% 0%, rgba(201, 163, 92, .1), transparent 60%),
        radial-gradient(900px 420px at 90% 100%, rgba(224, 36, 44, .12), transparent 60%);
    pointer-events: none;
}

.section-dark .container { position: relative; z-index: 2; }

.section-light { background: var(--ink-50); }
.section-white { background: #fff; }

.eyebrow {
    display: inline-block;
    color: var(--gold);
    font-weight: 800;
    font-size: .72rem;
    letter-spacing: .4em;
    text-transform: uppercase;
    position: relative;
    padding-left: 2.1rem;
}

.eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), var(--red));
}

body .section-title {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    color: var(--ink-900);
    letter-spacing: -.02em;
    margin: .6rem 0 0;
}

.section-dark .section-title, .section-dark h2, .section-dark h3, .section-dark h4 {
    color: #fff;
}

body .section-sub {
    color: var(--ink-500);
    max-width: 640px;
    margin: .85rem auto 0;
    font-size: .98rem;
    line-height: 1.7;
}

.section-dark .section-sub { color: rgba(255, 255, 255, .68); }

hr.divider {
    max-width: 3.6rem;
    border: 0;
    border-top: 2.5px solid var(--gold);
    opacity: 1;
    border-radius: 99px;
}

hr.white {
    max-width: 3.6rem;
    border: 0;
    border-top: 2.5px solid rgba(255, 255, 255, .85);
    opacity: 1;
    border-radius: 99px;
}

/* ---------- Welcome / About ---------- */
.welcome-grid { display: flex; flex-wrap: wrap; align-items: center; }

.welcome-copy .lead {
    color: rgba(255, 255, 255, .65);
    line-height: 1.85;
    font-size: .98rem;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 1.6rem 0 0;
}

.check-list li {
    position: relative;
    padding: .62rem 0 .62rem 2.2rem;
    color: rgba(255, 255, 255, .9);
    font-family: 'Sora', sans-serif;
    font-size: .92rem;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255, 255, 255, .09);
    letter-spacing: .01em;
}

.check-list li:last-child { border-bottom: 0; }

.check-list li::before {
    content: "\f00c";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: .68rem;
    width: 22px;
    height: 22px;
    font-size: .62rem;
    font-weight: 400;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-2);
    border: 1px solid rgba(238, 221, 177, .55);
    background: rgba(201, 163, 92, .12);
}

.contact-panel {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
}

.contact-panel::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2rem;
    bottom: 2rem;
    width: 3px;
    border-radius: 99px;
    background: linear-gradient(180deg, var(--gold), var(--red));
}

.contact-panel h5 {
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.1rem;
}

.contact-panel .cp-phone {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 1.7rem;
    color: var(--gold-2);
    line-height: 1.2;
    display: block;
    margin-bottom: .4rem;
}

.contact-panel .cp-phone:hover { color: #fff; }

.contact-panel .cp-meta {
    font-size: .9rem;
    color: rgba(255, 255, 255, .66);
    display: flex;
    flex-direction: column;
    gap: .35rem;
    margin: 1.1rem 0 1.4rem;
}

.contact-panel .cp-meta a, .contact-panel .cp-meta span {
    color: rgba(255, 255, 255, .78);
    display: inline-flex;
    align-items: flex-start;
    gap: .6rem;
    line-height: 1.6;
}

.contact-panel .cp-meta i { color: var(--gold); margin-top: .2rem; width: 16px; }

body .social-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    margin: .25rem .35rem .25rem 0;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    transition: all .3s ease;
}

body .social-chip:hover {
    background: var(--grad-gold);
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    border-color: transparent;
    color: #171310;
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(0, 0, 0, .4);
}

/* ---------- Panel / promo table ---------- */
.panel {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--ink-100);
}

.promo-note {
    background: var(--grad-ink);
    color: #fff;
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    font-family: 'Sora', sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .82rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.6rem;
    border-left: 4px solid var(--gold);
}

.promo-note * { color: #fff !important; }

.premium-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 8px;
    font-size: .92rem;
    margin-bottom: 0;
}

.premium-table thead th {
    background: var(--grad-ink);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: 1rem 1.2rem;
    border: 0;
}

.premium-table thead th:first-child { border-radius: 14px 0 0 14px; }
.premium-table thead th:last-child { border-radius: 0 14px 14px 0; }

.premium-table tbody td {
    border-top: 0;
    padding: .9rem 1.2rem;
    background: #fbfcfe;
    vertical-align: middle;
}

.premium-table tbody tr {
    box-shadow: 0 0 0 1px var(--ink-100);
    transition: box-shadow .25s ease, transform .25s ease;
}

.premium-table tbody tr:hover {
    box-shadow: 0 12px 28px rgba(5, 9, 18, .12);
}

.premium-table td:first-child { border-radius: 14px 0 0 14px; }
.premium-table td:last-child { border-radius: 0 14px 14px 0; }

.premium-table td.model-head {
    background: linear-gradient(90deg, #fff, #faf3e4);
    border-left: 4px solid var(--gold);
    padding: .95rem 1.2rem;
    box-shadow: none;
}

.premium-table td.model-head span {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: var(--ink-900);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .88rem;
}

th.text-right, td.text-right { text-align: right !important; }

.price-table .model-head { font-size: .92rem; }

/* ---------- Product gallery ---------- */
body #portfolio { position: relative; }

body #portfolio .container-fluid { max-width: 1600px; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
}

.gallery-card {
    position: relative;
    display: block;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--ink-900);
    box-shadow: var(--shadow-sm);
    aspect-ratio: 3 / 2;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease, filter .6s ease;
    filter: saturate(.92);
}

.gallery-card:hover img {
    transform: scale(1.09);
    filter: saturate(1.08);
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 42%, rgba(7, 11, 19, .88) 100%);
    opacity: .85;
    transition: opacity .3s ease;
}

.gallery-card:hover::after { opacity: 1; }

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.4rem 1.5rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.gallery-caption span {
    font-family: 'Sora', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 1.02rem;
    line-height: 1.3;
}

.gallery-caption small {
    color: var(--gold-2);
    letter-spacing: .24em;
    text-transform: uppercase;
    font-size: .66rem;
    font-weight: 700;
}

.gallery-zoom {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .35);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    opacity: 0;
    transform: translateY(8px);
    transition: all .3s ease;
}

.gallery-card:hover .gallery-zoom {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991.98px) {
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 575.98px) {
    .gallery-grid { grid-template-columns: 1fr; }
}

/* keep creative portfolio legacy hidden if used */
#portfolio .portfolio-box { display: none !important; }

/* ---------- Feature cards ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }

.feature-card {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 2.2rem 2rem;
    transition: all .35s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--red));
    opacity: 0;
    transition: opacity .35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, .07);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 255, 255, .18);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.4rem;
    background: linear-gradient(135deg, rgba(201, 163, 92, .18), rgba(224, 36, 44, .18));
    border: 1px solid rgba(238, 221, 177, .35);
    color: var(--gold-2);
    font-size: 26px;
}

.feature-card h3 {
    color: #fff;
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: .7rem;
}

.feature-card p {
    color: rgba(255, 255, 255, .62);
    font-size: .92rem;
    line-height: 1.75;
    margin: 0;
}

@media (max-width: 991.98px) {
    .feature-grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- CTA band (call) ---------- */
.cta-band {
    position: relative;
    overflow: hidden;
    background: var(--ink-950);
    color: #fff;
    padding: 4.6rem 0;
}

.cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(900px 380px at 85% 15%, rgba(224, 36, 44, .2), transparent 60%),
        radial-gradient(760px 380px at 8% 92%, rgba(201, 163, 92, .16), transparent 60%),
        linear-gradient(120deg, #131c30, var(--ink-950) 62%);
}

.cta-band::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
}

.cta-band .container { position: relative; z-index: 1; }

.cta-title {
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -.02em;
    margin: .6rem 0 0;
}

.cta-lead {
    color: rgba(255, 255, 255, .66);
    max-width: 620px;
    margin: .7rem 0 0;
    line-height: 1.75;
}

/* ---------- Contact cards ---------- */
body .contact-card {
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 2rem 1.7rem;
    background: #fff;
    text-align: center;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: all .32s ease;
}

body .contact-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.contact-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.1rem;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #fffdf8, #f5efe2);
    border: 1px solid var(--ink-100);
    color: var(--gold);
    font-size: 25px;
    transition: all .32s ease;
}

.contact-card:hover .contact-icon {
    background: var(--grad-red);
    color: #fff;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(224, 36, 44, .35);
}

.contact-card h5 {
    font-size: .72rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: .24em;
    text-transform: uppercase;
    color: var(--ink-400);
    margin-bottom: .65rem;
}

.contact-card a,
.contact-card .contact-value {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--ink-900);
    font-size: .93rem;
    line-height: 1.6;
    word-break: break-word;
}

.contact-card a:hover { color: var(--red); }

/* ---------- Articles ---------- */
body .card.artikel-card {
    border: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: all .35s ease;
    height: 100%;
}

body .card.artikel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.article-thumb { overflow: hidden; }

.article-thumb img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    transition: transform .6s ease;
}

.artikel-card:hover .article-thumb img { transform: scale(1.06); }

.article-meta {
    display: flex;
    gap: .9rem;
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink-400);
    margin-bottom: .6rem;
}

.article-meta .cat { color: var(--red); font-weight: 700; }

.artikel-card h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--ink-900);
    line-height: 1.45;
    transition: color .25s ease;
    margin-bottom: .7rem;
}

.artikel-card h3:hover { color: var(--red); }

.artikel-card p {
    color: var(--ink-500);
    font-size: .9rem;
    line-height: 1.7;
}

.artikel-sidebar {
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-lg);
    padding: 1.8rem 1.7rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.artikel-sidebar h4 {
    font-size: .76rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--ink-900);
    padding-bottom: .65rem;
    margin-bottom: 1rem;
    position: relative;
}

.artikel-sidebar h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), var(--red));
}

.artikel-sidebar a {
    display: block;
    color: var(--ink-500);
    font-size: .88rem;
    padding: .34rem 0;
    line-height: 1.5;
    transition: all .2s ease;
}

.artikel-sidebar a:hover {
    color: var(--red);
    padding-left: 6px;
}

/* article detail */
body .card.article-detail {
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.article-body {
    color: var(--ink-500);
    line-height: 1.9;
    font-size: .98rem;
}

.article-body h2, .article-body h3, .article-body h4 {
    margin-top: 1.6rem;
    color: var(--ink-900);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-sm);
}

.article-body ul, .article-body ol { padding-left: 1.2rem; }
.article-body a { text-decoration: underline; }

/* pagination */
body .pagination .page-link {
    border: 0;
    border-radius: 12px !important;
    margin: 0 .18rem;
    color: var(--ink-900);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    background: #fff;
    box-shadow: 0 0 0 1px var(--ink-100);
}

body .pagination .page-item.active .page-link {
    background: var(--grad-red);
    color: #fff;
    box-shadow: 0 8px 20px rgba(224, 36, 44, .3);
}

body .pagination .page-link:hover { color: var(--red); }

/* ---------- Footer ---------- */
.premium-footer {
    background: var(--ink-950);
    color: #9aa2b1;
    position: relative;
}

.premium-footer::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--red), var(--gold), transparent);
}

.footer-main { padding: 4.2rem 0 2.6rem; }

.footer-brand img {
    height: 46px;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .55));
}

.footer-brand p {
    color: #98a0af;
    font-size: .93rem;
    line-height: 1.8;
    max-width: 330px;
    margin-top: 1.2rem;
}

.footer-title {
    color: #fff;
    font-size: .76rem;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    letter-spacing: .26em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: .7rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--gold), var(--red));
}

.footer-links a {
    display: block;
    color: #98a0af;
    padding: .3rem 0;
    font-size: .92rem;
    transition: all .2s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .25s ease;
}

.footer-links a:hover {
    color: var(--gold-2);
    padding-left: 16px;
}

.footer-links a:hover::before { width: 10px; }

.footer-contact a,
.footer-contact div {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    color: #98a0af;
    padding: .28rem 0;
    font-size: .92rem;
    transition: color .2s ease;
    line-height: 1.7;
    word-break: break-word;
}

.footer-contact a:hover { color: var(--gold-2); }

.footer-contact i {
    color: var(--gold);
    width: 18px;
    margin-top: .25rem;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    color: #dfe4ec;
    font-size: 16px;
    margin-right: .5rem;
    transition: all .3s ease;
}

.footer-social a:hover {
    background: linear-gradient(135deg, var(--gold-2), var(--gold));
    border-color: transparent;
    color: #171310;
    transform: translateY(-4px);
    box-shadow: 0 14px 26px rgba(0, 0, 0, .45);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 1.2rem 0;
    font-size: .84rem;
    color: #7c8494;
}

.footer-bottom .highlight { color: var(--gold-2); font-weight: 600; }

.footer-bottom a.footer-brand {
    color: var(--gold-2);
    font-weight: 700;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-bottom a.footer-brand:hover { color: #fff; text-decoration: underline; }

/* ---------- WhatsApp float ---------- */
.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #31d06c, #159a45);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: .86rem;
    letter-spacing: .04em;
    box-shadow: 0 16px 38px rgba(21, 154, 69, .45);
    transition: all .3s ease;
}

.wa-float:hover {
    transform: translateY(-4px);
    color: #fff;
    box-shadow: 0 22px 50px rgba(21, 154, 69, .58);
}

.wa-float i { font-size: 26px; animation: waPulse 2.2s ease-in-out infinite; }

.wa-float .wa-float-text { font-size: .85rem; }

@keyframes waPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.14); }
    100% { transform: scale(1); }
}

@media (max-width: 575.98px) {
    .wa-float {
        padding: 13px 16px;
        bottom: 18px;
        right: 18px;
    }
    .wa-float .wa-float-text { display: none; }
}

/* ---------- Raw HTML content beautifier ---------- */
.about-copy ul, .keterangan-note ul, .promo-points ul {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
}

.about-copy li, .keterangan-note li, .promo-points li {
    position: relative;
    padding: .6rem 0 .6rem 2.1rem;
    color: rgba(255, 255, 255, .9);
    font-family: 'Sora', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    border-bottom: 1px dashed rgba(255, 255, 255, .09);
    letter-spacing: 0;
}

.about-copy li:last-child, .keterangan-note li:last-child, .promo-points li:last-child {
    border-bottom: 0;
}

.about-copy li::before, .keterangan-note li::before, .promo-points li::before {
    content: "\f0a4";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: .66rem;
    color: var(--gold);
    font-size: .95rem;
}

.promo-points, .keterangan-note {
    text-align: left;
}

.promo-points ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 2.4rem;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.promo-points li, .keterangan-note li {
    color: rgba(255, 255, 255, .82);
}

.keterangan-note li {
    color: var(--ink-500);
    border-bottom-color: var(--ink-100);
}

.keterangan-note li::before {
    color: var(--gold);
}

.promo-note-content {
    color: var(--ink-600);
    font-size: .95rem;
    line-height: 1.75;
}

.promo-note-content p:last-child { margin-bottom: 0; }

.promo-note-content strong {
    color: var(--ink-900);
    font-family: 'Sora', sans-serif;
}

@media (max-width: 767.98px) {
    .promo-points ul {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

/* ---------- Price cards (pricelist) ---------- */
.product-price-card {
    border: 1px solid var(--ink-100);
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
    margin-bottom: 1.4rem;
    box-shadow: var(--shadow-sm);
}

.product-price-card:hover {
    box-shadow: var(--shadow-md);
}

.product-price-head {
    background: var(--grad-ink);
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: .65rem;
    border-bottom: 3px solid var(--gold);
}

.product-price-head i {
    color: var(--gold);
    font-size: 1.1rem;
}

.product-price-card .premium-table {
    border-spacing: 0;
    font-size: .88rem;
}

.product-price-card .premium-table tbody tr {
    box-shadow: none;
    border-bottom: 1px solid var(--ink-100);
}

.product-price-card .premium-table tbody tr:hover td {
    background: #faf3e4;
}

.product-price-card .premium-table tbody td {
    background: transparent;
    border-radius: 0 !important;
    padding: .78rem 1.2rem;
}

/* ---------- Share buttons (article detail) ---------- */
.btn-share {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--ink-200);
    background: #fff;
    color: var(--ink-700);
    font-size: 15px;
    transition: all .25s ease;
}

.btn-share:hover {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    transform: translateY(-3px);
}

/* ---------- Reveal + misc ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal-none {
    opacity: 1 !important;
    transform: none !important;
}

@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none;
    }
}

.section-title-white { color: #fff; }

@media (min-width: 992px) {
    .page-section { padding: 6.5rem 0; }
}