/* ================= GLOBAL ================= */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f7fb;
    color: #2d3436;
}

h1,
h2,
h3,
h5 {
    letter-spacing: -0.5px;
}

.alert {
    border-radius: 12px;
    font-size: 14px;
}

.section {
    padding: 90px 20px;
}

/* NAVBAR */
.navbar-custom {
    background: rgba(1, 17, 68, 0.8);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    transition: 0.3s;
}

/* BRAND */
.logo-box {
    width: 35px;
    height: 35px;
    background: white;
    color: #4e73df;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

/* LINK */
.nav-link-custom {
    color: white;
    margin: 0 12px;
    font-weight: 500;
    position: relative;
    text-decoration: none;
}

/* underline animasi */
.nav-link-custom::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: white;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link-custom:hover::after {
    width: 100%;
}

/* CTA BUTTON */
.btn-cta {
    background: white;
    color: #4e73df;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 223, 54, 0.2);
}

/* TOGGLER FIX */
.navbar-toggler {
    border: none;
}

/* RESPONSIVE */
@media(max-width:768px) {
    .nav-link-custom {
        display: block;
        margin: 10px 0;
    }
}

/* Wrapper */
.form-wrapper {
    padding-top: 110px;
    padding-bottom: 60px;
}

/* Container utama */
.form-box {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

/* Header */
.form-header {
    margin-bottom: 30px;
}

.form-header h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.form-header small {
    color: #888;
}

/* Section */
.form-section {
    margin-bottom: 35px;
}

.form-section-title {
    font-size: 13px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Input */
.form-control,
.form-select {
    border-radius: 12px;
    padding: 14px;
    border: 1px solid #e5e7eb;
    transition: 0.2s;
}

.form-control:focus,
.form-select:focus {
    border-color: #4e73df;
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.1);
}

/* Floating label fix */
.form-floating label {
    color: #999;
}

/* Button */
.btn-submit {
    background: linear-gradient(135deg, #4e73df, #224abe);
    border: none;
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(78, 115, 223, 0.3);
}


@media (max-width: 768px) {
    .form-box {
        padding: 25px;
    }
}

.hero-feature {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.hero-feature span {
    font-size: 20px;
}

.hero-feature p {
    margin: 0;
    font-size: 13px;
    opacity: 0.8;
}


.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    z-index: 0;
}


.orb1 {
    width: 300px;
    height: 300px;
    background: #4e73df;
    top: 10%;
    left: 5%;
}


.orb2 {
    width: 400px;
    height: 400px;
    background: #7c3aed;
    top: 30%;
    right: 5%;
}


.orb3 {
    width: 250px;
    height: 250px;
    background: #06b6d4;
    bottom: 10%;
    left: 40%;
}

/* HERO BASE */
.hero-pro {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #0f172a;
}

/* GRID BACKGROUND */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgb(3, 163, 255) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.4;
}

/* GLOW EFFECT */
.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgb(7, 86, 255);
    filter: blur(120px);
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
}

/* BADGE */
.hero-badge {
    background: rgb(15, 29, 231);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    display: inline-block;
    margin-bottom: 15px;
}

/* TITLE */
.hero-title {
    font-size: 60px;
    font-weight: 800;
    letter-spacing: -1px;
}

/* SUB */
.hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

/* DESC */
.hero-desc {
    max-width: 500px;
    opacity: 0.8;
}

/* BUTTON */
.btn-main {
    background: linear-gradient(135deg, #0036e7, #0231be);
    border-radius: 50px;
    padding: 12px 28px;
    color: white;
}

/* CARD VISUAL */
.hero-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    color: white;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE */
@media(max-width:768px) {
    .hero-title {
        font-size: 38px;
    }
}

/* ================= ABOUT ================= */
.about-section h2 {
    font-size: 32px;
}

.about-glow {
    position: relative;
}


.about-glow::before {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(78, 115, 223, 0.1);
    filter: blur(80px);
    top: -50px;
    right: -50px;
}

/* badge kecil */
.badge-about {
    background: linear-gradient(135deg, #4e73df, #224abe);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

/* point kiri */
.about-point {
    display: flex;
    align-items: center;
    margin-top: 10px;
    font-weight: 500;
}

.about-point i {
    color: #4e73df;
    margin-right: 10px;
}

/* info box kanan */
.info-box {
    background: linear-gradient(145deg, #ffffff, #eef2ff);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* item dalam box */
.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 22px;
    color: #4e73df;
    margin-top: 5px;
}

.info-item p {
    margin: 0;
    font-size: 14px;
    color: #666;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box ul {
    padding-left: 20px;
    line-height: 2;
}

/* ================= CARD ================= */
.card-custom {
    border-radius: 18px;
    background: linear-gradient(145deg, #ffffff, #f4f7ff);
    transition: 0.3s;
}

.card-custom:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(78, 115, 223, 0.15);
}

.icon {
    font-size: 35px;
    margin-bottom: 10px;
    color: #4e73df;
}

.section h3 {
    position: relative;
    display: inline-block;
}

.section h3::after {
    content: "";
    width: 50%;
    height: 3px;
    background: linear-gradient(135deg, #4e73df, #224abe);
    display: block;
    margin: 8px auto 0;
    border-radius: 10px;
}

/* ================= FLOW ================= */
.flow-line {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.flow-step {
    width: 18%;
    min-width: 150px;
    background: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: 0.3s;
}

/* ================= COLOR THEME ================= */
:root {
    --primary: #4e73df;
    --primary-dark: #224abe;
    --gradient: linear-gradient(135deg, #4e73df, #224abe);
}

/* ================= SECTION BG ================= */
.bg-light {
    background: linear-gradient(180deg, #f5f7fb, #eef2ff);
}

/* ================= STEPPER ================= */
.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
}

/* garis utama */
.stepper::before {
    content: "";
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #dcdcdc;
    z-index: 1;
}

/* step */
.step {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 20%;
}

/* circle */
.circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    transition: 0.3s;
    color: #555;
}

/* active */
.step.active .circle {
    background: var(--gradient);
    color: white;
    box-shadow: 0 5px 20px rgba(78, 115, 223, 0.4);
}

/* hover */
.step:hover .circle {
    transform: scale(1.1);
}

/* text */
.step p {
    margin-top: 10px;
    font-size: 14px;
}

/* ================= HERO IMPROVEMENT ================= */
.hero {
    background: linear-gradient(135deg, #4e73df, #1e3c72);
}

/* ================= BUTTON ================= */
.btn-main {
    background: linear-gradient(135deg, #4e73df, #224abe);
    color: white;
    border-radius: 50px;
    padding: 12px 30px;
    box-shadow: 0 10px 25px rgba(78, 115, 223, 0.4);
}

.btn-main:hover {
    transform: translateY(-3px);
}

/* ================= CARD ================= */
.card-custom {
    background: linear-gradient(145deg, #ffffff, #f1f4ff);
    border: none;
}

/* ================= INFO BOX ================= */
.info-box {
    background: linear-gradient(145deg, #ffffff, #eef2ff);
}

/* ================= NAVBAR ================= */
.glass-nav {
    background: rgba(78, 115, 223, 0.7);
    backdrop-filter: blur(10px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px) {

    .stepper {
        flex-direction: column;
        gap: 30px;
    }

    .stepper::before {
        display: none;
    }

    .step {
        width: 100%;
    }
}

/* ================= FAQ ================= */
.accordion-item {
    border-radius: 10px !important;
    margin-bottom: 10px;
    border: none;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: #4e73df;
    color: white;
}

.footer-clean {
    background: #011952;
    padding: 60px 0 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle glow effect */
.footer-clean::before {
    content: "";
    position: absolute;
    top: -50px;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(78, 115, 223, 0.15);
    filter: blur(100px);
    transform: translateX(-50%);
}

/* text */
.footer-desc {
    color: #cbd5e1;
    font-size: 14px;
}

/* divider */
.footer-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #4e73df, #224abe);
    margin: 20px auto;
    border-radius: 10px;
}

/* bottom */
.footer-bottom {
    font-size: 15px;
    color: #94a3b8;
}

.footer-bottom a {
    text-decoration: none;
    position: relative;
    z-index: 10;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .hero h1 {
        font-size: 32px;
    }

    .flow-line {
        flex-direction: column;
        align-items: center;
    }

    .flow-step {
        width: 100%;
    }

    .flow-step::after {
        display: none;
    }
}