/* frontend-custom.css — v2.1 hero-carousel */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ── Lenis Smooth Scroll Overrides ── */
/* Bootstrap sets :root { scroll-behavior: smooth } which conflicts with Lenis */
html,
html.lenis,
html.lenis body {
    height: auto;
}

html {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: clip;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

/* --- Extracted from: ⚡artikel.blade.php --- */
/* PAGE */
.artpage {
    background: #f3f6f9;
    min-height: 100vh;
    padding-bottom: 10px;
    font-family: 'Inter', system-ui, sans-serif
}

/* Full-width override di mobile — hilangkan gap kiri-kanan */
@media (max-width: 767px) {
    .artpage {
        width: 100vw !important;
        max-width: 100vw !important;
        margin-left: calc(-50vw + 50%) !important;
        margin-right: 0 !important;
        overflow-x: hidden !important;
    }

    .art-hero {
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* HERO */
.art-hero {
    background: linear-gradient(145deg, #031f0e 0%, #064A21 50%, #0c8f55 100%);
    padding: 148px 0 90px;
    position: relative;
    overflow: hidden
}

.art-hero::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    top: -120px;
    right: -80px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, .13) 0%, transparent 70%);
    pointer-events: none
}

.art-hero-mesh {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none
}

.art-hero-inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 2
}

.art-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    color: #fff;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-bottom: 22px;
    backdrop-filter: blur(8px)
}

.art-hero-title {
    font-size: 2.75rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -.025em
}

.art-hero-title em {
    font-style: normal;
}

.art-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, .72);
    max-width: 480px;
    margin: 0 auto 32px;
    line-height: 1.7
}

/* SEARCH */
.art-search {
    max-width: 520px;
    margin: 0 auto;
    position: relative
}

.art-search input {
    width: 100%;
    padding: 15px 58px 15px 22px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, .12);
    font-size: .95rem;
    font-weight: 500;
    outline: none;
    background: rgba(255, 255, 255, .97);
    color: #0d1117;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .22);
    transition: border-color .2s, box-shadow .2s
}

.art-search input:focus {
    border-color: #10b981;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .22), 0 0 0 4px rgba(16, 185, 129, .18)
}

.art-search-btn {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%);
    background-size: 200% auto;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    box-shadow: 0 4px 14px rgba(6, 74, 33, .5);
    transition: transform .2s, box-shadow .2s
}

.art-search-btn:hover {
    transform: translateY(-50%) scale(1.1);
    background-position: right center;
    box-shadow: 0 6px 20px rgba(6, 74, 33, .6)
}

/* FILTER BAR */
.art-filter-wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    border-bottom: 1px solid #dde3ed;
    display: flex;
    align-items: center;
}

/* Tabs — desktop: flex dan wrap, isi sisa ruang */
.art-filter-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding: 24px 0 18px;
    flex: 1;
}

/* View toggle row — desktop: inline di kanan */
.art-filter-bar {
    display: flex;
    align-items: center;
    padding: 0;
    flex-shrink: 0;
}


/* === MOBILE FILTER: horizontal scroll + view toggle di bawah === */
@media (max-width: 767px) {
    .art-filter-wrap {
        padding: 0;
        background: #fff;
        position: sticky;
        top: 95px;
        z-index: 100;
        border-bottom: 1px solid #dde3ed;
        max-width: 100%;
    }

    /* Tabs row: nowrap + horizontal scroll */
    .art-filter-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        overflow-y: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding: 12px 16px 10px;
        gap: 8px;
    }

    .art-filter-tabs::-webkit-scrollbar {
        display: none;
    }

    /* Sembunyikan label "Filter:" di mobile */
    .art-filter-label {
        display: none;
    }

    .art-ftab {
        padding: 7px 14px;
        font-size: .78rem;
        flex-shrink: 0;
    }

    /* View toggle row: di bawah tabs, tanpa background, tengah */
    .art-filter-bar {
        padding: 8px 16px 10px;
        border-top: 1px solid #eef0f4;
        justify-content: center;
        background: transparent;
    }

    .art-view-sep {
        margin-left: 0;
        gap: 8px;
        justify-content: center;
        width: 100%;
    }

    .art-view-btn {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        font-size: .9rem;
        background: transparent;
        border-color: #e2e8f0;
    }

    .art-view-btn.active {
        background: #f0fdf4;
    }
}


.art-filter-label {
    font-size: .72rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin-right: 4px;
    white-space: nowrap
}

.art-ftab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .84rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid #dde3ed;
    background: #fff;
    color: #2d3748;
    text-decoration: none;
    transition: all .2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    white-space: nowrap;
    user-select: none
}

.art-ftab:hover {
    border-color: #10b981;
    color: #064A21;
    background: #f0fdf4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, .15)
}

.art-ftab.is-active,
.art-ftab.is-active:hover {
    background: linear-gradient(135deg, #064A21 0%, #10b981 100%) !important;
    color: #fff !important;
    border-color: transparent !important;
    box-shadow: 0 4px 16px rgba(6, 74, 33, .4), 0 2px 6px rgba(16, 185, 129, .25) !important;
    transform: none !important;
    font-weight: 700
}

.art-ftab.is-active i,
.art-ftab.is-active:hover i {
    color: #fff !important
}

/* VIEW TOGGLE */
.art-view-sep {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px
}

.art-view-btn {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 1.5px solid #dde3ed;
    background: #fff;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: .95rem;
    transition: all .2s
}

.art-view-btn:hover {
    background: #f0fdf4;
    color: #064A21;
    border-color: #10b981
}

.art-view-btn.active {
    background: #e6f0eb;
    border-color: #064A21;
    color: #064A21
}

/* LAYOUT */
.art-layout {
    max-width: 1140px;
    margin: 30px auto 0;
    padding: 0 10px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start
}

.art-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px
}

/* CARD — GRID */
.art-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dde3ed;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05), 0 6px 22px rgba(0, 0, 0, .06);
    transition: transform .28s ease, box-shadow .28s ease;
    text-decoration: none
}

.art-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, .06), 0 18px 42px rgba(0, 0, 0, .1);
    text-decoration: none
}

.art-card-img {
    height: 200px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
    flex-shrink: 0
}

.art-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .45s ease
}

.art-card:hover .art-card-img img {
    transform: scale(1.07)
}

.art-card-body {
    padding: 20px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 0 0 20px 20px
}

/* CARD — LIST */
.art-grid.list-mode {
    grid-template-columns: 1fr;
    gap: 14px
}

.art-grid.list-mode .art-card {
    flex-direction: row;
    min-height: 140px;
    height: auto
}

.art-grid.list-mode .art-card:hover {
    transform: translateX(4px) translateY(-2px)
}

.art-grid.list-mode .art-card-img {
    width: 240px;
    min-width: 240px;
    height: auto;
    min-height: 140px;
    flex-shrink: 0;
    border-radius: 20px 0 0 20px
}

.art-grid.list-mode .art-card-img img {
    height: 100%;
    min-height: 140px
}

.art-grid.list-mode .art-card-body {
    flex: 1;
    padding: 16px 20px;
    border-radius: 0 20px 20px 0;
    justify-content: flex-start;
    gap: 0
}

.art-grid.list-mode .cat-pill {
    margin-bottom: 6px
}

.art-grid.list-mode .art-card-title {
    font-size: .92rem;
    margin-bottom: 4px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.art-grid.list-mode .art-card-excerpt {
    -webkit-line-clamp: 2;
    font-size: .8rem;
    margin-bottom: 8px;
    flex: none
}

.art-grid.list-mode .art-meta {
    margin-bottom: 0;
    gap: 4px
}

.art-grid.list-mode .art-tags {
    display: none
}

.art-grid.list-mode .art-btn {
    padding: 5px 14px !important;
    font-size: .75rem !important;
    margin-top: 8px !important
}

/* SHARED */
.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 800;
    width: fit-content;
    margin-bottom: 10px;
    background: #f0fdf4;
    color: #064A21;
    border: 1px solid #d1fae5;
    letter-spacing: .03em;
    text-transform: uppercase
}

.art-card-title {
    font-size: .95rem;
    font-weight: 700;
    color: #0d1117;
    line-height: 1.5;
    margin-bottom: 6px;
    letter-spacing: -.005em
}

.art-card-excerpt {
    font-size: .82rem;
    color: #64748b;
    line-height: 1.68;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1
}

.art-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 10px
}

.art-mc {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: #f8fafc;
    border: 1px solid #dde3ed;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 600;
    color: #64748b
}

.art-mc i {
    font-size: .75rem;
    color: #10b981
}

.art-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 6px
}

.art-tag {
    padding: 2px 9px;
    border-radius: 50px;
    font-size: .67rem;
    font-weight: 700;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0
}

.art-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 7px 16px !important;
    border-radius: 50px !important;
    font-size: .78rem !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    border: none !important;
    text-decoration: none !important;
    width: fit-content !important;
    margin-top: 12px !important;
    transition: transform .22s, box-shadow .22s !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 4px 14px rgba(6, 74, 33, .3) !important;
}

.art-btn:hover {
    background-position: right center !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(6, 74, 33, .5) !important;
    color: #fff !important;
    opacity: 1 !important;
    visibility: visible !important;
    text-decoration: none !important
}

/* SIDEBAR */
.art-sidebar {
    position: sticky;
    top: 92px;
    display: flex;
    flex-direction: column;
    gap: 20px
}

.sid-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dde3ed;
    padding: 22px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05), 0 6px 22px rgba(0, 0, 0, .06)
}

.sid-title {
    font-size: .88rem;
    font-weight: 800;
    color: #0d1117;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 13px;
    margin-bottom: 13px;
    border-bottom: 1.5px dashed #dde3ed;
    letter-spacing: -.005em
}

.sid-icon {
    width: 30px;
    height: 30px;
    background: #f0fdf4;
    color: #10b981;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0
}

.sid-cat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 10px 10px 14px;
    margin: 0 -10px;
    border-radius: 10px;
    text-decoration: none;
    font-size: .875rem;
    font-weight: 600;
    color: #2d3748;
    transition: all .22s ease;
    border-bottom: 1px solid #f1f5f9;
    position: relative
}

.sid-cat-item:last-child {
    border-bottom: none
}

.sid-cat-item::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 55%;
    background: linear-gradient(to bottom, #064A21, #10b981);
    border-radius: 0 3px 3px 0;
    transition: transform .2s ease
}

.sid-cat-item:hover {
    background: #f0fdf4;
    color: #064A21;
    padding-left: 20px
}

.sid-cat-item:hover::before {
    transform: translateY(-50%) scaleY(1)
}

.sid-count {
    background: #f1f5f9;
    color: #64748b;
    padding: 2px 9px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    border: 1px solid #dde3ed
}

.sid-pop-item {
    display: flex;
    gap: 12px;
    padding: 10px 6px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
    border-bottom: 1px solid #f1f5f9
}

.sid-pop-item:last-child {
    border-bottom: none
}

.sid-pop-item:hover {
    background: #f0fdf4;
    padding-left: 10px
}

.sid-pop-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: #dde3ed;
    min-width: 28px;
    line-height: 1;
    padding-top: 2px;
    flex-shrink: 0
}

.sid-pop-title {
    font-size: .83rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.45
}

.sid-pop-item:hover .sid-pop-title {
    color: #064A21
}

.sid-pop-meta {
    font-size: .70rem;
    color: #64748b;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px
}

.sid-nl {
    background: linear-gradient(145deg, #043718 0%, #10b981 100%);
    border: none;
    text-align: center
}

.sid-nl-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, .15);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    margin: 0 auto 12px;
    border: 1px solid rgba(255, 255, 255, .2)
}

.sid-nl h5 {
    font-size: .92rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 7px
}

.sid-nl p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .78);
    line-height: 1.6;
    margin-bottom: 16px
}

.sid-nl a {
    display: block;
    background: #fff;
    color: #064A21;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .875rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .18);
    transition: opacity .2s, transform .2s
}

.sid-nl a:hover {
    opacity: .9;
    transform: translateY(-1px)
}

/* SKELETON */
@keyframes art-shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(100%)
    }
}

.sk-box {
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
    display: block;
    border-radius: 8px
}

.sk-box::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .6) 50%, transparent 100%);
    transform: translateX(-100%);
    animation: art-shimmer 1.5s infinite;
    display: block;
    z-index: 2
}

.sk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    width: 100%
}

.sk-grid.list-sk {
    grid-template-columns: 1fr;
    gap: 16px
}

.sk-card-wrap {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dde3ed;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05)
}

.sk-card-img {
    height: 200px;
    width: 100%;
    border-radius: 20px 20px 0 0
}

.sk-card-body {
    padding: 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%
}

.sk-grid.list-sk .sk-card-wrap {
    display: flex;
    height: 160px
}

.sk-grid.list-sk .sk-card-img {
    height: 100%;
    width: 220px;
    border-radius: 20px 0 0 20px;
    flex-shrink: 0
}

.sk-grid.list-sk .sk-card-body {
    flex: 1;
    padding: 18px 22px;
    justify-content: center
}

.sk-pill {
    height: 22px;
    width: 100px;
    border-radius: 50px
}

.sk-h1 {
    height: 18px;
    width: 100%;
    border-radius: 8px
}

.sk-h2 {
    height: 18px;
    width: 80%;
    border-radius: 8px
}

.sk-line {
    height: 12px;
    width: 100%;
    border-radius: 6px
}

.sk-line.w80 {
    width: 80%
}

