/* =========================================================
   PT SINERGI KONSTRUKSI UTAMA — DESIGN SYSTEM
   Premium Bold & Geometris (60-30-10) — "Blueprint Precision"
   ========================================================= */

:root {
    --primary-navy: #0B192C;
    /* Struktur & Teks (30%) */
    --primary-navy-rgb: 11, 25, 44;
    --accent-yellow: #FFB300;
    /* Aksen/CTA (10%) */
    --accent-yellow-rgb: 255, 179, 0;
    --bg-light: #FFFFFF;
    /* Latar Belakang Dominan (60%) */
    --bg-gray: #F4F6F9;
    /* Latar Belakang Sekunder */
    --border-hair: #E4E8EF;
    --text-muted-navy: #5B6B82;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    -webkit-text-size-adjust: 100%;
    touch-action: manipulation;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--primary-navy);
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    position: relative;
    margin: 0;
    padding: 0;
    touch-action: pan-y;
}

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6,
.section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

section,
header,
footer,
nav,
.container-fluid {
    max-width: 100%;
    box-sizing: border-box;
}

.font-oswald {
    font-family: 'Oswald', sans-serif;
}

p,
li,
a,
span,
label,
input,
textarea,
select,
button {
    font-family: 'Inter', sans-serif;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Aturan Ketat Estetika Geometris Tajam — Tidak ada sudut bulat */
.btn,
.card,
.form-control,
.form-select,
.accordion-item,
.accordion-button,
img,
.dropdown-menu,
.carousel-item,
.badge,
.btn-wa-float,
.btn-scroll-top,
.nav-link {
    border-radius: 0px !important;
}

.bg-navy {
    background-color: var(--primary-navy);
}

.text-navy {
    color: var(--primary-navy);
}

.text-accent {
    color: var(--accent-yellow) !important;
}

.bg-accent {
    background-color: var(--accent-yellow);
}

.text-muted-navy {
    color: var(--text-muted-navy);
}

.container-xl-custom {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ============ BUTTONS ============ */
.btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    letter-spacing: 0.3px;
}

.btn-accent {
    background-color: var(--accent-yellow);
    color: #000000;
    font-weight: 700;
    border: none;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #E6A100;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(var(--accent-yellow-rgb), 0.35);
}

.btn-outline-navy {
    border: 2px solid var(--primary-navy);
    color: var(--primary-navy);
    font-weight: 700;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-navy:hover {
    background-color: var(--primary-navy);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-outline-light-2 {
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: #fff;
    font-weight: 700;
    transition: all .3s ease;
    background: transparent;
}

.btn-outline-light-2:hover {
    background: #fff;
    color: var(--primary-navy);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ============ HOVER / MOTION UTILITIES ============ */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(11, 25, 44, 0.18) !important;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1.is-visible {
    transition-delay: .1s;
}

.reveal-delay-2.is-visible {
    transition-delay: .2s;
}

.reveal-delay-3.is-visible {
    transition-delay: .3s;
}

@keyframes heroFadeUp {
    from {
        opacity: 0;
        transform: translateY(22px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-anim-1 {
    animation: heroFadeUp .8s ease both;
    animation-delay: .05s;
}

.hero-anim-2 {
    animation: heroFadeUp .8s ease both;
    animation-delay: .2s;
}

.hero-anim-3 {
    animation: heroFadeUp .8s ease both;
    animation-delay: .35s;
}

.hero-anim-4 {
    animation: heroFadeUp .8s ease both;
    animation-delay: .5s;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
    }

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

/* Signature element: blueprint corner registration marks on key visuals */
.blueprint-corners {
    position: relative;
}

.blueprint-corners::before,
.blueprint-corners::after {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border-color: var(--accent-yellow);
    border-style: solid;
    z-index: 3;
    pointer-events: none;
}

.blueprint-corners::before {
    top: -10px;
    left: -10px;
    border-width: 3px 0 0 3px;
}

.blueprint-corners::after {
    bottom: -10px;
    right: -10px;
    border-width: 0 3px 3px 0;
}

/* ============ SECTION HELPERS ============ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-yellow);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
}

.section-eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--accent-yellow);
    display: inline-block;
}

.section-eyebrow-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-navy);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.78rem;
}

.section-eyebrow-dark::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--primary-navy);
    display: inline-block;
}

.section-title {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    margin-top: .5rem;
}

.section-lead {
    color: var(--text-muted-navy);
    max-width: 640px;
}

.section-py {
    padding-top: 7.5rem;
    padding-bottom: 7.5rem;
}

@media (max-width: 767.98px) {
    .section-py {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Global Desktop Spacing Overrides to prevent cramped layouts */
@media (min-width: 992px) {

    .g-4,
    .gy-4,
    .gx-4 {
        --bs-gutter-x: 2.5rem;
        --bs-gutter-y: 2.5rem;
    }

    .g-5,
    .gy-5,
    .gx-5 {
        --bs-gutter-x: 4rem;
        --bs-gutter-y: 4rem;
    }

    .mb-5 {
        margin-bottom: 4.5rem !important;
    }
}

/* ============ NAVBAR ============ */
.navbar {
    transition: all 0.35s ease;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.navbar-scrolled {
    padding-top: 0.55rem !important;
    padding-bottom: 0.55rem !important;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28) !important;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        font-size: 1.1rem !important;
    }

    .navbar .navbar-brand img {
        height: 32px !important;
    }
}

.navbar .nav-link {
    position: relative;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

.navbar .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--accent-yellow);
    transition: width .3s ease;
}

.navbar .nav-link:hover::before,
.navbar .nav-link.active::before {
    width: 100%;
}

.navbar .dropdown-menu {
    border: none;
    border-top: 3px solid var(--accent-yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
    padding: 0.5rem 0;
    margin-top: 0.4rem;
}

.navbar .dropdown-item {
    font-size: .82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .3px;
    padding: .6rem 1.25rem;
    color: var(--primary-navy);
    transition: all .2s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
    background: var(--bg-gray);
    color: var(--primary-navy);
    padding-left: 1.6rem;
}

.navbar .dropdown-item.fw-bold-accent {
    color: var(--accent-yellow);
    border-top: 1px solid var(--border-hair);
    margin-top: .3rem;
    padding-top: .8rem;
}

/* ============ ORGANIZED MEGA DROPDOWN ============ */
.navbar .dropdown-menu-mega {
    min-width: 640px;
    padding: 1.5rem;
    border-radius: 12px !important;
    /* Soften the rigid corners */
    border: 1px solid rgba(11, 25, 44, 0.08);
    border-top: 4px solid var(--accent-yellow) !important;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 24px 48px rgba(11, 25, 44, 0.12);
}

.dropdown-header-custom {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted-navy);
    font-weight: 800;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid rgba(11, 25, 44, 0.08);
}

.dropdown-item-mega {
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    border-radius: 8px;
    padding: 0.75rem 1rem !important;
    margin-bottom: 4px;
}

.dropdown-item-mega:hover {
    background-color: var(--bg-gray);
    transform: translateX(6px);
    box-shadow: 0 4px 12px rgba(11, 25, 44, 0.05);
}

.dropdown-item-mega .dim-icon {
    font-size: 1.25rem;
    line-height: 1;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 179, 0, 0.15);
    border-radius: 8px;
    color: var(--accent-yellow);
    transition: transform 0.3s ease;
}

.dropdown-item-mega:hover .dim-icon {
    transform: scale(1.1);
    background: var(--accent-yellow);
    color: var(--primary-navy);
}

.dropdown-item-mega .dim-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-navy);
    line-height: 1.2;
    letter-spacing: 0.2px;
    margin-bottom: 2px;
}

.dropdown-item-mega .dim-desc {
    font-size: 0.75rem;
    line-height: 1.35;
    color: var(--text-muted-navy);
    font-weight: 400;
}

.dropdown-calculator-link {
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 6px;
}

.dropdown-calculator-link:hover {
    background: var(--bg-gray);
    transform: translateX(3px);
}

@media (min-width: 992px) {
    .navbar .dropdown-mega {
        position: relative;
    }

    .navbar .dropdown-menu-mega {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        animation: dropFadeIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .navbar .dropdown-mega:hover>.dropdown-menu-mega {
        display: block;
    }
}

@keyframes dropFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ============ NAVBAR BRAND & TOGGLER (RESPONSIF MINIMAL 375PX) ============ */
.navbar-brand {
    font-size: 1.05rem !important;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    max-width: calc(100% - 55px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.navbar-brand img {
    height: 32px !important;
    width: auto;
}

@media (min-width: 576px) {
    .navbar-brand {
        font-size: 1.22rem !important;
    }
    .navbar-brand img {
        height: 38px !important;
    }
}

@media (min-width: 992px) {
    .navbar-brand {
        font-size: 1.35rem !important;
    }
    .navbar-brand img {
        height: 40px !important;
    }
}

.navbar-toggler {
    padding: 0.35rem 0.55rem;
    font-size: 1rem;
    border-color: rgba(255, 255, 255, 0.25);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px var(--accent-yellow);
}

/* ============ DROPDOWN MEGA FOOTER BUTTONS ============ */
.dropdown-mega-footer a.btn-kalkulator-rab {
    border: 1px solid rgba(11, 25, 44, 0.18);
    background: #f8fafc;
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.dropdown-mega-footer a.btn-kalkulator-rab:hover {
    background: var(--primary-navy);
    color: var(--accent-yellow);
    border-color: var(--primary-navy);
}

.dropdown-mega-footer a.btn-semua-layanan {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    font-weight: 800;
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        padding: 0.75rem 0 1.25rem;
        -webkit-overflow-scrolling: touch;
    }

    .navbar .dropdown-menu-mega {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        background: #0f223d;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-left: 3px solid var(--accent-yellow) !important;
        box-shadow: none;
        margin-top: 0.5rem;
        padding: 0.75rem;
        overflow: hidden;
    }

    .navbar .dropdown-menu-mega .row {
        margin-left: -0.35rem;
        margin-right: -0.35rem;
    }

    .navbar .dropdown-menu-mega .col-lg-6 {
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .dropdown-item-mega {
        padding: 0.5rem 0.6rem !important;
    }

    .dropdown-item-mega .dim-icon {
        width: 32px;
        height: 32px;
        font-size: 1.05rem;
    }

    .dropdown-item-mega .dim-title {
        font-size: 0.82rem;
    }

    .dropdown-item-mega .dim-desc {
        font-size: 0.7rem;
    }

    .navbar .dropdown-header-custom {
        color: rgba(255, 255, 255, 0.7) !important;
        border-bottom-color: rgba(255, 255, 255, 0.12) !important;
        font-size: 0.72rem;
    }

    .navbar .dim-title {
        color: #ffffff !important;
    }

    .navbar .dim-desc {
        color: rgba(255, 255, 255, 0.65) !important;
    }

    .navbar .dropdown-item-mega:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .navbar .dropdown-mega-footer {
        border-top-color: rgba(255, 255, 255, 0.12) !important;
        gap: 0.4rem !important;
    }

    .dropdown-mega-footer a.btn-kalkulator-rab {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        color: #ffffff !important;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .dropdown-mega-footer a.btn-kalkulator-rab:hover {
        background: var(--accent-yellow);
        color: #000000 !important;
        border-color: var(--accent-yellow);
    }

    .dropdown-mega-footer a.btn-semua-layanan {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ============ FILTER BUTTONS ============ */
.btn-filter {
    background: #ffffff;
    color: var(--primary-navy);
    border: 1px solid rgba(11, 25, 44, 0.15);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 0.6rem 1.25rem;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 0px !important;
}

.btn-filter:hover {
    background: var(--primary-navy);
    color: #ffffff;
    border-color: var(--primary-navy);
    transform: translateY(-2px);
}

.btn-filter.active {
    background: var(--primary-navy) !important;
    color: var(--accent-yellow) !important;
    border-color: var(--primary-navy) !important;
    box-shadow: 0 4px 12px rgba(11, 25, 44, 0.15);
}

@media (max-width: 575.98px) {
    .btn-filter,
    .btn-filter-portofolio,
    .btn-filter-artikel {
        width: 100% !important;
        display: block !important;
        text-align: center;
        padding: 0.6rem 1rem !important;
        font-size: 0.8rem !important;
    }
}

.btn-nav-cta {
    background: var(--accent-yellow);
    color: #000;
    font-weight: 700;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: .6rem 1.3rem !important;
    transition: all .3s ease;
}

.btn-nav-cta:hover {
    background: #fff;
    color: var(--primary-navy);
    transform: translateY(-2px);
}

/* ============ HERO ============ */
.hero-section {
    background: linear-gradient(rgba(11, 25, 44, 0.88), rgba(11, 25, 44, 0.78)), url('../img/beranda-background.webp') no-repeat center center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0 100px;
}

.hero-indicators {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    margin-top: 2.5rem;
    padding-top: 1.75rem;
}

.hero-indicators .hi-item {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.hero-indicators .hi-num {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-yellow);
    line-height: 1;
}

.hero-indicators .hi-label {
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(255, 255, 255, 0.65);
}

.hero-scroll-cue {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.4rem;
    animation: bounceCue 2s infinite;
}

@keyframes bounceCue {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, 8px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-scroll-cue {
        animation: none;
    }
}

/* ============ PAGE HEADER (Semua Halaman Selain Beranda) ============ */
.page-header {
    background: linear-gradient(rgba(11, 25, 44, 0.88), rgba(11, 25, 44, 0.88)), url('../img/beranda-background.webp') no-repeat center center/cover;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 0;
    position: relative;
}

.page-header .container {
    width: 100%;
}

.page-header h1 {
    font-size: clamp(2rem, 3.8vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

.page-header .lead {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.page-header .badge {
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    margin-bottom: 0.85rem;
}

.page-header-tentang {
    background-image: linear-gradient(rgba(11, 25, 44, 0.88), rgba(11, 25, 44, 0.88)), url('../img/tentang-kami-background.webp') !important;
}

.page-header-layanan {
    background-image: linear-gradient(rgba(11, 25, 44, 0.88), rgba(11, 25, 44, 0.88)), url('../img/layanan-background.webp') !important;
}

.page-header-portofolio {
    background-image: linear-gradient(rgba(11, 25, 44, 0.88), rgba(11, 25, 44, 0.88)), url('../img/portofolio-background.webp') !important;
}

.page-header-artikel {
    background-image: linear-gradient(rgba(11, 25, 44, 0.88), rgba(11, 25, 44, 0.88)), url('../img/artikel-background.webp') !important;
}

.page-header-kontak {
    background-image: linear-gradient(rgba(11, 25, 44, 0.88), rgba(11, 25, 44, 0.88)), url('../img/kontak-background.webp') !important;
}

/* ============ TRUST BAR ============ */
.trust-bar {
    background: var(--bg-gray);
    border-bottom: 1px solid var(--border-hair);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-weight: 700;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: var(--primary-navy);
}

.trust-item i {
    color: var(--accent-yellow);
    font-size: 1.05rem;
}

/* ============ ABOUT SPLIT ============ */
.about-media-wrap {
    position: relative;
}

/* ============ SERVICE CARDS ============ */
.service-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border-hair);
    padding: 2.4rem 1.9rem;
    height: 100%;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--accent-yellow);
    transition: width .35s ease;
}

.service-card:hover::before {
    width: 100%;
}

.service-icon {
    width: 58px;
    height: 58px;
    background: var(--primary-navy);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.4rem;
    transition: all .3s ease;
}

.service-card:hover .service-icon {
    background: var(--accent-yellow);
    color: var(--primary-navy);
}

.service-link {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: var(--primary-navy);
    text-decoration: none;
}

.service-link i {
    transition: transform .3s ease;
}

.service-card:hover .service-link i {
    transform: translateX(5px);
}

/* ============ PORTFOLIO (HOME) ============ */
.portfolio-card {
    position: relative;
    overflow: hidden;
    background: var(--primary-navy);
}

.portfolio-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .5s ease, opacity .3s ease;
    display: block;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(11, 25, 44, 0.95) 10%, rgba(11, 25, 44, 0.05) 100%);
    color: #fff;
    padding: 2.2rem 1.4rem 1.2rem;
}

.portfolio-caption .badge-status {
    font-size: .68rem;
    letter-spacing: .5px;
}

/* ============ ADVANTAGES (KEUNGGULAN) ============ */
.advantage-item {
    padding: 1.8rem 1.6rem;
    border-left: 3px solid var(--border-hair);
    transition: all .3s ease;
    height: 100%;
    background: #fff;
}

.advantage-item:hover {
    border-left-color: var(--accent-yellow);
    background: var(--bg-gray);
}

.advantage-number {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 2.6rem;
    color: rgba(11, 25, 44, 0.10);
    line-height: 1;
    margin-bottom: .4rem;
}

.advantage-item:hover .advantage-number {
    color: rgba(255, 179, 0, 0.5);
}

/* ============ PROSES KERJA (TIMELINE) ============ */
.process-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 1rem;
}

.process-track::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 4%;
    right: 4%;
    height: 2px;
    background: var(--border-hair);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 .6rem;
}

.process-marker {
    width: 56px;
    height: 56px;
    background: var(--primary-navy);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    margin: 0 auto 1.1rem;
    border: 3px solid #fff;
    box-shadow: 0 0 0 1px var(--border-hair);
    transition: all .3s ease;
}

.process-step:hover .process-marker {
    background: var(--accent-yellow);
    color: var(--primary-navy);
}

.process-step h6 {
    font-size: .82rem;
    margin-bottom: .5rem;
}

.process-step p {
    font-size: .78rem;
    color: var(--text-muted-navy);
}

@media (max-width: 991.98px) {
    .process-track {
        flex-direction: column;
        align-items: stretch;
        gap: 1.6rem;
    }

    .process-track::before {
        top: 0;
        bottom: 0;
        left: 27px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .process-step {
        display: flex;
        align-items: flex-start;
        text-align: left;
        gap: 1.1rem;
        padding: 0;
    }

    .process-marker {
        margin: 0;
        flex-shrink: 0;
    }
}

/* ============ STATISTIK ============ */
.stats-section {
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--accent-yellow);
    line-height: 1;
}

.stat-label {
    font-size: .74rem;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: rgba(255, 255, 255, 0.65);
    margin-top: .5rem;
}

/* ============ TESTIMONIAL ============ */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--border-hair);
    padding: 2.6rem 2.2rem;
    height: 100%;
    position: relative;
}

.testimonial-quote-icon {
    font-size: 2.2rem;
    color: var(--accent-yellow);
    opacity: .5;
    margin-bottom: 1rem;
}

.testimonial-name {
    font-weight: 700;
    font-size: .95rem;
    text-transform: none;
    letter-spacing: 0;
}

.testimonial-role {
    font-size: .78rem;
    color: var(--text-muted-navy);
}

#testimonialCarousel .carousel-control-prev,
#testimonialCarousel .carousel-control-next {
    position: static;
    width: 44px;
    height: 44px;
    background: var(--primary-navy);
    opacity: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background .3s ease;
}

#testimonialCarousel .carousel-control-prev:hover,
#testimonialCarousel .carousel-control-next:hover {
    background: var(--accent-yellow);
}

#testimonialCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next:hover .carousel-control-next-icon {
    filter: invert(0) brightness(0);
}

.testimonial-nav-wrap {
    display: flex;
    justify-content: center;
    gap: .75rem;
    margin-top: 2rem;
}

/* ============ AREA LAYANAN ============ */
.area-chip {
    background: #fff;
    border: 2px solid var(--primary-navy);
    padding: .95rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .8rem;
    letter-spacing: .3px;
    display: flex;
    align-items: center;
    gap: .55rem;
    transition: all .3s ease;
    height: 100%;
}

.area-chip i {
    color: var(--accent-yellow);
    transition: color .3s ease;
}

.area-chip:hover {
    background: var(--primary-navy);
    color: #fff;
    transform: translateY(-4px);
}

/* ============ FAQ ============ */
.accordion-item {
    border: 1px solid var(--border-hair) !important;
    margin-bottom: .7rem;
}

.accordion-button {
    font-weight: 700;
    font-size: .95rem;
    padding: 1.1rem 1.4rem;
    color: var(--primary-navy);
}

.accordion-button:not(.collapsed) {
    background: var(--primary-navy);
    color: #fff;
    box-shadow: none;
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1) sepia(1) saturate(6) hue-rotate(360deg);
}

.accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(255, 179, 0, 0.4);
}

