/* ============================================
   Dashboard V2 - Patrakomala
   ============================================ */

/* --- Variables & Reset --- */
:root {
    --color-cyan: #00B4D8;
    --color-orange: #e13009;
    --color-yellow: #F9ED32;
    --color-dark: #1D3557;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
}

/* --- Nunito for body text & descriptions --- */


/* --- Raleway for all large headings --- */
h1,
h2,
h3,
h4,
.hero-title,
.panel-title,
.cell-title,
.good-to-see-title {
    font-family: 'Conthrax', sans-serif;
}

.navbar-capsule-wrapper {
    padding: 20px 40px;
    /* jarak dari tepi layar */
}

/* --- Navbar --- */
.navbar-dashboard {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 12px 30px;
    margin: 8px auto;
    max-width: 1280px;



    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}



.navbar-dashboard .navbar-brand img {
    height: 45px;
}

.navbar-dashboard .navbar-collapse {
    justify-content: space-between;
}

.navbar-nav-left {
    display: flex;
    gap: 2px;
    margin-left: auto;
}

.navbar-dashboard .nav-link {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 14px;
    transition: all 0.3s ease;
}

.navbar-dashboard .nav-link:hover {
    opacity: 0.8;
}

.navbar-dashboard .nav-link.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    font-weight: 600;
}


/* Right group - orange dashed box */
.navbar-right-group {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-orange);
    border: 2px dashed rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 6px 16px;
}

.navbar-right-group .navbar-nav {
    gap: 2px;
}

.navbar-right-group .nav-link {
    color: #fff;
}

.btn-flag {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: none;
    padding: 0;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Navbar Variants — pakai via $navVariant
   @include('layouts.dashboard-v2.navbar', ['navVariant' => 'navbar--light'])
   atau di halaman @extends: @section('navVariant', 'navbar--light')
   ============================================ */

/* Halaman dengan background terang (putih/krem/abu) */
.navbar-dashboard.navbar--light {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    /* position: sticky; */
}

.navbar-dashboard.navbar--light .nav-link {
    color: var(--color-dark);
}

.navbar-dashboard.navbar--light .nav-link:hover {
    opacity: 1;
    color: var(--color-orange);
}

.navbar-dashboard.navbar--light .nav-link.active {
    background-color: rgba(225, 48, 9, 0.1);
    color: var(--color-orange);
}

.navbar-dashboard.navbar--light .btn-menu {
    color: var(--color-dark);
}

.navbar-dashboard.navbar--light .dropdown-toggle {
    color: var(--color-dark);
}

/* Halaman dengan background gelap (navy, hitam) */
.navbar-dashboard.navbar--dark {
    background: rgba(14, 20, 30, 0.593);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar-dashboard.navbar--dark .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-dashboard.navbar--dark .nav-link:hover {
    opacity: 1;
    color: #fff;
}

.navbar-dashboard.navbar--dark .nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.navbar-dashboard.navbar--dark .btn-menu {
    color: #fff;
}

/* Halaman dengan background gelap (navy, hitam) */
.navbar-dashboard.navbar--patrakomala {
    background: #FF9F43;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    position: sticky;
}

.navbar-dashboard.navbar--patrakomala .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.navbar-dashboard.navbar--patrakomala .nav-link:hover {
    opacity: 1;
    color: #fff;
}

.navbar-dashboard.navbar--patrakomala .nav-link.active {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
}

.navbar-dashboard.navbar--patrakomala .btn-menu {
    color: #fff;
}

/* Solid — untuk halaman yang butuh navbar jelas tanpa overlay */
.navbar-dashboard.navbar--solid {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.navbar-dashboard.navbar--solid .nav-link {
    color: var(--color-dark);
}

.navbar-dashboard.navbar--solid .nav-link:hover {
    opacity: 1;
    color: var(--color-orange);
}

.navbar-dashboard.navbar--solid .nav-link.active {
    background-color: rgba(225, 48, 9, 0.08);
    color: var(--color-orange);
}

.navbar-dashboard.navbar--solid .btn-menu {
    color: var(--color-dark);
}

.navbar-dashboard.navbar--solid .dropdown-toggle {
    color: var(--color-dark);
}

.btn-menu {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    padding: 5px;
}

/* --- Nested Dropdown (submenu) --- */
.dropdown-submenu {
    position: relative;
}
.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    display: none;
    border-radius: 10px;
}
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}
.dropdown-submenu > .dropdown-item.dropdown-toggle::after {
    float: right;
    margin-top: 6px;
}

/* --- Navbar User Dropdown --- */
.navbar-user-dropdown {
    position: relative;
}
.navbar-user-dropdown .navbar-dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
    min-width: 160px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.14);
    border: 1px solid #F0F0F0;
    padding: 6px;
    z-index: 9999;
}
.navbar-user-dropdown .navbar-dropdown-menu.show {
    display: block;
}
.navbar-user-dropdown .navbar-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 13.5px;
    font-weight: 500;
    color: #333;
    border-radius: 8px;
    text-decoration: none;
    transition: background .15s;
}
.navbar-user-dropdown .navbar-dropdown-menu a:hover {
    background: #F5F5F7;
    color: #111;
    text-decoration: none;
}
.navbar-user-dropdown .navbar-dropdown-menu a i {
    font-size: 14px;
    width: 16px;
    color: #888;
}