.sk-line.w60 {
    width: 60%
}

.sk-btn {
    height: 34px;
    width: 130px;
    border-radius: 50px
}

/* EMPTY STATE */
.art-empty {
    background: #fff;
    border-radius: 20px;
    border: 1.5px dashed #dde3ed;
    text-align: center;
    padding: 80px 24px;
    grid-column: 1/-1
}

.art-empty i {
    font-size: 3.2rem;
    color: #10b981;
    opacity: .3;
    display: block;
    margin-bottom: 14px
}

.art-empty h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 6px
}

.art-empty p {
    font-size: .875rem;
    color: #64748b
}

/* RESPONSIVE */
@media(max-width:1024px) {
    .art-layout {
        grid-template-columns: 1fr
    }

    .art-sidebar {
        position: static
    }
}

@media(max-width:768px) {
    .art-hero-title {
        font-size: 2rem
    }

    .art-grid,
    .sk-grid {
        grid-template-columns: 1fr
    }

    .art-grid.list-mode .art-card {
        flex-direction: column;
        height: auto
    }

    .art-grid.list-mode .art-card-img {
        width: 100%;
        height: 180px;
        border-radius: 20px 20px 0 0
    }

    .art-grid.list-mode .art-card-body {
        border-radius: 0 0 20px 20px
    }
}

@media(max-width:480px) {
    .art-hero {
        padding: 130px 0 80px
    }

    .art-hero-title {
        font-size: 1.7rem
    }
}

/* --- Extracted from: ⚡artikel.blade.php --- */
/* --- BASE KOTAK --- */
.skeleton-box {
    /* Kita pakai abu-abu yg lebih gelap biar kontras */
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* WAJIB ADA: Agar elemen punya bentuk */
    display: block;
}

/* --- CAHAYA KILAT --- */
.skeleton-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    /* Gradien Putih Tajam */
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            /* Putih lebih tebal (0.6) */
            transparent 100%);

    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
    display: block;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* --- UKURAN ELEMENT (Sama seperti punya kamu) --- */
.sk-img {
    height: 240px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.sk-badge {
    height: 20px;
    width: 80px;
    display: inline-block;
    margin-right: 10px;
}

.sk-title {
    height: 24px;
    width: 70%;
    margin-bottom: 10px;
}

.sk-text {
    height: 14px;
    width: 90%;
    margin-bottom: 6px;
}

.sk-box-spec {
    height: 60px;
    width: 100%;
    margin-bottom: 15px;
}

.sk-btn {
    height: 45px;
    width: 100%;
    border-radius: 10px;
}

/* --- Extracted from: ⚡artikel_detail.blade.php --- */
/* === PAGE === */
.ard-page {
    background: #f3f6f9;
    min-height: 100vh;
    padding-bottom: 120px !important;
    /* spacing ke atas ditangani oleh margin-top inline ard-nav */
    padding-top: 0 !important;
}



/* === READING PROGRESS === */
.ard-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    z-index: 9999;
    background: linear-gradient(90deg, #064A21, #10b981);
    border-radius: 0 3px 3px 0;
    box-shadow: 0 0 8px rgba(16, 185, 129, .4);
    transition: width .08s linear;
    pointer-events: none;
}

/* === NAV BAR (breadcrumb strip) === */
.ard-nav {
    background: #fff;
    border-bottom: 1px solid #dde3ed;
    margin-top: 95px !important;
    /* desktop fallback — JS override with actual header height */
}

@media(max-width:991px) {
    .ard-nav {
        margin-top: 0px !important;
    }
}

@media(max-width:575px) {
    .ard-nav {
        margin-top: 0px !important;
    }
}

/* Fallback per breakpoint (JS akan override jika bisa baca header real) */
@media(max-width:1199px) {
    .ard-page {
        margin-top: 0px !important;
    }
}

@media(max-width:991px) {
    .ard-page {
        padding-top: 0 !important;
        padding-bottom: 100px !important;
    }
}

@media(max-width:575px) {
    .ard-page {
        padding-top: 0 !important;
        padding-bottom: 90px !important;
    }

    /* Full-width tanpa margin di mobile */
    .ard-nav-inner,
    .ard-header-inner {
        padding-left: 0 !important;
        padding-right: 0 !important;
        padding: 0 !important;
    }

    .ard-layout {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .ard-nav,
    .ard-header {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
    }
}


.ard-nav {
    padding: 10px;
}

.ard-layout,
.ard-header {
    padding: 15px !important;
}

.ard-nav-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.ard-crumb {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .78rem;
    font-weight: 600;
    color: #94a3b8;
    flex-wrap: wrap;
}

.ard-crumb a {
    color: #64748b;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color .18s;
}

.ard-crumb a:hover {
    color: #064A21;
}

.ard-crumb .sep {
    color: #cbd5e1;
    font-size: .9rem;
}

.ard-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    font-weight: 700;
    color: #475569;
    text-decoration: none;
    padding: 5px 14px;
    background: #f8fafc;
    border: 1.5px solid #dde3ed;
    border-radius: 50px;
    transition: all .2s;
    white-space: nowrap;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
}

.ard-back:hover {
    background: #064A21;
    color: #fff;
    border-color: #064A21;
    transform: translateX(-2px);
}

/* === HEADER STRIP (judul di atas konten) === */
.ard-header {
    background: #fff;
    border-bottom: 1px solid #dde3ed;
    padding: 28px 0 24px;
}

.ard-header-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.ard-cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: 50px;
    background: #f0fdf4;
    border: 1px solid #d1fae5;
    color: #064A21;
    font-size: .7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    margin-bottom: 12px;
}

.ard-cat-pill i {
    font-size: .82rem;
}

.ard-title {
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 900;
    color: #0d1117;
    line-height: 1.22;
    letter-spacing: -.03em;
    margin-bottom: 14px;
    max-width: 860px;
}

.ard-meta {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
}

.ard-mc {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    background: #f8fafc;
    border: 1px solid #dde3ed;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    color: #64748b;
}

.ard-mc i {
    font-size: .78rem;
    color: #10b981;
}

/* === LAYOUT GRID === */
.ard-layout {
    max-width: 1140px;
    margin: 36px auto 60px;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: start;
}

/* === MAIN CARD === */
.ard-main-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dde3ed;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05), 0 6px 22px rgba(0, 0, 0, .06);
    animation: ardUp .4s ease both;
}

@keyframes ardUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

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

/* cover image */
.ard-cover-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.ard-cover {
    width: 100%;
    aspect-ratio: 16/7;
    object-fit: cover;
    display: block;
    transition: transform 6s ease;
}

.ard-main-card:hover .ard-cover {
    transform: scale(1.025);
}

/* meta bar below image */
.ard-metabar {
    display: flex;
    border-bottom: 1px solid #f1f5f9;
    background: #f8fafc;
}

.ard-mb-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 13px 8px;
    text-align: center;
    position: relative;
}

.ard-mb-item+.ard-mb-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 1px;
    background: #dde3ed;
}

.ard-mb-ic {
    color: #10b981;
    font-size: .95rem;
}

.ard-mb-val {
    font-size: .82rem;
    font-weight: 800;
    color: #0d1117;
    line-height: 1.1;
}

.ard-mb-lbl {
    font-size: .62rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .4px;
}

/* article body */
.ard-body {
    padding: 36px 40px 32px;
}

/* typography */
.ard-content {
    font-size: 1.04rem;
    line-height: 1.84;
    color: #334155;
}

.ard-content>p:first-of-type::first-letter {
    float: left;
    font-size: 3.7rem;
    line-height: .82;
    padding-top: 5px;
    padding-right: 9px;
    color: #064A21;
    font-weight: 900;
}

.ard-content p {
    margin: 0 0 20px;
}

.ard-content h2 {
    font-size: 1.35rem;
    font-weight: 900;
    color: #0d1117;
    margin: 40px 0 14px;
    letter-spacing: -.025em;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ard-content h2::before {
    content: '';
    display: block;
    width: 4px;
    height: 1.15em;
    min-height: 20px;
    background: linear-gradient(to bottom, #064A21, #10b981);
    border-radius: 3px;
    flex-shrink: 0;
}

.ard-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0d1117;
    margin: 30px 0 12px;
}

.ard-content strong {
    color: #0d1117;
    font-weight: 700;
}

.ard-content em {
    font-style: italic;
    color: #0a6b31;
}

.ard-content blockquote {
    margin: 30px 0;
    padding: 18px 22px 18px 24px;
    background: linear-gradient(130deg, #f0fdf4, #ecfdf5);
    border-left: 4px solid #10b981;
    border-radius: 0 12px 12px 0;
    font-size: 1.02rem;
    font-style: italic;
    color: #064A21;
    font-weight: 600;
    line-height: 1.65;
    position: relative;
}

.ard-content blockquote::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 3.8rem;
    color: #10b981;
    opacity: .2;
    line-height: 1;
    font-style: normal;
}

.ard-content ul,
.ard-content ol {
    margin: 0 0 20px;
    padding-left: 22px;
}

.ard-content li {
    margin-bottom: 8px;
}

/* divider */
.ard-divider {
    height: 1px;
    background: #dde3ed;
    margin: 28px 0;
    border: none;
}

/* author row */
.ard-author {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px 20px;
    background: #f8fafc;
    border: 1px solid #dde3ed;
    border-radius: 14px;
}

.ard-author-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, #064A21, #10b981);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(6, 74, 33, .25);
}

.ard-author-name {
    font-size: .88rem;
    font-weight: 800;
    color: #0d1117;
    margin-bottom: 2px;
}

.ard-author-role {
    font-size: .73rem;
    color: #10b981;
    font-weight: 600;
}

/* tags */
.ard-tags {
    margin-top: 20px;
}

.ard-tags-lbl {
    font-size: .65rem;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 8px;
}

.ard-tags-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.ard-tag {
    padding: 4px 12px;
    border-radius: 50px;
    background: #f1f5f9;
    color: #475569;
    font-size: .72rem;
    font-weight: 700;
    border: 1px solid #dde3ed;
    cursor: pointer;
    transition: all .2s;
}

.ard-tag:hover {
    background: #064A21;
    color: #fff;
    border-color: #064A21;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(6, 74, 33, .2);
}

/* CTA */
.ard-cta {
    margin-top: 28px;
    padding: 24px 28px !important;
    border-radius: 16px !important;
    background: linear-gradient(130deg, #064A21 0%, #0a6b31 55%, #10b981 100%) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    flex-wrap: wrap !important;
    position: relative !important;
    overflow: hidden !important;
}

.ard-cta::before {
    content: '';
    position: absolute;
    width: 190px;
    height: 190px;
    border-radius: 50%;
    top: -50px;
    right: -30px;
    background: rgba(255, 255, 255, .05);
    pointer-events: none;
}

.ard-cta h3 {
    font-size: 1rem !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin: 0 0 3px !important;
}

.ard-cta p {
    font-size: .82rem !important;
    color: rgba(255, 255, 255, .76) !important;
    margin: 0 !important;
}

.ard-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 9px 20px !important;
    background: #fff !important;
    color: #064A21 !important;
    border-radius: 50px !important;
    font-weight: 800 !important;
    font-size: .83rem !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    transition: all .22s !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .16) !important;
    z-index: 1 !important;
    position: relative !important;
    border: none !important;
}

.ard-cta-btn:hover {
    transform: translateY(-2px) scale(1.03) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .2) !important;
    color: #064A21 !important;
    background: #f0fdf4 !important;
}

/* === SIDEBAR === */
.ard-sidebar {
    position: sticky;
    top: calc(var(--ard-header-h, 100px) + 16px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: ardUp .4s .1s ease both;
}

/* inherit article-page sid-card look */
.ard-sid-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #dde3ed;
    padding: 20px 22px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .05), 0 6px 22px rgba(0, 0, 0, .06);
}

.ard-sid-title {
    font-size: .88rem;
    font-weight: 800;
    color: #0d1117;
    display: flex;
    align-items: center;
    gap: 9px;
    padding-bottom: 13px;
    margin-bottom: 14px;
    border-bottom: 1.5px dashed #dde3ed;
    letter-spacing: -.005em;
}

.ard-sid-ic {
    width: 30px;
    height: 30px;
    background: #f0fdf4;
    color: #10b981;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    flex-shrink: 0;
}

/* share buttons */
.ard-share-wa {
    width: 100% !important;
    padding: 11px !important;
    margin-bottom: 8px !important;
    border-radius: 50px !important;
    border: none !important;
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    color: #fff !important;
    font-size: .84rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    cursor: pointer !important;
    transition: all .22s !important;
    box-shadow: 0 4px 14px rgba(6, 74, 33, .3) !important;
}

.ard-share-wa:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(6, 74, 33, .45) !important;
    color: #fff !important;
    background: linear-gradient(135deg, #053d1c 0%, #064A21 50%, #0a6b31 100%) !important;
}

.ard-share-copy {
    width: 100% !important;
    padding: 10px !important;
    border-radius: 50px !important;
    background: #f8fafc !important;
    border: 1.5px solid #dde3ed !important;
    color: #475569 !important;
    font-size: .82rem !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    cursor: pointer !important;
    transition: all .18s !important;
}

.ard-share-copy:hover {
    background: #f0fdf4 !important;
    color: #064A21 !important;
    border-color: #10b981 !important;
}

