/* ===== BASE ===== */

html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: #ffffff;
    height: 100vh;
}

/* ===== WRAPPER ===== */
.page-container {
    /* ruang putih di sekitar hero (kanan/kiri/atas/bawah) */
    padding: 5px; /* ubah angka ini untuk memperbesar/mengecilkan margin putih */
    min-height: 100vh; /* latar halaman tetap putih */
    display: block;
    box-sizing: border-box;
}
/* ===== HERO CARD ===== */
.hero-card {
    background: linear-gradient(10deg, #000e30, #002a96);
    color: white;
    width: 100%;
    max-width: 1900px;
    margin: 0 auto;

    /* tinggi penuh layar biar di tengah vertikal */
    min-height: 99vh;

    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(6, 23, 62, 0.18),
        0 10px 30px rgba(6, 23, 62, 0.12);
    overflow: hidden;
    box-sizing: border-box;
    position: relative;

    /* Posisikan isi ke tengah sempurna */
    display: flex;
    align-items: center; /* tengah vertikal */
    justify-content: center; /* tengah horizontal */

    /* jarak di sekitar card biar kelihatan rounded */
    padding: 60px 60px;
}

/* ===== HERO CONTENT ===== */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center; /* tengah horizontal */
    justify-content: center; /* tengah vertikal di hero */
    text-align: center; /* rata tengah teks */
    gap: 20px;
    max-width: 900px;
    width: 100%;
}

.rating {
    color: #c3ff5b;
    font-weight: 600;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin: 0;
}

.subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-top: 10px;
    max-width: 600px;
}

/* ===== TOMBOL ===== */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-card {
        min-height: 90vh;
        padding: 40px 24px;
    }

    .hero-content {
        text-align: center;
        align-items: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .hero-card {
        min-height: 80vh;
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 1.9rem;
        line-height: 1.2;
    }
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.4s ease;
}

/* Kontainer dalam navbar */
.nav-inner {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 20px 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    transition: all 0.4s ease;
}

/* Saat di-scroll */
.navbar.scrolled .nav-inner {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: scale(0.98);
}
.navbar *,
.nav-inner * {
    transition: color 0.2s ease, background 0.2s ease, transform 0.3s ease;
}

/* Logo */
.logo {
    font-weight: 700;
    font-size: 1.2rem;
    color: #001b5f;
    white-space: nowrap;
}

/* Nav links (desktop) */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #001b5f;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: #0036cf;
}

/* Tombol Login / Admin */
.btn-nav {
    border: 2px solid #0036cf;
    border-radius: 30px;
    padding: 8px 20px;
    color: #0036cf;
    font-weight: 700;
    transition: all 0.2s ease;
}

.btn-nav:hover {
    background-color: #0036cf;
    color: #fff;
}

/* ===== HAMBURGER (untuk mobile) ===== */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #001b5f;
}

/* ===== RESPONSIVE (MOBILE) ===== */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: #001b5f;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 50vh;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.97);
        backdrop-filter: blur(8px);
        border-radius: 0;
        box-shadow: none;
        justify-content: top;
        align-items: center;
        gap: 22px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.35s ease;
        z-index: 999;
    }

    .nav-links.show {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: #001b5f;
        font-weight: 600;
        text-decoration: none;
    }

    .nav-links a:hover {
        color: #0036cf;
    }

    .nav-inner {
        justify-content: space-between;
        padding: 12px 20px;
    }
}

/* ===== MENU LINK ===== */
.nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    font-weight: 600;
    color: black;
    font-size: 0.95rem;
}

/* ===== TOMBOL KHUSUS ===== */
.btn-nav {
    background-color: rgb(255, 255, 255);
    border: 2px solid #001d66;
    border-radius: 30px;
    padding: 8px 20px;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 3px 6px rgba(0, 71, 255, 0.2);
    transition: all 0.2s ease;
}

.btn-nav:hover {
    background-color: #ffffff7a;
    color: white;
}

/* ===== HAMBURGER ICON ===== */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: black;
    z-index: 1001;
}

/* CSS: tambahkan ke stylesheetmu */
.highlight {
    display: inline-block;
    background-color: #aefb2a;
    color: #002c91;
    padding: 0 12px;
    border-radius: 4px;
    font-family: "Indie Flower", cursive; /* optional */
    transition: transform 0.36s cubic-bezier(0.2, 0.9, 0.3, 1),
        opacity 0.36s ease;
    will-change: opacity, transform;
    opacity: 1;
}