.accordion-body {
    font-size: .9rem;
    color: var(--text-muted-navy);
    padding: 1.2rem 1.4rem;
}

/* ============ CTA AKHIR ============ */
.final-cta-section {
    background: linear-gradient(rgba(11, 25, 44, 0.92), rgba(11, 25, 44, 0.92)), url('../img/cta-background.webp') no-repeat center center/cover;
    padding: 8rem 0;
}

/* ============ FOOTER ============ */
.site-footer {
    border-top: 4px solid var(--accent-yellow);
}

.footer-heading {
    color: var(--accent-yellow);
    font-size: .85rem;
    letter-spacing: 1px;
    margin-bottom: 1.15rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: .84rem;
    transition: all .25s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-yellow);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: .65rem;
    font-size: .84rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.45;
}

.footer-contact-item i {
    color: var(--accent-yellow);
    margin-top: .15rem;
    flex-shrink: 0;
    font-size: 0.95rem;
}

.hover-yellow {
    transition: color 0.2s ease;
}

.hover-yellow:hover {
    color: var(--accent-yellow) !important;
}

.footer-hours-box {
    background: rgba(255, 255, 255, 0.04);
    border-left: 3px solid var(--accent-yellow);
    padding: 0.75rem 1rem;
}

.social-icon {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all .3s ease;
    text-decoration: none;
}