/* --- Hero Section --- */

.hero-section {
    /* background: #E2421E;
    background: linear-gradient(90deg, rgba(226, 66, 30, 1) 0%, rgba(248, 237, 49, 1) 50%, rgba(0, 180, 215, 1) 100%); */

     /* background: #FF9F43; 
    background: linear-gradient(90deg, rgba(255, 159, 67, 1) 10%, rgba(255, 204, 41, 1) 55%, rgba(0, 184, 241, 1) 100%);
      */
     /* background: linear-gradient(
    90deg,
    #FF9F43 0%,
    #FFCC29 40%,
    #00B8F1 100%
); */

/* background: #00B8F1;
background: linear-gradient(90deg, rgba(0, 184, 241, 1) 0%, rgba(225, 48, 9, 1) 34%, rgba(249, 237, 50, 1) 100%); */

/* background: #00B4D7;
background: linear-gradient(168deg, rgba(0, 180, 215, 1) 0%, rgba(255, 204, 41, 1) 51%, rgba(255, 159, 41, 1) 100%); */

/* background: #E13008;
background: linear-gradient(157deg, rgba(225, 48, 8, 1) 61%, rgba(249, 237, 50, 1) 100%); */

    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.panel-left {
    grid-row: span 2;
    background-color: #00B8F1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.panel-left-content {
    position: relative;
    z-index: 2;
}

.quote-wrapper {
    position: relative;
    display: inline-block;
}

.quote-mark {
    position: absolute;
    width: 20px;
    height: auto;
}

.quote-mark-open {
    top: 35px;
    left: 10px;
}

.quote-mark-close {
    bottom: -10px;
    right: -5px;
    transform: rotate(180deg);
}

.frame-box {
    position: absolute;
    top: -50px;
    left: -70px;
    right: 214px;
    bottom: 10px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    pointer-events: none;
}

.hero-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 5rem);
    line-height: 1.15;
    text-align: left;
    margin: 0;
    padding: 30px 40px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.hero-title .fw-semibold {
    font-weight: 600;
}

.hero-title .fw-bold {
    font-weight: 700;
}

.hero-title em {
    font-style: italic;
    font-weight: 400;
}

.creative-line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.creative-arrow {
    width: 35px;
    height: auto;
    opacity: 0.7;
}