/* kelas bantu animasi */
.rotating-fade-out {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
}
.rotating-fade-in {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* optional - make sure the container doesn't shift layout much */
.hero-title {
    line-height: 1.05;
}

.subtext {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
}
.hero-tombol {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-weight: bold;
}
.btn-primary {
    background-color: white;
    color: #0039cc;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
}
.btn-third {
    background-color: white;
    color: #002072;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
}

.btn-secondary {
    border: 2px solid white;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary:hover,
.btn-third:hover,
.btn-secondary:hover {
    opacity: 0.9;
}
.features-section {
    padding: 80px 24px;
    background: #fff;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial;
}

.features-section .container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 48px;
    align-items: center;
}

/* Left column */
.features-left .badge {
    display: inline-block;
    background: #002e7c;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 700;
    transform: rotate(-3deg);
    font-size: 13px;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
}

.feature-title {
    font-size: 44px;
    line-height: 1.03;
    color: #0b33b7;
    margin: 0 0 14px 0;
    font-weight: 800;
}

.feature-title span em {
    font-style: normal;
    color: #002e7c;
    background: rgba(6, 54, 255, 0.06);
    padding: 0 6px;
    border-radius: 4px;
}

.rating-line {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 8px 0 28px;
    color: #6b7280;
    font-size: 14px;
}

.stars {
    color: #0b66ff;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Feature list */
.feature-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;

    max-width: 400px;
}
.feature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: rgba(6, 54, 255, 0.04);
    border: 1px solid rgba(6, 54, 255, 0.06);
    color: #2b2f42;
    padding: 18px 20px;
    border-radius: 30px;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none; /* penting agar tidak ada garis bawah */
    transition: transform 0.14s ease, box-shadow 0.14s ease,
        background 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(11, 54, 255, 0.08);
    background: rgba(6, 54, 255, 0.08);
}

.feature-item.active {
    background: #002e7c;
    color: #fff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.feature-item.active .arrow {
    color: #fff;
}

.feature-item .arrow {
    color: #002e7c;
    font-weight: 700;
    font-size: 18px;
}

/* Feature content section */
.feature-content {
    margin-top: 20px;
    max-width: 400px;
}

.feature-detail {
    display: none;
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: opacity 0.3s ease;
}

/* Right column - image card */
.features-right .image-card {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    display: block;
    height: auto;
    object-fit: cover;
    transform: scale(1.01);
}

/* White floating card overlay on image */
.card-overlay {
    position: absolute;
    left: 50%;
    top: 12%;
    transform: translateX(-10%);
    width: 70%;
    max-width: 420px;
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    box-shadow: 0 10px 30px rgba(17, 24, 39, 0.12);
    border: 1px solid rgba(15, 23, 42, 0.05);
}

.card-overlay .card-inner h3 {
    margin: 0;
    font-size: 18px;
    color: #0b244a;
    font-weight: 700;
}

.mini-graph {
    margin-top: 12px;
    height: 56px;
}

.svg-graph {
    width: 100%;
    height: 56px;
    stroke: #1f57ff;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    opacity: 0.95;
}

/* small text */
.small {
    font-size: 12px;
    color: #6b7280;
    margin-top: 8px;
}

