@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');
:root {
    --core-bg: #0f1713;
    --core-surface: #14231b;
    --core-card: #1a3a2b;

    --core-primary: #1a3a2b;
    --core-primary-light: #244c39;

    --core-text: #ffffff;
    --core-heading: #ffffff;
    --core-muted: #c7d2cc;

    --core-border: rgba(255,255,255,.12);
    --core-shadow: 0 24px 70px rgba(0,0,0,.28);

    --core-radius-sm: 14px;
    --core-radius: 24px;
    --core-radius-lg: 34px;
    --core-pill: 999px;

    --core-transition: .35s cubic-bezier(.22, .61, .36, 1);
    --core-green: #1a3a2b;
--core-green-dark: #0f241b;
--core-green-light: #23c483;

--core-panel: rgba(255,255,255,.03);
--core-panel-strong: rgba(255,255,255,.06);
}

html,
body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', Arial, Helvetica, sans-serif;
    background: var(--core-bg);
    color: var(--core-text);
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

body.dark-mode {
    background: var(--core-bg);
    color: var(--core-text);
}

body.light-mode {
    --core-bg: #ffffff;
    --core-surface: #f7f9f8;
    --core-card: #ffffff;

    --core-primary: #1a3a2b;
    --core-primary-light: #244c39;

    --core-text: #102018;
    --core-heading: #102018;
    --core-muted: #63746b;

    --core-border: rgba(26,58,43,.14);
    --core-shadow: 0 24px 70px rgba(26,58,43,.10);

    background: #ffffff;
    color: #102018;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

section {
    position: relative;
}

.container-fluid {
    width: 100%;
    max-width: 100%;
}

/* ================================
   HERO - LUXURY FUTURISTIC
================================ */

.core-hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    isolation: isolate;
    background: var(--core-bg);
}

.core-grid {
    position: absolute;
    inset: 0;
    z-index: 0;

    background-image:
        linear-gradient(
            rgba(26,58,43,.04) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(26,58,43,.04) 1px,
            transparent 1px
        );

    background-size: 120px 120px;

    opacity: .22;

    pointer-events: none;
}

.core-hero-inner {
    position: relative;
    z-index: 2;

    min-height: 100vh;
    padding: 130px clamp(22px, 5vw, 86px) 70px;

    display: grid;
    grid-template-columns: .9fr 1fr;
    align-items: center;

    gap: 24px;
}
.core-hero-left {
    position: relative;
    z-index: 4;
    max-width: 620px;
}

.core-feature-card p,
.core-service-block p,
.core-detail-header p,
.core-performance-head p,
.core-cta p {
    color: var(--core-muted);
    font-size: 15px;
    line-height: 1.8;
}

.core-robot-wrap {
    position: relative;
    z-index: 4;
    text-align: center;
    transition: transform .18s ease-out;
    will-change: transform;
    animation: robotFloat 5s ease-in-out infinite;
}

.core-robot-wrap::before {
    content: "";
    position: absolute;
    inset: 10% 0 0;
    z-index: -1;

    background: rgba(26,58,43,.12);

filter: blur(80px);
    pointer-events: none;
}

.core-robot-img {

    width: min(540px, 100%);
    max-height: 720px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 24px 48px rgba(0,0,0,.20)
        );
}

body.light-mode .core-robot-img {

    filter:
        drop-shadow(
            0 24px 40px rgba(0,0,0,.16)
        );
}



/* sementara kita sembunyikan konten kanan agar hero lebih clean */
.core-hero-right {
    display: none;
}

/* LIGHT MODE HERO */
body.light-mode .core-hero {
    background: #ffffff;
}

body.light-mode .core-grid {

    background-image:
        linear-gradient(
            rgba(15, 91, 66, .03) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(15, 91, 66, .03) 1px,
            transparent 1px
        );

    opacity: .42;
}

/* RESPONSIVE HERO */
@media (max-width: 991px) {
    .core-hero-inner {
        grid-template-columns: 1fr;
        padding-top: 130px;
        padding-bottom: 80px;
        text-align: center;
    }

    .core-hero-left {
        margin: 0 auto;
    }
}

@media (max-width: 575px) {
    .core-hero-inner {
        padding-left: 18px;
        padding-right: 18px;
    }

    .core-hero-left .core-metric-card {
        padding: 26px;
        border-radius: 24px;
    }
}

.core-mini-label {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: fit-content;

    padding: 12px 24px;

    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    backdrop-filter: blur(12px);

    transition: .3s ease;
}

/* =========================
   DARK MODE
========================= */

body.dark-mode .core-mini-label {

    background:
        rgba(35,196,131,.12);

    border:
        1px solid rgba(35,196,131,.28);

    color:
        #b8ffd9;

    box-shadow:
        0 8px 30px rgba(35,196,131,.08);
}

/* =========================
   LIGHT MODE
========================= */

body.light-mode .core-mini-label {

    background:
        rgba(15,91,66,.08);

    border:
        1px solid rgba(15,91,66,.14);

    color:
        #0f5b42;

    box-shadow:
        0 8px 24px rgba(15,91,66,.06);
}

.core-main-title {
    max-width: 720px;

    margin: 0 0 24px;

    color: var(--core-heading);

    font-size: clamp(42px, 4vw, 72px);

    line-height: .92;

    font-weight: 850;

    letter-spacing: -.04em;

    margin-bottom: 32px;
    text-wrap: balance;
}

.core-hero-desc {
    max-width: 520px;
    margin-top: 18px;

    color: var(--core-muted);

    font-size: 16px;
    line-height: 1.8;
}

.core-hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;

    margin-top: 42px;

    flex-wrap: wrap;
}

.core-link-btn {

    color: var(--core-heading);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .06em;

    padding-bottom: 6px;

    border-bottom:
        1px solid rgba(26,58,43,.28);

    transition: .3s ease;
    display: inline-flex;
align-items: center;
height: 50px;
opacity: .88;
}
.core-link-btn:hover {
    opacity: 1;
}
.core-link-btn::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -7px;

    width: 100%;
    height: 1px;

    background: currentColor;

    opacity: .45;
}
body.light-mode .core-link-btn {
    color: #102018;
}

@media (max-width: 991px) {
    .core-hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .core-hero-actions {
        justify-content: center;
    }
}
/* ========================================
   SECTION SYSTEM
======================================== */

.core-intro,
.core-performance,
.core-details,
.core-cta {
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

/* CONTENT LAYER */
.core-intro .container-fluid,
.core-performance .container-fluid,
.core-details .container-fluid,
.core-cta .container-fluid {
    position: relative;
    z-index: 2;
}

/* ========================================
   HEADINGS
======================================== */

.core-section-heading,
.core-performance-head,
.core-detail-header {
    margin-bottom: 48px;
}

.core-section-heading h2,
.core-performance-head h2,
.core-detail-header h2,
.core-cta h2 {
    max-width: 980px;

    color: var(--core-heading);

    font-size: clamp(42px, 5vw, 92px);
    line-height: .92;

    font-weight: 700;
    letter-spacing: -.06em;
}

.heading-meta,
.core-performance-head {
    display: flex;
    justify-content: space-between;
    gap: 34px;
}

.heading-meta span,
.core-performance-head p,
.core-detail-header p {
    color: var(--core-muted);
    line-height: 1.8;
}
/* ========================================
   ICON SYSTEM
======================================== */

.core-icon {
    width: 58px;
    height: 58px;

    margin-bottom: 28px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            var(--core-green-light),
            var(--core-green)
        );

    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.18),
        0 12px 28px rgba(35,196,131,.18);
}

.core-icon i {
    color: #ffffff;
    font-size: 24px;
}

/* ========================================
   DETAIL SECTION
======================================== */

.core-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
}

