:root {
    --primary: #133445;
    /* Navy NitipAja */
    --accent-pink: #FF6B8B;
    /* Playful Accent */
    --bg-light: #F8FAFC;
    --text-dark: #0F172A;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* --- COMPONENTS --- */

/* Navbar Style */
.navbar {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-link {
    font-weight: 600;
    color: var(--text-dark);
}

.nav-link:hover {
    color: var(--accent-pink);
}

/* Buttons */
.btn-primary {
    background-color: var(--primary);
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #0F2936;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(19, 52, 69, 0.2);
}

.btn-accent {
    background-color: var(--accent-pink);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 139, 0.3);
    transition: all 0.3s;
}

.btn-accent:hover {
    background-color: #FF476F;
    transform: translateY(-3px);
    color: white;
    box-shadow: 0 12px 25px rgba(255, 107, 139, 0.4);
}

/* --- LANDING PAGE STYLES --- */

/* Hero Section */
.hero-section {
    background-color: var(--primary);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 140px;
    padding-bottom: 100px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

@media (min-width: 992px) {
    .hero-section {
        padding-bottom: 220px;
        border-bottom-left-radius: 60px;
        border-bottom-right-radius: 60px;
    }
}

.hero-blob {
    position: absolute;
    opacity: 0.15;
    z-index: 0;
    animation: float-slow 20s infinite linear;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.08);
}

/* Icon colors */
.icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.icon-blue {
    background-color: #E0F2FE;
    color: #0EA5E9;
}

.icon-yellow {
    background-color: #FEF9C3;
    color: #EAB308;
}

.icon-pink {
    background-color: #FCE7F3;
    color: #EC4899;
}

/* Section Overlap */
/* .section-overlap {
    position: relative;
    z-index: 10;
    margin-top: -50px;
}

@media (min-width: 992px) {
    .section-overlap {
        margin-top: -160px;
    }
} */
.section-overlap {
    margin-top: 0;
}

@media (min-width: 992px) {
    .section-overlap {
        margin-top: 0;
    }
}

/* Steps */
.step-number {
    background: var(--primary);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 15px;
    box-shadow: 0 8px 16px rgba(19, 52, 69, 0.2);
    flex-shrink: 0;
}

/* Pricing Card */
.pricing-card {
    background: white;
    border-radius: 32px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.pricing-card.pro {
    background: linear-gradient(145deg, #ffffff 0%, #FFF0F5 100%);
    border: 2px solid var(--accent-pink);
    box-shadow: 0 20px 50px rgba(255, 107, 139, 0.15);
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.price-tag {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--text-dark);
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    background-color: transparent;
    margin-bottom: 16px;
}

.accordion-button {
    background-color: white;
    border-radius: 16px !important;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    font-weight: 700;
    padding: 20px 24px;
    color: var(--primary);
}

.accordion-button:not(.collapsed) {
    color: var(--accent-pink);
    background-color: white;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-body {
    background-color: white;
    border-radius: 16px;
    margin-top: 8px;
    padding: 24px;
    color: #64748B;
    line-height: 1.6;
}

/* --- AUTH PAGES (REGISTER & LOGIN) --- */

.split-screen {
    display: flex;
    min-height: 100vh;
}

/* Left Side (Visual) */
.left-panel {
    flex: 0 0 35%;
    background-color: var(--primary);
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

/* Right Side (Form) */
.right-panel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background-color: #fff;
    /* Default bg for form panel */
    overflow-y: auto;
}

.form-container {
    width: 100%;
    max-width: 450px;
}

/* Inputs */
.form-control {
    border: 1px solid #E2E8F0;
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--accent-pink);
    box-shadow: 0 0 0 4px rgba(255, 107, 139, 0.1);
    outline: none;
}

.input-group-text {
    background-color: #F1F5F9;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    color: #64748B;
    font-weight: 600;
    font-size: 14px;
}

/* input password only */
#passwordInput {
    border-right: none;
}
#passwordInput:focus {
    border-right: 1px var(--accent-pink) solid;
}
#passwordInput.is-invalid {
    border-right: 1px var(--bs-form-invalid-border-color) solid;
}