/* reading ring */
.ard-read-widget {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ard-ring {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
}

.ard-ring svg {
    transform: rotate(-90deg);
}

.ard-ring-pct {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 800;
    color: #064A21;
}

.ard-read-txt {
    font-size: .82rem;
    color: #64748b;
    line-height: 1.55;
}

.ard-read-txt strong {
    color: #0d1117;
    font-weight: 800;
}

#ardReadSta {
    font-size: .73rem;
    color: #94a3b8;
}

/* popular */
.ard-pop {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 6px;
    border-radius: 10px;
    text-decoration: none;
    transition: all .2s;
    border-bottom: 1px solid #f1f5f9;
}

.ard-pop:last-child {
    border-bottom: none;
}

.ard-pop:hover {
    background: #f0fdf4;
    padding-left: 10px;
}

.ard-pop-num {
    font-size: 1.3rem;
    font-weight: 900;
    color: #dde3ed;
    min-width: 26px;
    line-height: 1;
    padding-top: 2px;
    flex-shrink: 0;
}

.ard-pop:hover .ard-pop-num {
    color: #10b981;
}

.ard-pop-title {
    font-size: .83rem;
    font-weight: 600;
    color: #2d3748;
    line-height: 1.45;
}

.ard-pop:hover .ard-pop-title {
    color: #064A21;
}

.ard-pop-meta {
    font-size: .7rem;
    color: #94a3b8;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* === RESPONSIVE === */
@media(max-width:1024px) {
    .ard-layout {
        grid-template-columns: 1fr;
        margin: 28px auto 50px;
        gap: 20px;
        max-width: 100vw;
        overflow-x: hidden;
    }

    .ard-sidebar {
        position: static;
    }

    .ard-body {
        padding: 28px 28px 32px;
    }
}

@media(max-width:768px) {
    .ard-layout {
        margin: 20px auto 40px;
        gap: 16px;
        padding: 0 16px;
        max-width: 100%;
    }

    .ard-main-card {
        max-width: 100%;
    }

    .ard-header {
        padding: 22px 0 18px;
    }

    .ard-header-inner {
        padding: 0 16px;
        max-width: 100%;
        overflow-x: hidden;
    }

    .ard-nav-inner {
        padding: 0 16px;
        max-width: 100%;
    }

    .ard-body {
        padding: 22px 18px 28px;
        overflow-wrap: break-word;
    }

    .ard-content {
        font-size: .98rem;
    }

    .ard-cta {
        padding: 20px 18px !important;
    }

    .ard-mb-lbl {
        display: none;
    }
}

@media(max-width:480px) {
    .ard-layout {
        padding: 0 12px;
        margin: 16px auto 36px;
        gap: 14px;
        width: 100%;
        max-width: 100vw;
    }

    .ard-main-card,
    .ard-sid-card {
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .ard-header-inner {
        padding: 0 12px;
        max-width: 100%;
    }

    .ard-nav-inner {
        padding: 0 12px;
        max-width: 100%;
    }

    .ard-title {
        font-size: 1.3rem;
        word-wrap: break-word;
    }

    .ard-back span {
        display: none;
    }

    .ard-cover {
        aspect-ratio: 4/3;
    }

    .ard-body {
        padding: 18px 14px 24px;
    }

    .ard-metabar {
        flex-wrap: wrap;
    }
}

/* --- Extracted from: ⚡beranda.blade.php --- */
.hero-text-content {
    padding-left: 30px;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}

/* Force full width on mobile for main container */
.landing-main,
.main-content,
.landing-page-wrapper {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .hero-text-content {
        padding-left: 0;
    }
}

.custom-hero-banner {
    margin-top: -30px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    /* Beautiful Parallax Advertising Background */
    background-image: url('https://images.unsplash.com/photo-1503179008861-d1e2b41f8bec?fm=jpg&q=60&w=3000&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8YmlsbGJvYXJkc3xlbnwwfHwwfHx8MA%3D%3D');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    z-index: 1;
}

.custom-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 49, 22, 0.92) 0%, rgba(10, 107, 49, 0.85) 50%, rgba(3, 80, 35, 0.75) 100%);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2;
}

.custom-hero-banner .container {
    position: relative;
    z-index: 3;
}

@media (max-width: 768px) {
    .custom-hero-banner {
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 40px;
        background-position: top center;
    }

    .mobile-hero-img {
        padding: 0px 5px 0px 10px;
    }
}

.billboard-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.billboard-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.top-rank-badge {
    position: absolute;
    top: 20px;
    left: -12px;
    background: linear-gradient(45deg, #064A21, #10b981);
    color: white;
    padding: 8px 20px;
    border-radius: 8px 8px 8px 0;
    font-size: 12px;
    font-weight: 800;
    z-index: 10;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-rank-badge::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 12px 10px 0;
    border-color: transparent #032b13 transparent transparent;
}

.img-outer-wrap {
    padding: 15px 20px 0 20px;
    position: relative;
}

.img-inner {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-views {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #064A21;
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: 5;
}

.card-content {
    padding: 15px 20px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.spec-badge {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #dcfce7;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}


.billboard-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.loc-text {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- SPEC CARD BOX --- */
.spec-card-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.spec-icon-box {
    width: 32px;
    height: 32px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.spec-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.spec-label {
    font-size: 9px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.spec-value {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.btn-main {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(6, 74, 33, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: auto;
    text-decoration: none;
}

.btn-main:hover {
    background-position: right center !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.5);
    color: #fff;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.status-pill.booked {
    background: #ffebee;
    color: #c62828;
}

.card-title-custom {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}


.step-section {
    background-color: #ffffff;
    padding: 90px 0;
}

.step-card {
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 40px 30px;
    background: #fff;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.step-number-bg {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 50px;
    font-weight: 900;
    color: rgba(6, 74, 33, 0.03);
    line-height: 1;
    z-index: 0;
}

.step-card:hover {
    border-color: #064A21;
    box-shadow: 0 20px 40px rgba(6, 74, 33, 0.05);
    transform: translateY(-5px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #064A21;
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.step-card:hover .step-icon {
    background: #10b981;
    transform: scale(1.1);
    transition: 0.3s;
}

.step-card h5 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.step-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
    position: relative;
    z-index: 1;
}

.step-progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0;
    background: #10b981;
    transition: width 0.4s ease;
}

.step-card:hover .step-progress-line {
    width: 100%;
}


.landing-Features {
    background-color: #064A21;
    background-image: url('https://images.unsplash.com/photo-1477959858617-67f85cf4f1df?fm=jpg&q=60&w=2000&ixlib=rb-4.0.3');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}

.portfolio-wrapper {
    padding: 10px;
}

.portfolio-img-container {
    position: relative;
    height: 280px;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.portfolio-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-img-container:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: #fff;
    text-align: left;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0.8;
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);

    color: #fff;
    text-align: left;
    z-index: 2;
}

.portfolio-overlay h5 {
    color: #FFC107 !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 5px;
    font-weight: 800;
}

.portfolio-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* --- Extracted from: ⚡beranda.blade.php --- */
/* Custom Styles for Select2 to match Bootstrap/Theme */
.hero-search-card .select2-container,
.hero-search-card .select2-container *,
.hero-search-card .select2-container .select2-selection--single,
.hero-search-card .select2-container--default .select2-selection--single,
.hero-search-card .select2-container--default.select2-container--open .select2-selection--single,
.hero-search-card .select2-container--default.select2-container--focus .select2-selection--single,
.hero-search-card .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.hero-search-card .select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border: none !important;
    border-color: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
}

/* Hapus border dari select2 selection di semua state */
.hero-search-card .select2-selection,
.hero-search-card .select2-selection:focus,
.hero-search-card .select2-selection:active,
.hero-search-card .select2-selection--single:focus,
.hero-search-card .select2-container--focus .select2-selection {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}


.hero-search-card .select2-container .select2-selection--single {
    height: 50px !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 48px !important;
    top: 1px !important;
    right: 10px !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding-left: 15px !important;
    font-size: 14px !important;
    color: #475569 !important;
    line-height: normal !important;
    width: 100%;
    border: none !important;
}

.select2-dropdown {
    border-radius: 12px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    overflow: hidden !important;
}

.select2-search--dropdown .select2-search__field {
    border-radius: 6px !important;
    padding: 8px 12px !important;
}

.select2-results__option {
    padding: 10px 15px !important;
    font-size: 14px !important;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #064A21 !important;
    /* Theme Green */
    color: white !important;
}

/* --- Extracted from: ⚡beranda.blade.php --- */
body.landing-body .landing-main {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.stats-counter-section {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #064A21 100%);
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

.stats-counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
    opacity: .05;
}

.stat-item {
    text-align: center;
    padding: 15px 10px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, .15);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    font-size: 1.8rem;
    color: white;
    margin-bottom: 6px;
}

.stat-number {
    font-size: 2.3rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
}

.stat-number span.stat-suffix {
    font-size: 1.7rem;
}

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

/* tablet */
@media (max-width:768px) {

    .stat-number {
        font-size: 2rem;
    }

    .stat-icon {
        font-size: 1.6rem;
    }

    .stat-item::after {
        display: none;
    }

}

/* mobile */
@media (max-width:480px) {

    .stats-counter-section {
        padding: 20px 0;
    }

    .stat-item {
        padding: 12px 6px;
    }

    .stat-number {
        font-size: 1.6rem;
        font-weight: 700;
    }

    .stat-number span.stat-suffix {
        font-size: 1.3rem;
    }

    .stat-label {
        font-size: .7rem;
    }

    .stat-icon {
        font-size: 1.4rem;
    }

}

/* Modern Portfolio Grid Styles - Redesigned */
.landing-Features {
    background-color: #042512;
    background-image: url('https://images.unsplash.com/photo-1557682250-33bd709cbe85?auto=format&fit=crop&q=80');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
}

.landing-Features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 74, 33, 0.92) 0%, rgba(3, 31, 14, 0.88) 100%);
    pointer-events: none;
    z-index: 0;
}

.landing-Features>.container {
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Modern Asymmetric Masonry-style Grid */
@media (min-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 280px;
        gap: 25px;
    }

    .portfolio-item:nth-child(1) {
        grid-column: span 8;
        grid-row: span 2;
    }

    .portfolio-item:nth-child(2),
    .portfolio-item:nth-child(3) {
        grid-column: span 4;
        grid-row: span 1;
    }

    .portfolio-item:nth-child(4),
    .portfolio-item:nth-child(5),
    .portfolio-item:nth-child(6) {
        grid-column: span 4;
        grid-row: span 1;
    }
}

.portfolio-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.3s ease;
    height: 100%;
    min-height: 280px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    will-change: transform;
}

.portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 40%, rgba(2, 24, 11, 0.95) 100%);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.portfolio-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px 30px;
    z-index: 2;
    transform: translateY(15px);
    transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.8);
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-item:hover::after {
    opacity: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 30%, rgba(6, 74, 33, 0.98) 100%);
}

.portfolio-item:hover .portfolio-content {
    transform: translateY(0);
}

.portfolio-category {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    color: #a7f3d0;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-category {
    background: #10b981;
    color: #ffffff;
    border-color: #10b981;
}

.portfolio-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.portfolio-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5) translate(20px, -20px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.portfolio-item:hover .portfolio-icon {
    opacity: 1;
    transform: scale(1) translate(0, 0) rotate(45deg);
    background: #10b981;
    border-color: #10b981;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

/* --- Extracted from: ⚡beranda.blade.php --- */
.client-marquee-container {
    padding: 55px 0 45px 0;
    background: #ffffff;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
    position: relative;
    z-index: 5;
}

.marquee-title {
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 40px;
}

.marquee-track-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    /* Fade effect on left and right sides */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 70px;
    animation: scrollMarquee 70s linear infinite;
    will-change: transform;
    width: max-content;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.client-logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 120px;
    /* Lebar area logo per kotak */
    width: 220px;
    padding: 15px;
}

.client-logo-box img {
    max-height: 80px;
    /* Tinggi proporsional */
    max-width: 170px;
    /* Lebar proporsional */
    height: 100%;
    width: 100%;
    object-fit: contain;
    /* Menjaga aspek rasio tanpa kepotong */
    display: block;
    margin: 0 auto;
    mix-blend-mode: multiply;
    /* Otomatis membuat background putih menjadi transparan */
}

.client-logo-box:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-5px) scale(1.1);
}

@keyframes scrollMarquee {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-50% - 35px), 0, 0);
    }
}

/* --- Responsive Client Marquee --- */
@media (max-width: 768px) {
    .client-marquee-container {
        padding: 40px 0 30px 0;
    }

    .marquee-title {
        font-size: 0.75rem;
        margin-bottom: 25px;
    }

    .marquee-content {
        gap: 40px;
        /* Lebih rapat di layar kecil */
        animation: scrollMarqueeMobile 45s linear infinite;
    }

    .client-logo-box {
        height: 90px;
        width: 160px;
        /* Lebar lebih kecil di mobile */
        padding: 10px;
    }

    .client-logo-box img {
        max-height: 60px;
        max-width: 130px;
    }
}

@keyframes scrollMarqueeMobile {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(calc(-50% - 20px), 0, 0);
    }
}

/* --- Extracted from: ⚡beranda.blade.php --- */
.testimoni-section {
    background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
    padding: 80px 0;
}

.testi-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid #e2f0e8;
    position: relative;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
}

.testi-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(6, 74, 33, 0.1);
    border-color: #86efac;
}

.testi-quote-icon {
    font-size: 3.5rem;
    line-height: 1;
    color: #bbf7d0;
    font-family: Georgia, serif;
    position: absolute;
    top: 18px;
    right: 24px;
}