.core-accordion {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.core-accordion-item {
    padding: 24px 28px;

    border-radius: var(--core-radius);

    border: 1px solid var(--core-border);

    background:
        linear-gradient(
            145deg,
            var(--core-panel-strong),
            var(--core-panel)
        );

    display: flex;
    justify-content: space-between;
    gap: 24px;

    backdrop-filter: blur(24px);

    transition: var(--core-transition);
}

.core-accordion-item.active {
    background:
        linear-gradient(
            145deg,
            var(--core-green),
            var(--core-green-dark)
        );
}

.core-accordion-item.active h4,
.core-accordion-item.active p {
    color: #ffffff;
}

.core-accordion-item h4 {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
}

.core-accordion-item p {
    margin-top: 12px;
}

/* ========================================
   SERVICE BLOCK
======================================== */

.core-service-block {
    position: relative;

    min-height: 280px;

    overflow: hidden;

    padding: 38px;

    border-radius: var(--core-radius);

    border: 1px solid var(--core-border);

    background:
        linear-gradient(
            145deg,
            var(--core-panel-strong),
            var(--core-panel)
        );

    backdrop-filter: blur(24px);

    box-shadow: var(--core-shadow);

    transition: var(--core-transition);
}

.core-service-block:hover {
    transform: translateY(-10px);

    border-color:
        rgba(35,196,131,.28);
}

.core-service-block::after {
    content: "";

    position: absolute;

    right: 20px;
    top: 24px;

    width: 220px;
    height: 120px;

    border-top:
        1px solid rgba(255,255,255,.08);

    border-right:
        1px solid rgba(255,255,255,.08);

    transform: skewX(-30deg);
}

/* ========================================
   BUTTON
======================================== */

.core-btn {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 30px;

    border-radius: 999px;

    font-weight: 700;

    text-decoration: none;

    transition: .3s ease;
}

/* DARK MODE */

body.dark-mode .core-btn {

    background:
        #23c483;

    color:
        #02150d;

    box-shadow:
        0 10px 30px rgba(35,196,131,.22);
}

/* LIGHT MODE */

body.light-mode .core-btn {

    background:
        #0f5b42;

    color:
        #ffffff;

    box-shadow:
        0 10px 24px rgba(15,91,66,.14);
}
.core-btn:hover {
    background: #244c39;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow:
    0 10px 30px rgba(26,58,43,.18);
}
/* ========================================
   REVEAL ANIMATION
======================================== */

.reveal-up {
    opacity: 0;
    transform: translateY(34px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal-up.show {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: .12s;
}

.delay-2 {
    transition-delay: .24s;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {

    .core-intro,
    .core-performance,
    .core-details,
    .core-cta {
        padding: 90px 0;
    }

    .core-detail-header,
    .core-performance-head {
        display: block;
    }

    .heading-meta {
        flex-direction: column;
    }

    .core-section-heading h2,
    .core-performance-head h2,
    .core-detail-header h2,
    .core-cta h2 {
        font-size: clamp(42px, 12vw, 64px);
    }

    .core-feature-card,
    .core-service-block,
    .core-accordion-item {
        border-radius: 24px;
    }
}

/* ========================================
   NAVBAR - PREMIUM FLOATING
======================================== */

.nova-navbar {

    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);

    width: calc(100% - 36px);
    max-width: 1360px;
    min-height: 64px;

    z-index: 9999;

    border-radius: var(--core-pill);

    border: 1px solid rgba(255,255,255,.05);

    background: rgba(7, 18, 13, .66);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow: var(--core-shadow);

    transition: var(--core-transition);
}
.nova-navbar.scrolled {
    top: 10px;

    background:
        rgba(2, 4, 3, .86);

    border-color:
        rgba(255, 255, 255, .12);
}

.nova-navbar .container-fluid {

    min-height: 64px;

    padding: 0 24px;

    display: flex;
    align-items: center;
}
/* BRAND */
.nova-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--core-heading) !important;

    font-size: 15px;
    font-weight: 950;
    letter-spacing: .04em;
}

.brand-logo {
    width: 38px;
    height: 38px;

    border-radius: 50%;

    background: #1a3a2b;

    box-shadow:
        0 10px 24px rgba(26,58,43,.16);
}

.brand-text strong {
    color: var(--core-heading);
    font-size: 15px;
    font-weight: 950;
}

.brand-text small {
    display: none;
}

/* NAV LINKS */
.navbar-nav {
    gap: 6px;
}

.navbar-nav .nav-link {
    padding: 10px 16px !important;

    border-radius: var(--core-pill);

    color: rgba(255, 255, 255, .74) !important;

    font-size: 12px;
    font-weight: 850;
    letter-spacing: .08em;
    transition: var(--core-transition);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(26,58,43,.22);
    color: #ffffff !important;
}

/* NAV ACTIONS */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* LANGUAGE + THEME BUTTON */
.lang-btn,
.theme-toggle {

    width: 38px;
    height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 !important;

    border-radius: 50% !important;

    border: 1px solid rgba(255,255,255,.08);

    background: rgba(255,255,255,.04);

    color: #ffffff !important;

    font-size: 12px;
    font-weight: 900;

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    transition:
        background .3s ease,
        border-color .3s ease,
        transform .2s ease,
        opacity .3s ease;
}

/* HOVER */
.lang-btn:hover,
.theme-toggle:hover {

    transform: translateY(-2px);

    background: rgba(26,58,43,.28);

    border-color: rgba(26,58,43,.35);

    color: #ffffff !important;
}

/* ACTIVE */
.lang-btn.active {

    background: #1a3a2b;

    border-color: #1a3a2b;

    color: #ffffff !important;
}

/* SMALL CTA BUTTON */
.nova-btn-sm {

    position: relative;
    overflow: hidden;

    min-height: 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 18px !important;

    border-radius: var(--core-pill) !important;

    border: 1px solid rgba(255,255,255,.06);

    background: #1a3a2b;

    color: #ffffff !important;

    font-size: 12px;
    font-weight: 950;

    letter-spacing: .06em;

    transition:
        transform .25s ease,
        background .3s ease,
        box-shadow .3s ease,
        opacity .3s ease;
}

/* BUTTON HOVER */
.nova-btn-sm:hover {

    background: #244c39;

    color: #ffffff !important;

    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(26,58,43,.20);
}

/* LIGHT MODE */
body.light-mode .lang-btn,
body.light-mode .theme-toggle {

    border: 1px solid rgba(26,58,43,.08);

    background: rgba(26,58,43,.03);

    color: #102018 !important;
}

body.light-mode .lang-btn:hover,
body.light-mode .theme-toggle:hover {

    background: rgba(26,58,43,.08);

    border-color: rgba(26,58,43,.16);

    color: #102018 !important;
}

body.light-mode .lang-btn.active {

    background: #1a3a2b;

    border-color: #1a3a2b;

    color: #ffffff !important;
}

body.light-mode .nova-btn-sm {

    border: 1px solid rgba(26,58,43,.08);

    background: #1a3a2b;

    color: #ffffff !important;
}

body.light-mode .nova-btn-sm:hover {

    background: #244c39;

    box-shadow:
        0 10px 30px rgba(26,58,43,.14);
}
/* LIGHT MODE NAVBAR */
body.light-mode .nova-navbar {

    background: rgba(255,255,255,.94);

    border-color:
    rgba(26,58,43,.08);

    box-shadow:
        0 12px 40px rgba(26,58,43,.08);
}

body.light-mode .nova-navbar.scrolled {
    background:
        rgba(255, 255, 255, .90);
}

body.light-mode .nova-brand,
body.light-mode .brand-text strong {
    color: #102018 !important;
}

body.light-mode .navbar-nav .nav-link {
    color: rgba(16, 32, 24, .72) !important;
}

body.light-mode .navbar-nav .nav-link:hover,
body.light-mode .navbar-nav .nav-link.active {
    background:
        rgba(15, 91, 66, .10);

    color: var(--core-green) !important;
}

/* MOBILE NAVBAR */
@media (max-width: 991px) {
    .nova-navbar {
        top: 12px;

        width: calc(100% - 24px);

        border-radius: 24px;
    }

    .navbar-toggler {
        border: 1px solid var(--core-border);
        border-radius: 14px;

        padding: 8px 10px;

        box-shadow: none !important;
    }

    .navbar-toggler:focus {
        box-shadow: none !important;
    }

    .navbar-collapse {
        margin-top: 16px;
        padding: 18px;

        border-radius: 22px;

        background:
            rgba(2, 4, 3, .86);

        border:
            1px solid rgba(255, 255, 255, .08);
    }

    body.light-mode .navbar-collapse {
        background:
            rgba(255, 255, 255, .92);

        border-color:
            rgba(15, 91, 66, .14);
    }

    .navbar-nav {
        gap: 4px;
    }

    .navbar-nav .nav-link {
        padding: 12px 14px !important;
    }

    .nav-actions {
        width: 100%;
        margin-top: 14px;

        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .nova-btn-sm {
        width: 100%;
        margin-top: 6px;
    }
}

/* ========================================
   COREBOT INNER PAGE
======================================== */

.core-page-hero {
    position: relative;
    min-height: 72vh;
    padding-top: 150px;
    padding-bottom: 90px;
    background: #020403;
    overflow: hidden;
}

.core-page-content {
    position: relative;
    z-index: 2;
    max-width: 1120px;
}

.core-page-label {
    display: inline-flex;
    margin-bottom: 26px;
    color: var(--core-green-light);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .18em;
}

.core-page-content h1 {
    color: var(--core-green);
    font-size: clamp(58px, 9vw, 128px);
    line-height: .86;
    letter-spacing: -.1em;
    font-weight: 700;
}

.core-page-content p {
    max-width: 620px;
    margin-top: 28px;
    color: var(--core-muted);
    font-size: 16px;
    line-height: 1.8;
}

/* ========================================
   COREBOT CONTACT PAGE
======================================== */

.core-contact-section {
    padding: 110px 0;
    background: #020403;
}

.core-contact-info,
.core-contact-form {
    height: 100%;
    padding: 38px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.07);
    background:
        linear-gradient(145deg,
        rgba(255,255,255,.045),
        rgba(255,255,255,.012));
}

.core-contact-info h3 {
    color: #fff;
    font-size: 28px;
    font-weight: 950;
    margin-bottom: 18px;
}

.core-contact-info p {
    color: var(--core-muted);
    line-height: 1.8;
    margin-bottom: 32px;
}

.core-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    color: #fff;
    font-weight: 700;
}

.core-contact-item i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--core-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.core-contact-form label {
    color: #fff;
    font-weight: 800;
    margin-bottom: 8px;
}

.core-contact-form .form-control {
    border-radius: 14px;
    min-height: 54px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    color: #fff;
}

.core-contact-form .form-control:focus {
    background: rgba(255,255,255,.06);
    border-color: var(--core-green-light);
    box-shadow: 0 0 0 .2rem rgba(35,196,131,.18);
    color: #fff;
}