/* Decorative elements */
.deco-lines-group {
    position: absolute;
    bottom: 150px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.deco-line {
    width: 50px;
    height: 5px;
}

.deco-line:nth-child(1) {
    background: #019ac9;
}

.deco-line:nth-child(2) {
    background: #73dafa;
}

.deco-line:nth-child(3) {
    background: #a8e7f8;
}

/* Decorative bars triangle */
.deco-bars-triangle {
    --bars-bottom: 43%;
    --bars-left: 61%;
    --bars-height: 75px;
    --bars-opacity: 0.2;
    --bars-gap: 6px;
    --bars-width: 6px;
    --bars-color: #fff;
    --bars-rotate: 0deg;

    position: absolute;
    bottom: var(--bars-bottom);
    left: var(--bars-left);
    transform: translateX(-50%) rotate(var(--bars-rotate));
    display: flex;
    align-items: stretch;
    gap: var(--bars-gap);
    height: var(--bars-height);
    opacity: var(--bars-opacity);
    clip-path: polygon(0% 50%, 100% 0%, 100% 100%);
}

.deco-bars-triangle span {
    display: block;
    width: var(--bars-width);
    height: 100%;
    background: var(--bars-color);
}

/* Decorative striped dome */
.deco-striped-dome {
    --dome-size: 100px;
    --dome-bottom: 0%;
    --dome-right: 40%;
    --dome-opacity: 0.7;
    --dome-stripe-width: 3px;
    --dome-stripe-gap: 8px;
    --dome-stripe-angle: 135deg;
    --dome-stripe-color: #fff;
    position: absolute;
    bottom: var(--dome-bottom);
    right: var(--dome-right);
    width: var(--dome-size);
    height: calc(var(--dome-size) / 2);
    opacity: var(--dome-opacity);
    border-radius: calc(var(--dome-size)) calc(var(--dome-size)) 0 0;
    background: repeating-linear-gradient(var(--dome-stripe-angle),
            var(--dome-stripe-color) 0,
            var(--dome-stripe-color) var(--dome-stripe-width),
            transparent var(--dome-stripe-width),
            transparent var(--dome-stripe-gap));

}

.hero {
    position: relative;
}

.vertical-lines {
    position: relative;

    bottom: 131%;
    left: 78%;
    z-index: 0;

    width: 82.94000244140625px;
    height: 86.4161148071289px;

    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.5) 0 6px,
            transparent 6px 20px,

            rgba(255, 255, 255, 0.5) 20px 26px,
            transparent 26px 40px,


            rgba(255, 255, 255, 0.5) 40px 46px,
            transparent 46px 60px,

            rgba(255, 255, 255, 0.5) 60px 66px,
            transparent 66px 80px,

            rgba(255, 255, 255, 0.5) 80px 86px,
            transparent 86px 100px,

            rgba(255, 255, 255, 0.5) 100px 106px,
            transparent 106px);
}

.shape-wrapper {
    position: absolute;
    left: 80%;
    bottom: 3%;
    width: 200px;
    height: 200px;
    aspect-ratio: 1 / 1;
    z-index: 1;
    pointer-events: none;
}



.shape-l {
    width: 99.94000244140625px;
    height: 99.94000244140625px;
    display: block;

}

/* Panel Kanan Atas - Orange */
.panel-right-top {
    background-color: #FF9F43;
    background-image: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    position: relative;
}

.panel-title,
.panel-subtitle,
.hero {
    position: relative;
    z-index: 2;
}

.panel-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
    margin-top: 0;
}

.panel-subtitle::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: currentColor;
    flex-shrink: 0;
}

.panel-title {
    color: #000000;
    font-size: clamp(2rem, 3vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}



/* Panel Kanan Bawah - Yellow */
.panel-right-bottom {
    background-color: #FFCC29;
    background-image: radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.06) 0%, transparent 55%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
}

.zigzag {
    position: absolute;
    right: 51%;
    top: 80%;
    width: 20%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='0,15 10,5 20,15 30,5 40,15 50,5 60,15 70,5 80,15 90,5 100,15' fill='none' stroke='rgb(254 251 110)' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
    background-size: 120px 60px;

}

.zigzag-dark {
    position: absolute;
    right: 48%;
    top: 75%;
    width: 10%;
    height: 60px;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='0,15 10,5 20,15 30,5 40,15 50,5 60,15 70,5 80,15 90,5 100,15' fill='none' stroke='rgb(201 162 57)' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
    background-size: 120px 60px;
    color: #000;

}


.panel-right-bottom .panel-subtitle {
    color: rgba(0, 0, 0, 0.65);
}

.panel-right-bottom .panel-subtitle::before {
    background: rgba(0, 0, 0, 0.65);
}

.panel-right-bottom .panel-title {
    color: var(--color-dark);
    text-shadow: none;
}

.deco-zigzag {
    position: absolute;
    bottom: 40px;
    left: 60px;
}

.deco-zigzag img {
    height: 20px;
}

.deco-dots {
    position: absolute;
    bottom: 60px;
    right: 60px;
}

.deco-dots img {
    width: 60px;
}

.deco-triangle {
    position: absolute;
    top: 40px;
    right: 60px;
}

.deco-triangle img {
    width: 30px;
}

/* --- Creator Hub Section --- */
.creator-hub-section {
    padding: 80px 0;
    background: #fff;
}

.creator-hub-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    max-width: 1300px;
    margin: 0 70px;
    padding: 0 0px;
}

.creator-hub-image {
    flex: 4;
    /* max-width: 850px; */
}

.creator-hub-image img {
    width: 100%;
    height: auto;
}



.creator-hub-text {
    flex: 2;
    /* max-width: 800px; */
}

.creator-hub-text h2 {
    font-size: 45px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 24px;
    line-height: 125%;
}