.testi-stars {
    color: #f59e0b;
    font-size: 0.85rem;
    margin-bottom: 14px;
    letter-spacing: 2px;
}

.testi-text {
    font-size: 0.93rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-divider {
    height: 1px;
    background: linear-gradient(90deg, #dcfce7, transparent);
    margin-bottom: 18px;
}

.testi-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #86efac;
    flex-shrink: 0;
}

.testi-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1a2e1e;
    margin-bottom: 2px;
}

.testi-role {
    font-size: 0.78rem;
    color: #10b981;
    font-weight: 600;
}

.testi-company {
    font-size: 0.75rem;
    color: #94a3b8;
}

.testi-badge {
    display: inline-block;
    background: #f0fdf4;
    color: #064A21;
    border-radius: 30px;
    padding: 3px 10px;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid #bbf7d0;
    margin-bottom: 10px;
}

/* ── Clickable card ── */
.testi-card-clickable {
    cursor: pointer;
}

.testi-card-clickable:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(6, 74, 33, 0.13);
    border-color: #4ade80;
}

.testi-card-clickable:focus {
    outline: 2px solid #16a34a;
    outline-offset: 2px;
}

/* "Lihat Detail" hint shown on hover */
.testi-detail-hint {
    margin-top: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #16a34a;
    opacity: 0;
    transition: opacity 0.25s ease;
    text-align: right;
    letter-spacing: 0.3px;
}

.testi-card-clickable:hover .testi-detail-hint {
    opacity: 1;
}

/* Docs badge on card */
.testi-docs-badge {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 2px 8px;
    font-size: 0.72rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Testimoni modal overlay ── */
.testi-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 43, 19, 0.6);
    backdrop-filter: blur(4px);
    z-index: 10050;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: testiOverlayIn 0.2s ease;
}

@keyframes testiOverlayIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.testi-modal-box {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 680px;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 32px 80px rgba(3, 43, 19, 0.22);
    animation: testiBoxIn 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    scrollbar-width: thin;
    scrollbar-color: #bbf7d0 transparent;
}

@keyframes testiBoxIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.97);
    }

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

.testi-modal-box::-webkit-scrollbar {
    width: 5px;
}

.testi-modal-box::-webkit-scrollbar-track {
    background: transparent;
}

.testi-modal-box::-webkit-scrollbar-thumb {
    background: #bbf7d0;
    border-radius: 99px;
}

/* Modal header */
.testi-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 24px 16px;
    border-bottom: 1px solid #e2f0e8;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
    border-radius: 20px 20px 0 0;
}

.testi-modal-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #86efac;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.18);
}

.testi-modal-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f2d18;
    margin-bottom: 2px;
}

.testi-modal-role {
    font-size: 0.82rem;
    font-weight: 600;
    color: #16a34a;
    margin-bottom: 2px;
}

.testi-modal-company {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 4px;
}

.testi-modal-close {
    background: #f1f5f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: #475569;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.testi-modal-close:hover {
    background: #fee2e2;
    color: #dc2626;
}

/* Modal body */
.testi-modal-body {
    padding: 20px 24px;
}

.testi-modal-stars {
    color: #f59e0b;
    font-size: 1.15rem;
    letter-spacing: 3px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.testi-modal-stars-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0;
}

.testi-modal-quote {
    position: relative;
    background: linear-gradient(135deg, #f0fdf4, #f8fafc);
    border-left: 4px solid #4ade80;
    border-radius: 0 12px 12px 0;
    padding: 16px 20px;
    margin: 0 0 20px;
    font-size: 0.97rem;
    color: #1e3a2a;
    line-height: 1.8;
    font-style: italic;
}

.testi-modal-quote-mark {
    font-size: 2rem;
    font-family: Georgia, serif;
    color: #86efac;
    line-height: 0;
    vertical-align: -0.5rem;
    margin-right: 2px;
}

.testi-modal-quote-end {
    margin-left: 2px;
    margin-right: 0;
}

/* Docs section */
.testi-modal-docs-section {
    margin-top: 4px;
    padding-top: 18px;
    border-top: 1px dashed #d1fae5;
}

.testi-modal-docs-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f2d18;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.testi-modal-docs-count {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: #16a34a;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 1px 9px;
}

.testi-modal-docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 10px;
}

.testi-doc-thumb {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1.5px solid #e2f0e8;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.testi-doc-thumb:hover {
    transform: scale(1.03);
    border-color: #4ade80;
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.18);
}

.testi-doc-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testi-doc-thumb-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 43, 19, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
    color: #fff;
    font-size: 1.4rem;
}

.testi-doc-thumb:hover .testi-doc-thumb-overlay {
    opacity: 1;
}

/* Modal footer */
.testi-modal-footer {
    padding: 14px 24px 20px;
    display: flex;
    justify-content: flex-end;
    border-top: 1px solid #e2f0e8;
}

/* ── Lightbox ── */
.testi-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10100;
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    padding: 20px;
}

.testi-lightbox.active {
    display: flex;
}

.testi-lightbox img {
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
    animation: lbFadeIn 0.2s ease;
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
        transform: scale(0.93);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.testi-lightbox-close {
    position: fixed;
    top: 16px;
    right: 20px;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10101;
}

.testi-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.28);
}

@media (max-width: 575.98px) {
    .testi-modal-box {
        border-radius: 16px;
        max-height: 94vh;
    }

    .testi-modal-header {
        padding: 18px 16px 14px;
    }

    .testi-modal-body {
        padding: 16px;
    }

    .testi-modal-footer {
        padding: 12px 16px 16px;
    }

    .testi-modal-docs-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }

    .testi-modal-avatar {
        width: 56px;
        height: 56px;
    }
}

/* --- Extracted from: ⚡beranda.blade.php --- */
.faq-item {
    background: #fff;
    border-radius: 14px;
    border: 1.5px solid #e8edf3;
    margin-bottom: 12px;
    overflow: hidden;
    transition: box-shadow .2s, border-color .2s;
}

.faq-item:hover {
    border-color: #b6d4c0;
    box-shadow: 0 4px 20px rgba(6, 74, 33, .07);
}

.faq-item .faq-btn {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 22px;
    font-size: .92rem;
    font-weight: 700;
    color: #1a2e1e;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    transition: color .2s;
}

.faq-item .faq-btn:not(.collapsed) {
    color: #064A21;
}

.faq-item .faq-btn .faq-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    background: #f0fdf4;
    color: #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    transition: transform .3s, background .2s;
}

.faq-item .faq-btn:not(.collapsed) .faq-icon {
    background: #064A21;
    color: #fff;
    transform: rotate(45deg);
}

.faq-body {
    padding: 0 22px 18px;
    font-size: .9rem;
    color: #475569;
    line-height: 1.7;
    border-top: 1px solid #f1f5f9;
    padding-top: 14px;
}

/* --- Extracted from: ⚡beranda.blade.php --- */
.landing-footer-top {
    padding: 80px 0 40px;
    position: relative;
    z-index: 1;
    /* Place above overlay */
}

.footer-box-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-box-card:hover {
    background: #064A21;
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.footer-box-card .card-body {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.85);
    padding: 2rem !important;
}

.footer-box-card h6 {
    color: #fff;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    font-weight: 700 !important;
}

.footer-box-card .text-muted {
    color: #9ca3af !important;
    line-height: 1.6;
}

.footer-avatar {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0a6b31;
    color: #ffffff;
    border-radius: 14px;
    font-size: 24px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 13.5px;
    color: #cbd5e1;
}

.contact-line i {
    color: #0a6b31;
    font-size: 18px;
    flex-shrink: 0;
}

.mkt-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: all 0.4s ease;
}

.mkt-box:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
    border-color: #10b981;
}

.mkt-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(16, 185, 129, 0.3);
    margin: 0 auto 15px;
    transition: transform 0.4s ease;
}

.mkt-box:hover .mkt-photo {
    transform: scale(1.1);
    border-color: #10b981;
}

.mkt-box p.fw-bold {
    color: #fff !important;
    margin-bottom: 2px;
}

.mkt-area {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 5px;
}

.footer-mkt-btn {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.footer-mkt-btn a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-mkt-btn a.f-wa {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.footer-mkt-btn a.f-wa:hover {
    background: #25d366;
    color: #fff;
}

.footer-mkt-btn a.f-telp {
    background: rgba(0, 123, 255, 0.15);
    color: #007bff;
}

.footer-mkt-btn a.f-telp:hover {
    background: #007bff;
    color: #fff;
}

.footer-mkt-btn a.f-mail {
    background: rgba(234, 67, 53, 0.15);
    color: #ea4335;
}

.footer-mkt-btn a.f-mail:hover {
    background: #ea4335;
    color: #fff;
}

/* --- Extracted from: ⚡karir.blade.php --- */
/* RESET & VARIABEL */
.tecma-career-portal {
    background-color: #f1f5f9;
    min-height: 100vh;
    color: #1e293b;
    padding-bottom: 80px;
}

.career-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    padding-top: 120px !important;
}

.hero-section {
    text-align: center;
    margin-bottom: 40px;
    margin-top: 20px !important;
}

.hero-section h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
    letter-spacing: -0.03em;
}

.hero-section p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.search-wrapper {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 10px 15px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.search-wrapper i {
    color: #064A21;
    font-size: 1.5rem;
}

.search-wrapper input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 1.1rem;
    color: #0f172a;
    font-family: inherit;
    font-weight: 500;
}

.portal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: start;
}

.sidebar-filter {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
}

.filter-section {
    margin-bottom: 24px;
}

.filter-section:last-child {
    margin-bottom: 0;
}

.filter-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    display: block;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    color: #475569;
    transition: color 0.2s;
}

.checkbox-label:hover {
    color: #0f172a;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #064A21;
    border: 1px solid #94a3b8;
}

.main-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.job-count {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

.sort-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
}

.sort-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #64748b;
    margin-right: 4px;
}

.btn-sort {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
    color: #475569;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sort:hover {
    border-color: #94a3b8;
}

.btn-sort.active {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: white;
    border-color: transparent;
    box-shadow: 0 4px 14px rgba(6, 74, 33, 0.3);
}

.btn-sort.active:hover {
    background-position: right center !important;
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.5);
    transform: translateY(-2px);
}

.view-controls {
    display: flex;
    gap: 8px;
}

.btn-view {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.btn-view:hover {
    border-color: #94a3b8;
    color: #0f172a;
}

.btn-view.active {
    background: #e6f0eb;
    border-color: #064A21;
    color: #064A21;
}

.jobs-wrapper {
    min-height: 400px;
    /* Min height to prevent scroll jump */
    transition: all 0.2s ease;
}

.jobs-wrapper.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.jobs-wrapper.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background-color: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.job-card:hover {
    border-color: #064A21;
    box-shadow: 0 8px 16px -4px rgba(6, 74, 33, 0.1);
    transform: translateY(-2px);
}

.jobs-wrapper.list-view .job-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
}

.jobs-wrapper.list-view .card-body {
    flex: 1;
}

.card-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.jobs-wrapper.list-view .card-icon {
    margin-bottom: 0;
}

.company-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #064A21;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.job-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.tags-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.tag-badge {
    padding: 6px 12px;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 6px;
}

.tag-badge.salary {
    background-color: #ecfdf5;
    border-color: #a7f3d0;
    color: #059669;
}

.tag-badge.type {
    background-color: #eff6ff;
    border-color: #bfdbfe;
    color: #2563eb;
}

.job-desc {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px dashed #cbd5e1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #64748b;
}

.status-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.hiring {
    background: #dcfce7;
    color: #166534;
}

.status-badge.urgent {
    background: #fee2e2;
    color: #991b1b;
}

.status-badge.closed {
    background: #f1f5f9;
    color: #64748b;
}

/* --- SKELETON SHIMMER (EXACT COPY FROM LOCATION PAGE) --- */
.skeleton-box {
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
}

/* --- CAHAYA KILAT --- */
.skeleton-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    /* Gradien Putih Tajam */
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            transparent 100%);

    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
    display: block;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Skeleton Element Sizes */
.sk-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.sk-text-sm {
    width: 40%;
    height: 14px;
    margin-bottom: 12px;
}

.sk-text-md {
    width: 80%;
    height: 24px;
    margin-bottom: 20px;
}

.sk-pill {
    width: 80px;
    height: 30px;
    border-radius: 8px;
}

.sk-desc {
    width: 100%;
    height: 14px;
    margin-bottom: 8px;
}

.empty-state {
    grid-column: 1 / -1;
    background: #ffffff;
    border: 2px dashed #cbd5e1;
    border-radius: 16px;
    padding: 60px 20px;
    text-align: center;
}

.btn-clear {
    background: #064A21;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 15px;
    transition: 0.2s;
}

.btn-clear:hover {
    opacity: 0.9;
}

