/* =========================
   GLOBAL
========================= */
body {
    background: #f4f6fb;
    font-family: "Segoe UI", sans-serif;
}

.navbar-smart {

    position: sticky;
    top: 0;

    z-index: 9999;

    width: 100%;

    padding: 0;

    background:
        linear-gradient(135deg,
            rgba(255, 255, 255, .96),
            rgba(248, 250, 252, .96));

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(226, 232, 240, .9);

    box-shadow:
        0 2px 18px rgba(15, 23, 42, .04);

    transition: .3s ease;
}

/* CONTAINER */
.navbar-smart .container {

    min-height: 78px;
}

/* =========================================
   BRAND
========================================= */

.navbar-brand-smart {

    display: flex;
    align-items: center;

    gap: 12px;

    text-decoration: none !important;
}

.navbar-brand-smart img {

    width: 48px;
    height: 48px;

    object-fit: contain;
}

.navbar-brand-smart strong {

    display: block;

    font-size: 26px;
    font-weight: 800;

    line-height: 1;

    color: #0d4dfd;

    letter-spacing: -.8px;
}

.navbar-brand-smart small {

    display: block;

    margin-top: 3px;

    font-size: 11px;

    color: #64748b;

    font-weight: 500;
}

/* =========================================
   MENU
========================================= */

.navbar-smart .navbar-nav {

    align-items: center;

    gap: 6px;
}

.navbar-smart .nav-link {

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    height: 46px;

    padding: 0 18px !important;

    border-radius: 12px;

    color: #334155 !important;

    font-size: 15px;
    font-weight: 600;

    transition: all .25s ease;
}

/* HOVER */
.navbar-smart .nav-link:hover {

    color: #0d4dfd !important;

    background:
        rgba(13, 77, 253, .06);
}

/* ACTIVE */
.navbar-smart .nav-link.active {

    color: #0d4dfd !important;

    background:
        linear-gradient(135deg,
            rgba(13, 77, 253, .08),
            rgba(6, 182, 212, .08));

    font-weight: 700;
}