.core-contact-form .form-control::placeholder {
    color: rgba(255,255,255,.45);
}

/* ========================================
   PRODUCTS PAGE LIGHT MODE FIX
======================================== */

body.light-mode .core-page-hero,
body.light-mode .products-page,
body.light-mode .products-section,
body.light-mode .product-section {
    background:
        radial-gradient(circle at top left, rgba(35,196,131,.16), transparent 30%),
        radial-gradient(circle at bottom right, rgba(15,91,66,.08), transparent 34%),
        #f4f7f2 !important;

    color: #102018 !important;
}

body.light-mode .core-page-content h1,
body.light-mode .core-page-content h2,
body.light-mode .core-page-content h3,
body.light-mode .core-page-content p {
    color: #102018 !important;
}

body.light-mode .core-page-label {
    color: var(--core-green-light) !important;
}
body.light-mode .core-robot-wrap::before {
    background: rgba(26,58,43,.035) !important;
    filter: blur(45px) !important;
}

body.light-mode .core-grid {
    background-image:
        linear-gradient(rgba(26,58,43,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26,58,43,.035) 1px, transparent 1px);

    opacity: .22;
}
body.light-mode .hero-marquee-track span {
    color: rgba(26,58,43,.12) !important;
}
@keyframes robotFloat {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}
/* ========================================
   MODERN SECTION FLOW SEPARATION
======================================== */

.core-intro,
.core-details,
.core-performance,
.core-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

/* LIGHT MODE */
body.light-mode .core-intro {
    background: #ffffff !important;
}

body.light-mode .core-details {
    background: #eef5f1 !important;
}

body.light-mode .core-performance {
    background: #ffffff !important;
}

body.light-mode .core-cta {
    background: #1a3a2b !important;
}

/* DARK MODE */
body.dark-mode .core-intro {
    background: #0f1713 !important;
}

body.dark-mode .core-details {
    background: #14231b !important;
}

body.dark-mode .core-performance {
    background: #0b120f !important;
}

body.dark-mode .core-cta {
    background: #1a3a2b !important;
}

/* SOFT CUT EFFECT */
.core-details::after,
.core-performance::after,
.core-cta::after {
    content: "";
    position: absolute;
    left: -10%;
    top: -80px;

    width: 120%;
    height: 160px;

    background: inherit;

    transform: rotate(-2deg);
    transform-origin: left center;

    z-index: -1;
}

/* AMBIENT DIFFERENCE */
.core-details::before,
.core-performance::before,
.core-cta::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(26,58,43,.16),
            transparent 32%
        );

    pointer-events: none;
    z-index: 0;
}

body.dark-mode .core-details::before,
body.dark-mode .core-performance::before,
body.dark-mode .core-cta::before {
    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(255,255,255,.045),
            transparent 32%
        );
}
/* ========================================
   CINEMATIC CONTENT WIDTH
======================================== */

.core-hero .container-fluid,
.core-intro .container-fluid,
.core-details .container-fluid,
.core-performance .container-fluid,
.core-cta .container-fluid {

    width: 100%;

    max-width: 1380px;

    margin-left: auto;
    margin-right: auto;

    padding-left: 48px !important;
    padding-right: 48px !important;
}

/* ========================================
   SECTION REDESIGN - CLEAN TITLE STACK
======================================== */

.core-section-heading,
.core-performance-head,
.core-detail-header {
    display: block !important;
    max-width: 860px;
    margin-bottom: 54px;
}

.core-section-heading h2,
.core-performance-head h2,
.core-detail-header h2,
.core-cta h2 {
    max-width: 860px;

    font-size: clamp(34px, 3.8vw, 62px) !important;
    line-height: 1.02 !important;

    letter-spacing: -.045em !important;
    font-weight: 900 !important;

    margin-bottom: 20px;
}

.core-section-heading p,
.core-performance-head p,
.core-detail-header p,
.core-cta p,
.heading-meta {
    max-width: 620px;

    font-size: 16px;
    line-height: 1.8;

    color: var(--core-muted);
}

/* khusus intro karena deskripsinya pakai heading-meta */
.heading-meta {
    display: block !important;
}

.heading-meta span {
    display: block;
    max-width: 620px;
}

.heading-meta span + span {
    margin-top: 4px;
}

/* jarak card setelah heading */
.core-intro .row,
.core-performance .row,
.core-details .core-accordion,
.core-cta .core-btn {
    margin-top: 28px;
}

/* CTA lebih rapi */
.core-cta h2 {
    margin-bottom: 20px;
}

.core-cta p {
    margin-bottom: 30px;
}

/* MOBILE */
@media (max-width: 768px) {
    .core-section-heading h2,
    .core-performance-head h2,
    .core-detail-header h2,
    .core-cta h2 {
        font-size: clamp(32px, 10vw, 48px) !important;
    }
}
/* ========================================
   CLEAN PREMIUM FEATURE CARD
======================================== */

.core-feature-card {

    position: relative;

    min-height: 290px;

    padding: 38px;

    border-radius: 28px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background: #07110d;

    border:
        1px solid rgba(35,196,131,.12);

    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

/* CARD AKTIF / HIGHLIGHT */

.core-feature-card.active {

    background: #0d3325;

    border:
        1px solid rgba(35,196,131,.24);

    box-shadow:
        0 18px 50px rgba(35,196,131,.08);
}

/* HOVER */

.core-feature-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(35,196,131,.22);
}

/* ICON */

.core-feature-icon {

    width: 58px;
    height: 58px;

    margin-bottom: 28px;

    border-radius: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.03);

    border:
        1px solid rgba(255,255,255,.05);

    font-size: 22px;

    color: #23c483;
}

/* TITLE */

.core-feature-card h3 {

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.2;

    font-weight: 850;

    letter-spacing: -.03em;
}

/* DESC */

.core-feature-card p {

    margin: 0;

    color: rgba(255,255,255,.72);

    font-size: 15px;

    line-height: 1.9;
}
/* ========================================
   FEATURE CARD - LIGHT MODE
======================================== */