.social-icon:hover {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    border-color: var(--accent-yellow);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: .8rem;
}

.footer-bottom a:hover {
    color: var(--accent-yellow);
}

/* ============ WHATSAPP & ROLLBACK FLOATING BUTTONS ============ */
.btn-wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    z-index: 1050;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    transition: all .3s ease;
}

.btn-wa-float:hover {
    transform: translateY(-4px) scale(1.05);
    color: #fff;
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

.btn-scroll-top {
    position: fixed;
    bottom: 94px;
    right: 26px;
    z-index: 1040;
    width: 58px;
    height: 48px;
    background: var(--primary-navy);
    color: var(--accent-yellow);
    border: 2px solid var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.btn-scroll-top:hover {
    background: var(--accent-yellow);
    color: var(--primary-navy);
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-section {
        padding: 110px 0 50px;
        min-height: auto;
    }

    .page-header {
        min-height: 280px;
        padding: 50px 0;
    }

    .section-py {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .trust-item {
        font-size: 0.72rem;
        gap: 0.35rem;
    }

    .service-card {
        padding: 1.6rem 1.25rem;
    }

    .testimonial-card {
        padding: 1.8rem 1.3rem;
    }

    .final-cta-section {
        padding: 3.5rem 0;
    }

    .btn-wa-float {
        width: 48px;
        height: 48px;
        font-size: 1.35rem;
        bottom: 16px;
        right: 16px;
    }

    .btn-scroll-top {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        bottom: 72px;
        right: 16px;
    }

    /* Pastikan tombol aksi dalam kartu atau CTA otomatis full width & bersusun rapi di layar HP */
    .card .d-flex.flex-column.flex-sm-row .btn,
    .card-body .d-flex .btn,
    .hero-section .d-flex .btn,
    .page-header .d-flex .btn,
    .final-cta-section .d-flex .btn,
    .service-card-footer .btn {
        width: 100% !important;
        display: block;
        text-align: center;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ============ STICKY SIDEBAR & TOC ============ */
.sidebar-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 90px;
    z-index: 10;
    align-self: flex-start;
}

/* Table of Contents (TOC) */
.toc-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--accent-yellow);
    padding: 1.25rem 1.5rem;
    margin-bottom: 2rem;
}

.toc-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-navy);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.toc-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.toc-list li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.5rem;
    font-size: 0.92rem;
}