/* Testimonial/Stat Card Mini */
.testimonial-mini,
.stat-mini {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Decorative Blobs Common */
.blob {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

/* Responsive Auth */
@media (max-width: 992px) {
    .split-screen {
        flex-direction: column;
    }

    .left-panel {
        display: none;
    }

    .right-panel {
        padding: 24px;
        background-color: white;
    }
}

/* --- HELP CENTER STYLES --- */

.help-hero {
    background-color: var(--primary);
    padding: 120px 0 80px;
    color: white;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
}

.category-card {
    background: white;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-pink);
    box-shadow: 0 10px 30px rgba(255, 107, 139, 0.1);
}

.category-card.active {
    background-color: #FFF0F5;
    border-color: var(--accent-pink);
}

.contact-box {
    background: #F8FAFC;
    border-radius: 24px;
    padding: 40px;
}

/* --- LEGAL PAGES STYLES --- */

.hero-legal {
    padding-top: 140px;
}

.legal-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    line-height: 1.8;
    color: #334155;
}

.legal-content h3 {
    font-weight: 800;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.last-updated {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 30px;
    display: block;
}

/* Animation */
@keyframes float-slow {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    50% {
        transform: rotate(180deg) translate(20px, 20px);
    }

    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

/* --- INVOICE PAGE ADDITIONS --- */

.ls-1 {
    letter-spacing: 1px;
}

.text-primary-navy {
    color: var(--primary);
}

.payment-info-box {
    background-color: #F8FAFC; 
    border: 2px dashed #CBD5E1; 
    transition: all 0.3s ease;
}

.payment-info-box:hover {
    border-color: var(--primary);
    background-color: #F1F5F9;
}

.font-monospace {
    font-family: 'Courier New', Courier, monospace !important;
    letter-spacing: -0.5px;
}

/* --- INVOICE ACTION BUTTONS --- */
#confirmPayment {
    cursor: pointer;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
    border: 1px solid transparent; 
}

#confirmPayment:active {
    transform: translateY(0); 
    box-shadow: 0 4px 10px rgba(255, 107, 139, 0.2);
}

/* --- PRINT UTILITIES --- */
@media print {
    .btn-no-print {
        display: none !important;
    }

    .payment-info-box {
        background-color: #fff !important; 
        border: 1px solid #000 !important;
        -webkit-print-color-adjust: exact;
    }
}

/* --- NEW HELPERS ADDED --- */
.rounded-xl {
    border-radius: 1rem;
}

/* --- REDESIGN HERO --- */
.hero-redesigned {
    background: radial-gradient(circle at top left, rgba(255, 107, 139, 0.05) 0%, #ffffff 70%);
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 95vh;
}

.badge-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFF0F5;
    color: var(--accent-pink);
    padding: 8px 16px;
    border-radius: 50rem;
    font-size: 14px;
    font-weight: 700;
}

.btn-outline-border {
    color: var(--primary);
    border: 2px solid #E2E8F0;
    background: transparent;
    transition: all 0.3s;
}

.btn-outline-border:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: white;
}

.floating-card {
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px);
}

/* Custom bg for accents */
.bg-accent-light {
    background-color: #FFF0F5;
}

.text-accent-pink {
    color: var(--accent-pink);
}

/* Payment Logos */
.payment-logos span {
    transition: opacity 0.3s;
}

.payment-logos span:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Illustration Card Hover */
.illustration-card {
    transition: all 0.3s ease;
}
.illustration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.15)!important;
}

/* --- COMING SOON UTILITIES --- */
.price-coming-soon {
    font-size: 2rem; /* Sedikit lebih kecil dari harga asli agar proporsional */
    font-weight: 800;
    letter-spacing: -1px;
    color: #94A3B8; /* Warna abu-abu Slate untuk kesan belum aktif */
    font-style: italic;
}

.btn-coming-soon {
    background-color: #E2E8F0;
    color: #64748B;
    border: none;
    cursor: not-allowed;
    transition: none;
}

/* Mematikan efek hover / lompat pada tombol coming soon */
.btn-coming-soon:hover {
    background-color: #E2E8F0;
    transform: none;
    box-shadow: none;
    color: #64748B;
}