@media (max-width: 991px) {
    .portal-layout {
        grid-template-columns: 1fr;
    }

    .sidebar-filter {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .filter-section {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    .main-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .right-controls {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .jobs-wrapper.list-view .job-card {
        flex-direction: column;
        gap: 16px;
    }

    .sidebar-filter {
        grid-template-columns: 1fr;
    }

    .hero-section {
        margin-top: -50px !important;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }
}

/* --- Extracted from: ⚡karir.blade.php --- */
/* --- BASE KOTAK --- */
.skeleton-box {
    /* Kita pakai abu-abu yg lebih gelap biar kontras */
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* WAJIB ADA: Agar elemen punya bentuk */
    display: block;
}

/* --- CAHAYA KILAT --- */
.skeleton-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    /* Gradien Putih Tajam */
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            /* Putih lebih tebal (0.6) */
            transparent 100%);

    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
    display: block;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* --- UKURAN ELEMENT (Sama seperti punya kamu) --- */
.sk-img {
    height: 240px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.sk-badge {
    height: 20px;
    width: 80px;
    display: inline-block;
    margin-right: 10px;
}

.sk-title {
    height: 24px;
    width: 70%;
    margin-bottom: 10px;
}

.sk-text {
    height: 14px;
    width: 90%;
    margin-bottom: 6px;
}

.sk-box-spec {
    height: 60px;
    width: 100%;
    margin-bottom: 15px;
}

.sk-btn {
    height: 45px;
    width: 100%;
    border-radius: 10px;
}

/* Layout Tambahan */
.billboard-card.list-mode .sk-img {
    height: 280px;
    margin-bottom: 0;
}

.location-page-wrapper {
    padding-top: 120px;
    background-color: #f8fafc;
    min-height: 100vh;
}

@media (max-width: 991.98px) {
    .location-page-wrapper {
        padding-top: 60px;
    }
}

.search-main-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ... CSS Search Bar & Filter lainnya ... */

/* --- Extracted from: ⚡karir_detail.blade.php --- */
:root {
    --primary: {
            {
            $job['color']
        }
    }

    ;

    --primary-rgb: {
            {
            hexdec(substr($job['color'], 1, 2))
        }
    }

    ,
    {
        {
        hexdec(substr($job['color'], 3, 2))
    }
}

,
{
    {
    hexdec(substr($job['color'], 5, 2))
}
}

;
--primary-soft: rgba(var(--primary-rgb), 0.08);
--primary-glow: rgba(var(--primary-rgb), 0.3);
--text-main: #0f172a;
--text-sub: #334155;
--text-muted: #64748b;
--bg-body: #f8fafc;
--bg-card: #ffffff;
--border: #e2e8f0;
--radius-card: 20px;
--radius-btn: 50px;
}


.job-detail-v3 {
    background-color: var(--bg-body);
    color: var(--text-main);
    min-height: 100vh;
    padding-bottom: 100px;
}

/* --- IMMERSIVE HEADER --- */
.immersive-header {
    background: linear-gradient(135deg, #ecfdf5 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border);
    padding: 140px 0 60px 0;
    position: relative;
    overflow: hidden;
}

.immersive-header::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Nav */
.nav-crumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
    background: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    border-radius: 50px;
    border: 1px solid var(--border);
    backdrop-filter: blur(4px);
}

.nav-crumb a {
    color: var(--text-sub);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-crumb a:hover {
    color: var(--primary);
}

/* Title Area */
.title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 32px;
}

.title-main h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-main);
    letter-spacing: -0.01em;
}

.job-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.job-meta-date {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.job-meta-date i {
    color: var(--primary);
}

/* Info Chip — simple single-row style */
.info-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 50px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-sub);
    white-space: nowrap;
}

.info-chip i {
    font-size: 1rem;
    color: var(--text-muted);
}

/* Status variants */
.info-chip.status-active {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d;
}

.info-chip.status-active i {
    color: #22c55e;
}

.info-chip.status-urgent {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #be123c;
}

.info-chip.status-urgent i {
    color: #ef4444;
}

.info-chip.status-closed {
    background: #f8fafc;
    border-color: #e2e8f0;
    color: #64748b;
}

/* Pulse dot animation */
.pulse-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pulse-dot.green {
    background: #22c55e;
    animation: pulseGreen 1.8s infinite;
}

.pulse-dot.red {
    background: #ef4444;
    animation: pulseRed 1.8s infinite;
}

@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    }

    70% {
        box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

@keyframes pulseRed {
    0% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.6);
    }

    70% {
        box-shadow: 0 0 0 5px rgba(239, 68, 68, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* keep badge-pill for sidebar usage */
.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid var(--border);
    color: var(--text-sub);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.badge-pill i {
    color: var(--text-muted);
    font-size: 1.1em;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(6, 74, 33, 0.3);
    transition: transform 0.22s, box-shadow 0.22s;
}

.btn-primary-gradient:hover {
    background-position: right center !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.5);
    color: #fff;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.btn-share-solid {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(6, 74, 33, 0.3);
}

.btn-share-solid:hover {
    background-position: right center !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.5);
    color: #fff;
}

/* --- CONTENT WRAPPER --- */
.content-container {
    max-width: 1000px;
    margin: -40px auto 0;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.grid-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 32px;
}

/* Cards */
.content-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 32px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
}

.content-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px dashed var(--border);
}

.content-card h3 i {
    width: 36px;
    height: 36px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.rich-text {
    color: var(--text-sub);
    line-height: 1.7;
    font-size: 1.05rem;
}

.rich-text p {
    margin-bottom: 1rem;
}

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

.check-list li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    color: var(--text-sub);
    font-size: 1rem;
    line-height: 1.6;
}

.check-list li::before {
    content: "\EB7B";
    font-family: 'remixicon';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
    background: var(--primary-soft);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* Sidebar Item */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.overview-box {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ov-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ov-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
}

.ov-val {
    font-weight: 700;
    color: var(--text-main);
    text-align: right;
}

.ov-val.salary {
    color: var(--primary);
    font-size: 1.1rem;
}

.company-profile {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 16px;
    margin-bottom: 20px;
}

.company-logo {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-main);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}



/* Responsive */
@media (max-width: 900px) {
    .grid-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sidebar {
        order: 1;
        /* Sidebar below content */
    }

    .title-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .header-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 10px;
    }

    .header-actions .btn-primary-gradient,
    .header-actions .btn-whatsapp {
        width: 100%;
        padding: 14px 24px;
        /* Larger touch target */
        justify-content: center;
    }

    .job-meta-date {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .job-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        width: 100%;
        margin-top: 10px;
    }

    .info-chip {
        width: auto;
        box-sizing: border-box;
    }

    .overview-box {
        gap: 16px;
    }

    .ov-item {
        padding: 10px 0;
        border-bottom: 1px solid var(--border);
    }

    .ov-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .ov-label {
        font-size: 0.8rem;
    }

    .ov-val {
        font-size: 0.95rem;
    }

    /* Make title wrapper full width to support the grid */
    .title-wrapper {
        width: 100%;
    }

    .title-main {
        width: 100%;
    }

    .title-main h1 {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .header-container {
        padding: 0 20px;
    }

    .content-container {
        margin-top: -30px;
        padding: 0 20px;
    }

    .immersive-header {
        padding-bottom: 60px;
        margin-top: -60px;
        padding-top: 130px;
        /* Slight adjustment */
    }

    .content-card {
        padding: 24px;
        border-radius: 20px;
        margin-bottom: 24px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        /* Softer shadow for mobile */
    }

    .rich-text p {
        font-size: 1rem;
        line-height: 1.7;
    }

    .check-list li {
        font-size: 1rem;
        margin-bottom: 14px;
    }
}

/* --- Extracted from: ⚡lokasi.blade.php --- */
/* --- KEYFRAMES --- */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}



/* List Mode Adjustment */
.billboard-card.list-mode .sk-img {
    height: 280px;
    margin-bottom: 0;
}

/* --- GLOBAL LAYOUT (Existing Styles) --- */
.location-page-wrapper {
    background-color: #f8fafc;
    min-height: 100vh;
    margin-top: 40px !important;
}

@media (max-width: 768px) {
    .location-page-wrapper {
        margin-top: -30px !important;
    }
}

/* --- SEARCH BAR --- */
.search-main-container {
    max-width: 1000px;
    margin: 0 auto;
}

.search-pill-custom {
    background: #fff;
    border-radius: 100px;
    padding: 8px 8px 8px 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    height: auto;
    width: 100%;
}

.search-input-group {
    flex-grow: 1;
    padding-left: 20px;
    display: flex;
    align-items: center;
}

.search-actions-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    border-left: 1px solid #e2e8f0;
    padding-left: 15px;
    padding-right: 10px;
    height: 40px;
    min-width: 180px;
}

.search-pill-custom input,
.search-pill-custom select {
    border: none !important;
    box-shadow: none !important;
    font-size: 14px;
    background: transparent;
    width: 100%;
}

.search-pill-custom input:focus,
.search-pill-custom select:focus {
    outline: none;
}

.btn-cari-custom {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    border-radius: 100px;
    padding: 0 35px;
    height: 50px;
    font-weight: 700;
    border: none;
    transition: all 0.3s;
    white-space: nowrap;
    margin-left: 10px;
    box-shadow: 0 4px 14px rgba(6, 74, 33, 0.3);
}

.btn-cari-custom:hover {
    background-position: right center !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.5);
}

.secondary-filter-bar {
    margin: 30px auto 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-item-wrapper {
    display: flex;
    gap: 15px;
    align-items: center;
}

.filter-text-label {
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
}

.select-filter-sm {
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 14px;
    color: #475569;
    background: #fff;
    cursor: pointer;
}

/* VIEW TOGGLE BUTTONS */
.view-toggle-btn {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.2s;
    font-size: 1.2rem;
}

.view-toggle-btn:hover {
    border-color: #94a3b8;
    color: #0f172a;
}

.view-toggle-btn.active {
    background: #e6f0eb;
    border-color: #064A21;
    color: #064A21;
}

/* --- CARD STYLES (GRID) --- */
.billboard-card {
    border: none;
    border-radius: 20px;
    background: #fff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow: visible;
}

.billboard-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.top-rank-badge {
    position: absolute;
    top: 20px;
    left: -12px;
    background: linear-gradient(45deg, #064A21, #10b981);
    color: white;
    padding: 8px 20px;
    border-radius: 8px 8px 8px 0;
    font-size: 12px;
    font-weight: 800;
    z-index: 10;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.2);
}

.top-rank-badge::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    border-style: solid;
    border-width: 0 12px 10px 0;
    border-color: transparent #032b13 transparent transparent;
}

.img-outer-wrap {
    padding: 15px 20px 0 20px;
    position: relative;
}

.img-inner {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.6s;
}

.glass-views {
    position: absolute;
    top: 28px;
    right: 28px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    color: #064A21;
    z-index: 5;
}