.creator-hub-text h2 span {
    color: var(--color-cyan);
}

.creator-hub-text p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.creator-hub-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.creator-hub-dots .dot {
    width: 32px;
    height: 8px;
    border-radius: 4px;
    background: var(--color-orange);
}

.creator-hub-dots .dot.active {
    width: 8px;
    background: var(--color-cyan);
}

/* --- Produk Kreatif Section --- */
.produk-kreatif-section {
    min-height: 500px;
}

.produk-kreatif-left {
    background-color: var(--color-dark);
    padding: 60px;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.produk-kreatif-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 20%, rgba(244, 162, 97, 0.13) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 85%, rgba(0, 180, 216, 0.07) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.produk-kreatif-left .subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.produk-kreatif-left h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
}

.produk-kreatif-left h2 span {
    color: var(--color-orange);
}

.produk-kreatif-left p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.produk-kreatif-left .btn-telusuri {
    display: inline-block;
    padding: 10px 28px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 25px;
    color: #fff;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.produk-kreatif-left .btn-telusuri:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 12px 0;
}

.carousel-dots .carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots .carousel-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--color-orange);
}

/* Bootstrap carousel height fix: produk kreatif */
#pkLeftCarousel {
    flex: 1;
    min-height: 0;
}

#pkLeftCarousel .carousel-inner,
#pkLeftCarousel .carousel-item {
    height: 100%;
}

.produk-kreatif-right-wrapper {
    display: flex;
    flex-direction: column;
}

.produk-kreatif-right-wrapper>.carousel {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.produk-kreatif-right-wrapper>.carousel .carousel-track {
    flex: 1;
}

.produk-kreatif-right-wrapper>.carousel .carousel-slide {
    display: flex;
    flex-direction: column;
}

.produk-kreatif-right-wrapper>.carousel .carousel-slide>.produk-kreatif-right {
    flex: 1;
}

.produk-kreatif-left .dots {
    display: flex;
    gap: 6px;
    margin-top: 24px;
    position: relative;
    z-index: 1;
}

.produk-kreatif-left .dots .dot {
    height: 4px;
    width: 16px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.produk-kreatif-left .dots .dot.active {
    width: 36px;
    background: var(--color-orange);
}

.produk-kreatif-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    flex: 1;
}

.produk-kreatif-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.produk-kreatif-item:hover {
    transform: scale(1.02);
}

.produk-kreatif-item.bg-yellow {
    background-color: #FACB9B;
}

.produk-kreatif-item.bg-orange {
    background-color: var(--color-orange);
}

.produk-kreatif-text.color-red {
    color: #a51d2d !important;
}

.produk-kreatif-text.color-white {
    color: #ffffff !important;
}

.produk-kreatif-item .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
}

.produk-kreatif-item .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.produk-kreatif-item .label {
    color: var(--color-dark);
    font-size: 0.85rem;
    font-weight: 600;
}

/* --- Produk Kreatif Left - Full Panel Carousel --- */
.pk-left-carousel {
    overflow: hidden;
    flex: 1;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.pk-left-track {
    display: flex;
    transition: transform 0.75s cubic-bezier(0.77, 0, 0.175, 1);
    height: 100%;
}

.pk-left-slide {
    min-width: 100%;
    max-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Text slide: accent on subtitle */
.pk-left-slide .subtitle {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pk-left-slide .subtitle::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 2px;
    background: var(--color-orange);
    flex-shrink: 0;
}

/* Product card - editorial */
.pk-product-card {
    position: relative;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-top: 3px solid var(--color-orange);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pk-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(244, 162, 97, 0.3);
}

.pk-product-num {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 10;
    font-family: 'Raleway', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-orange);
    opacity: 0.85;
}

.pk-img-wrap {
    position: relative;
    height: 190px;
    overflow: hidden;
}

.pk-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.pk-product-card:hover .pk-img-wrap img {
    transform: scale(1.05);
}

.pk-img-wrap iframe {
    display: block;
}

.pk-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, transparent 45%, rgba(29, 53, 87, 0.8) 100%);
}

.pk-card-body {
    padding: 14px 18px 18px;
}

.pk-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(225, 48, 9, 0.15);
    color: var(--color-orange);
    border: 1px solid rgba(225, 48, 9, 0.35);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.pk-badge::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-orange);
    flex-shrink: 0;
}

.pk-product-card h5 {
    color: #fff;
    font-family: 'Raleway', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 8px;
}