.toc-list li::before {
    content: "•";
    color: var(--accent-yellow);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: 0.2rem;
    top: -2px;
}

.toc-list a {
    color: var(--primary-navy);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
    font-weight: 500;
}

.toc-list a:hover {
    color: var(--accent-yellow);
    transform: translateX(4px);
}

.toc-sublist {
    list-style: none;
    padding-left: 1.25rem;
    margin-top: 0.35rem;
    margin-bottom: 0.35rem;
}

.toc-sublist li {
    font-size: 0.85rem;
    padding-left: 1.1rem;
}

.toc-sublist li::before {
    content: "–";
    color: #94a3b8;
    position: absolute;
    left: 0.2rem;
}

/* Article Table & Callout */
.article-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #e2e8f0;
    width: 100%;
}

.article-table th {
    background: var(--primary-navy);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.75rem 1rem;
    border: none;
}

.article-table td {
    font-size: 0.88rem;
    vertical-align: middle;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.article-table tr:nth-child(even) {
    background: #f8fafc;
}


/* ============ ARTIKEL DETAIL — MOBILE RESPONSIVE ============ */
/* Tabel artikel: kompres font & padding, paksa scroll horizontal */
@media (max-width: 575.98px) {

    /* Wrapper tabel sudah punya .table-responsive, pastikan -webkit- juga bekerja */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
        border: 1px solid #e2e8f0;
    }

    /* Kecilkan font dan padding sel agar kolom muat */
    .article-table th,
    .article-table td {
        font-size: 0.78rem;
        padding: 0.5rem 0.65rem;
        white-space: normal;        /* izinkan teks wrap di dalam sel */
        word-break: break-word;
    }

    /* Lebar minimum tabel supaya scroll horizontal aktif */
    .article-table {
        min-width: 480px;           /* tabel 3 kolom butuh setidaknya 480px */
    }

    /* Dark section kesimpulan — padding responsif */
    section.bg-navy.text-white {
        padding: 1.25rem !important;
    }

    /* Heading di dark section tidak terlalu besar */
    section.bg-navy .h5 {
        font-size: 1rem;
    }

    /* Tombol CTA artikel: full width di mobile (<576px) */
    .btn.d-block.d-sm-inline-block {
        width: 100%;
        text-align: center;
        white-space: normal;
        line-height: 1.4;
        padding: 0.65rem 1rem !important;
    }

    /* Author box: susun ke bawah saat terlalu sempit */
    .author-box-row {
        flex-direction: column;
        align-items: flex-start !important;
    }

    /* TOC box: kurangi padding */
    .toc-box {
        padding: 1rem !important;
    }

    .toc-list li {
        font-size: 0.83rem;
    }
}