.card-content {
    padding: 15px 20px 20px 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ecfdf5;
    color: #059669;
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.status-pill.booked {
    background: #ffebee;
    color: #c62828;
}

.spec-badge {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #dcfce7;
    font-size: 11px;
    padding: 6px 12px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.card-title-custom {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.loc-text {
    color: #6c757d;
    font-size: 0.85rem;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-main {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 14px rgba(6, 74, 33, 0.3);
}

.btn-main:hover {
    background-position: right center !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.5);
}

/* --- LIST VIEW MODE STYLES --- */
.list-view-col {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100%;
}

.billboard-card.list-mode {
    flex-direction: row;
    align-items: stretch;
    min-height: 300px;
    padding-right: 20px;
}

.billboard-card.list-mode .img-outer-wrap {
    width: 38%;
    padding: 15px;
    flex-shrink: 0;
    display: flex;
}

.billboard-card.list-mode .img-inner {
    height: 280px;
    width: 100%;
}

.billboard-card.list-mode .top-rank-badge {
    left: -8px;
    top: 15px;
}

/* --- SPEC CARD BOX --- */
.spec-card-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 14px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #f1f5f9;
}

.spec-icon-box {
    width: 32px;
    height: 32px;
    background: #ecfdf5;
    color: #059669;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.spec-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.spec-label {
    font-size: 9px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.spec-value {
    font-size: 12px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 767.98px) {
    .search-pill-custom {
        flex-direction: column;
        height: auto;
        padding: 18px;
        border-radius: 20px;
        gap: 0;
    }

    .search-input-group {
        width: 100%;
        padding-left: 0;
        margin-bottom: 12px;
        border-bottom: 1px solid #e2e8f0;
        padding-bottom: 12px;
    }

    .search-actions-group {
        width: 100%;
        border-left: none;
        padding-left: 0;
        padding-right: 0;
        justify-content: flex-start;
        flex-wrap: nowrap;
        height: auto;
        padding-top: 12px;
        padding-bottom: 12px;
        border-bottom: 1px solid #e2e8f0;
    }

    .search-actions-group:last-of-type {
        border-bottom: none;
        padding-bottom: 8px;
    }

    .btn-cari-custom {
        width: 100%;
        margin-left: 0;
        height: 45px;
    }

    .secondary-filter-bar {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 5px;
        margin-left: -12px;
        margin-right: -12px;
        padding-left: 12px;
        padding-right: 12px;
    }

    .secondary-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .filter-item-wrapper {
        display: contents;
    }

    .mobile-filter-chip {
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 50px;
        padding: 4px 12px;
        height: 34px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
    }

    .mobile-filter-chip .filter-text-label {
        margin-right: 5px;
        color: #64748b;
        font-size: 10px;
    }

    .mobile-filter-chip select {
        border: none;
        background: transparent;
        padding: 0;
        font-size: 12px;
        font-weight: 700;
        width: auto;
        outline: none;
    }

    .view-toggle-wrapper-mobile {
        display: flex;
        gap: 5px;
    }

    .view-toggle-btn {
        width: 34px;
        height: 34px;
        border-radius: 50px;
    }

    .billboard-card.list-mode {
        flex-direction: column;
        padding-right: 0;
        min-height: auto;
        align-items: stretch;
    }

    .billboard-card.list-mode .img-outer-wrap {
        width: 100%;
        max-width: 100%;
        padding: 15px 20px 0 20px;
        display: block;
    }

    .billboard-card.list-mode .img-inner {
        height: 200px;
        width: 100%;
        border-radius: 10px;
    }

    .billboard-card.list-mode .card-content {
        padding: 15px 20px 20px 20px;
    }

    .billboard-card.list-mode .card-title-custom {
        font-size: 1.1rem;
    }

    .billboard-card.list-mode .btn-main {
        padding: 12px;
        font-size: 0.9rem;
    }

    .img-inner {
        height: 200px;
    }

    .billboard-card {
        border-radius: 16px;
        margin-bottom: 10px;
    }
}

.hide-on-loading {
    display: flex;
}

.show-on-loading {
    display: none;
}

/* --- Extracted from: ⚡lokasi.blade.php --- */
/* --- BASE KOTAK --- */
.skeleton-box {
    /* Kita pakai abu-abu yg lebih gelap biar kontras */
    background-color: #cbd5e1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    /* WAJIB ADA: Agar elemen punya bentuk */
    display: block;
}

/* --- CAHAYA KILAT --- */
.skeleton-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;

    /* Gradien Putih Tajam */
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.6) 50%,
            /* Putih lebih tebal (0.6) */
            transparent 100%);

    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
    display: block;
    z-index: 2;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* --- UKURAN ELEMENT (Sama seperti punya kamu) --- */
.sk-img {
    height: 240px;
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

.sk-badge {
    height: 20px;
    width: 80px;
    display: inline-block;
    margin-right: 10px;
}

.sk-title {
    height: 24px;
    width: 70%;
    margin-bottom: 10px;
}

.sk-text {
    height: 14px;
    width: 90%;
    margin-bottom: 6px;
}

.sk-box-spec {
    height: 60px;
    width: 100%;
    margin-bottom: 15px;
}

.sk-btn {
    height: 45px;
    width: 100%;
    border-radius: 10px;
}

/* Layout Tambahan */
.billboard-card.list-mode .sk-img {
    height: 280px;
    margin-bottom: 0;
}

.location-page-wrapper {
    padding-top: 120px;
    background-color: #f8fafc;
    min-height: 100vh;
}

.search-main-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* ... CSS Search Bar & Filter lainnya ... */

/* --- Extracted from: ⚡lokasi.blade.php --- */
.rotating-word {
    display: inline-block;
    transition: opacity .35s ease, transform .35s ease;
}

.rotating-word.fade-out {
    opacity: 0;
    transform: translateY(-10px);
}

.rotating-word.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* --- Extracted from: ⚡lokasi.blade.php --- */
/* Select2 dalam search-pill - Hapus semua border */
.search-pill-custom .select2-container,
.search-pill-custom .select2-container *,
.search-pill-custom .select2-container .select2-selection--single,
.search-pill-custom .select2-container--default .select2-selection--single,
.search-pill-custom .select2-container--default.select2-container--open .select2-selection--single,
.search-pill-custom .select2-container--default.select2-container--focus .select2-selection--single {
    border: 0 !important;
    border-color: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
}

.search-pill-custom .select2-container .select2-selection--single {
    height: 38px !important;
    display: flex !important;
    align-items: center !important;
    background: transparent !important;
}

.search-pill-custom .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #475569 !important;
    font-weight: 600 !important;
    padding-left: 0 !important;
    font-size: 14px !important;
}

.search-pill-custom .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 38px !important;
}

.select2-dropdown {
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999 !important;
}

.select2-results__option--highlighted[aria-selected] {
    background-color: #064A21 !important;
    color: white !important;
}

.select2-search__field {
    border-radius: 5px !important;
}

/* Mobile: Select2 full width */
@media (max-width: 767.98px) {
    .search-pill-custom .select2-container {
        width: 100% !important;
    }
}

/* --- Extracted from: ⚡lokasi_detail.blade.php --- */
.detail-page {
    background: #f0f4f8;
    min-height: 100vh;
    padding-bottom: 80px;
    margin-top: -25px;
    padding-top: 15px;
    color: #1e293b;
}


.detail-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 16px;
}

/* --- NAV --- */
.detail-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    margin-top: 120px;
    gap: 12px;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #475569;
    text-decoration: none;
    padding: 8px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s;
}

.btn-back:hover {
    border-color: #064A21;
    color: #064A21;
    background: #f0fdf4;
}

@media (max-width: 480px) {
    .detail-nav {
        margin-top: 20px;
    }

    .btn-back span {
        display: none;
    }

    .btn-back {
        padding: 8px 12px;
    }
}

.nav-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-info-item {
    text-align: right;
}

.nav-info-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-info-val {
    font-size: 0.95rem;
    font-weight: 800;
    color: #1e293b;
}

.nav-info-val.avail {
    color: #059669;
}

.nav-info-val.booked {
    color: #dc2626;
}

.nav-divider {
    width: 1px;
    height: 24px;
    background: #e2e8f0;
}

@media (max-width: 480px) {
    .nav-info {
        gap: 12px;
    }

    .nav-info-val {
        font-size: 0.82rem;
    }
}

/* --- GALLERY --- */
.hero-gallery {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 24px;
}

.gallery-main {
    position: relative;
    aspect-ratio: 16/9;
    background: #0f172a;
    overflow: hidden;
}

.gallery-main img,
.gallery-main iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 50px 28px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
    z-index: 2;
}

.gallery-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.gallery-addr {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.gallery-addr i {
    color: #6ee7b7;
    margin-top: 2px;
}

.g-slide-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    z-index: 5;
    transition: all 0.2s;
    color: #1e293b;
}

.g-slide-btn:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.g-slide-prev {
    left: 14px;
}

.g-slide-next {
    right: 14px;
}

.gallery-tabs {
    display: flex;
    border-top: 1px solid #f1f5f9;
}

.g-tab {
    flex: 1;
    padding: 14px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #64748b;
    background: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
}

.g-tab.active {
    color: #fff;
    font-weight: 700;
    background: linear-gradient(135deg, #064A21 0%, #10b981 100%);

}

.g-tab:hover:not(.active) {
    background: #f0fdf4;
    color: #064A21;
}

@media (max-width: 768px) {
    .gallery-main {
        aspect-ratio: 4/3;
    }

    .gallery-title {
        font-size: 1.1rem;
    }

    .gallery-overlay {
        padding: 30px 16px 14px;
    }

    .g-tab {
        padding: 12px 8px;
        font-size: 0.78rem;
    }

    .hero-gallery {
        border-radius: 16px;
    }
}

/* --- CARD BASE --- */
.card-section {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid #e8ecf1;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.section-title i {
    color: #059669;
}

@media (max-width: 768px) {
    .card-section {
        padding: 18px;
        border-radius: 16px;
    }
}

/* --- SPEC GRID --- */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: #f8fafc;
    border-radius: 14px;
    border: 1px solid #f1f5f9;
    transition: background 0.2s;
}

.spec-item:hover {
    background: #f0fdf4;
}

.spec-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.spec-label {
    display: block;
    font-size: 0.62rem;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 1px;
}

.spec-val {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1e293b;
}

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

@media (max-width: 480px) {
    .spec-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .spec-item {
        padding: 10px;
        gap: 8px;
    }

    .spec-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
        border-radius: 10px;
    }

    .spec-label {
        font-size: 0.58rem;
    }

    .spec-val {
        font-size: 0.82rem;
    }
}

/* --- DESCRIPTION --- */
.desc-text {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.8;
}

/* --- SIDEBAR --- */
.col-lg-4 {
    align-self: flex-start;
}

.sidebar-sticky {
    position: sticky;
    top: 100px;
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .col-lg-4 {
        align-self: auto;
    }

    .sidebar-sticky {
        position: static;
    }
}

/* CTA */
.cta-card {
    text-align: center;
}

.cta-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #064A21 0%, #10b981 100%) !important;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    color: #fff;
    font-size: 1.3rem;
}

.cta-card h5 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.cta-card .cta-sub {
    color: #94a3b8;
    font-size: 0.82rem;
    margin-bottom: 18px;
}

.btn-wa {
    width: 100%;
    padding: 13px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: transform 0.22s, box-shadow 0.22s;
    box-shadow: 0 4px 14px rgba(6, 74, 33, 0.3);
    margin-bottom: 8px;
    text-decoration: none;
}

.btn-wa:hover {
    background-position: right center !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.5);
    color: #fff;
}

.btn-outline {
    width: 100%;
    padding: 11px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #475569;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.btn-outline:hover {
    border-color: #064A21;
    color: #064A21;
    background: #f0fdf4;
}

.wa-dropdown {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    z-index: 50;
    border: 1px solid #f1f5f9;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.wa-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 2px;
}

.wa-item:last-child {
    margin-bottom: 0;
}

.wa-item:hover {
    background: #f0fdf4;
}

.rotate-180 {
    transform: rotate(180deg) !important;
}

/* --- SHARE DROPDOWN --- */
.share-wrap {
    position: relative;
    margin-top: 8px;
}

.btn-share {
    width: 100%;
    padding: 11px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #475569;
    border: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-share:hover {
    border-color: #064A21;
    color: #064A21;
    background: #f0fdf4;
}

.share-dropdown {
    position: absolute;
    bottom: 110%;
    left: 0;
    width: 100%;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    z-index: 50;
    border: 1px solid #e8ecf1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.share-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s;
    margin-bottom: 2px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
}

.share-item:last-child {
    margin-bottom: 0;
}

.share-item:hover {
    background: #f0fdf4;
}

.share-item i {
    font-size: 1.1rem;
    width: 22px;
    text-align: center;
}

.share-item .bi-whatsapp {
    color: #25D366;
}

.share-item .bi-facebook {
    color: #1877F2;
}

.share-item .bi-envelope-fill {
    color: #EA4335;
}

.share-item .bi-link-45deg {
    color: #64748b;
}

.share-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #fff;
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* --- REC & ARTICLE --- */
.rec-link {
    display: flex;
    gap: 12px;
    align-items: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.2s;
    margin-bottom: 4px;
}

.rec-link:last-child {
    margin-bottom: 0;
}

.rec-link:hover {
    background: #f8fafc;
}

.rec-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.rec-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rec-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.rec-addr {
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-link {
    display: flex;
    gap: 14px;
    text-decoration: none;
    padding: 10px;
    border-radius: 12px;
    transition: background 0.2s;
    margin-bottom: 6px;
}

.article-link:last-child {
    margin-bottom: 0;
}

.article-link:hover {
    background: #f8fafc;
}

.article-thumb {
    width: 72px;
    height: 72px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background: #f1f5f9;
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-meta {
    font-size: 0.67rem;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 3px;
}

.article-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- QR MODAL --- */
.qr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1050;
}

.qr-card {
    background: #fff;
    padding: 28px;
    border-radius: 20px;
    text-align: center;
    width: 90%;
    max-width: 320px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* --- MOBILE STICKY CTA --- */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    padding: 10px 16px;
    padding-bottom: max(10px, env(safe-area-inset-bottom));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 999;
}

.mobile-cta-row {
    display: flex;
    gap: 10px;
}

.mobile-cta-share {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 18px;
    border-radius: 12px;
    background: #fff;
    color: #1e293b;
    border: 1px solid #e2e8f0;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    flex-shrink: 0;
}

.mobile-cta-share:hover {
    background: #f8fafc;
}

.mobile-cta-wa {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    padding: 13px;
    border-radius: 12px;
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    transition: transform 0.22s, box-shadow 0.22s;
    box-shadow: 0 4px 14px rgba(6, 74, 33, 0.3);
}

.mobile-cta-wa:hover {
    background-position: right center !important;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.5);
}

@media (max-width: 991px) {
    .mobile-cta {
        display: block;
    }

    .detail-page {
        padding-bottom: 90px;
    }

}

.mobile-share-drop,
.mobile-wa-drop {
    position: absolute;
    bottom: 56px;
    background: #fff;
    border-radius: 14px;
    padding: 6px;
    z-index: 50;
    border: 1px solid #e8ecf1;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    min-width: 200px;
    width: auto;
}

.mobile-share-drop {
    left: 16px;
}

.mobile-wa-drop {
    right: 16px;
}

/* --- Extracted from: ⚡portofolio.blade.php --- */
.portofolio-hero-sec {
    padding-top: 120px !important;
    background-color: #064A21;
    position: relative;
    overflow: hidden;
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portofolio-content-sec {
    background-color: #f8fafc;
    padding: 50px 0;
}

@media (max-width: 768px) {
    .portofolio-hero-sec {
        padding-top: 40px !important;
        padding-bottom: 30px;
    }

    .portofolio-content-sec {
        padding: 25px 0 50px 0;
        margin-top: 5px;
    }
}

/* --- Extracted from: ⚡portofolio.blade.php --- */
.pg-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.pg-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(6, 74, 33, 0.6), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 10;
}

.pg-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(6, 74, 33, 0.12);
}

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

.pg-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
}

.pg-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.pg-card:hover .pg-img-wrapper::after {
    opacity: 1;
}

.pg-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 0;
}

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

.pg-category-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    color: #064A21;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 8px 16px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    z-index: 2;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.pg-card:hover .pg-category-badge {
    background: #064A21;
    color: #ffffff;
    border-color: #064A21;
}

.pg-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #ffffff;
    position: relative;
    z-index: 2;
}

.pg-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.pg-card:hover .pg-title {
    color: #064A21;
}