/* ACTIVE LINE */
.navbar-smart .nav-link.active::after {

    content: '';

    position: absolute;

    bottom: 4px;
    left: 50%;

    transform: translateX(-50%);

    width: 22px;
    height: 3px;

    border-radius: 20px;

    background:
        linear-gradient(135deg,
            #0d4dfd,
            #06b6d4);
}

/* =========================================
   DROPDOWN
========================================= */

.dropdown-modern {

    border: none;

    padding: 12px;

    border-radius: 18px;

    background: #fff;

    box-shadow:
        0 12px 40px rgba(15, 23, 42, .10);

    margin-top: 14px;
}

.dropdown-item-modern {

    display: flex;
    align-items: center;

    gap: 12px;

    padding: 12px 14px;

    border-radius: 12px;

    font-size: 14px;
    font-weight: 600;

    color: #334155;

    transition: .25s;
}

.dropdown-item-modern:hover {

    background:
        rgba(13, 77, 253, .06);

    color: #0d4dfd;

    transform: translateX(4px);
}

/* RW ICON */
.rw-icon {

    width: 24px;
    height: 24px;

    object-fit: contain;
}

/* =========================================
   LOGIN BUTTON
========================================= */

.btn-login-modern {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 46px;

    padding: 0 22px;

    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #0d4dfd,
            #06b6d4);

    color: #fff !important;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none !important;

    box-shadow:
        0 8px 24px rgba(13, 77, 253, .22);

    transition: .3s ease;
}

.btn-login-modern:hover {

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(13, 77, 253, .28);
}

/* =========================================
   TOGGLER
========================================= */

.navbar-toggler {

    width: 46px;
    height: 46px;

    border: none !important;

    border-radius: 12px;

    background:
        rgba(13, 77, 253, .08);

    color: #0d4dfd !important;

    outline: none !important;

    box-shadow: none !important;
}

.navbar-toggler i {

    font-size: 18px;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px) {

    .navbar-smart .container {

        min-height: 72px;
    }

    .navbar-collapse {

        margin-top: 16px;

        padding: 16px;

        border-top:
            1px solid #e2e8f0;
    }

    .navbar-smart .navbar-nav {

        align-items: stretch;

        gap: 8px;
    }

    .navbar-smart .nav-link {

        justify-content: flex-start;

        height: 50px;

        padding: 0 16px !important;
    }

    .navbar-smart .nav-link.active::after {

        display: none;
    }

    .dropdown-modern {

        margin-top: 10px;

        border:
            1px solid #e2e8f0;

        box-shadow: none;
    }

    .btn-login-modern {

        width: 100%;

        margin-top: 10px;
    }

    .navbar-brand-smart strong {

        font-size: 20px;
    }

    .navbar-brand-smart small {

        display: none;
    }
}

.infra-rw {
    width: 50px;
    height: 50px;
    background-color: #fff;
    border-radius: 50px;
    object-fit: contain;
    margin-right: 10px;
}


/* =========================================
   PRELOADER MODERN
========================================= */

#preloader-modern {

    position: fixed;

    inset: 0;

    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;

    overflow: hidden;

    background:
        linear-gradient(135deg,
            #eef4ff 0%,
            #f8fbff 50%,
            #ecfeff 100%);

    z-index: 999999;
}

/* =========================================
   ORB EFFECT
========================================= */

.loader-orb {

    position: absolute;

    border-radius: 50%;

    filter: blur(90px);

    opacity: .45;
}

.orb1 {

    width: 320px;
    height: 320px;

    background: #0d4dfd;

    top: -100px;
    left: -100px;
}

.orb2 {

    width: 260px;
    height: 260px;

    background: #06b6d4;

    bottom: -100px;
    right: -100px;
}

/* =========================================
   WRAPPER
========================================= */

.loader-wrapper {

    position: relative;

    z-index: 5;

    text-align: center;
}

/* =========================================
   LOGO WRAP
========================================= */

.loader-logo-wrap {

    position: relative;

    width: 140px;
    height: 140px;

    margin: 0 auto 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .75);

    backdrop-filter: blur(20px);

    box-shadow:
        0 20px 50px rgba(15, 23, 42, .08);

    animation: pulseLoader 2s infinite;
}

/* =========================================
   LOGO
========================================= */

.loader-logo {

    width: 82px;

    object-fit: contain;

    animation: floatLogo 3s ease-in-out infinite;
}


/* =========================================
   TEXT
========================================= */

.loader-title {

    font-size: 30px;

    font-weight: 800;

    letter-spacing: -.5px;

    color: #0f172a;

    margin-bottom: 6px;
}

.loader-subtitle {

    font-size: 14px;

    color: #64748b;

    margin: 0;
}

/* =========================================
   ANIMATION
========================================= */

@keyframes spinLoader {

    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatLogo {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulseLoader {

    0% {

        transform: scale(1);
    }

    50% {

        transform: scale(1.03);
    }

    100% {

        transform: scale(1);
    }
}

/* =========================================
   HERO DARK PREMIUM
========================================= */
.hero-pro {
    position: relative;
    overflow: hidden;
    padding: 10px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    color: #fff;

    background:
        url('../images/banner-about.png') center center / cover no-repeat;
}

/* Overlay */
.hero-pro::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(90deg,
            rgba(5, 15, 35, .90) 0%,
            rgba(5, 15, 35, .78) 30%,
            rgba(5, 15, 35, .55) 55%,
            rgba(5, 15, 35, .30) 75%,
            rgba(5, 15, 35, .12) 100%);
}

/* DOT MESH BACKGROUND ACCENT */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1.2px, transparent 1.2px);
    background-size: 30px 30px;
    opacity: 0.9;
    z-index: 1;
}

.hero-orb {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    filter: none !important;
    border-radius: 0 !important;
    background: none !important;
}