body.light-mode .core-feature-card {

    background: #ffffff;

    border:
        1px solid rgba(15,91,66,.10);

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

/* ACTIVE CARD */

body.light-mode .core-feature-card.active {

    background: #f3fbf7;

    border:
        1px solid rgba(35,196,131,.20);

    box-shadow:
        0 18px 40px rgba(35,196,131,.08);
}

/* HOVER */

body.light-mode .core-feature-card:hover {

    transform: translateY(-6px);

    border-color:
        rgba(35,196,131,.25);

    box-shadow:
        0 20px 45px rgba(0,0,0,.06);
}

/* ICON */

body.light-mode .core-feature-icon {

    background:
        rgba(35,196,131,.08);

    border:
        1px solid rgba(35,196,131,.10);

    color: #146b4d;
}

/* TITLE */

body.light-mode .core-feature-card h3 {

    color: #07110d;
}

/* DESCRIPTION */

body.light-mode .core-feature-card p {

    color: #5f7068;
}
/* ========================================
   FORCE GLOBAL FONT FINAL
======================================== */

* {
    font-family: 'Inter', Arial, sans-serif !important;
}

h1,
h2,
.core-main-title,
.core-section-heading h2,
.core-performance-head h2,
.core-detail-header h2,
.core-cta h2,
.core-page-content h1,
.footer-brand h3 {
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: -.04em !important;
}

.navbar-nav .nav-link,
.nova-brand,
.brand-text strong,
.lang-btn,
.theme-toggle,
.nova-btn-sm,
.core-btn,
.core-feature-card h3,
.core-service-block h3,
.core-accordion-item h4,
.footer-column h4 {
    font-family: 'Inter', Arial, sans-serif !important;
    text-transform: none !important;
    letter-spacing: -.01em !important;
}

p,
a,
span,
small,
.core-feature-card p,
.core-service-block p,
.core-accordion-item p,
.footer-desc,
.footer-column a {
    font-family: 'Inter', Arial, sans-serif !important;
    font-weight: 400 !important;
    letter-spacing: -.01em !important;
}





.finance-admin-page{
    min-height:100vh;
    width:100%;
    margin:0;
    padding:0;
    overflow:hidden;
    background:
    radial-gradient(circle at top left,
    rgba(26,58,43,.08),
    transparent 35%),
    #ffffff;
    font-family:'Playfair Display',serif;
}

.finance-admin-shell{
    width:100%;
    min-height:100vh;
    display:grid;
    grid-template-columns:280px 1fr;
    background:#f8f7f2;
    overflow:hidden;
}

/* =========================
   SIDEBAR
========================= */

.finance-sidebar{
    background:#ffffff;
    border-right:1px solid rgba(26,58,43,.08);
    padding:38px 26px;
    display:flex;
    flex-direction:column;
}

.finance-brand{
    display:flex;
    align-items:center;
    gap:12px;
    color:#1a3a2b;
    margin-bottom:52px;
}

.finance-brand strong{
    font-size:18px;
    font-weight:700;
}

.brand-icon{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#1a3a2b;
    color:#fff;
    display:grid;
    place-items:center;
    font-size:18px;
}

.finance-menu{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.finance-menu a{
    text-decoration:none;
    color:#6d7b72;
    padding:16px 18px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:14px;
    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:500;
    transition:.3s ease;
}

.finance-menu a.active,
.finance-menu a:hover{
    background:#eef4f0;
    color:#073d29;
}

.finance-sidebar-actions{
    margin-top:28px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.finance-side-btn{
    border:none;
    background:#eceee7;
    color:#073d29;
    padding:15px 18px;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:12px;
    font-family:'Inter',sans-serif;
    font-size:14px;
    transition:.3s ease;
}

.finance-side-btn:hover{
    background:#1a3a2b;
    color:#fff;
}

.finance-lang{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
}

.finance-lang a{
    text-decoration:none;
    background:#eceee7;
    color:#073d29;
    text-align:center;
    padding:13px;
    border-radius:16px;
    font-family:'Inter',sans-serif;
    font-size:13px;
    font-weight:600;
    transition:.3s ease;
}

.finance-lang a:hover{
    background:#073d29;
    color:#fff;
}

.finance-admin-user{
    margin-top:auto;
    display:flex;
    align-items:center;
    gap:14px;
    padding-top:30px;
}

.user-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:#0b4a31;
    color:#fff;
    display:grid;
    place-items:center;
    font-weight:700;
    font-family:'Inter',sans-serif;
}

.finance-admin-user strong{
    display:block;
    color:#073d29;
    font-size:15px;
    font-family:'Inter',sans-serif;
}

.finance-admin-user span{
    display:block;
    color:#7a857d;
    font-size:12px;
    font-family:'Inter',sans-serif;
    margin-top:2px;
}

/* =========================
   MAIN
========================= */

.finance-main{
    padding:48px 52px;
}

/* =========================
   TOPBAR
========================= */

.finance-topbar{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    margin-bottom:42px;
}

.finance-label{
    display:inline-block;
    font-family:'Inter',sans-serif;
    font-size:11px;
    letter-spacing:1.6px;
    color:#0b4a31;
    margin-bottom:16px;
}

.finance-topbar h1{
    font-size:clamp(56px,5vw,92px);
    line-height:.92;
    color:#073d29;
    margin:0;
    letter-spacing:-2px;
}

.finance-topbar p{
    margin-top:18px;
    font-family:'Inter',sans-serif;
    color:#6f7c74;
    font-size:16px;
}

.finance-btn{
    text-decoration:none;
    background:#073d29;
    color:#fff;
    padding:18px 28px;
    border-radius:999px;
    font-family:'Inter',sans-serif;
    font-size:14px;
    font-weight:600;
    transition:.3s ease;
}

.finance-btn:hover{
    background:#244c39;
    color:#fff;
}

/* =========================
   STATS
========================= */

.finance-stats{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
    margin-bottom:24px;
}

.finance-stat-card{
    background:#fff;
    border-radius:28px;
    padding:32px;
    min-height:170px;
    border:1px solid rgba(26,58,43,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.03);
}

.finance-stat-card span{
    display:block;
    color:#738077;
    font-size:14px;
    font-family:'Inter',sans-serif;
}

.finance-stat-card h2{
    margin:18px 0 10px;
    font-size:56px;
    line-height:1;
    color:#073d29;
}

.finance-stat-card p{
    margin:0;
    color:#7a857d;
    font-size:14px;
    font-family:'Inter',sans-serif;
}

.finance-stat-card.green{
    background:#1a3a2b;
}

.finance-stat-card.green span,
.finance-stat-card.green h2,
.finance-stat-card.green p{
    color:#fff;
}

/* =========================
   GRID
========================= */

.finance-grid{
    display:grid;
    grid-template-columns:1.45fr .9fr;
    gap:24px;
    margin-bottom:24px;
}

.finance-card{
    background:#fff;
    border-radius:30px;
    padding:34px;
    border:1px solid rgba(8,55,36,.06);
    box-shadow:0 10px 30px rgba(0,0,0,.03);
}

.card-head{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:20px;
}

.finance-card h3{
    margin-top:6px;
    color:#073d29;
    font-size:52px;
    line-height:1;
}

.finance-card span{
    font-family:'Inter',sans-serif;
    color:#738077;
    font-size:13px;
}

.month-badge{
    background:#f0f1eb;
    padding:10px 16px;
    border-radius:999px;
    font-family:'Inter',sans-serif;
    font-size:13px;
}

/* =========================
   GAUGE
========================= */

.finance-gauge{
    min-height:280px;
    display:grid;
    place-items:center;
}

.gauge-circle{
    width:260px;
    height:130px;
    border-radius:260px 260px 0 0;
    border:34px solid #d5dacf;
    border-bottom:0;
    position:relative;
    text-align:center;
    padding-top:48px;
}

.gauge-circle::before{
    content:"";
    position:absolute;
    inset:-34px;
    border-radius:260px 260px 0 0;
    border:34px solid #1a3a2b;
    border-bottom:0;
    clip-path:inset(0 42% 0 0);
}

.gauge-circle h4{
    margin:0;
    color:#073d29;
    font-size:52px;
}

.finance-progress{
    height:14px;
    background:#eaede5;
    border-radius:999px;
    overflow:hidden;
}

.finance-progress div{
    height:100%;
    width:72%;
    background:#1a3a2b;
    border-radius:inherit;
}

/* =========================
   DARK CARD
========================= */

.dark-card{
    background:#004b2d;
    color:#fff;
}

.dark-card span,
.dark-card h3{
    color:#fff;
}

.dark-card h3{
    font-size:28px;
    line-height:1.2;
    margin-top:14px;
}

.dark-card-box{
    margin-top:48px;
    background:rgba(255,255,255,.12);
    border-radius:24px;
    padding:28px;
}

.dark-card-box strong{
    display:block;
    font-size:60px;
    line-height:1;
    margin-bottom:10px;
}

/* =========================
   TABLE
========================= */

.finance-table-card{
    background:#fff;
    border-radius:30px;
    padding:34px;
    border:1px solid rgba(8,55,36,.06);
    box-shadow:0 10px 30px rgba(0,0,0,.03);
}

.table-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-bottom:24px;
}

.table-top h3{
    font-size:34px;
    color:#073d29;
    margin:0;
}

.table-top p{
    margin-top:8px;
    color:#738077;
    font-family:'Inter',sans-serif;
}

.finance-table{
    margin:0;
    font-family:'Inter',sans-serif;
}

.finance-table thead th{
    border-bottom:1px solid #e8ece3;
    color:#738077;
    font-weight:600;
    padding:18px;
}

.finance-table tbody td{
    padding:20px 18px;
    border-bottom:1px solid #eef1ea;
    color:#1f3429;
}

/* =========================
   PREMIUM DARK MODE
========================= */

body.dark-mode .finance-admin-page{
    background:#050505 !important;
}

/* SHELL */

body.dark-mode .finance-admin-shell{
    background:#050505 !important;
}

/* SIDEBAR */

body.dark-mode .finance-sidebar{
    background:#0b0b0b !important;
    border-color:rgba(255,255,255,.06) !important;
}

/* MAIN AREA */

body.dark-mode .finance-main{
    background:#050505 !important;
}

/* CARD */

body.dark-mode .finance-stat-card,
body.dark-mode .finance-card,
body.dark-mode .finance-table-card{
    background:#101010 !important;
    border:1px solid rgba(255,255,255,.06) !important;
    box-shadow:none !important;
}

/* ACTIVE MENU */

body.dark-mode .finance-menu a.active,
body.dark-mode .finance-menu a:hover{
    background:#161616 !important;
    color:#ffffff !important;
}

/* MODE + LANG BUTTON */

body.dark-mode .finance-side-btn,
body.dark-mode .finance-lang a{
    background:#141414 !important;
    border:1px solid rgba(255,255,255,.05) !important;
    color:#ffffff !important;
}

/* HOVER */

body.dark-mode .finance-side-btn:hover,
body.dark-mode .finance-lang a:hover{
    background:#1a3a2b !important;
}

/* GREEN CARD */

body.dark-mode .finance-stat-card.green,
body.dark-mode .dark-card{
    background:#1a3a2b !important;
}

/* INNER BOX */

body.dark-mode .dark-card-box{
    background:rgba(255,255,255,.08) !important;
}

/* TEXT */

body.dark-mode .finance-topbar h1,
body.dark-mode .finance-card h3,
body.dark-mode .finance-stat-card h2,
body.dark-mode .table-top h3,
body.dark-mode .gauge-circle h4,
body.dark-mode .finance-brand,
body.dark-mode .finance-admin-user strong,
body.dark-mode .finance-menu a,
body.dark-mode .finance-side-btn,
body.dark-mode .finance-lang a,
body.dark-mode .finance-table tbody td{
    color:#ffffff !important;
}

/* SOFT TEXT */

body.dark-mode .finance-topbar p,
body.dark-mode .finance-card span,
body.dark-mode .finance-stat-card span,
body.dark-mode .finance-stat-card p,
body.dark-mode .table-top p,
body.dark-mode .finance-admin-user span,
body.dark-mode .finance-label,
body.dark-mode .finance-table thead th{
    color:#9f9f9f !important;
}

/* PROGRESS */

body.dark-mode .finance-progress{
    background:#1b1b1b !important;
}

/* GAUGE */

body.dark-mode .gauge-circle{
    border-color:#2a2a2a !important;
}

body.dark-mode .gauge-circle::before{
    border-color:#1a3a2b !important;
}
html {
    scroll-behavior: smooth;
}
#home,
#about,
#products,
#services,
#contact {
    scroll-margin-top: 100px;
}
.contact-hero {
    position: relative;
    min-height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 150px 0 90px;
    background:
        radial-gradient(circle at 20% 20%, rgba(41, 118, 82, .28), transparent 34%),
        radial-gradient(circle at 80% 30%, rgba(255, 255, 255, .08), transparent 28%),
        linear-gradient(135deg, #07130e, #10251b 55%, #06100b);
}

.contact-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 980px;
}