.pg-desc {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- Extracted from: ⚡sewa_billboard_jakarta.blade.php --- */
.kota-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.kota-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #FFC107;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.kota-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .kota-hero h1 {
        font-size: 2rem;
    }

    .kota-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

.kota-hero p.lead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 5px;
}

.content-section {
    padding: 80px 0;
}

.content-section.gray-bg {
    background: #f8fafb;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #064A21;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.section-h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-h2 {
        font-size: 1.8rem;
    }
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid #e8f0eb;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #064A21, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6, 74, 33, 0.12);
    border-color: #a8d5b5;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #064A21;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.why-card h5 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.billboard-card {
    border-radius: 20px;
    background: #fff;
    border: 1.5px solid #e8f0eb;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.billboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.billboard-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.billboard-card .card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.billboard-card h6 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.billboard-card .loc {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 12px;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    background: #ecfdf5;
    color: #064A21;
    border: 1px solid #d1fae5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.btn-kota-primary {
    background: linear-gradient(135deg, #064A21, #10b981);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.3);
}

.btn-kota-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 74, 33, 0.4);
    color: #fff;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e8f0eb;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f0fdf4;
}

.faq-answer {
    padding: 0 24px 20px;
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
}

.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid #d1fae5;
    color: #064A21;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 4px;
    transition: all 0.2s;
}

.area-chip:hover {
    background: #064A21;
    color: #fff;
    border-color: #064A21;
    text-decoration: none;
}

.cta-section {
    background: linear-gradient(135deg, #064A21 0%, #0a7a35 100%);
    padding: 80px 0;
    text-align: center;
}

/* --- Extracted from: ⚡sewa_billboard_lampung.blade.php --- */
.kota-hero {
    background: linear-gradient(135deg, #064A21 0%, #0a7a35 50%, #10b981 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.kota-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.kota-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #FFC107;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.kota-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .kota-hero h1 {
        font-size: 2rem;
    }

    .kota-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

.kota-hero p.lead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 5px;
}

.content-section {
    padding: 80px 0;
}

.content-section.gray-bg {
    background: #f8fafb;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #064A21;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.section-h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-h2 {
        font-size: 1.8rem;
    }
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid #e8f0eb;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #064A21, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6, 74, 33, 0.12);
    border-color: #a8d5b5;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #064A21;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.why-card h5 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.billboard-card {
    border-radius: 20px;
    background: #fff;
    border: 1.5px solid #e8f0eb;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.billboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.billboard-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.billboard-card .card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.billboard-card h6 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.billboard-card .loc {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 12px;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    background: #ecfdf5;
    color: #064A21;
    border: 1px solid #d1fae5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.btn-kota-primary {
    background: linear-gradient(135deg, #064A21, #10b981);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.3);
}

.btn-kota-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 74, 33, 0.4);
    color: #fff;
}

.btn-kota-outline {
    background: #fff;
    color: #064A21;
    border: 2px solid #064A21;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-kota-outline:hover {
    background: #064A21;
    color: #fff;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e8f0eb;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f0fdf4;
}

.faq-answer {
    padding: 0 24px 20px;
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
}

.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid #d1fae5;
    color: #064A21;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 4px;
    transition: all 0.2s;
}

.area-chip:hover {
    background: #064A21;
    color: #fff;
    border-color: #064A21;
    text-decoration: none;
}

.cta-section {
    background: linear-gradient(135deg, #064A21 0%, #0a7a35 100%);
    padding: 80px 0;
    text-align: center;
}

.kota-map-section {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1.5px solid #e8f0eb;
}

/* --- Extracted from: ⚡sewa_billboard_solo.blade.php --- */
.kota-hero {
    background: linear-gradient(135deg, #064A21 0%, #0a7a35 50%, #10b981 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.kota-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #FFC107;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.kota-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .kota-hero h1 {
        font-size: 2rem;
    }

    .kota-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

.kota-hero p.lead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 5px;
}

.content-section {
    padding: 80px 0;
}

.content-section.gray-bg {
    background: #f8fafb;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #064A21;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.section-h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-h2 {
        font-size: 1.8rem;
    }
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid #e8f0eb;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #064A21, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6, 74, 33, 0.12);
    border-color: #a8d5b5;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #064A21;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.why-card h5 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.billboard-card {
    border-radius: 20px;
    background: #fff;
    border: 1.5px solid #e8f0eb;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.billboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.billboard-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.billboard-card .card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.billboard-card h6 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.billboard-card .loc {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 12px;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    background: #ecfdf5;
    color: #064A21;
    border: 1px solid #d1fae5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.btn-kota-primary {
    background: linear-gradient(135deg, #064A21, #10b981);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.3);
}

.btn-kota-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 74, 33, 0.4);
    color: #fff;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e8f0eb;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f0fdf4;
}

.faq-answer {
    padding: 0 24px 20px;
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
}

.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid #d1fae5;
    color: #064A21;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 4px;
    transition: all 0.2s;
}

.area-chip:hover {
    background: #064A21;
    color: #fff;
    border-color: #064A21;
    text-decoration: none;
}

.cta-section {
    background: linear-gradient(135deg, #064A21 0%, #0a7a35 100%);
    padding: 80px 0;
    text-align: center;
}

.ho-badge {
    background: linear-gradient(135deg, #FFC107, #ff8f00);
    color: #000;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.8rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

/* --- Extracted from: ⚡sewa_billboard_yogyakarta.blade.php --- */
.kota-hero {
    background: linear-gradient(135deg, #064A21 0%, #0a7a35 50%, #10b981 100%);
    min-height: 75vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.kota-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.15);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #FFC107;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.kota-hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .kota-hero h1 {
        font-size: 2rem;
    }

    .kota-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

.kota-hero p.lead {
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.stat-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 5px;
}

.content-section {
    padding: 80px 0;
}

.content-section.gray-bg {
    background: #f8fafb;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #064A21;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 8px;
}

.section-h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-h2 {
        font-size: 1.8rem;
    }
}

.why-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 28px;
    border: 1.5px solid #e8f0eb;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #064A21, #10b981);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(6, 74, 33, 0.12);
    border-color: #a8d5b5;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #064A21;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.why-card h5 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.why-card p {
    color: #64748b;
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

.billboard-card {
    border-radius: 20px;
    background: #fff;
    border: 1.5px solid #e8f0eb;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.billboard-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.1);
}

.billboard-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.billboard-card .card-body {
    padding: 18px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.billboard-card h6 {
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.billboard-card .loc {
    font-size: 0.82rem;
    color: #64748b;
    margin-bottom: 12px;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    background: #ecfdf5;
    color: #064A21;
    border: 1px solid #d1fae5;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
}

.btn-kota-primary {
    background: linear-gradient(135deg, #064A21, #10b981);
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.3);
}

.btn-kota-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 74, 33, 0.4);
    color: #fff;
}

.btn-kota-outline {
    background: #fff;
    color: #064A21;
    border: 2px solid #064A21;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-kota-outline:hover {
    background: #064A21;
    color: #fff;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    border: 1.5px solid #e8f0eb;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f0fdf4;
}

.faq-answer {
    padding: 0 24px 20px;
    color: #64748b;
    line-height: 1.8;
    font-size: 0.95rem;
}

.area-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1.5px solid #d1fae5;
    color: #064A21;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 4px;
    transition: all 0.2s;
}

.area-chip:hover {
    background: #064A21;
    color: #fff;
    border-color: #064A21;
    text-decoration: none;
}

.cta-section {
    background: linear-gradient(135deg, #064A21 0%, #0a7a35 100%);
    padding: 80px 0;
    text-align: center;
}

/* --- Extracted from: app.blade.php --- */
:root {
    --primary-deep: #064A21;
    --accent-gold: #FFC107;
    --white-op-60: rgba(255, 255, 255, 0.75);
    /* Sedikit lebih terang agar terbaca jelas */
}

.billboard-card,
.art-card,
.sid-card,
.ard-main-card,
.ard-sidebar .sid-card,
.career-card,
.career-detail-card,
.content-card,
.company-profile,
.card.border-0,
.card:not([class*="bg-"]) {
    border: 1.5px solid #c8d3e0 !important;
    box-shadow: none !important;
}

.billboard-card:hover,
.art-card:hover,
.career-card:hover,
.content-card:hover {
    border-color: #a0b0c4 !important;
}

.overview-box,
.overview-box .ov-item {
    border: none !important;
    box-shadow: none !important;
}

.hero-search-card .select2-container--default .select2-selection--single,
.hero-search-card .select2-container--default.select2-container--focus .select2-selection--single,
.hero-search-card .select2-container--default.select2-container--open .select2-selection--single,
.custom-hero-banner .select2-selection--single,
.custom-hero-banner .select2-selection--single:focus,
.custom-hero-banner .select2-container--default .select2-selection--single,
.custom-hero-banner .select2-container--default.select2-container--focus .select2-selection--single,
.custom-hero-banner .select2-container--default.select2-container--open .select2-selection--single {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    background: #fff !important;
}

/* NOTE: background-image is set in the first .custom-hero-banner block above (~line 1952).
   Do NOT use the 'background' shorthand here or it will reset background-image! */
.custom-hero-banner {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--primary-deep, #032b13);
    position: relative;
    overflow: hidden;
}

.hero-label {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 1.2rem;
}

.landing-banner-heading {
    line-height: 1.15;
    letter-spacing: -0.02em;
    font-size: 3.5rem;
}

.hero-description {
    color: var(--white-op-60);
    max-width: 620px;
    line-height: 1.8;
    font-size: 1.15rem;
    text-align: justify;
    margin-bottom: 2.5rem;
}

.hero-search-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    max-width: 750px;
}

.hero-search-card .form-select {
    background-color: #fff;
    border: none;
    height: 50px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-search {
    background: var(--accent-gold);
    color: #000;
    font-weight: 700;
    height: 50px;
    border-radius: 8px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-search:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-image-container {
    display: block;
}

.floating-image {
    width: 100%;
    max-width: 520px;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
    animation: heroFloat 3s ease-in-out infinite;
}

@keyframes heroFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.mobile-hero-img {
    display: none;
}

.mobile-hero-logo {
    display: none;
}

@media (max-width: 991.98px) {
    .custom-hero-banner {
        min-height: auto;
        text-align: center;
        padding: 100px 20px 60px 20px;
    }

    .hero-image-container {
        display: none !important;
    }

    .mobile-hero-img {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: 0 auto 1.5rem auto;
        scale: 2;
        filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
        animation: heroFloatMobile 5s ease-in-out infinite;
    }

    .mobile-hero-logo {
        display: block;
        width: 150px;
        height: 50px;
    }

    .hero-text-content {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .landing-banner-heading {
        font-size: 2.2rem;
        text-align: center;
    }

    .hero-description {
        text-align: center;
        font-size: 1rem;
        margin: 0 auto 2rem auto;
        max-width: 100%;
    }

    .hero-search-card {
        width: 100%;
        padding: 15px;
    }
}

@keyframes heroFloatMobile {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.desktop-logo,
.desktop-white {
    width: 170px !important;
    height: 50px !important;
}

#typewriter-text {
    display: inline-block;
    transition: all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 1;
    transform: translateY(0);
}

.text-hidden {
    opacity: 0 !important;
    transform: translateY(20px) !important;
}

/* Menghilangkan whitespace putih di atas header */

html,
body.landing-body {
    margin-top: 0 !important;
    padding-top: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

.landing-page-wrapper,
.landing-main,
.app-header {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Custom Scrollbar for Landing Page */
*::-webkit-scrollbar {
    width: 6px !important;
    height: 6px !important;
    background: transparent !important;
}

*::-webkit-scrollbar-track {
    background: transparent !important;
}

*::-webkit-scrollbar-thumb,
*:hover::-webkit-scrollbar-thumb {
    background: #c1c1c1 !important;
    border-radius: 10px !important;
}

*::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8 !important;
}

@media (max-width: 1024px) {
    .landing-main {
        padding-top: 25px !important;
    }
}

@media (max-width: 768px) {
    .landing-main {
        padding-top: 65px !important;
    }
}



/* --- Extracted from: layouts/⚡header.blade.php --- */
/* Header Transition */
.app-header {
    transition: all 0.3s ease;
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Home Page Header States */
.app-header.transparent-header {
    background-color: transparent;
    border-bottom: none;
}

.app-header.solid-header {
    background-color: #ffffff !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

/* Ensure Content is Above Background */
.header-content-left,
.header-content-right {
    position: relative;
    z-index: 1001;
    height: 100%;
}

/* Logo Sizing */
.app-header .header-logo img {
    height: 38px;
    width: auto;
}

/* Scrolled State (Always White) */
.app-header.header-scrolled,
.app-sidebar.header-scrolled,
.app-header.sticky-pin,
.app-sidebar.sticky-pin {
    background-color: #ffffff !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #f1f5f9 !important;
}

/* Nav Link Colors */
.app-header.transparent-header .nav-link {
    color: #ffffff;
    font-weight: 600;
}

.app-header.solid-header .nav-link {
    color: #334155;
    font-weight: 600;
}

.app-header.header-scrolled .nav-link,
.app-header.sticky-pin .nav-link {
    color: #334155 !important;
}

/* Hover Color on Scrolled/White Header */
.app-header.header-scrolled .nav-link:hover,
.app-header.sticky-pin .nav-link:hover,
.app-header.solid-header .nav-link:hover {
    color: #064A21 !important;
}

/* === ACTIVE NAV LINK STATES === */
/* Active on transparent header (Beranda, saat scroll atas) */
.app-header.transparent-header .nav-link.active {
    color: #ffffff !important;
    position: relative;
}

.app-header.transparent-header .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: #10b981;
    border-radius: 2px;
}

/* Active on solid/scrolled header */
.app-header.solid-header .nav-link.active,
.app-header.header-scrolled .nav-link.active,
.app-header.sticky-pin .nav-link.active {
    color: #064A21 !important;
    font-weight: 700 !important;
    position: relative;
}

.app-header.solid-header .nav-link.active::after,
.app-header.header-scrolled .nav-link.active::after,
.app-header.sticky-pin .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 2px;
    background: #064A21;
    border-radius: 2px;
}

/* Logo Toggling */
/* Initial State */
.app-header.transparent-header .toggle-logo {
    display: none;
}

.app-header.transparent-header .toggle-dark {
    display: none;
}

.app-header.transparent-header .desktop-white {
    display: block;
}

.app-header.solid-header .toggle-logo {
    display: block !important;
}

.app-header.solid-header .toggle-dark {
    display: none !important;
}

.app-header.solid-header .desktop-white {
    display: none !important;
}

/* Scrolled State */
.app-header.header-scrolled .toggle-logo,
.app-header.sticky-pin .toggle-logo {
    display: block !important;
}

.app-header.header-scrolled .toggle-dark,
.app-header.sticky-pin .toggle-dark {
    display: none !important;
}

.app-header.header-scrolled .desktop-white,
.app-header.sticky-pin .desktop-white {
    display: none !important;
}

/* Sidebar Z-Index Fix */
.app-sidebar {
    z-index: 1005 !important;
    position: fixed;
}


/* --- Extracted from: layouts/⚡footer.blade.php --- */
.landing-footer-wrapper {
    background: #021a0c;
    /* Emerald Dark Theme */
    color: #d1d5db;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #0a6b31;
}

.landing-footer-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
}

.landing-footer {
    padding: 80px 0 50px;
    position: relative;
    z-index: 10;
}

.landing-footer-list {
    padding-left: 0;
    margin-bottom: 0;
}

.landing-footer-list li {
    margin-bottom: 12px;
    list-style: none;
}

.landing-footer-list a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
}

.landing-footer-list a:hover {
    color: #10b981;
    transform: translateX(5px);
}

.landing-footer-list i {
    font-size: 1.1rem;
    margin-right: 8px;
    color: #10b981;
}

.footer-logo {
    width: 180px;
    margin-bottom: 25px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 0.95rem;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.soc-btn-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.soc-btn-modern:hover {
    background: #10b981;
    color: #fff;
    transform: translateY(-5px) rotate(8deg);
    border-color: #10b981;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.contact-info-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.contact-info-list strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.copyright-sec {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
    position: relative;
    z-index: 10;
    background: #011208;
}

@media (max-width: 768px) {
    .copyright-sec {
        padding: 12px 0 16px 0;
    }
}


.pulse-heart {
    color: #ef4444;
    display: inline-block;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.3);
    }

    100% {
        transform: scale(1);
    }
}

.footer-btn-main {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    border: none;
    font-weight: 700;
    padding: 12px 15px;
    border-radius: 10px;
    width: 100%;
    transition: transform 0.22s, box-shadow 0.22s;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(6, 74, 33, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-btn-main:hover {
    background-position: right center !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(6, 74, 33, 0.5);
    color: #fff;
}

/* --- Frontend Pagination Active Green --- */
.pagination .page-item.active .page-link {
    background-color: #16a34a !important;
    border-color: #16a34a !important;
    color: #fff !important;
}

.pagination .page-item.active:hover .page-link {
    background-color: #15803d !important;
    border-color: #15803d !important;
    color: #fff !important;
}

.pagination .page-item:not(.active) .page-link:hover {
    background-color: rgba(22, 163, 74, 0.08);
    color: #16a34a;
}

/* ================================================
   Scroll To Top — warna hijau (frontend)
   ================================================ */
.scrollToTop {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(6, 74, 33, 0.45) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease !important;
}

.scrollToTop:hover {
    background: linear-gradient(135deg, #0a6b31 0%, #10b981 100%) !important;
    box-shadow: 0 6px 24px rgba(6, 74, 33, 0.6) !important;
    transform: translateY(-3px) scale(1.08) !important;
}

/* ================================================================
   PORTFOLIO DETAIL SERVICE (GLASSMORPHISM)
   ================================================================ */
.glass-service-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    position: relative;
}

.glass-service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.detail-badge {
    position: relative;
    z-index: 2;
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    width: fit-content;
}

.detail-hero-title {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.25;
}

.detail-hero-desc {
    position: relative;
    z-index: 2;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

.why-choose-glass {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 24px;
}

.why-choose-glass h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.why-choose-glass ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-glass ul li {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}

.why-choose-glass ul li i {
    margin-right: 12px;
    font-size: 1.1rem;
    margin-top: 2px;
}

.why-choose-glass ul li:last-child {
    margin-bottom: 0;
}

.detail-hero-image-wrap {
    height: 100%;
    min-height: 480px;
    position: relative;
}

.detail-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.detail-hero-image-wrap .glass-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(4, 37, 18, 0.6) 0%, rgba(4, 37, 18, 0) 100%);
    clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
}

@media (max-width: 991px) {
    .detail-hero-image-wrap {
        min-height: 300px;
        margin-bottom: -20px;
    }

    .detail-hero-image-wrap img,
    .detail-hero-image-wrap .glass-overlay {
        clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 90%);
    }
}

/* --- Select2 Overrides --- */
body .select2-container--default .select2-results__option.select2-results__option--highlighted.select2-results__option--selectable,
body .select2-container--default .select2-results__option.select2-results__option--highlighted[aria-selected],
body .select2-container--default .select2-results__option.select2-results__option--selected.select2-results__option--highlighted {
    background-color: #f0fdf4 !important;
    color: #ff6600 !important;
}

body .select2-container--default .select2-results__option.select2-results__option--selected,
body .select2-container--default .select2-results__option[aria-selected="true"] {
    background-color: #e6f0eb !important;
    color: #ff6600 !important;
}

/* ================================================================
   HERO VIDEO CAROUSEL — Pertamina-Style Fullscreen
   ================================================================ */
.hero-video-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    z-index: 1;
    margin-top: -70px;
}

.heroVideoSwiper {
    width: 100%;
    height: 100%;
}

.heroVideoSwiper .swiper-wrapper {
    height: 100%;
}

/* Slide Base */
.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Video Slide */
.hero-slide-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 0;
}