/* =====================================================
   KOMPONEN BACA JUGA (In-Article Related Articles)
   ===================================================== */
.baca-juga-box {
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 4px solid var(--accent-yellow);
    background: linear-gradient(135deg, #f8f9fb 0%, #eef2f7 100%);
    border-radius: 0 10px 10px 0;
    padding: 1rem 1.25rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.baca-juga-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--accent-yellow);
    opacity: 0.06;
    border-radius: 50%;
    transform: translate(25px, -25px);
}

.baca-juga-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #b58a00;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.4);
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    margin-bottom: 0.55rem;
    width: fit-content;
}

.baca-juga-label i {
    font-size: 0.75rem;
}

.baca-juga-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.baca-juga-list li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-navy);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.2s ease, gap 0.2s ease;
}

.baca-juga-list li a::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-yellow);
    border-radius: 50%;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.baca-juga-list li a:hover {
    color: #b58a00;
    gap: 0.65rem;
}

.baca-juga-list li a:hover::before {
    transform: scale(1.4);
}

@media (max-width: 575.98px) {
    .baca-juga-box {
        padding: 0.85rem 1rem;
        margin: 1.5rem 0;
    }
    .baca-juga-list li a {
        font-size: 0.85rem;
    }
}

/* ===== QUICK CONTACT CARDS (kontak.html) ===== */
.quick-contact-card {
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 0.75rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}

.quick-contact-card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.qc-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.65rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* ===== CONTACT INFO ICONS (kontak.html) ===== */
.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

/* btn outline navy */
.btn-outline-navy {
    color: var(--primary-navy);
    border-color: var(--primary-navy);
    background: transparent;
    transition: background 0.2s, color 0.2s;
}
.btn-outline-navy:hover {
    background: var(--primary-navy);
    color: var(--accent-yellow);
}

/* ===== FIX ACCORDION BUTTON — override Bootstrap active state ===== */
/* Pastikan teks tetap navy & background putih di semua kondisi */
.accordion-button {
    color: var(--primary-navy) !important;
    background-color: #fff !important;
    box-shadow: none !important;
    font-weight: 700;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-navy) !important;
    background-color: #fffbf0 !important;   /* kuning sangat pucat, menunjukkan aktif */
    box-shadow: none !important;
}

.accordion-button::after {
    /* Ganti chevron Bootstrap default dengan warna yang match */
    filter: invert(18%) sepia(38%) saturate(800%) hue-rotate(191deg);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(18%) sepia(38%) saturate(800%) hue-rotate(191deg);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(var(--bs-warning-rgb), 0.25) !important;
    border-color: transparent;
}