.contact-label,
.panel-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    color: #d8f5e5;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(18px);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.contact-hero h1 {
    max-width: 980px;
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 7vw, 96px);
    line-height: .9;
    font-weight: 800;
    letter-spacing: -4px;
    text-transform: uppercase;
}

.contact-hero p {
    max-width: 650px;
    margin-top: 26px;
    color: rgba(255, 255, 255, .68);
    font-size: 18px;
    line-height: 1.8;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    pointer-events: none;
}

.contact-orb-1 {
    width: 340px;
    height: 340px;
    right: -90px;
    top: 120px;
    background: rgba(40, 120, 82, .26);
}

.contact-orb-2 {
    width: 180px;
    height: 180px;
    left: 10%;
    bottom: 10%;
    background: rgba(255, 255, 255, .08);
}

.contact-modern-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(circle at top right, rgba(27, 79, 55, .2), transparent 34%),
        #07130e;
}

.contact-modern-grid {
    display: grid;
    grid-template-columns: .9fr 1.2fr;
    gap: 28px;
    align-items: stretch;
}

.contact-info-panel,
.contact-form-panel {
    position: relative;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: linear-gradient(145deg, rgba(255, 255, 255, .09), rgba(255, 255, 255, .035));
    backdrop-filter: blur(24px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .34);
}

.contact-info-panel {
    padding: 42px;
    overflow: hidden;
}

.contact-info-panel::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -100px;
    bottom: -100px;
    border-radius: 50%;
    background: rgba(40, 120, 82, .26);
    filter: blur(18px);
}

.contact-info-panel h2 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: #ffffff;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: -2px;
}

.contact-info-panel p {
    position: relative;
    z-index: 1;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .66);
    line-height: 1.8;
}

.contact-channel-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 16px;
}

.contact-channel {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px;
    border-radius: 22px;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .35s ease;
}

.contact-channel:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .1);
    border-color: rgba(180, 255, 210, .32);
}

.channel-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 16px;
    color: #dfffea;
    background: rgba(42, 125, 84, .35);
}

.contact-channel small {
    display: block;
    margin-bottom: 3px;
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-channel strong {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
}

.contact-form-panel {
    padding: 44px;
}

.contact-form-panel label {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form-panel .form-control {
    min-height: 58px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    color: #ffffff;
    background: rgba(255, 255, 255, .065);
    box-shadow: none;
    padding: 15px 18px;
}

.contact-form-panel textarea.form-control {
    resize: none;
}

.contact-form-panel .form-control::placeholder {
    color: rgba(255, 255, 255, .35);
}

.contact-form-panel .form-control:focus {
    border-color: rgba(190, 255, 215, .5);
    background: rgba(255, 255, 255, .09);
    box-shadow: 0 0 0 4px rgba(42, 125, 84, .18);
}

.contact-submit-btn {
    width: 100%;
    min-height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 0;
    border-radius: 999px;
    color: #07130e;
    background: #ffffff;
    font-weight: 800;
    letter-spacing: .5px;
    transition: .35s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-3px);
    color: #07130e;
    background: #dfffea;
    box-shadow: 0 18px 45px rgba(204, 255, 225, .18);
}

.contact-alert {
    border: 1px solid rgba(116, 255, 178, .25);
    border-radius: 20px;
    background: rgba(39, 120, 81, .2);
    color: #dfffea;
}

/* LIGHT MODE */
body.light-mode .contact-hero {
    background:
        radial-gradient(circle at 20% 20%, rgba(26, 58, 43, .16), transparent 34%),
        radial-gradient(circle at 80% 30%, rgba(26, 58, 43, .08), transparent 28%),
        linear-gradient(135deg, #ffffff, #f4f1e9 60%, #e9e2d3);
}

body.light-mode .contact-modern-section {
    background:
        radial-gradient(circle at top right, rgba(26, 58, 43, .12), transparent 34%),
        #f4f1e9;
}

body.light-mode .contact-label,
body.light-mode .panel-badge {
    color: #1a3a2b;
    border-color: rgba(26, 58, 43, .18);
    background: rgba(255, 255, 255, .65);
}

body.light-mode .contact-hero h1,
body.light-mode .contact-info-panel h2 {
    color: #10251b;
}

body.light-mode .contact-hero p,
body.light-mode .contact-info-panel p {
    color: rgba(16, 37, 27, .68);
}

body.light-mode .contact-info-panel,
body.light-mode .contact-form-panel {
    border-color: rgba(26, 58, 43, .13);
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 28px 70px rgba(26, 58, 43, .12);
}

body.light-mode .contact-channel {
    background: rgba(26, 58, 43, .045);
    border-color: rgba(26, 58, 43, .1);
}

body.light-mode .channel-icon {
    color: #ffffff;
    background: #1a3a2b;
}

body.light-mode .contact-channel small {
    color: rgba(16, 37, 27, .5);
}

body.light-mode .contact-channel strong,
body.light-mode .contact-form-panel label {
    color: #10251b;
}

body.light-mode .contact-form-panel .form-control {
    color: #10251b;
    border-color: rgba(26, 58, 43, .12);
    background: rgba(255, 255, 255, .78);
}

body.light-mode .contact-form-panel .form-control::placeholder {
    color: rgba(16, 37, 27, .38);
}

body.light-mode .contact-submit-btn {
    color: #ffffff;
    background: #1a3a2b;
}

body.light-mode .contact-submit-btn:hover {
    color: #ffffff;
    background: #10251b;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .contact-modern-grid {
        grid-template-columns: 1fr;
    }

    .contact-hero {
        min-height: auto;
        padding: 135px 0 70px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px;
        border-radius: 28px;
    }
}

@media (max-width: 575px) {
    .contact-hero h1 {
        letter-spacing: -2px;
    }

    .contact-modern-section {
        padding: 70px 0;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 24px;
    }
}
.nova-navbar .nav-link {
    position: relative;
    color: rgba(255, 255, 255, .65);
    transition: .3s ease;
}

.nova-navbar .nav-link.active {
    color: #ffffff;
}

.nova-navbar .nav-link.active::after {
    width: 100%;
    opacity: 1;
}

/* CONTACT PAGE CONTAINER FIX */

.contact-container {
    max-width: 1240px;
    margin: 0 auto;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

/* HERO */
.contact-hero-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

/* FORM SECTION */
.contact-modern-grid {
    max-width: 1180px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 42px;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .contact-modern-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding-left: 22px !important;
        padding-right: 22px !important;
    }
}
/* CONTACT HERO DESCRIPTION FIX */
.contact-hero p {
    max-width: 720px;
    margin: 28px auto 0;

    color: rgba(255, 255, 255, .72);

    font-size: 17px;
    line-height: 1.9;

    text-align: center;
    letter-spacing: -.01em;
}

body.light-mode .contact-hero p {
    color: rgba(16, 32, 24, .68);
}




/* ========================================
   CLEAN PRIMARY FOOTER
======================================== */

.vici-footer {
    position: relative;
    padding: 110px 0 38px;
    background: #07110d;
    color: #ffffff;
    overflow: hidden;
}

.footer-container {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 1.35fr .9fr;
    gap: 70px;
    align-items: start;
}

.footer-brand-area h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(48px, 6vw, 76px);
    line-height: .9;
    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600;
    letter-spacing: -.05em;
}

.footer-brand-area p {
    max-width: 330px;
    color: rgba(255,255,255,.62);
    line-height: 1.8;
}

.footer-menu-area {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px;
}

.footer-column h4,
.footer-newsletter h4 {
    margin-bottom: 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
}

.footer-column a {
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    text-decoration: none;
    transition: .25s ease;
}

.footer-column a:hover {
    color: #23c483;
}

.footer-newsletter form {
    display: flex;
    gap: 8px;
    padding: 5px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.08);
}

.footer-newsletter input {
    width: 100%;
    border: 0;
    outline: 0;
    padding: 0 14px;
    color: #ffffff;
    background: transparent;
    font-size: 13px;
}

.footer-newsletter input::placeholder {
    color: rgba(255,255,255,.45);
}

.footer-newsletter button {
    border: 0;
    padding: 10px 18px;
    border-radius: 999px;
    color: #ffffff;
    background: #1a3a2b;
    font-size: 12px;
    font-weight: 800;
}

.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.footer-socials a {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: rgba(255,255,255,.08);
    text-decoration: none;
    transition: .25s ease;
}

.footer-socials a:hover {
    background: #1a3a2b;
}

.footer-bottom {
    margin-top: 70px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    color: rgba(255,255,255,.5);
    font-size: 12px;
    text-decoration: none;
}

.footer-bottom div {
    display: flex;
    gap: 24px;
}

/* LIGHT MODE */
body.light-mode .vici-footer {
    background: #f4f7f2;
    color: #102018;
}

body.light-mode .footer-brand-area h3,
body.light-mode .footer-column h4,
body.light-mode .footer-newsletter h4 {
    color: #102018;
}