/* Responsive */
@media (max-width: 980px) {
    .features-section .container {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 0 20px;
    }
    .card-overlay {
        left: 50%;
        top: 6%;
        transform: translateX(-50%);
        width: 86%;
    }
    .feature-title {
        font-size: 36px;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-card {
        padding: 30px 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .nav-inner {
        width: 90%;
        padding: 15px 25px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        background: white;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        padding: 20px 0;
        text-align: center;
        z-index: 1000;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
    }

    .btn-nav {
        border-width: 2px;
        padding: 10px 25px;
    }
}

/* ===== Cases / Results Section ===== */
.cases-section {
    padding: 80px 24px;
    background: #fff;
    font-family: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI",
        Roboto, "Helvetica Neue", Arial;
    color: #0b244a;
}

.container.narrow {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header row */
.cases-header {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.cases-header .badge {
    display: inline-block;
    background: #001877;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    transform: rotate(-3deg);
    letter-spacing: 0.3px;
}

.cases-title {
    font-size: 48px;
    line-height: 1.02;
    color: #001877;
    margin: 0;
    font-weight: bold;
    flex: 1 1 auto;
}

/* CTA button on header */
.btn-ghost.cta-audit {
    background: #002461;
    color: #fff;
    padding: 10px 18px;
    border-radius: 22px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(11, 102, 255, 0.12);
}

/* Grid of case cards */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 18px;
    align-items: start;
}

.case-card {
    background: transparent;
}

.case-image-wrap {
    width: 100%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 14px 40px rgba(11, 34, 85, 0.08);
    transition: transform 0.28s ease, box-shadow 0.28s ease;
    border: 6px solid rgba(255, 255, 255, 0.6); /* gives framed look */
}

.case-image {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.case-image-wrap:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 70px rgba(11, 34, 85, 0.12);
}

.case-image-wrap:hover .case-image {
    transform: scale(1.03);
}

.case-headline {
    font-size: 18px;
    color: #001b5a;
    font-weight: 800;
    margin: 14px 0 8px 0;
}

.case-desc {
    margin: 0;
    color: #6b7280;
    font-size: 14px;
    line-height: 1.6;
    max-width: 560px;
}

/* Responsive */
@media (max-width: 1000px) {
    .cases-grid {
        grid-template-columns: 1fr;
    }
    .case-image {
        height: 260px;
    }
    .cases-title {
        font-size: 40px;
    }
    .cases-header {
        gap: 12px;
    }
}

@media (max-width: 560px) {
    .cases-title {
        font-size: 28px;
    }
    .btn-ghost.cta-audit {
        width: 100%;
        text-align: center;
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #0b66ff;
    color: white;
    border: none;
    outline: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(11, 102, 255, 0.25);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
    z-index: 9999;
}

#scrollTopBtn:hover {
    transform: translateY(-4px);
    background-color: #084de6;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(180deg, #002fb1 0%, #002a8a 100%);
    color: #fff;
    text-align: left;
    padding: 0; /* CTA di dalam, jadi padding diatur di bagian bawah saja */
    overflow: hidden;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: relative;
}

/* ===== FOOTER CTA (bagian atas footer) ===== */
.footer-cta {
    background: linear-gradient(180deg, #0036cf 0%, #002fb1 100%);
    text-align: center;
    padding: 100px 20px 120px;
    color: #fff;
    border-top-left-radius: 24px;
    border-top-right-radius: 24px;
    position: relative;
    box-shadow: inset 0 -8px 12px rgba(0, 0, 0, 0.15);
}

.footer-cta .cta-badge {
    display: inline-block;
    background: #fff;
    color: #001a6b;
    font-weight: 700;
    font-size: 12px;
    border-radius: 20px;
    transform: rotate(-3deg);
    padding: 6px 14px;
    margin-bottom: 16px;
}

.footer-cta .cta-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
}

.footer-cta .cta-title span {
    color: #b8ff3c;
}

.footer-cta .cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 28px;
}

.footer-cta .cta-btn {
    display: inline-block;
    background: #fff;
    color: #001a6b;
    font-weight: 700;
    border-radius: 30px;
    padding: 10px 26px;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-cta .cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* ===== FOOTER CONTENT ===== */
.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding: 60px 20px 40px;
}

.footer h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
    color: #b8c7ff;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 10px;
}

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

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

.footer ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s ease;
}

.footer ul li a:hover {
    opacity: 0.75;
}

.copy {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
}

/* bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1100px;
    margin: 40px auto 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.socials a {
    color: #fff;
    margin-right: 14px;
    font-size: 16px;
    transition: opacity 0.2s ease;
}

.socials a:hover {
    opacity: 0.7;
}

.back-top {
    color: #fff;
    font-size: 20px;
    text-decoration: none;
    transition: transform 0.2s ease;
}
.back-top:hover {
    transform: translateY(-4px);
}

/* logo besar */
.footer-logo {
    text-align: center;
    font-size: 120px;
    font-weight: 900;
    color: #fff;
    opacity: 0.15;
    letter-spacing: -2px;
    margin-top: 60px;
}

.footer-logo .asterisk {
    color: #b8ff3c;
}
.footer-logo .dot {
    color: #b8ff3c;
}

/* responsive */
@media (max-width: 768px) {
    .footer-cta .cta-title {
        font-size: 36px;
    }
    .footer-logo {
        font-size: 80px;
    }
}

.benefits-section {
    background: #fff;
    color: #111;
    padding: 100px 20px;
}

.benefits-header {
    text-align: left;
    margin-bottom: 60px;
}

.benefits-header .badge {
    background: #001d66;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    transform: rotate(-3deg);
    letter-spacing: 1px;
    display: inline-block;
    font-weight: 600;
}

.benefits-title {
    font-size: 42px;
    font-weight: 700;
    color: #00196d;
    margin-top: 20px;
    line-height: 1.2;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 25px;
}

