#bp-root {
    --primary: #f29f04;
    /* Gold accent */
    --primary-dark: #d98e03;
    --text-main: #1e293b;
    --text-light: #64748b;
    --bg-input: #f8fafc;
    --navy: #0b1528;
    --gold: #f29f04;
    --req-red: #ef4444;
    --border-color: #e2e8f0;

    all: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: #f1f5f9;
    font-family: 'Poppins', sans-serif;
    padding: 20px;
    box-sizing: border-box;
}

#bp-root * {
    box-sizing: border-box;
}

/* MAIN CARD */
#bp-root .bp-card {
    display: flex;
    width: 100%;
    max-width: 1080px;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.05), 0 10px 20px -5px rgba(0, 0, 0, 0.03);
}

/* LEFT SIDE PANEL */
#bp-root .bp-side-panel {
    width: 42%;
    background: linear-gradient(135deg, #0b1528 0%, #1e293b 100%);
    position: relative;
    padding: 55px 40px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

#bp-root .bp-side-panel::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(242, 159, 4, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

#bp-root .bp-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #f29f04;
    margin-bottom: 24px;
    display: inline-block;
}

#bp-root .bp-side-content h1 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    letter-spacing: 0.5px;
}

#bp-root .bp-side-content p {
    color: #94a3b8;
    font-size: 14.5px;
    line-height: 1.6;
}

#bp-root .bp-features {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

#bp-root .bp-features li {
    margin-bottom: 16px;
    font-size: 14.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
}

#bp-root .bp-features i {
    color: #f29f04;
}

/* RIGHT FORM PANEL */
#bp-root .bp-form-panel {
    width: 58%;
    padding: 50px 55px;
    background: #ffffff;
}

#bp-root .bp-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    padding: 0;
}

#bp-root .bp-header p {
    color: #64748b;
    margin: 6px 0 30px 0;
    font-size: 14.5px;
}

/* GRID SYSTEM */
#bp-root .bp-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

#bp-root .bp-col-6 {
    width: 50%;
    padding: 0 10px;
}

#bp-root .bp-col-12 {
    width: 100%;
    padding: 0 10px;
}

/* INPUTS */
#bp-root .bp-group {
    margin-bottom: 18px;
}

#bp-root .bp-group label {
    display: block;
    font-weight: 500;
    font-size: 13px;
    color: #334155;
    margin-bottom: 6px;
}

/* RED ASTERISK */
#bp-root .req {
    color: var(--req-red);
    margin-left: 2px;
    font-weight: bold;
}

#bp-root .bp-control {
    width: 100%;
    padding: 11px 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    font-size: 14.5px;
    background: var(--bg-input);
    color: var(--text-main);
    transition: all 0.2s ease;
}

#bp-root .bp-control:focus {
    outline: none;
    border-color: var(--primary);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(242, 159, 4, 0.15);
}

/* BUTTON */
#bp-root .bp-btn {
    width: 100%;
    background: linear-gradient(135deg, #0b1528 0%, #1e293b 100%);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.25s ease;
}

#bp-root .bp-btn:hover {
    background: linear-gradient(135deg, #f29f04 0%, #d98e03 100%);
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(242, 159, 4, 0.25);
}

#bp-root .error-shake {
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-6px);
    }

    75% {
        transform: translateX(6px);
    }
}

/* RESPONSIVENESS */
@media (max-width: 992px) {
    #bp-root {
        padding: 15px 10px;
    }

    #bp-root .bp-card {
        flex-direction: column;
        border-radius: 16px;
    }

    #bp-root .bp-side-panel {
        width: 100%;
        padding: 35px 25px;
    }

    #bp-root .bp-form-panel {
        width: 100%;
        padding: 35px 20px;
    }
}

@media (max-width: 600px) {
    #bp-root .bp-col-6 {
        width: 100%;
    }
    
    #bp-root .bp-side-content h1 {
        font-size: 26px;
    }
}

/* Animation for the success icon */
.success-icon {
    animation: scaleIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Error shake animation */
.error-shake {
    animation: shake 0.4s ease-in-out;
}

@keyframes shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-8px);
    }

    75% {
        transform: translateX(8px);
    }
}

input[type=number] {
    box-shadow: none !important;
}

#siteConfigForm {
    background: #fff;
    max-width: 560px;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: none;
}

@media (min-width: 992px) {
    #bp-root {
        padding: 90px;
    }
}

#bp-root .bp-control:hover {
    border-color: #cbd5e1;
}

/* ================================================================= */
/* PREMIUM BOTTOM SECTIONS (CARDS & FAQS)                            */
/* ================================================================= */
.page-partner section.bg-light {
    background: radial-gradient(circle at 50% 50%, #0c1524 0%, #030812 100%) !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.page-partner h2,
.page-partner h3,
.page-partner h4 {
    font-family: 'Oswald', sans-serif;
    color: #ffffff !important;
}

.page-partner p.text-muted,
.page-partner p.lead.text-muted,
.page-partner .text-muted {
    color: #94a3b8 !important;
}

.page-partner .bg-white {
    background: rgba(11, 21, 40, 0.45) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.page-partner .shadow-sm {
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 16px !important;
}

.page-partner .shadow-sm:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(242, 159, 4, 0.1) !important;
    border-color: #f29f04 !important;
    background: rgba(15, 23, 42, 0.6) !important;
}

.page-partner h3.h5 {
    color: #ffffff !important;
    font-weight: 700;
    font-size: 18px;
    border-bottom: 2px solid #f29f04;
    padding-bottom: 8px;
    margin-bottom: 15px;
    display: inline-block;
}

/* Accordion Custom Styling */
.page-partner .accordion-item {
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    background: rgba(11, 21, 40, 0.45) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
}

.page-partner .accordion-button {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background-color: rgba(11, 21, 40, 0.45);
    padding: 18px 20px;
    box-shadow: none !important;
}

.page-partner .accordion-button:not(.collapsed) {
    color: #f29f04;
    background-color: rgba(15, 23, 42, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-partner .accordion-body {
    padding: 20px;
    font-size: 14.5px;
    color: #cbd5e1;
    line-height: 1.6;
    background: rgba(15, 23, 42, 0.5);
}