body.light-mode .footer-brand-area p,
body.light-mode .footer-column a,
body.light-mode .footer-bottom p,
body.light-mode .footer-bottom a {
    color: #63746b;
}

body.light-mode .footer-newsletter form {
    background: #ffffff;
    border-color: rgba(26,58,43,.12);
}

body.light-mode .footer-newsletter input {
    color: #102018;
}

body.light-mode .footer-newsletter input::placeholder {
    color: rgba(16,32,24,.45);
}

body.light-mode .footer-newsletter button,
body.light-mode .footer-socials a:hover {
    background: #1a3a2b;
    color: #ffffff;
}

body.light-mode .footer-socials a {
    color: #1a3a2b;
    background: rgba(26,58,43,.08);
}

body.light-mode .footer-bottom {
    border-top-color: rgba(26,58,43,.12);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-menu-area {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .footer-menu-area {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .footer-newsletter form {
        flex-direction: column;
        border-radius: 18px;
    }

    .footer-newsletter input {
        min-height: 42px;
    }
}
/* FREE CONSULTATION */

.footer-consult-desc {
    margin: 14px 0 0;
    color: rgba(255,255,255,.58);
    font-size: 14px;
    line-height: 1.8;
}

.footer-consult-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-width: 160px;
    height: 48px;

    padding: 0 22px;

    border-radius: 999px;

    background: #1a3a2b;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition: .25s ease;
}

.footer-consult-btn:hover {
    transform: translateY(-2px);
    background: #245c40;
}

/* LIGHT MODE */

body.light-mode .footer-consult-desc {
    color: #63746b;
}

body.light-mode .footer-consult-btn {
    background: #1a3a2b;
    color: #ffffff;
}

/* ========================================
   HERO BACKGROUND RUNNING TEXT
======================================== */

.hero-marquee-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 52%;

    transform: translateY(-50%);

    width: 100%;
    overflow: hidden;

    z-index: 1;
    pointer-events: none;
}

.hero-marquee-track {
    display: flex;
    width: max-content;
    white-space: nowrap;

    animation: heroMarqueeMove 60s linear infinite;
}

.hero-marquee-track span {
    flex: 0 0 auto;

    padding-right: 90px;

    color: rgba(255, 255, 255, .055);

    font-size: clamp(82px, 13vw, 220px);
    line-height: 1;

    font-family: 'Cormorant Garamond', serif !important;
    font-weight: 600;
    letter-spacing: -.07em;

    white-space: nowrap;
}

body.light-mode .hero-marquee-track span {
    color: rgba(26, 58, 43, .10) !important;
}

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

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

/* ADMIN LOGIN PAGE */
.admin-login-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 140px 0 80px;
    background:
        radial-gradient(circle at 20% 20%, rgba(35,196,131,.13), transparent 32%),
        linear-gradient(135deg, #07110d, #0f1713);
}

.admin-login-container {
    max-width: 1180px;
    margin: 0 auto;
    padding-left: 32px !important;
    padding-right: 32px !important;
}

.admin-login-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .8fr;
    gap: 70px;
    align-items: center;
}

.admin-login-label {
    display: inline-flex;
    margin-bottom: 24px;
    padding: 10px 18px;
    border-radius: 999px;
    color: #b8ffd9;
    background: rgba(35,196,131,.1);
    border: 1px solid rgba(35,196,131,.24);
    font-size: 12px;
    font-weight: 800;
}

.admin-login-copy h1 {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-family: 'Cormorant Garamond', serif !important;
    font-size: clamp(58px, 7vw, 108px);
    line-height: .88;
    letter-spacing: -.06em;
}

.admin-login-copy p {
    max-width: 520px;
    margin-top: 26px;
    color: rgba(255,255,255,.68);
    font-size: 17px;
    line-height: 1.8;
}

.admin-login-card {
    padding: 38px;
    border-radius: 32px;
    background: rgba(255,255,255,.065);
    border: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(22px);
    box-shadow: 0 30px 80px rgba(0,0,0,.3);
}

.admin-login-card-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.admin-login-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    color: #ffffff;
    background: #1a3a2b;
}

.admin-login-card-head h3 {
    margin: 0;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
}

.admin-login-card-head span {
    color: rgba(255,255,255,.55);
    font-size: 14px;
}

.admin-form-group {
    margin-bottom: 20px;
}

.admin-form-group label {
    margin-bottom: 10px;
    color: rgba(255,255,255,.72);
    font-size: 13px;
    font-weight: 700;
}

.admin-login-card .form-control {
    min-height: 56px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.07);
    color: #ffffff;
    padding: 14px 18px;
    box-shadow: none;
}

.admin-login-card .form-control::placeholder {
    color: rgba(255,255,255,.34);
}

.admin-login-card .form-control:focus {
    border-color: rgba(35,196,131,.5);
    background: rgba(255,255,255,.1);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(35,196,131,.12);
}

.admin-login-btn {
    width: 100%;
    min-height: 58px;
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 0;
    background: #23c483;
    color: #02150d;
    font-weight: 800;
}

.admin-login-btn:hover {
    background: #ffffff;
    color: #07110d;
}

/* LIGHT MODE */
body.light-mode .admin-login-page {
    background:
        radial-gradient(circle at 20% 20%, rgba(26,58,43,.1), transparent 32%),
        #f4f7f2;
}

body.light-mode .admin-login-label {
    color: #1a3a2b;
    background: rgba(26,58,43,.08);
    border-color: rgba(26,58,43,.14);
}

body.light-mode .admin-login-copy h1,
body.light-mode .admin-login-card-head h3 {
    color: #102018;
}

body.light-mode .admin-login-copy p,
body.light-mode .admin-login-card-head span,
body.light-mode .admin-form-group label {
    color: #63746b;
}

body.light-mode .admin-login-card {
    background: rgba(255,255,255,.78);
    border-color: rgba(26,58,43,.12);
    box-shadow: 0 24px 60px rgba(26,58,43,.1);
}

body.light-mode .admin-login-card .form-control {
    background: #ffffff;
    border-color: rgba(26,58,43,.12);
    color: #102018;
}

body.light-mode .admin-login-card .form-control::placeholder {
    color: rgba(16,32,24,.38);
}

body.light-mode .admin-login-btn {
    background: #1a3a2b;
    color: #ffffff;
}

@media (max-width: 991px) {
    .admin-login-shell {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .admin-login-copy {
        text-align: center;
    }

    .admin-login-copy p {
        margin-left: auto;
        margin-right: auto;
    }
}
/* LOGIN TOPBAR */
.admin-login-topbar {
    position: absolute;
    top: 34px;
    right: 42px;
    z-index: 30;

    display: flex;
    align-items: center;
    gap: 14px;
}

.admin-login-topbar .lang-switch {
    display: flex;
    align-items: center;
    gap: 10px;
}

.admin-login-topbar .lang-btn,
.admin-login-topbar .theme-toggle {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.1);

    background: rgba(255,255,255,.06);

    color: rgba(255,255,255,.72);

    text-decoration: none;
    transition: .25s ease;
}

.admin-login-topbar .lang-btn.active {
    background: #1a3a2b;
    color: #ffffff;
    border-color: #1a3a2b;
}

.admin-login-topbar .theme-toggle:hover,
.admin-login-topbar .lang-btn:hover {
    transform: translateY(-2px);
}

/* LIGHT MODE */
body.light-mode .admin-login-topbar .lang-btn,
body.light-mode .admin-login-topbar .theme-toggle {
    background: rgba(255,255,255,.75);
    border-color: rgba(26,58,43,.1);
    color: #1a3a2b;
}

body.light-mode .admin-login-topbar .lang-btn.active {
    background: #1a3a2b;
    color: #ffffff;
}

@media (max-width: 768px) {
    .admin-login-topbar {
        top: 20px;
        right: 20px;
    }
}
.core-product-image {
    width: 100%;
    height: 160px;
    margin-bottom: 28px;
    border-radius: 22px;
    overflow: hidden;
    background: rgba(255,255,255,.05);
}

.core-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================
   FINANCE ADMIN SEARCH
========================= */

.finance-search-form {
    margin-bottom: 28px;
}

.finance-search-box {
    position: relative;
    width: 100%;
}

.finance-search-box i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #738077;
    font-size: 16px;
}

.finance-search-box input {
    width: 100%;
    min-height: 58px;
    padding: 0 20px 0 52px;
    border-radius: 18px;
    border: 1px solid rgba(26,58,43,.10);
    background: #f8f7f2;
    color: #1f3429;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    outline: none;
    transition: .3s ease;
}

.finance-search-box input::placeholder {
    color: #8a968e;
}

.finance-search-box input:focus {
    background: #ffffff;
    border-color: rgba(26,58,43,.25);
    box-shadow: 0 0 0 4px rgba(26,58,43,.08);
}

/* =========================
   MESSAGE TABLE FIX
========================= */

.finance-table .message-cell {
    max-width: 320px;
    white-space: normal;
    line-height: 1.6;
}

.finance-delete-btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 14px;
    background: #b62424;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease;
}

.finance-delete-btn:hover {
    background: #e64141;
    transform: translateY(-2px);
}

/* =========================
   PAGINATION
========================= */

.finance-pagination nav {
    display: flex;
    justify-content: flex-end;
}

.finance-pagination .pagination {
    margin: 0;
    gap: 8px;
}