/* Image Slide (fallback for non-video) */
.hero-slide-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    animation: heroSlideZoom 12s ease-in-out infinite alternate;
}

@keyframes heroSlideZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

/* Dark Overlay */
.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.15) 40%,
        rgba(0, 0, 0, 0.25) 70%,
        rgba(0, 0, 0, 0.65) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* ── Caption (Bottom-Left) ────────────────────────────── */
.hero-caption-wrapper {
    position: absolute;
    bottom: 140px;
    left: 60px;
    z-index: 20;
    max-width: 600px;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-caption-label {
    display: inline-block;
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
    background: rgba(16, 185, 129, 0.12);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-caption-title {
    color: #ffffff;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.hero-caption-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 24px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-caption-cta {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%);
    background-size: 200% auto;
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(6, 74, 33, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-caption-cta:hover {
    background-position: right center;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(6, 74, 33, 0.6);
    color: #ffffff;
}

/* Caption Animations */
.hero-caption-exit {
    opacity: 0;
    transform: translateY(15px);
}

.hero-caption-enter .hero-caption-label {
    animation: captionSlideUp 0.5s ease forwards;
    animation-delay: 0s;
}

.hero-caption-enter .hero-caption-title {
    animation: captionSlideUp 0.5s ease forwards;
    animation-delay: 0.1s;
}

.hero-caption-enter .hero-caption-subtitle {
    animation: captionSlideUp 0.5s ease forwards;
    animation-delay: 0.2s;
}

.hero-caption-enter .hero-caption-cta {
    animation: captionSlideUp 0.5s ease forwards;
    animation-delay: 0.3s;
}

@keyframes captionSlideUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Progress Bar (Bottom) ────────────────────────────── */
.hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 30;
}

.hero-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #10b981, #34d399);
    border-radius: 0 2px 2px 0;
}

/* ── Navigation Dots (Right-side vertical) ─────────── */
.hero-nav-dots {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.hero-dot {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 1px;
    padding: 0;
}

.hero-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.35s ease;
}

.hero-dot.active {
    color: #ffffff;
}

.hero-dot.active::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    border-color: #10b981;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.hero-dot:hover {
    color: #ffffff;
}

/* ── Nav Arrows ───────────────────────────────────────── */
.hero-nav-arrows {
    position: absolute;
    right: 40px;
    bottom: 140px;
    z-index: 25;
    display: flex;
    gap: 10px;
}

.hero-arrow {
    width: 44px;
    height: 44px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.hero-arrow:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: #10b981;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.25);
}

/* ── Scroll Down Indicator ────────────────────────────── */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    position: relative;
}

.hero-scroll-wheel {
    width: 3px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Floating Search Box ──────────────────────────────── */
.hero-search-floating {
    position: absolute;
    bottom: 25px;
    left: 60px;
    right: 60px;
    z-index: 35;
    max-width: 850px;
}

.hero-search-floating-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255,255,255,0.05) inset;
}

.hero-search-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #064A21, #10b981);
    color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(6, 74, 33, 0.4);
}

.hero-search-floating .form-select,
.hero-search-floating .select2-container--default .select2-selection--single {
    background-color: rgba(255, 255, 255, 0.95) !important;
    border: none !important;
    height: 46px !important;
    border-radius: 10px !important;
    font-weight: 500 !important;
    font-size: 0.9rem !important;
    box-shadow: none !important;
}

.hero-search-floating .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 46px !important;
    padding-left: 14px !important;
    color: #475569 !important;
}

.hero-search-floating .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
}

.hero-search-btn {
    background: linear-gradient(135deg, #064A21 0%, #0a6b31 50%, #10b981 100%) !important;
    background-size: 200% auto !important;
    color: #fff !important;
    border: none !important;
    font-weight: 700 !important;
    height: 46px !important;
    border-radius: 10px !important;
    font-size: 0.88rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(6, 74, 33, 0.35) !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-search-btn:hover {
    background-position: right center !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(6, 74, 33, 0.5) !important;
    color: #fff !important;
}

/* ── Header Transparent over Video ─────────────────────── */
.hero-video-carousel + .app-header.transparent-header,
.app-header.transparent-header {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

/* ================================================================
   RESPONSIVE HERO VIDEO CAROUSEL
   ================================================================ */

/* ── TABLET ─────────────────────────────────────────── */
@media (max-width: 991.98px) {
    .hero-video-carousel {
        height: 100vh;
        min-height: 550px;
    }

    .hero-caption-wrapper {
        bottom: 180px;
        left: 30px;
        right: 30px;
        max-width: none;
    }

    .hero-caption-title {
        font-size: 2.4rem;
    }

    .hero-caption-subtitle {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .hero-nav-dots {
        right: 20px;
        gap: 14px;
    }

    .hero-nav-arrows {
        right: 20px;
        bottom: 180px;
    }

    .hero-search-floating {
        left: 20px;
        right: 20px;
        bottom: 15px;
    }

    .hero-search-floating-inner {
        flex-direction: column;
        gap: 10px;
        padding: 16px;
    }

    .hero-search-icon {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

/* ── MOBILE ─────────────────────────────────────────── */
@media (max-width: 767.98px) {
    .hero-video-carousel {
        height: 100vh;
        height: 100dvh;
        min-height: 500px;
        margin-top: -60px;
    }

    .hero-caption-wrapper {
        bottom: 200px;
        left: 20px;
        right: 20px;
    }

    .hero-caption-label {
        font-size: 0.65rem;
        letter-spacing: 2px;
        padding: 5px 12px;
    }

    .hero-caption-title {
        font-size: 1.7rem;
        margin-bottom: 10px;
    }

    .hero-caption-subtitle {
        font-size: 0.85rem;
        line-height: 1.5;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .hero-caption-cta {
        padding: 10px 22px;
        font-size: 0.82rem;
    }

    .hero-nav-dots {
        right: 12px;
    }

    .hero-dot {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }

    .hero-dot::before {
        width: 24px;
        height: 24px;
    }

    .hero-nav-arrows {
        display: none;
    }

    .hero-search-floating {
        left: 12px;
        right: 12px;
        bottom: 10px;
    }

    .hero-search-floating-inner {
        padding: 12px;
        border-radius: 14px;
        gap: 8px;
    }

    .hero-search-floating .form-select,
    .hero-search-floating .select2-container--default .select2-selection--single {
        height: 42px !important;
        font-size: 0.85rem !important;
        border-radius: 8px !important;
    }

    .hero-search-floating .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 42px !important;
    }

    .hero-search-floating .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 42px !important;
    }

    .hero-search-btn {
        height: 42px !important;
        font-size: 0.82rem !important;
        border-radius: 8px !important;
    }

    .hero-progress-bar {
        height: 2px;
    }
}

/* ── Very small screens ────────────────────────────────── */
@media (max-width: 374px) {
    .hero-caption-title {
        font-size: 1.4rem;
    }

    .hero-caption-subtitle {
        -webkit-line-clamp: 2;
        font-size: 0.8rem;
    }

    .hero-caption-wrapper {
        bottom: 190px;
    }
}