.benefit-number {
    font-weight: 600;
    font-size: 20px;
    color: #00103a;
    border: 2px solid #001855;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-heading {
    font-size: 20px;
    font-weight: 700;
    color: #000b31;
    margin-bottom: 5px;
}

.benefit-content p {
    font-size: 15px;
    color: #555;
    max-width: 600px;
}

.benefits-button {
    margin-top: 50px;
}

.benefits-button .btn-primary {
    background: #00164d;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.benefits-button .btn-primary:hover {
    background: #002dcc;
}
/* ===== NDEV CONTACT HERO (unique classes prefixed ndev-ct-) ===== */
.ndev-ct-hero {
    text-align: center;
    color: #fff;
    padding: 48px 20px;
}
.ndev-ct-rating {
    color: #d2f06f;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.ndev-ct-getin {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
    font-size: 64px;
    line-height: 0.9;
    margin: 6px 0 12px;
    display: flex;
    justify-content: center;
    gap: 18px;
    align-items: center;
}
.ndev-ct-left {
    color: #fff;
    background: transparent;
    padding: 0 6px;
}
.ndev-ct-right {
    color: #071b2f;
    background: #b7ff1a;
    padding: 6px 14px;
    border-radius: 4px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* subtitle */
.ndev-ct-sub.small {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 18px;
    font-size: 16px;
}

/* card */
.ndev-ct-card {
    max-width: 640px;
    margin: 18px auto 0;
    background: rgba(255, 255, 255, 0.98);
    color: #0b1730;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(6, 23, 62, 0.25);
}
.gayane {
    font-family: "Plus Jakarta Sans";
}

/* form */
.ndev-ct-form {
    display: grid;
    gap: 12px;
}
.ndev-ct-row {
    text-align: left;
}
.ndev-ct-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0b3a72;
    margin-bottom: 6px;
    font-family: "Plus Jakarta Sans";
}

.ndev-ct-form input[type="text"],
.ndev-ct-form input[type="url"] {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-family: "Plus Jakarta Sans";
    border: 1px solid #e3e7ee;
    border-radius: 6px;
    outline: none;
    box-sizing: border-box;
}
.ndev-ct-form input:focus {
    border-color: #7ab8ff;
    box-shadow: 0 4px 14px rgba(122, 184, 255, 0.12);
}

.ndev-ct-submit {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    background: #0e1113;
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-weight: 700;
    border-radius: 24px;
    border: none;
    cursor: pointer;
}
.ndev-ct-submit:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}
.ndev-ct-lapor {
    display: block;
    width: 100%;
    padding: 12px;
    margin-top: 6px;
    background: #001faa;
    color: #fff;
    font-family: "Plus Jakarta Sans";
    font-weight: 700;
    border-radius: 24px;
    border: none;
    cursor: pointer;
}
.ndev-ct-lapor:hover {
    opacity: 0.95;
    transform: translateY(-1px);
}
/* note */
.ndev-ct-note {
    font-size: 12px;
    color: #6b7280;
    margin-top: 10px;
    text-align: center;
}
.ndev-ct-note a {
    color: inherit;
    text-decoration: underline;
}

/* responsive */
@media (max-width: 640px) {
    .ndev-ct-getin {
        font-size: 40px;
        gap: 10px;
        flex-direction: column;
    }
    .ndev-ct-right {
        padding: 6px 10px;
    }
    .ndev-ct-card {
        padding: 18px;
    }
}
.team-section {
    background: #fff;
    padding: 80px 0;
    text-align: center;
}

.team-header .badge {
    background: #00165f;
    color: #fff;
    transform: rotate(-3deg);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 12px;
}

.team-title {
    font-size: 32px;
    font-weight: 800;
    color: #0023a0;
    margin-bottom: 50px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-items: center;
    padding: 0 20px;
}

@media (max-width: 1024px) {
    .team-grid {
        gap: 14px; /* agak rapat di tablet */
    }
}