.finance-pagination .page-item .page-link {
    border: 1px solid rgba(26,58,43,.10);
    background: #f8f7f2;
    color: #073d29;
    border-radius: 12px;
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    box-shadow: none;
}

.finance-pagination .page-item.active .page-link,
.finance-pagination .page-item .page-link:hover {
    background: #1a3a2b;
    border-color: #1a3a2b;
    color: #ffffff;
}

.finance-pagination .page-item.disabled .page-link {
    opacity: .45;
    pointer-events: none;
}

/* =========================
   DARK MODE FIX
========================= */

body.dark-mode .finance-search-box i {
    color: #9f9f9f;
}

body.dark-mode .finance-search-box input {
    background: #141414 !important;
    border-color: rgba(255,255,255,.06) !important;
    color: #ffffff !important;
}

body.dark-mode .finance-search-box input::placeholder {
    color: #777777 !important;
}

body.dark-mode .finance-search-box input:focus {
    background: #101010 !important;
    border-color: rgba(255,255,255,.14) !important;
    box-shadow: 0 0 0 4px rgba(255,255,255,.04) !important;
}

body.dark-mode .finance-table .message-cell {
    color: #d8d8d8 !important;
}

body.dark-mode .finance-pagination .page-item .page-link {
    background: #141414 !important;
    border-color: rgba(255,255,255,.06) !important;
    color: #ffffff !important;
}

body.dark-mode .finance-pagination .page-item.active .page-link,
body.dark-mode .finance-pagination .page-item .page-link:hover {
    background: #1a3a2b !important;
    border-color: #1a3a2b !important;
    color: #ffffff !important;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .finance-table-card {
        padding: 24px;
    }

    .table-top {
        flex-direction: column;
        gap: 18px;
    }

    .finance-table .message-cell {
        min-width: 260px;
    }
}
/* =========================
   FIX FINANCE TABLE DARK MODE
========================= */

body.dark-mode .finance-table {
    --bs-table-bg: transparent !important;
    --bs-table-color: #ffffff !important;
    --bs-table-border-color: rgba(255,255,255,.08) !important;

    background: transparent !important;
    color: #ffffff !important;
}

body.dark-mode .finance-table thead,
body.dark-mode .finance-table tbody,
body.dark-mode .finance-table tr,
body.dark-mode .finance-table th,
body.dark-mode .finance-table td {
    background: #101010 !important;
    color: #d8d8d8 !important;
    border-color: rgba(255,255,255,.08) !important;
    box-shadow: none !important;
}

body.dark-mode .finance-table thead th {
    color: #9f9f9f !important;
    background: #101010 !important;
    border-bottom: 1px solid rgba(255,255,255,.10) !important;
}

body.dark-mode .finance-table tbody td {
    color: #d8d8d8 !important;
    background: #101010 !important;
}

body.dark-mode .finance-table tbody tr:hover td {
    background: #151515 !important;
}

body.dark-mode .finance-table-card .table-responsive {
    background: #101010 !important;
    border-radius: 18px;
    overflow: hidden;
}
/* =========================
   ADMIN DASHBOARD ANALYTICS
========================= */

.dashboard-stats-4 {
    grid-template-columns: repeat(4, 1fr);
}

.analytics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.analytics-card {
    min-height: 320px;
}

.analytics-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 26px;
}

.analytics-head span {
    display: block;
    margin-bottom: 8px;
    color: #738077;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.analytics-head h3 {
    margin: 0;
    color: #073d29;
    font-size: 34px;
    line-height: 1;
}

.analytics-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.analytics-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    border-radius: 18px;
    background: #f8f7f2;
    border: 1px solid rgba(26,58,43,.08);
}

.analytics-item strong {
    display: block;
    color: #073d29;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
}

.analytics-item span {
    display: block;
    margin-top: 4px;
    color: #738077;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
}

.analytics-item small {
    padding: 8px 12px;
    border-radius: 999px;
    background: #1a3a2b;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    white-space: nowrap;
}

.analytics-empty {
    margin: 0;
    color: #738077;
    font-family: 'Inter', sans-serif;
}

/* DARK MODE */

body.dark-mode .analytics-head h3,
body.dark-mode .analytics-item strong {
    color: #ffffff !important;
}

body.dark-mode .analytics-head span,
body.dark-mode .analytics-item span,
body.dark-mode .analytics-empty {
    color: #9f9f9f !important;
}

body.dark-mode .analytics-item {
    background: #141414 !important;
    border-color: rgba(255,255,255,.06) !important;
}

body.dark-mode .analytics-item small {
    background: #1a3a2b !important;
    color: #ffffff !important;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
    .dashboard-stats-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .analytics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .dashboard-stats-4 {
        grid-template-columns: 1fr;
    }

    .analytics-item {
        flex-direction: column;
        align-items: flex-start;
    }
}
.finance-btn.small {
    padding: 12px 20px;
    font-size: 13px;
}

/* =========================
   ELEGANT SMALL MODE BUTTON
========================= */

/* Website public theme button */
.theme-toggle {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;

    border-radius: 999px !important;

    border: 1px solid rgba(255,255,255,.10) !important;
    background: rgba(255,255,255,.045) !important;

    color: #ffffff !important;

    font-size: 13px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 0 !important;

    box-shadow: none !important;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition: .25s ease !important;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    background: rgba(26,58,43,.32) !important;
    border-color: rgba(35,196,131,.28) !important;
    color: #ffffff !important;
}

/* Light mode public theme button */
body.light-mode .theme-toggle {
    background: rgba(26,58,43,.045) !important;
    border-color: rgba(26,58,43,.12) !important;
    color: #102018 !important;
}

body.light-mode .theme-toggle:hover {
    background: #1a3a2b !important;
    border-color: #1a3a2b !important;
    color: #ffffff !important;
}


/* =========================
   ADMIN SIDEBAR MODE BUTTON
========================= */

.finance-side-btn {
    width: 38px !important;
    height: 38px !important;

    padding: 0 !important;

    border-radius: 14px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    background: rgba(26,58,43,.06) !important;
    border: 1px solid rgba(26,58,43,.10) !important;

    color: #1a3a2b !important;

    font-size: 14px !important;

    box-shadow: none !important;

    transition: .25s ease !important;
}

.finance-side-btn span,
.finance-side-btn small {
    display: none !important;
}

.finance-side-btn:hover {
    transform: translateY(-2px);
    background: #1a3a2b !important;
    border-color: #1a3a2b !important;
    color: #ffffff !important;
}

/* Dark mode admin sidebar button */
body.dark-mode .finance-side-btn {
    background: rgba(255,255,255,.045) !important;
    border-color: rgba(255,255,255,.08) !important;
    color: #ffffff !important;
}

body.dark-mode .finance-side-btn:hover {
    background: #1a3a2b !important;
    border-color: rgba(35,196,131,.28) !important;
    color: #ffffff !important;
}

/* Biar tombol mode admin tidak melebar full */
.finance-sidebar-actions {
    align-items: flex-start !important;
}

/* =========================
   SIDEBAR TOP ACTIONS
========================= */

.finance-sidebar-actions-top {
    margin-top: -12px !important;
    margin-bottom: 28px !important;

    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    flex-direction: row !important;
}

.finance-sidebar-actions-top .finance-side-btn {
    flex: 0 0 auto !important;
}

.finance-sidebar-actions-top .finance-lang {
    display: flex !important;
    grid-template-columns: unset !important;
    gap: 8px !important;
}

.finance-sidebar-actions-top .finance-lang a {
    width: 42px !important;
    height: 34px !important;

    padding: 0 !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border-radius: 14px !important;

    font-size: 12px !important;
    font-weight: 700 !important;
}

.finance-menu {
    margin-top: 0 !important;
}

/* =========================
   REAL DATA ADMIN OVERVIEW
========================= */

.overview-desc {
    max-width: 520px;
    margin-top: 10px;
    color: #738077;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
}

.finance-gauge-real {
    min-height: 210px;
    display: grid;
    place-items: center;
}

.gauge-circle-real {
    --value: 0;

    position: relative;

    width: 260px;
    height: 130px;

    border-radius: 260px 260px 0 0;

    overflow: hidden;

    background:
        conic-gradient(
            from 270deg at 50% 100%,
            #1a3a2b calc(var(--value) * 1.8deg),
            #2a2a2a 0deg 180deg,
            transparent 180deg
        );
}

.gauge-circle-real::after {
    content: "";

    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;

    height: 98px;

    border-radius: 220px 220px 0 0;

    background: #101010;
}

.gauge-inner {
    position: absolute;
    left: 50%;
    bottom: 0;
    z-index: 2;

    transform: translateX(-50%);

    width: 150px;
    height: 88px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gauge-inner h4 {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1;
}

.gauge-inner span {
    margin-top: 8px;
    color: #b8c4bd;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
}

.finance-progress-real {
    margin-top: 22px;
}

.finance-progress-real div {
    width: 0;
    transition: width .6s ease;
}

/* LIGHT MODE */

body.light-mode .overview-desc {
    color: #63746b;
}

body.light-mode .gauge-circle-real {
    background:
        conic-gradient(
            from 270deg at 50% 100%,
            #1a3a2b calc(var(--value) * 1.8deg),
            #dce4df 0deg 180deg,
            transparent 180deg
        );
}

body.light-mode .gauge-circle-real::after {
    background: #ffffff;
}

body.light-mode .gauge-inner h4 {
    color: #102018;
}

body.light-mode .gauge-inner span {
    color: #63746b;
}
/* =========================
   NAVBAR SIMPLE DROPDOWN FINAL
========================= */

.nova-dropdown-item {
    position: relative !important;
}

.nova-simple-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;

    width: 380px;
    max-width: calc(100vw - 32px);

    padding: 14px;

    border-radius: 24px;

    background: rgba(9, 20, 15, .96);
    border: 1px solid rgba(255,255,255,.08);

    box-shadow: 0 24px 70px rgba(0,0,0,.32);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-50%) translateY(10px);

    transition: .25s ease;

    z-index: 99999;
}