.orb-1 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(13, 77, 253, 0.08) 0%, rgba(13, 77, 253, 0.02) 100%) !important;
    border: 2px solid rgba(13, 77, 253, 0.4) !important;

    bottom: -40px;
    left: -40px;
    border-radius: 24px !important;
    transform: rotate(15deg);
    animation: geoFloat1 12s linear infinite;
}

.orb-2 {
    width: 0 !important;
    height: 0 !important;
    border-left: 140px solid transparent !important;
    border-right: 140px solid transparent !important;
    border-bottom: 240px solid rgba(0, 242, 254, 0.25) !important;

    position: absolute;
    top: 8%;
    right: 22%;
    transform: rotate(-25deg);
    animation: geoFloat2 16s ease-in-out infinite alternate;
}

.hero-pro::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        radial-gradient(circle at center,
            transparent 35%,
            rgba(0, 0, 0, .18) 100%);
}

@keyframes geoFloat1 {
    0% {
        transform: rotate(15deg) translate(0, 0);
    }

    50% {
        transform: rotate(195deg) translate(15px, -15px);
    }

    100% {
        transform: rotate(375deg) translate(0, 0);
    }
}

@keyframes geoFloat2 {
    0% {
        transform: rotate(-25deg) translateY(0px);
    }

    100% {
        transform: rotate(-15deg) translateY(-25px);
    }
}

@keyframes particleFloat {
    0% {
        transform: rotate(45deg) translateY(0);
        opacity: 0.3;
    }

    100% {
        transform: rotate(135deg) translateY(-20px);
        opacity: 0.8;
    }
}

.hero-content {
    position: relative;
    z-index: 5;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(13, 77, 253, 0.25);
    border: 1px solid rgba(13, 77, 253, 0.4);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(135deg, #38bdf8 0%, #0d4dfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 540px;
    margin-bottom: 36px;
}

/* BUTTONS STYLE */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 28px;
    border: none;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d4dfd 0%, #2563eb 100%);
    color: #fff !important;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(13, 77, 253, 0.3);
    transition: all 0.3s ease;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(13, 77, 253, 0.4);
}

.btn-outline-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 0 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-main:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
}

/* =========================================
   VISUAL CONTAINER & CARD STYLE
========================================= */
.hero-visual-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    margin: 0 0 0 auto;
    z-index: 5;
}

.hero-glass-card {
    padding: 40px;
    border-radius: 24px;

    background: rgba(10, 25, 45, .45);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border: 1px solid rgba(255, 255, 255, .15);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, .35);
}

.hero-logos-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.logo-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-box:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.logo-box img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-box.brand-logo {
    background: rgba(13, 77, 253, 0.15);
    border-color: rgba(13, 77, 253, 0.3);
}

.logo-box.brand-logo img {
    filter: drop-shadow(0 2px 8px rgba(13, 77, 253, 0.4));
}

/* =========================================
   CARD DETAILS & TEXT
========================================= */
.card-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 26px;
    letter-spacing: -0.5px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 18px;
    margin-top: 3px;
    width: 24px;
    text-align: center;
}

.info-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 0;
}

/* =========================================
   RESPONSIVE DESIGN (HP / TABLET)
========================================= */
@media(max-width: 991px) {
    .hero-visual-wrapper {
        margin: 50px auto 0 auto;
        /* Di mobile otomatis center grid */
    }

    .hero-glass-card {
        padding: 30px;
    }
}

.card-info-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 18px;
    margin-top: 3px;
    width: 24px;
    text-align: center;
}

.info-text h5 {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 13.5px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 0;
}

/* ANIMASI MELAYANG UNTUK LOGO SMARTKANG */
@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* MEDIA QUERY UNTUK MOBILE */
@media(max-width: 991px) {
    .hero-visual-wrapper {
        margin-top: 50px;
        align-items: center;
    }

    .hero-logos-container {
        justify-content: center;
    }

    .hero-brand-display {
        justify-content: center;
    }

    .hero-glass-card {
        text-align: left;
    }
}