@media (max-width: 768px) {
    .team-grid {
        gap: 10px;
        padding: 0 12px;
    }

    .team-photo {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .team-photo {
        height: 260px;
    }
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 360px;
    background: #fff;
}

.team-card:hover {
    transform: translateY(-6px);
}

.team-photo {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.team-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px;
    background: linear-gradient(
        to top,
        rgba(0, 24, 90, 0.95),
        rgba(0, 47, 173, 0)
    );
    color: #fff;
    text-align: left;
    border-radius: 0 0 16px 16px;
}

.team-name {
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.team-role {
    font-size: 13px;
    opacity: 0.9;
}

.team-social {
    position: absolute;
    bottom: 20px;
    right: 20px;
    color: #fff;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px;
    border-radius: 50%;
    transition: all 0.3s;
}

.team-social:hover {
    background: #fff;
    color: #00268d;
}

@media (max-width: 768px) {
    .team-photo {
        height: 320px;
    }
}

@media (max-width: 480px) {
    .team-photo {
        height: 260px;
    }
}
.community-join {
    width: 100%;
    padding: 80px 0;
    background: linear-gradient(135deg, #1b1c30, #2b2d45);
    color: #fff;
}

.community-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.community-content {
    flex: 1;
}

.community-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    opacity: 0.7;
    margin-bottom: 10px;
}

.community-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 18px;
}

.community-title span {
    color: #8f87ff;
}

.community-desc {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
    max-width: 420px;
}

.community-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #6b63ff;
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: #4b44ff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px 22px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(4px);
    transition: 0.2s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

.community-image img {
    width: 420px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}
.claim-status {
    padding: 14px;
    border-radius: 10px;
    font-weight: 600;
    color: #000;
    margin-top: 12px;
}

.claim-status.error {
    background: #ef4444;
    color: #fff;
}
.report-wrapper {
    width: 100%;
    padding: 0 20px; /* jarak kiri kanan */
    box-sizing: border-box;
}

.report-form {
    width: 100%;
    max-width: 1000px; /* batas nyaman di desktop */
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Tablet */
@media (max-width: 1024px) {
    .report-form {
        max-width: 100%;
    }
}

/* HP */
@media (max-width: 600px) {
    .report-wrapper {
        padding: 0 14px;
    }

    .report-form {
        gap: 14px;
    }
}
/* SAMAIN SEMUA INPUT */
.gayane {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
    background-color: #fff;
    color: #111;
    outline: none;
    box-sizing: border-box;
}

/* FOCUS EFFECT */
.gayane:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
}

/* SELECT FIX (biar ga default browser jelek) */
select.gayane {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%23666' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    cursor: pointer;
}

/* TEXTAREA FIX */
textarea.gayane {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}
.alert {
    padding: 15px 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 14px;
}

.alert-success {
    background: #e6fff1;
    border: 1px solid #49ff11;
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #1f7a55;
}

.alert-info {
    background: #eef4ff;
    border: 1px solid #5a7cff;
    color: #243b7a;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.alert-danger {
    background: #ffecec;
    border: 1px solid #ff5a5a;
    color: #7a1f1f;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.alert code {
    background: #000;
    color: #00ffcc;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: "Plus Jakarta Sans", sans-serif;
    display: inline-block;
    margin-top: 6px;
}
/* ===================== */
/* HASIL LAPORAN */
/* ===================== */

.laporan-result {
    margin-top: 30px;
    animation: fadeUp 0.5s ease;
}

.laporan-title {
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.laporan-token {
    display: flex;
    justify-content: space-between;
    background: #f2f5ff;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 12px;
}

.laporan-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 4px;
    font-size: 14px;
    border-bottom: 1px dashed #dbe2ff;
}

.laporan-item span {
    opacity: 0.7;
}

.laporan-status {
    margin: 16px 0;
    padding: 14px;
    border-radius: 14px;
    text-align: center;
    font-weight: 800;
    letter-spacing: 1px;
}

/* STATUS WARNA */
.status-diterima {
    background: linear-gradient(135deg, #1e90ff, #005eff);
    color: white;
}
.status-pending {
    background: linear-gradient(135deg, #ffb01e, #ffd900);
    color: rgb(0, 0, 0);
}


.status-diproses {
    background: linear-gradient(135deg, #ffb703, #ff8c00);
    color: #1a1a1a;
}

.status-selesai {
    background: linear-gradient(135deg, #00c853, #009624);
    color: white;
}

.status-ditolak {
    background: linear-gradient(135deg, #ff5252, #c62828);
    color: white;
}

.laporan-isi {
    margin-top: 14px;
}

.laporan-isi label {
    font-weight: 700;
    display: block;
    margin-bottom: 6px;
}

.laporan-isi p {
    background: #f8f9ff;
    padding: 14px;
    border-radius: 12px;
    line-height: 1.6;
    font-size: 14px;
}

.laporan-attachment {
    margin-top: 14px;
    text-align: center;
}

.laporan-attachment a {
    display: inline-block;
    background: #001faa;
    color: white;
    padding: 10px 18px;
    border-radius: 22px;
    font-weight: 700;
    text-decoration: none;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