.nova-dropdown-item:hover .nova-simple-dropdown,
.nova-simple-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(-50%) translateY(0);
}

.nova-dropdown-head {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 8px 8px 14px;
    margin-bottom: 8px;

    border-bottom: 1px solid rgba(255,255,255,.07);
}

.nova-dropdown-head span {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    font-weight: 700;
}

.nova-dropdown-head a {
    color: #23c483;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
}

.nova-dropdown-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.nova-dropdown-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;

    padding: 12px;

    border-radius: 18px;

    color: #ffffff;
    text-decoration: none;

    background: rgba(255,255,255,.025);
    border: 1px solid transparent;

    transition: .25s ease;
}

.nova-dropdown-link:hover {
    background: rgba(26,58,43,.45);
    border-color: rgba(35,196,131,.16);

    transform: translateY(-2px);

    color: #ffffff;
}

.nova-dropdown-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 38px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 14px;

    background: rgba(35,196,131,.12);
    color: #23c483;

    font-size: 17px;
}

.nova-dropdown-text {
    min-width: 0;
}

.nova-dropdown-text strong {
    display: block;

    color: #ffffff;

    font-size: 13px;
    font-weight: 800;

    line-height: 1.25;
}

.nova-dropdown-text small {
    display: block;

    margin-top: 5px;

    color: rgba(255,255,255,.56);

    font-size: 12px;
    line-height: 1.5;
}

.nova-dropdown-empty {
    padding: 18px 12px;

    color: rgba(255,255,255,.58);

    font-size: 13px;
}

/* LIGHT MODE */

body.light-mode .nova-simple-dropdown {
    background: rgba(255,255,255,.96);
    border-color: rgba(26,58,43,.10);

    box-shadow: 0 24px 60px rgba(26,58,43,.14);
}

body.light-mode .nova-dropdown-head {
    border-bottom-color: rgba(26,58,43,.10);
}

body.light-mode .nova-dropdown-head span {
    color: #63746b;
}

body.light-mode .nova-dropdown-head a {
    color: #1a3a2b;
}

body.light-mode .nova-dropdown-link {
    color: #102018;
    background: rgba(26,58,43,.025);
}

body.light-mode .nova-dropdown-link:hover {
    background: rgba(26,58,43,.08);
    border-color: rgba(26,58,43,.12);

    color: #102018;
}

body.light-mode .nova-dropdown-icon {
    background: rgba(26,58,43,.08);
    color: #1a3a2b;
}

body.light-mode .nova-dropdown-text strong {
    color: #102018;
}

body.light-mode .nova-dropdown-text small {
    color: #63746b;
}

body.light-mode .nova-dropdown-empty {
    color: #63746b;
}

/* MOBILE */

@media (max-width: 991px) {
    .nova-dropdown-item {
        width: 100%;
    }

    .nova-simple-dropdown {
        position: static;

        width: 100%;
        max-width: 100%;

        margin-top: 8px;

        opacity: 1;
        visibility: visible;
        pointer-events: auto;

        transform: none;

        box-shadow: none;
    }

    .nova-dropdown-item:hover .nova-simple-dropdown {
        transform: none;
    }
}

/* =========================
   DROPDOWN HOVER FIX
========================= */

.nova-dropdown-item {
    position: relative !important;
}

/* area invisible agar cursor tidak kehilangan hover */
.nova-dropdown-item::after {
    content: "";
    position: absolute;

    left: 0;
    right: 0;
    top: 100%;

    height: 18px;

    background: transparent;
    pointer-events: auto;

    z-index: 99998;
}

/* turunkan jarak dropdown agar tidak putus hover */
.nova-simple-dropdown {
    top: calc(100% + 8px) !important;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-50%) translateY(8px) !important;

    transition:
        opacity .22s ease,
        visibility .22s ease,
        transform .22s ease !important;
}

/* tetap terbuka saat hover di menu atau dropdown */
.nova-dropdown-item:hover .nova-simple-dropdown,
.nova-dropdown-item:focus-within .nova-simple-dropdown,
.nova-simple-dropdown:hover {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;

    transform: translateX(-50%) translateY(0) !important;
}

/* pastikan navbar tidak memotong dropdown */
.nova-navbar,
.nova-navbar .container-fluid,
.navbar-collapse,
.navbar-nav {
    overflow: visible !important;
}

/* supaya dropdown muncul di atas elemen lain */
.nova-simple-dropdown {
    z-index: 999999 !important;
}
/* =========================
   ADMIN MODAL DARK MODE FIX
========================= */

body.dark-mode .modal-backdrop.show {
    opacity: .72 !important;
    background: #000000 !important;
}

body.dark-mode .modal-content {
    background: #101010 !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    color: #ffffff !important;

    box-shadow:
        0 30px 90px rgba(0,0,0,.55) !important;
}

body.dark-mode .modal-header,
body.dark-mode .modal-body,
body.dark-mode .modal-footer {
    background: transparent !important;
    color: #ffffff !important;
}

body.dark-mode .modal-title,
body.dark-mode .modal-content h5,
body.dark-mode .modal-content h4,
body.dark-mode .modal-content p,
body.dark-mode .modal-content label,
body.dark-mode .modal-content .form-label,
body.dark-mode .modal-content .form-check-label {
    color: #ffffff !important;
}

body.dark-mode .modal-content .text-muted,
body.dark-mode .modal-content small {
    color: #9f9f9f !important;
}

body.dark-mode .modal-content .form-control,
body.dark-mode .modal-content .form-select {
    background: #151515 !important;
    border: 1px solid rgba(255,255,255,.10) !important;
    color: #ffffff !important;

    border-radius: 14px !important;
    box-shadow: none !important;
}

body.dark-mode .modal-content .form-control::placeholder {
    color: #777777 !important;
}

body.dark-mode .modal-content .form-control:focus,
body.dark-mode .modal-content .form-select:focus {
    background: #181818 !important;
    border-color: rgba(35,196,131,.38) !important;
    color: #ffffff !important;

    box-shadow:
        0 0 0 4px rgba(35,196,131,.10) !important;
}

body.dark-mode .modal-content textarea.form-control {
    background: #151515 !important;
    color: #ffffff !important;
}

body.dark-mode .modal-content input[type="file"] {
    background: #151515 !important;
    color: #ffffff !important;
}

body.dark-mode .modal-content input[type="file"]::file-selector-button {
    background: #1a3a2b !important;
    color: #ffffff !important;

    border: none !important;
    border-right: 1px solid rgba(255,255,255,.10) !important;

    padding: 10px 14px !important;
    margin-right: 14px !important;
}

body.dark-mode .modal-content .form-check-input {
    background-color: #151515 !important;
    border-color: rgba(255,255,255,.18) !important;
}

body.dark-mode .modal-content .form-check-input:checked {
    background-color: #23c483 !important;
    border-color: #23c483 !important;
}

body.dark-mode .modal-content .btn-light {
    background: #181818 !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    color: #ffffff !important;
}

body.dark-mode .modal-content .btn-light:hover {
    background: #222222 !important;
    color: #ffffff !important;
}

body.dark-mode .modal-content .btn-close {
    filter: invert(1) grayscale(100%);
    opacity: .75;
}

body.dark-mode .modal-content .btn-close:hover {
    opacity: 1;
}

/* =========================
   ADMIN MODAL LIGHT MODE POLISH
========================= */

body.light-mode .modal-content {
    background: #ffffff !important;
    border: 1px solid rgba(26,58,43,.10) !important;
    color: #102018 !important;

    box-shadow:
        0 30px 90px rgba(26,58,43,.18) !important;
}

body.light-mode .modal-content .form-control,
body.light-mode .modal-content .form-select {
    border-radius: 14px !important;
    border: 1px solid rgba(26,58,43,.14) !important;
    box-shadow: none !important;
}

body.light-mode .modal-content .form-control:focus,
body.light-mode .modal-content .form-select:focus {
    border-color: rgba(26,58,43,.30) !important;
    box-shadow:
        0 0 0 4px rgba(26,58,43,.08) !important;
}

/* =========================
   ADMIN MODAL SHAPE
========================= */

.modal-content.rounded-5 {
    border-radius: 30px !important;
}

.modal-header {
    padding: 28px 32px 10px !important;
}

.modal-body {
    padding: 24px 32px !important;
}

.modal-footer {
    padding: 10px 32px 30px !important;
}

.modal-content label,
.modal-content .form-label {
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.modal-content .form-control {
    min-height: 48px;
    font-family: 'Inter', sans-serif;
}

.modal-content textarea.form-control {
    min-height: 110px;
}

.modal-content .finance-btn {
    min-height: 48px;
    padding: 0 26px;
}