.pk-product-card p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.78rem;
    line-height: 1.5;
    margin: 0 0 12px;
}

.pk-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-orange);
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.3px;
    cursor: pointer;
    transition: gap 0.25s ease, color 0.2s ease;
}

.pk-read-more:hover {
    gap: 10px;
    color: var(--color-orange);
}

/* --- Kolaborasi Section --- */
.kolaborasi-section {
    display: flex;
    align-items: center;
    padding: 50px 5vw;
    background: #fff;
    overflow: hidden;
    border-bottom: 4px solid var(--color-cyan);
    gap: 5vw;
}

.kolaborasi-header {
    flex-shrink: 0;
}

.kolaborasi-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    position: relative;
    padding-bottom: 12px;
    white-space: nowrap;
}

.kolaborasi-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 4px;
    background: linear-gradient(to right,
            #F2994A 0%,
            #F2994A 50%,
            #0077B6 50%,
            #0077B6 100%);
    border-radius: 2px;
}

.kolaborasi-logos {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px 48px;
    flex: 1;
}

.kolaborasi-logo {
    height: 70px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.kolaborasi-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* --- Pemetaan Zona Section --- */
.pemetaan-section {
    position: relative;
    background: linear-gradient(135deg,
            #1298b3 0%,
            #3cc2d8 60%,
            #f2fbfd 100%);
    padding: 80px 5vw;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.pemetaan-bg-map {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: auto;
    opacity: 0.35;
    pointer-events: none;

    filter: grayscale(100%) brightness(1.4) contrast(0.8);
    mix-blend-mode: overlay;
}

.pemetaan-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.pemetaan-text {
    max-width: 480px;
    flex-shrink: 0;
}

.pemetaan-text h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}

.pemetaan-text p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    line-height: 1.8;
}

.pemetaan-stats {
    display: flex;
    gap: 50px;
    flex-shrink: 0;
    position: absolute;
    left: 60%;
}

.pemetaan-stat {
    text-align: center;
}

.pemetaan-stat .number {
    display: block;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.pemetaan-stat .label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
    font-weight: 400;
}

.pemetaan-map-overlay {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 30%;
    height: 70%;
    z-index: 1;
}

.map-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.7;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

/* --- Info Grid Section --- */
.info-grid-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
}

.info-grid-cell {
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 4px solid var(--color-orange);
}

.info-grid-cell-news {
    padding: 50px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 4px solid var(--color-cyan);
}


.info-grid-cell-right {
    padding: 50px 40px;
    border-left: 2px solid color-mix(in srgb, var(--color-orange)40%, transparent);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-top: 4px solid var(--color-cyan);
}

.info-grid-cell-inner {
    width: 100%;
    max-width: 420px;
}

.info-grid-cell .cell-subtitle {
    font-size: 0.75rem;
    font-weight: 500;
    color: #999;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.info-grid-cell .cell-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.3;
    margin-bottom: 24px;
}

.info-grid-cell .cell-title span {
    color: var(--color-orange);
}

.card-row {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.card-row::-webkit-scrollbar {
    display: none;
}

.card-img {
    min-width: 180px;
    max-width: 200px;
    flex-shrink: 0;
}

.card-img .img-placeholder {
    width: 100%;
    aspect-ratio: 4/5;
    background: #f0f0f0;
    border-radius: 12px;
    margin-bottom: 10px;
}

.card-img .card-date {
    font-size: 0.7rem;
    color: #aaa;
    margin-bottom: 4px;
}

.card-img .card-desc {
    font-size: 0.78rem;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-text-item {
    min-width: 180px;
    max-width: 200px;
    flex-shrink: 0;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
}

.card-text-item .card-text-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 2px;
}

.card-text-item .card-date {
    font-size: 0.7rem;
    color: #aaa;
    margin-bottom: 10px;
}

.card-text-item .card-desc {
    font-size: 0.75rem;
    color: #666;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cell-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
}

.cell-dots {
    display: flex;
    gap: 6px;
}

.cell-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
}

.cell-dots .dot.active {
    background: var(--color-orange);
}

.cell-dots .dot.active-green {
    background: #4CAF50;
}

.cell-link {
    font-size: 0.8rem;
    color: var(--color-orange);
    text-decoration: none;
    font-weight: 500;
}

.cell-link:hover {
    text-decoration: underline;
}

/* --- Good To See Section --- */
.good-to-see-section {
    background: #ffffff;
    padding: 60px 5vw;
    /* border-top: 4px solid var(--color-cyan); */
}