.card-info-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -0.5px;
}

/* Baris isi fitur */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item:last-child {
    margin-bottom: 0;
}

/* Icon pembungkus kecil */
.info-icon {
    font-size: 20px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-text h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 0;
}

/* LOGO ATAS KANAN (OPSIONAL - Jika ingin tetap disematkan kecil di atas card) */
.hero-logos-floating {
    position: absolute;
    top: -60px;
    right: 0;
    display: flex;
    gap: 10px;
    opacity: 0.6;
}

.hero-logos-floating img {
    height: 32px;
    object-fit: contain;
}

/* =========================================
   RESPONSIVE DESIGN (HP & TABLET)
========================================= */
@media(max-width: 991px) {
    .hero-pro {
        padding: 120px 0 60px;
        text-align: center;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-title {
        font-size: 44px;
    }

    .hero-desc {
        font-size: 16px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 48px;
    }

    .hero-glass-card {
        padding: 30px;
        text-align: left;
        /* Biar list fitur di HP tetap rapi rata kiri */
    }

    .hero-logos-floating {
        display: none;
        /* Hilang di mobile biar ga sumpek */
    }
}

/* =========================================
   ABOUT SECTION PREMIUM LIGHT (PUTIH-BIRU)
========================================= */
.about-section {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* DEKORASI BLUEPRINT DI BACKGROUND */
.about-blueprint-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px dashed rgba(13, 77, 253, 0.15);
    border-radius: 50%;
    right: -100px;
    bottom: -50px;
    pointer-events: none;
}

/* =========================================
   SISI KIRI: ALUR KERJA / WORKFLOW
========================================= */
.about-workflow-box {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(13, 77, 253, 0.12);
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 50px rgba(13, 77, 253, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.workflow-badge {
    background: rgba(13, 77, 253, 0.08);
    color: #0d4dfd;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
}

.workflow-steps {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Garis putus-putus vertikal */
.workflow-steps::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-image: linear-gradient(to bottom, rgba(13, 77, 253, 0.3) 50%, transparent 50%);
    background-size: 2px 8px;
    z-index: 1;
}

.step-item {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateX(5px);
}

.step-number {
    width: 42px;
    height: 42px;
    background: #ffffff;
    border: 2px solid #0d4dfd;
    color: #0d4dfd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(13, 77, 253, 0.1);
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    background: #0d4dfd;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 77, 253, 0.3);
}

.step-content h5 {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

.step-content p {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 0;
}

/* =========================================
   SISI KANAN: ABOUT TEXT INSIDE PREMIUM CARD
========================================= */
.about-text-wrapper {
    position: relative;
    width: 100%;
    max-width: 540px;
    margin: 0 auto 0 0;
    z-index: 5;
}

.about-glass-card {
    width: 100%;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(13, 77, 253, 0.12);
    box-shadow: 0 25px 50px rgba(13, 77, 253, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.about-tagline {
    font-size: 12px;
    font-weight: 700;
    color: #0d4dfd;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: inline-block;
    background: rgba(13, 77, 253, 0.06);
    padding: 4px 10px;
    border-radius: 6px;
}

.about-title {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.about-title span {
    color: #0d4dfd;
}

.about-desc {
    font-size: 14.5px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 28px;
}

/* MINI INTERNAL CARDS */
.about-features-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.mini-feature-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid rgba(13, 77, 253, 0.06);
    padding: 16px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.mini-feature-card:hover {
    transform: translateY(-2px);
    border-color: rgba(13, 77, 253, 0.2);
    box-shadow: 0 10px 20px rgba(13, 77, 253, 0.04);
}

.mini-card-icon {
    width: 44px;
    height: 44px;
    background: rgba(13, 77, 253, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.mini-card-info h5 {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 2px;
}

.mini-card-info p {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.4;
}

/* =========================================
   RESPONSIVE DESIGN (HP & TABLET)
========================================= */
@media (max-width: 991px) {
    .about-section {
        padding: 60px 0;
    }

    .about-text-wrapper {
        margin: 40px auto 0 auto;
        /* Memberi jarak ke boks alur di atasnya saat di HP */
    }

    .about-glass-card {
        padding: 30px;
    }

    .about-title {
        font-size: 26px;
    }
}

/* =========================
   CARD MODERN (FIXED)
========================= */
.card-modern {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transition: 0.3s;
}

.card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* =========================================
   DASHBOARD MONITORING SECTION (LIGHT)
========================================= */
.dashboard-section {
    padding: 100px 0;
    background: #f8fafc;
    /* Latar belakang abu-abu sangat soft agar card putihnya menyala */
    position: relative;
}

.dashboard-tagline {
    font-size: 11px;
    font-weight: 700;
    color: #0d4dfd;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(13, 77, 253, 0.06);
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.dashboard-main-title {
    font-size: 34px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 14px;
}

.dashboard-subtitle {
    font-size: 15px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================
   4 CARD SUMMARY (PREMIUM FLAT STYLE)
========================================= */
.summary-card-modern {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.summary-card-body {
    display: flex;
    align-items: center;
    gap: 16px;
}

.summary-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.summary-content small {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    display: block;
    margin-bottom: 2px;
}

.summary-content h2 {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

/* INTERAKSI & VARIASI WARNA SOFT DASHBOARD */
.summary-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(13, 77, 253, 0.08);
}

/* Varian: Biru */
.status-blue {
    border-left: 4px solid #0d4dfd;
}

.status-blue .summary-icon-box {
    background: rgba(13, 77, 253, 0.08);
    color: #0d4dfd;
}

.status-blue:hover {
    border-color: #0d4dfd;
}

/* Varian: Hijau */
.status-green {
    border-left: 4px solid #10b981;
}

.status-green .summary-icon-box {
    background: rgba(16, 185, 129, 0.08);
    color: #10b981;
}

.status-green:hover {
    border-color: #10b981;
}

/* Varian: Orange */
.status-orange {
    border-left: 4px solid #f59e0b;
}

.status-orange .summary-icon-box {
    background: rgba(245, 158, 11, 0.08);
    color: #f59e0b;
}

.status-orange:hover {
    border-color: #f59e0b;
}

/* Varian: Ungu */
.status-purple {
    border-left: 4px solid #8b5cf6;
}

.status-purple .summary-icon-box {
    background: rgba(139, 92, 246, 0.08);
    color: #8b5cf6;
}

.status-purple:hover {
    border-color: #8b5cf6;
}


/* =========================================
   PROJECT KATEGORI CARD MODIFICATION
========================================= */
.dashboard-kategori-wrapper {
    margin-top: 20px;
}

.kategori-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin-bottom: 10px;
}

.card-modern.kategori-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.kategori-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 14px;
}

.kategori-name {
    font-size: 14px;
    font-weight: 700;
    color: #1e293b;
    letter-spacing: 0.3px;
}

.kategori-percentage-badge {
    font-size: 12px;
    font-weight: 700;
    color: #0d4dfd;
    background: rgba(13, 77, 253, 0.06);
    padding: 4px 10px;
    border-radius: 8px;
}

/* CUSTOM PROGRESS BAR */
.custom-progress-wrapper .progress {
    height: 8px;
    background-color: #f1f5f9;
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 16px;
}

.custom-progress-wrapper .progress-bar {
    background: linear-gradient(90deg, #0d4dfd, #00f2fe);
    /* Gradien biru cerah menawan */
    border-radius: 99px;
}

/* CARD FOOTER INFO STYLING */
.kategori-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px dashed #f1f5f9;
}

.volume-label {
    font-size: 12px;
    color: #94a3b8;
}

.volume-values {
    font-size: 13px;
    font-weight: 700;
    color: #334155;
}

.volume-values .divider {
    color: #cbd5e1;
    margin: 0 2px;
}

/* HOVER EFFECT KATEGORI CARD */
.card-modern.kategori-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(13, 77, 253, 0.06);
    border-color: rgba(13, 77, 253, 0.15);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .dashboard-main-title {
        font-size: 28px;
    }

    .summary-card-modern {
        padding: 16px;
    }

    .summary-content h2 {
        font-size: 22px;
    }

    .summary-icon-box {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}

/* =========================================
   PROJECT LIST SECTION STYLING
========================================= */
.project-section {
    padding: 10px 0 10px 0;
    background: #f8fafc;
}

.project-section-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.3px;
}

/* CARDS STRUCTURAL BASE */
.project-card-modern {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.04);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card-modern:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(13, 77, 253, 0.08);
    border-color: rgba(13, 77, 253, 0.12);
}

/* FOTO INSIDE CARD */
.project-image-wrapper {
    position: relative;
    height: 190px;
    overflow: hidden;
    background: #f1f5f9;
}

.main-project-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card-modern:hover .main-project-img {
    transform: scale(1.06);
}

.no-img-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #94a3b8;
    font-size: 13px;
}

.no-img-placeholder i {
    font-size: 24px;
}

.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.2), transparent);
}

/* BADGES NEW SYSTEM STATE */
.custom-status-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* CARD KONTEN */
.project-card-body {
    padding: 20px;
}

.project-main-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
    margin-bottom: 6px;
    height: 44px;
    /* Limit agar grid seragam tinggi meski judul beda panjang */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.project-meta-location {
    font-size: 12.5px;
    color: #64748b;
    margin-bottom: 18px;
}

/* PROGRESS BAR AT CARD */
.project-progress-container {
    padding-top: 12px;
    border-top: 1px dashed #f1f5f9;
}

.progress-info-text {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 6px;
}

.progress-info-text span {
    color: #94a3b8;
}

.progress-info-text strong {
    color: #0f172a;
}

.custom-bar-height {
    height: 6px !important;
    background-color: #f1f5f9;
    border-radius: 20px;
}

/* =========================================
   PREMIUM MODAL VIEW STYLING
========================================= */
.premium-modal-base {
    border-radius: 24px !important;
    overflow: hidden;
    background: #ffffff;
}

.premium-modal-header {
    background: #ffffff !important;
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 24px 30px !important;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.premium-modal-header .modal-title {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.close-premium-btn {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.close-premium-btn:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.premium-modal-body {
    padding: 30px !important;
    background: #f8fafc;
}

.timeline-section-title {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* REKREASI GRID HISTORI PROGRESS DI MODAL */
.progress-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.progress-history-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.04);
}

.history-img-box {
    height: 130px;
    background: #f1f5f9;
    overflow: hidden;
    position: relative;
}

.history-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: zoom-in;
    transition: filter 0.2s ease;
}

.history-img:hover {
    filter: brightness(0.9);
}

.history-no-img {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #cbd5e1;
}

.history-no-img i {
    font-size: 20px;
    margin-bottom: 4px;
}

.history-card-body {
    padding: 14px;
}

.history-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.history-vol-badge {
    font-size: 11px;
    font-weight: 700;
    color: #0d4dfd;
    background: rgba(13, 77, 253, 0.06);
    padding: 2px 8px;
    border-radius: 6px;
}

.history-date {
    font-size: 11px;
}

.history-desc-text {
    font-size: 12px;
    color: #475569;
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.grid-full-span {
    grid-column: 1 / -1;
}

/* DATA SPECIFICATION TABLE MODAL */
.info-table-wrapper {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.premium-spec-table {
    margin-bottom: 0;
}

.premium-spec-table td {
    padding: 14px 20px !important;
    font-size: 14px;
    border-color: #f1f5f9 !important;
    vertical-align: middle !important;
}

.spec-label {
    width: 30%;
    color: #64748b;
    font-weight: 600;
    background: #fafafa;
}

.spec-value {
    color: #1e293b;
}

/* FOOTER MODAL */
.premium-modal-footer {
    border-top: 1px solid #f1f5f9 !important;
    padding: 16px 30px !important;
}

.btn-light-close {
    background: #f1f5f9;
    color: #475569;
    border: none;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 10px;
    transition: 0.2s;
}

.btn-light-close:hover {
    background: #e2e8f0;
    color: #0f172a;
}

.btn-primary-go {
    background: #0d4dfd;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 10px;
    border: none;
    transition: 0.2s;
}

.btn-primary-go:hover {
    background: #023bdf;
    color: #ffffff;
    transform: translateY(-1px);
}

/* =========================================
   PALET RE-MAPPING WARNA STATUS BAR & BADGE
========================================= */
/* Draft */
.status-draft {
    background: #f1f5f9;
    color: #475569;
}

.bar-status-draft {
    background: #94a3b8;
}

.badge-status-inline.status-draft {
    background: #e2e8f0;
    color: #475569;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Berjalan */
.status-berjalan {
    background: rgb(255, 255, 255);
    color: #0284c7;
}

.bar-status-berjalan {
    background: linear-gradient(90deg, #38bdf8, #0284c7);
}

.badge-status-inline.status-berjalan {
    background: rgba(14, 165, 233, 0.1);
    color: #0284c7;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Selesai */
.status-selesai {
    background: rgb(255, 255, 255);
    color: #059669;
}

.bar-status-selesai {
    background: linear-gradient(90deg, #34d399, #059669);
}

.badge-status-inline.status-selesai {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

/* Pengajuan & Pengajuan Mulai */
.status-pengajuan,
.status-pengajuan-mulai {
    background: rgb(255, 255, 255);
    color: #d97706;
}

.bar-status-pengajuan,
.bar-status-pengajuan-mulai {
    background: #f59e0b;
}

.badge-status-inline.status-pengajuan {
    background: rgb(255, 255, 255);
    color: #d97706;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.status-terhambat,
.status-revisi {
    background: rgb(255, 255, 255);
    color: #dc2626;
}

.bar-status-terhambat,
.bar-status-revisi {
    background: #ef4444;
}

.badge-status-inline.status-terhambat {
    background: rgb(255, 255, 255);
    color: #dc2626;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
}

.image-modal-content-base {
    background: transparent !important;
    border: none !important;
    position: relative;
}

.image-preview-wrapper-box {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.image-preview-wrapper-box img {
    width: 100%;
    height: auto;
    display: block;
}

.image-modal-close-trigger {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.footer-modern-premium {
    background: #020c25;
    color: #94a3b8;
    padding: 45px 0 30px 0;
    border-top: 1px solid #1e293b;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.footer-logo-smartkang {
    height: 68px;
    width: auto;
    object-fit: contain;
}

.hero-logos-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.logo-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    min-width: 70px;
}

.logo-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.logo-box img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.footer-brand-text {
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 600px;
    color: #94a3b8;
}

.footer-divider-line {
    border-color: #334155;
    margin: 25px 0;
    opacity: 0.4;
}

.footer-bottom-flex {
    font-size: 12.5px;
    color: #64748b;
}

.footer-dev-link {
    color: #f8fafc !important;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-dev-link:hover {
    color: #3b82f6 !important;
    text-decoration: none;
}

/* RESPONSIVE TIMING */
@media (max-width: 576px) {
    .footer-bottom-flex {
        flex-direction: column !important;
        text-align: center;
        justify-content: center !important;
        gap: 12px !important;
    }

    .footer-modern-premium {
        padding: 35px 15px 25px 15px;
    }

    .logo-box {
        padding: 6px 12px;
    }

    .logo-box img {
        height: 28px;

    }
}

.image-modal-content-base {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    position: relative;
}

.image-preview-wrapper-box {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.3);
}

#modalImage {
    width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 14px;
    display: block;
}

.image-modal-close-trigger {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    font-size: 26px;
    font-weight: 300;
    line-height: 36px;
    text-align: center;
    z-index: 1055;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.2s ease;
}

.image-modal-close-trigger:hover {
    transform: scale(1.1) rotate(90deg);
    background: #f8fafc;
    color: #ef4444;

}

/* RESPONSIVE UNTUK SMARTPHONE */
@media (max-width: 768px) {
    .image-preview-wrapper-box {
        padding: 8px;
        border-radius: 16px;
    }

    #modalImage {
        max-height: 60vh;
        border-radius: 10px;
    }

    .image-modal-close-trigger {
        width: 36px;
        height: 36px;
        font-size: 22px;
        line-height: 32px;
        top: -10px;
        right: -10px;
    }
}

@media(max-width:768px) {

    .progress-grid {
        grid-template-columns: 1fr;
    }

    .progress-img {
        height: 250px;
    }

}


@media (max-width:768px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-modern {
        padding: 50px 15px;
    }

    .chart-wrapper {
        height: 220px;
    }
}

.card-animate {
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.card-animate:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, .125) !important;
}

.list-animate {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.list-animate:hover {
    transform: translateX(5px);
    background-color: #ffffff !important;
    border-color: #2e7d32 !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.08);
}

.box-tahun-animate {
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.box-tahun-animate:hover {
    transform: scale(1.03);
    background-color: #ffffff !important;
    border-color: #0369a1 !important;
    box-shadow: 0 4px 12px rgba(3, 105, 161, 0.08);
}

.cta-container-safe {
    width: 100%;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Box Card Utama */
.cta-compact-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.cta-compact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(13, 77, 253, 0.06);
    border-color: rgba(13, 77, 253, 0.15);
}

/* Ikon Mini */
.cta-compact-icon {
    width: 44px;
    height: 44px;
    background: #f1f5ff;
    color: #0d4dfd;
    font-size: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}

/* Tipografi */
.cta-compact-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.cta-compact-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 20px;
}

/* Tombol */
.btn-compact-action {
    background: #0d4dfd;
    color: #ffffff !important;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s ease;
}

.btn-compact-action:hover {
    background: #023bdf;
}

@media (max-width: 768px) {
    .cta-compact-card {
        padding: 24px 20px;
    }
}

/* CARD */
.laporan-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* SECTION LABEL */
.section-label {
    font-weight: 600;
    margin: 20px 0 10px;
    color: #4e73df;
}

/* INPUT MODERN */
.form-modern {
    border-radius: 12px;
    border: 1px solid #ddd;
    transition: 0.2s;
}

.form-modern:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 2px rgba(78, 115, 223, 0.1);
}

/* STATUS */
.small-status {
    font-size: 13px;
    border-radius: 10px;
}

/* BUTTON */
.btn-submit {
    background: linear-gradient(135deg, #4e73df, #1cc88a);
    border: none;
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.preview-wrapper {
    position: relative;
    display: inline-block;
}

.preview-remove {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #e74a3b;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.img-preview {
    max-width: 220px;
    max-height: 180px;
    width: auto;
    border: 1px solid #ddd;
    height: auto;
    border-radius: 12px;
    display: none;
    margin-top: 10px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.img-preview:hover {
    transform: scale(1.05);
    transition: 0.2s;
}

/* UPLOAD BOX */
.upload-box {
    border: 2px dashed #ddd;
    border-radius: 15px;
    padding: 20px;
    background: #fafafa;
}

/* BUTTON CUSTOM */
.btn-upload {
    display: inline-block;
    background: #4e73df;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-upload:hover {
    background: #2e59d9;
}

/* PREVIEW */
.preview-wrapper {
    position: relative;
    display: inline-block;
}

.img-preview {
    max-width: 200px;
    max-height: 160px;
    border-radius: 12px;
    display: none;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* CLOSE BUTTON */
.preview-remove {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #e74a3b;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    cursor: pointer;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.preview-remove:hover {
    background: #c0392b;
}