.good-to-see-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 30px;
    line-height: 1.3;
}

.good-to-see-title span {
    color: var(--color-orange);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 155px 155px;
    gap: 16px;
}

.gallery-main {
    grid-row: 1 / 3;
    border-radius: 12px;
    overflow: hidden;
    background: #e0e0e0;
}

.gallery-main iframe,
.gallery-top-right iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-top-right {
    border-radius: 12px;
    overflow: hidden;
    background: #e0e0e0;
}

/* --- Footer --- */
footer {
    width: 100%;
    display: block;
}

.footer-main {
    padding: 60px 5vw 40px;
    background: #fff;
    border-top: 1px solid #eee;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand img {
    height: 120px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.8rem;
    font-weight: 600;
    color: #999;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-size: 0.85rem;
    color: #555;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links ul li a:hover {
    color: var(--color-cyan);
}

.footer-contact p {
    font-size: 0.82rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-bottom {
    position: relative;
    width: 100%;
    padding: 60px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    background-image: url('../dashboard-v2/Copyright.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Background dan splash digantikan oleh Copyright.svg */
.footer-bottom-bg {
    display: none;
}

.splash-footer {
    display: none;
}


.footer-bottom-bg .bg-orange {
    flex: 1;
    background: #FF9F43;
}

.footer-bottom-bg .bg-cyan {
    flex: 1;
    background: var(--color-cyan);
    position: relative;
}

.footer-bottom-bg .bg-cyan::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    border-radius: 50% 0 0 0;
}

.footer-bottom-left {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-bottom-left a {
    font-size: 0.82rem;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom-left a:hover {
    text-decoration: underline;
}

.footer-copyright {
    position: relative;
    z-index: 1;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom-right {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
}

.footer-bottom-right a {
    color: #fff;
    font-size: 1.1rem;
    transition: opacity 0.2s;
}

.footer-bottom-right a:hover {
    opacity: 0.7;
}

.splash-footer {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.splash-1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    opacity: 0.7;
}

.splash-2 {
    position: absolute;
    top: 0;
    right: 0;
    width: 66%;
    opacity: 0.7;
}



.splash-3 {
    position: absolute;
    bottom: 24px;
    right: 76%;
    width: 9%;
    opacity: 0.1;
}

.splash-3 {
    filter: brightness(100) saturate(20);
    opacity: 0.2;
}

.splash-4 {
    position: absolute;
    top: -7%;
    left: 80%;
    width: 86px;
}

.kolaborasi-section {
    width: 100%;
}

.kolaborasi-slider {
    overflow: hidden;
    width: 100%;
}

.kolaborasi-track {
    display: flex;
    gap: 240px;
    width: fit-content;
    min-width: 100%;
    animation: scrollLogo 20s linear infinite;
}

.kolaborasi-logo {
    flex: 0 0 auto;
}

@keyframes scrollLogo {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* ============================================
   Responsive - Tablet (max-width: 992px)
   ============================================ */
@media (max-width: 992px) {

    .navbar-dashboard {
        padding: 10px 10px;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .hero-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .panel-left {
        grid-row: span 1;
        min-height: 50vh;
        padding: 60px 40px;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        padding: 20px 30px;
    }

    .frame-box {
        top: -30px;
        left: -40px;
        right: 100px;
        bottom: 10px;
    }

    .deco-bars-triangle {
        --bars-height: 50px;
    }

    .deco-striped-dome {
        --dome-size: 70px;
    }

    .panel-title {
        font-size: 1.8rem;
    }

    .panel-right-top,
    .panel-right-bottom {
        min-height: 40vh;
        padding: 30px 32px;
    }

    .vertical-lines {
        width: 40%;
        height: 70px;
        left: auto;
    }

    .shape-wrapper {
        width: 150px;
        height: 150px;
        left: auto;
        right: 30px;
        bottom: 15%;
    }

    .creator-hub-content {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
    }

    .creator-hub-image {
        max-width: 800px;
    }

    .pemetaan-bg-map {
        width: 55%;
        right: -15%;
        opacity: 0.35;
        filter: grayscale(100%) brightness(1.4) contrast(0.8);
        mix-blend-mode: overlay;

    }



    .creator-hub-text {
        max-width: 100%;
    }

    .creator-hub-text h2 {
        font-size: 2rem;
    }

    .creator-hub-dots {
        justify-content: center;
    }

    .produk-kreatif-left {
        padding: 50px 30px;
        text-align: center;
    }

    .produk-kreatif-left .btn-telusuri {
        margin: 0 auto;
    }

    .produk-kreatif-left h2 {
        font-size: 2rem;
    }

    .info-grid-section {
        grid-template-columns: 1fr;
    }

    .pemetaan-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .pemetaan-text {
        max-width: 100%;
    }

    .pemetaan-stats {
        position: static;
        gap: 30px;
        margin-top: 30px;
    }

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

    .pemetaan-map-overlay {
        display: none;
    }

    .vertical-lines {
        width: 20%;
        height: 50px;
        left: 79%;
        bottom: 180%;
    }

    .shape-wrapper {
        width: 110px;
        height: 120px;
        right: 5%;
        bottom: 16%;
    }

    .quote-mark-open {
        top: 20px;
        left: 10px;
    }

    .zigzag {
        position: absolute;
        right: 12%;
        top: 80%;
        width: 20%;
        height: 60px;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='0,15 10,5 20,15 30,5 40,15 50,5 60,15 70,5 80,15 90,5 100,15' fill='none' stroke='rgb(254 251 110)' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
        background-size: 120px 60px;

    }

    .zigzag-dark {
        position: absolute;
        right: 10%;
        top: 75%;
        width: 10%;
        height: 60px;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='0,15 10,5 20,15 30,5 40,15 50,5 60,15 70,5 80,15 90,5 100,15' fill='none' stroke='rgb(201 162 57)' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
        background-size: 120px 60px;
        color: #000;

    }

    .splash-footer {
        display: none;
    }

    .gallery-main iframe,
    .gallery-top-right iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gallery-top-right {
        border-radius: 12px;
        overflow: hidden;
        background: #e0e0e0;
    }

    .footer-bottom {
        position: relative;
        width: 100%;
        padding: 54px 5vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        background-image: url('../dashboard-v2/Copyright.svg');
        background-size: cover;
        background-repeat: no-repeat;
    }
}


/* ============================================
   Responsive - Mobile (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

    .navbar-dashboard {
        padding: 10px 10px;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: 200px 150px 150px;
    }

    .gallery-main {
        grid-row: auto;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-bottom-left {
        flex-wrap: wrap;
        justify-content: center;
    }

    .vertical-lines {
        width: 20%;
        height: 50px;
        left: 75%;
        bottom: 180%;
    }

    .shape-wrapper {
        width: 110px;
        height: 120px;
        right: 5%;
        bottom: 16%;
    }

    .quote-mark-open {
        top: 15px;
        left: 10px;
    }

    .zigzag {
        position: absolute;
        right: 23%;
        top: 80%;
        width: 20%;
        height: 60px;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='0,15 10,5 20,15 30,5 40,15 50,5 60,15 70,5 80,15 90,5 100,15' fill='none' stroke='rgb(254 251 110)' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
        background-size: 120px 60px;

    }

    .zigzag-dark {
        position: absolute;
        right: 20%;
        top: 75%;
        width: 10%;
        height: 60px;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='0,15 10,5 20,15 30,5 40,15 50,5 60,15 70,5 80,15 90,5 100,15' fill='none' stroke='rgb(201 162 57)' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
        background-size: 120px 60px;
        color: #000;

    }

    .creator-hub-content {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
    }

    .creator-hub-image {
        max-width: 800px;
    }

    .pemetaan-bg-map {
        width: 70%;
        right: -30%;
        opacity: 0.35;

        filter: grayscale(100%) brightness(1.4) contrast(0.8);
        mix-blend-mode: overlay;

    }

    .splash-footer {
        display: none;
    }

    .gallery-main iframe,
    .gallery-top-right iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gallery-top-right {
        border-radius: 12px;
        overflow: hidden;
        background: #e0e0e0;
        margin: -1%;
    }

    .footer-bottom {
        position: relative;
        width: 100%;
        padding: 5px 5vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        background-image: url('../dashboard-v2/Copyright.svg');
        background-size: cover;
        background-repeat: no-repeat;
    }
}


/* ============================================
   Responsive - Small Mobile (max-width: 576px)
   ============================================ */
@media (max-width: 576px) {
    .navbar-dashboard {
        padding: 10px 10px;
        margin-left: 1rem;
        margin-right: 1rem;
    }

    .panel-left,
    .panel-right-top,
    .panel-right-bottom {
        padding: 40px 30px;
    }

    .panel-left {
        padding: 40px 20px;
        min-height: 45vh;
    }

    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
        padding: 15px 20px;
    }

    .panel-title {
        font-size: 1.5rem;
    }

    .frame-box {
        top: -20px;
        left: -25px;
        right: 60px;
        bottom: 5px;
    }

    .quote-wrapper {
        padding: 0;

    }

    .quote-mark-open {
        top: 10px;
        left: 1px;
    }

    .deco-lines-group {
        bottom: 80px;
        left: 20px;
    }

    .deco-line {
        width: 35px;
        height: 4px;
    }

    .deco-bars-triangle {
        --bars-height: 40px;
        --bars-width: 4px;
    }

    .deco-striped-dome {
        --dome-size: 50px;
    }

    .creator-hub-section {
        padding: 50px 0;
    }

    .creator-hub-image {
        max-width: 800px;
    }

    .creator-hub-text h2 {
        font-size: 1.75rem;
    }

    .creator-hub-text p {
        font-size: 0.9rem;
    }

    .pemetaan-bg-map {
        position: absolute;
        right: 15%;
        top: 70%;
        transform: translateY(-50%);
        width: 75%;
        height: auto;
        opacity: 0.35;
        pointer-events: none;

        filter: grayscale(100%) brightness(1.4) contrast(0.8);
        mix-blend-mode: overlay;
    }

    .produk-kreatif-left {
        padding: 40px 25px;
    }

    .produk-kreatif-left h2 {
        font-size: 1.75rem;
    }

    .produk-kreatif-item {
        padding: 25px 15px;
    }

    .produk-kreatif-item .icon {
        width: 40px;
        height: 40px;
    }

    .creator-hub-content {
        flex-direction: column;
        text-align: center;
        padding: 0 30px;
    }

    .produk-kreatif-item .label {
        font-size: 0.75rem;
    }

    .kolaborasi-section {
        flex-direction: column;
        padding: 30px 5vw;
        gap: 24px;
        width: 100%;
        align-items: flex-start;
    }

    .kolaborasi-header h3 {
        font-size: 1.2rem;
    }

    .kolaborasi-logos {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: flex-start;
    }

    .kolaborasi-logo {
        height: 35px;
    }

    .pemetaan-section {
        padding: 50px 5vw;
    }

    .pemetaan-text h2 {
        font-size: 1.5rem;
    }

    .pemetaan-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .pemetaan-stat .number {
        font-size: 1.75rem;
    }

    .vertical-lines {
        width: 20%;
        height: 50px;
        left: 67%;
        bottom: 180%;
    }

    .shape-wrapper {
        width: 110px;
        height: 120px;
        right: 1%;
        bottom: 15%;
    }

    .zigzag {
        position: absolute;
        right: 30%;
        top: 80%;
        width: 30%;
        height: 60px;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='0,15 10,5 20,15 30,5 40,15 50,5 60,15 70,5 80,15 90,5 100,15' fill='none' stroke='rgb(254 251 110)' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
        background-size: 120px 60px;

    }

    .zigzag-dark {
        position: absolute;
        right: 20%;
        top: 75%;
        width: 20%;
        height: 60px;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='0,15 10,5 20,15 30,5 40,15 50,5 60,15 70,5 80,15 90,5 100,15' fill='none' stroke='rgb(201 162 57)' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
        background-size: 120px 60px;
        color: #000;

    }

    .splash-footer {
        display: none;
    }

    .gallery-main iframe,
    .gallery-top-right iframe {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .gallery-top-right {
        border-radius: 12px;
        overflow: hidden;
        background: #e0e0e0;
        margin: -1%;
    }

    .footer-bottom {
        position: relative;
        width: 100%;
        padding: 5px 5vw;
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow: hidden;
        background-image: url('../dashboard-v2/Copyright.svg');
        background-size: cover;
        background-repeat: no-repeat;
    }

}

/* ============================================
   Navbar Solid Variant (untuk halaman non-hero)
   ============================================ */
.navbar-dashboard--solid {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    margin: 0 auto;
    border-radius: 0;
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    max-width: 100%;
    padding: 12px 30px;
}

.navbar-dashboard--solid .nav-link {
    color: #222 !important;
}

.navbar-dashboard--solid .nav-link:hover {
    opacity: 0.7;
}

.navbar-dashboard--solid .nav-link.active {
    background-color: rgba(0, 0, 0, 0.06);
    color: var(--color-orange, #e85c2a) !important;
}

.navbar-dashboard--solid .btn-menu {
    color: #222;
}

.navbar-dashboard--solid .dropdown-toggle {
    color: #222 !important;
}
