/* GCB Merged Styles - Part 1 of 4 (A-F) */

/* ========================================
   CSS VARIABLES
   ======================================== */
   :root {
    --gcb-amber: #fdb813;
    --gcb-black: #000000;
    --gcb-blue: #1983c7;
    --gcb-gray-50: #ffffff80;
    --gcb-gray-light: #f6fcfc;
    --gcb-gray-100: #f8f9fa;
    --gcb-gray-300: #e0e0e0;
    --gcb-gray-600: #6c757d;
    --gcb-gray-700: #495057;
    --gcb-gray-800: #7B7B7B;
    --gcb-gray-900: #212529;
    --gcb-primary: var(--gcb-amber);
    --gcb-primary-gold-dark: #ffa500;
    --gcb-chocolate-brown: #894B00;
    --gcb-lemon-chiffon: #FEF9C2;
    --gcb-red: #dc3545;
    --gcb-smoke: #475560;
    --gcb-smoke-dark: #475560 !important;
    --gcb-success: #00a34d;
    --gcb-white: #ffffff;
    --gcb-gold-light: #FFFBF2;
    --gcb-font-primary: "Open Sans", sans-serif;
    --gcb-border-opacity: 1;
}

/* ========================================
   GLOBAL RESET & BASE STYLES
   ======================================== */
* {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
}

html,
body {
    scroll-behavior: smooth;
    color: var(--gcb-gray-900);
    /* line-height: 1.5; */
    height: auto;
    position: relative;
    overflow: hidden auto;
}

section {
    overflow: visible !important;
}

/* ========================================
   UTILITY CLASSES (A-F)
   ======================================== */

/* Accordion */
.accordion .accordion-item .accordion-button.collapsed {
    border-radius: 20px !important;
}

.accordion-button.collapsed::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9ucy11cC1pY29uIGx1Y2lkZS1jaGV2cm9ucy11cCI+PHBhdGggZD0ibTE3IDExLTUtNS01IDUiLz48cGF0aCBkPSJtMTcgMTgtNS01LTUgNSIvPjwvc3ZnPg==");
    transform: rotate(0deg);
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmZmZmYiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiBjbGFzcz0ibHVjaWRlIGx1Y2lkZS1jaGV2cm9ucy1kb3duLWljb24gbHVjaWRlLWNoZXZyb25zLWRvd24iPjxwYXRoIGQ9Im03IDYgNSA1IDUtNSIvPjxwYXRoIGQ9Im03IDEzIDUgNSA1LTUiLz48L3N2Zz4=");
    transform: rotate(0deg);
}

.accordion-button::after {
    transition: transform 0.2s ease-in-out;
}

.accordion-custom-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.accordion-desc-text {
    color: #ffffffa6 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
    letter-spacing: 0.01em !important;
}

.accordion-modern .accordion-button {
    background: white;
    color: var(--gcb-gray-900);
    font-weight: 600;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.05) 0%,
            rgba(253, 184, 19, 0.02) 100%);
    color: var(--gcb-black);
}

.accordion-modern .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-modern .accordion-button::after {
    background-image: none;
    content: "\f107";
    font-family: "Font Awesome 6 Free", serif;
    font-weight: 900;
    font-size: 1rem;
    color: var(--gcb-amber);
}

.accordion-modern .accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-txt-header {
    font-weight: 600;
    font-size: 18px;
    color: #ffffff !important;
}

/* Account */
.account-alert {
    font-size: 14px !important;
    color: #6c757d !important;
}

.account-body {
    padding: 20px;
}

.account-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.account-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--gcb-amber);
}

.account-count-badge {
    background: var(--gcb-amber);
    color: var(--gcb-black);
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(253, 184, 19, 0.3);
}

.account-count-badge .count {
    font-size: 20px;
    font-weight: 700;
}

.account-detail-item {
    display: flex;
    flex-direction: column;
}

.account-detail-label {
    font-size: 12px;
    color: var(--gcb-smoke);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.account-detail-value.account-number {
    color: var(--gcb-black, #1a1a1a);
    letter-spacing: 1px;
}

.account-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.account-details-card {
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    margin: 30px;
}

.account-error-state {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
    background: rgba(220, 53, 69, 0.05);
    border-radius: 8px;
    border-left: 4px solid #dc3545;
}

.account-header {
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.1) 0%,
            rgba(253, 184, 19, 0.03) 100%);
    padding: 20px;
    border-bottom: 1px solid rgba(253, 184, 19, 0.1);
}

.account-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #dee2e6;
}

.account-info-item:last-child {
    border-bottom: none;
}

.account-loading-container {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.account-number {
    font-size: 24px;
    color: var(--gcb-black, #1a1a1a);
    letter-spacing: 1px;
}

.account-number-success {
    font-size: 20px;
    color: var(--gcb-black, #1a1a1a);
    font-weight: 600;
    letter-spacing: 1px;
    padding: 8px 16px;
    background: rgba(253, 184, 19, 0.1);
    border-radius: 8px;
    border-left: 4px solid var(--gcb-amber, #fdb813);
    animation: account-reveal 0.6s ease-out;
}

.account-profile {
    position: absolute;
    margin-top: -30px;
    margin-left: 60px;
    z-index: 2;
}

.account-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.account-summary-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    position: relative;
}

.account-summary-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark, #d4a017) 100%);
}

/* Tab Navigation  */
.account-tabs {
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

/* Ensure tab content is visible */
.tab-content {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.tab-pane {
    display: none;
}

.tab-pane.show.active {
    display: block !important;
}

.nav-pills .nav-link {
    color: var(--gcb-smoke);
    padding: 12px 32px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 4px;
}

.nav-pills .nav-link:hover {
    background: rgba(253, 184, 19, 0.1);
    color: var(--gcb-black);
}

.nav-pills .nav-link.active {
    background: var(--gcb-amber);
    color: var(--gcb-black);
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(253, 184, 19, 0.3);
}

.account-info {
    color: #B8B8B8;
    margin-bottom: 0 !important;
}

.accounts-container {
    background: #f8f9fa;
    padding: 30px 0 60px;
    min-height: 500px;
}

/* Action Buttons */
.action-buttons {
    padding: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Activation Alert */
.activation-alert {
    background: linear-gradient(135deg, #fff9e6 0%, #fffdf7 100%);
    border: 2px solid var(--gcb-amber, #fdb813);
    border-radius: 8px;
    padding: 20px;
    margin: 0 30px;
}

.activation-alert .alert-message {
    font-size: 14px;
    color: #6c757d;
}

.activation-alert .alert-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.activation-alert i {
    color: var(--gcb-amber, #fdb813);
    margin-right: 10px;
}

/* Activity Table */
.activity-table-card .form-check {
    background: rgba(253, 184, 19, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
    margin: 2px;
}

.activity-table-card .form-check:hover {
    background: rgba(253, 184, 19, 0.1);
    transform: translateY(-1px);
}

.activity-table-card .form-check-input:checked+.form-check-label {
    color: var(--gcb-black);
    font-weight: 600;
}

.activity-table-card td {
    vertical-align: middle;
    padding: 15px 10px !important;
}

.activity-table-card th[scope="row"] {
    vertical-align: middle;
}

/* Agreement */
.agreement-checkbox .form-check {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid rgba(253, 184, 19, 0.2);
    transition: all 0.3s ease;
}

.agreement-checkbox .form-check:hover {
    border-color: #fdb813;
    box-shadow: 0 2px 8px rgba(253, 184, 19, 0.1);
}

.agreement-checkbox .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    margin-right: 12px;
    margin-top: 0;
}

.agreement-checkbox .form-check-input:checked {
    background-color: #fdb813;
    border-color: #fdb813;
}

.agreement-checkbox .form-check-label {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    cursor: pointer;
}

/* .agreement-checkbox .form-check-label a {
    color: #fdb813;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.agreement-checkbox .form-check-label a:hover {
    color: #d4a017;
} */

.agreement-section {
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.03) 0%,
            rgba(253, 184, 19, 0.07) 100%);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

/* Alert */
.alert-custom {
    border-radius: 10px;
    border-left: 4px solid;
    padding: 15px 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.alert-custom i {
    margin-right: 10px;
    margin-top: 3px;
}

.alert-error-custom {
    background: linear-gradient(135deg,
            rgba(220, 53, 69, 0.1) 0%,
            rgba(220, 53, 69, 0.05) 100%);
    color: #721c24;
}

.alert-info-custom {
    background: linear-gradient(135deg,
            rgba(13, 202, 240, 0.1) 0%,
            rgba(13, 202, 240, 0.05) 100%);
    color: #0c5460;
}

.alert-success-custom {
    background: linear-gradient(135deg,
            rgba(40, 167, 69, 0.1) 0%,
            rgba(40, 167, 69, 0.05) 100%);
    color: #155724;
}

/* Alternative Options */
.alternative-options-section {
    margin: 40px 0;
}

/* Application Section */
.application-section-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gcb-black);
    display: flex;
    align-items: center;
}

.applications-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.application-item {
    transition: all 0.3s ease;
}

.application-item:hover {
    transform: translateX(4px);
}

.application-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.application-status-badge i {
    font-size: 14px;
}

.application-status-complete {
    background: rgba(0, 163, 77, 0.1);
    color: var(--gcb-success);
    border: 1px solid rgba(0, 163, 77, 0.2);
}

.application-status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: #e67e22;
    border: 1px solid rgba(255, 193, 7, 0.2);
}

.application-status-closed {
    background: rgba(108, 117, 125, 0.1);
    color: #6c757d;
    border: 1px solid rgba(108, 117, 125, 0.2);
}

.application-status-pending-approval {
    background: rgba(253, 184, 19, 0.12);
    color: #b8860b;
    border: 1px solid rgba(253, 184, 19, 0.3);
}

.application-timestamp {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    color: var(--gcb-smoke);
    font-weight: 500;
}

.application-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 180px));
    gap: 20px;
    /* padding: 16px; */
    /* background: rgba(253, 184, 19, 0.02); */
    /* border-radius: 8px; */
    /* border: 1px solid rgba(253, 184, 19, 0.1); */
}

.application-primary-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.application-secondary-actions {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.btn-application-primary {
    width: 100%;
    justify-content: center;
}

/* Application Empty State */
.application-empty-state {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.03) 0%,
            rgba(253, 184, 19, 0.01) 100%);
    border-radius: 16px;
    border: 2px dashed rgba(253, 184, 19, 0.3);
}

.avatar-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    line-height: 1;
    text-align: center;
    background: var(--gcb-amber);
    color: var(--gcb-black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}

.empty-state-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.1) 0%,
            rgba(253, 184, 19, 0.2) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
}

.empty-state-icon i {
    font-size: 48px;
    color: var(--gcb-amber);
}

.empty-state-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--gcb-black);
    margin-bottom: 12px;
}

.empty-state-message {
    font-size: 16px;
    color: var(--gcb-smoke);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Dashboard Tabs */
.dashboard-tabs {
    background: white;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.dashboard-tabs .nav-pills .nav-link {
    color: var(--gcb-smoke);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.dashboard-tabs .nav-pills .nav-link:hover {
    background: rgba(253, 184, 19, 0.1);
    color: var(--gcb-black);
}

.dashboard-tabs .nav-pills .nav-link.active {
    background: linear-gradient(135deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark) 100%);
    color: var(--gcb-black);
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

.tab-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 11px;
    font-size: 11px;
    font-weight: 700;
    margin-left: 4px;
}

.dashboard-tabs .nav-pills .nav-link.active .tab-count-badge {
    background: rgba(0, 0, 0, 0.2);
    color: white;
}

/* Orders Section */
.orders-section {
    animation: fadeIn 0.4s ease-in-out;
}

.orders-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Order Summary Cards */
.orders-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.order-summary-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.order-summary-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--gcb-amber);
}

.order-summary-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

.order-summary-icon i {
    font-size: 24px;
    color: white;
}

.order-summary-icon-pending {
    background: linear-gradient(135deg, #e67e22 0%, #d68910 100%);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.order-summary-icon-total {
    background: linear-gradient(135deg, #2f434e 0%, #1f2f38 100%);
    box-shadow: 0 4px 12px rgba(47, 67, 78, 0.3);
}

.order-summary-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.order-summary-label {
    font-size: 13px;
    color: var(--gcb-smoke);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-summary-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--gcb-black);
    line-height: 1;
}

/* Order Card */
.order-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.order-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-color: var(--gcb-amber);
}

.order-header {
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.1) 0%,
            rgba(253, 184, 19, 0.03) 100%);
    padding: 20px;
    border-bottom: 1px solid rgba(253, 184, 19, 0.1);
}

.order-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gcb-black);
    margin-bottom: 8px;
}

.order-subtitle {
    font-size: 14px;
    color: var(--gcb-smoke);
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.order-account-number {
    color: var(--gcb-black);
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 2px 8px;
    background: rgba(253, 184, 19, 0.1);
    border-radius: 4px;
    font-size: 13px;
}

.order-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.order-status-badge i {
    font-size: 14px;
}

.order-status-success {
    background: rgba(0, 163, 77, 0.1);
    color: var(--gcb-success);
    border: 1px solid rgba(0, 163, 77, 0.2);
}

.order-status-pending {
    background: rgba(230, 126, 34, 0.1);
    color: #e67e22;
    border: 1px solid rgba(230, 126, 34, 0.2);
}

.order-status-failed {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.order-status-processing {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.order-amount-badge {
    background: linear-gradient(135deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark) 100%);
    padding: 12px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

.order-amount-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--gcb-black);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.order-body {
    padding: 20px;
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    padding: 16px;
    background: rgba(253, 184, 19, 0.02);
    border-radius: 8px;
    border: 1px solid rgba(253, 184, 19, 0.1);
    margin-bottom: 20px;
}

.order-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
}

.order-action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Transaction Status Notices */
.failed-transaction-notice,
.processing-transaction-notice {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.failed-transaction-notice {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.failed-transaction-notice i {
    font-size: 18px;
    flex-shrink: 0;
}

.processing-transaction-notice {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.processing-transaction-notice .spinner-border {
    flex-shrink: 0;
}

/* Animations */
.animate__custom_delay__0p5s {
    animation-delay: 0.4s;
    animation-duration: 2s;
}

.animate__custom_delay__1s {
    animation-delay: 0.8s;
    animation-duration: 2s;
}

.animate__custom_delay__1p5s {
    animation-delay: 1.2s;
    animation-duration: 2s;
}

.animate__custom_delay__2s {
    animation-delay: 1.6s;
    animation-duration: 2s;
}

.animate__custom_delay__2p5s {
    animation-delay: 2s;
    animation-duration: 2s;
}

.animate__custom_delay__3s {
    animation-delay: 2.4s;
    animation-duration: 2s;
}

.animate__custom_delay__3p5s {
    animation-delay: 2.8s;
    animation-duration: 2s;
}

.animate__custom_delay__4s {
    animation-delay: 3.2s;
    animation-duration: 2s;
}

/* AOS */
[data-aos] {
    pointer-events: none;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* App Download */
.app-download-links-02 {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Avatar */
.avatar-container {
    width: 40px;
    height: 40px;
    background: #f7f7f7;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d1d1d3;
}

.avatar-icon-circle-initials {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    border: 1px solid #f8b344;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px !important;
    font-weight: 600;
}

.avatar-icon-initials {
    border: 1px solid #f8b344;
    padding: 25px;
    font-size: 32px !important;
    font-weight: 600;
}

.avatar-img {
    width: 20px;
    height: 20px;
    color: #000000;
    object-fit: contain;
}

/* Background Colors */
.bg-gcb-amber {
    background: var(--gcb-amber) !important;
}

.bg-gold-dark {
    background: var(--gcb-primary-gold-dark) !important;
}

.bg-gold-light {
    background: var(--gcb-gold-light) !important;
}

.bg-chocolate-brown {
    background: var(--gcb-chocolate-brown) !important;
}

.bg-lemon-chiffon{
    background: var(--gcb-lemon-chiffon) !important;
}

.bg-gcb-dark {
    background-color: #2f434e !important;
}

.bg-gcb-highlight {
    border: 2px dashed #007bff;
    background-color: #f0f8ff;
}

.bg-gcb-lemonchiffon {
    background-color: #fffad04d !important;
}

.bg-gcb-lemonchiffon-2 {
    background-color: rgba(255, 250, 208, 0.6) !important;
}

.bg-gcb-light {
    background-color: #f6f4f4 !important;
}

.bg-gcb-light-02 {
    background-color: #f8f8f8 !important;
}

.bg-gcb-light-03 {
    background-color: #f6f6f6 !important;
}

.bg-gcb-light-grey {
    background: #f3f3f3 !important;
}

.bg-gcb-yellow {
    background-color: #ffc52a !important;
}

.bg-info-2 {
    background-color: #f1f8ff;
}

.bg-light-gray {
    background-color: #f6f6f654 !important;
}

.bg-gray-light {
    background-color: var(--gcb-gray-light) !important;
}

.bg-profile-img {
    background-color: #d9d9d9 !important;
}

.bg-tb-info {
    background-color: #f0f5fe !important;
}

/* Border */
.border.border-0p5px {
    border-width: 0.5px !important;
}

.border-info-2 {
    border-color: #0e88fb;
    border-width: 1px;
}

.border-gold-dark {
    border-color: var(--gcb-primary-gold-dark) !important;
}

.border-gold-light {
    border-color: var(--gcb-gold-light) !important;
}

/* Branch Option */
.branch-option-02 {
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.05) 0%,
            rgba(253, 184, 19, 0.02) 100%);
}

/* Button */
.btn {
    --bs-btn-padding-x: 2.25rem !important;
}

.btn-back {
    background: transparent;
    color: #2f434e;
    border: 1px solid #2f434e;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-back:hover {
    background: #2f434e;
    border-color: #2f434e;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 67, 78, 0.15);
}

/* Mobile Back Button for SubSteps */
.btn-back-mobile {
    transition: all 0.3s ease;
}

.btn-back-mobile:hover {
    background: #2f434e !important;
    border-color: #2f434e !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(47, 67, 78, 0.25);
}

.btn-back-mobile:hover i {
    color: white !important;
}

.btn-deposit {
    background: #2f434e;
    color: white;
    border: none;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.btn-deposit::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s;
}

.btn-deposit:hover {
    background: #1f2f38;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 67, 78, 0.25);
    color: white;
}

.btn-deposit:hover::before {
    left: 100%;
}

.btn-gcb-amber {
    background: var(--gcb-amber);
    color: var(--gcb-black);
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid var(--gcb-amber);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.btn-gcb-amber.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-gcb-amber:hover {
    background: var(--gcb-primary-gold-dark);
    border-color: var(--gcb-primary-gold-dark);
    color: var(--gcb-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

.btn-gcb-black {
    background-color: #0a0a0a !important;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
}

.btn-gcb-black:hover {
    background-color: #ffc52a !important;
    border-color: #ffc52a !important;
    color: #0a0a0a !important;
    transition: all 0.3s ease-in-out;
}

.btn-gcb-dark {
    background-color: #4a4a4a !important;
    color: #ffffff !important;
}

.btn-gcb-dark-02 {
    background-color: #36464d !important;
    color: #ffffff !important;
}

.btn-gcb-dark-03 {
    background-color: #737373 !important;
    color: #ffffff !important;
}

.btn-gcb-dark-04 {
    background-color: #2f434e !important;
    color: #ffffff !important;
}

.btn-gcb-dark-04:hover,
.btn-gcb-dark-04:focus {
    background-color: #1f2f38 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 67, 78, 0.25);
}

.btn-gcb-davyGray-80 {
    background-color: #50505080 !important;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
}

.btn-gcb-davyGray-80:hover {
    background-color: #2f434e !important;
    color: #ffffff !important;
    transition: all 0.3s ease-in-out;
}

.btn-gcb-yellow {
    background-color: rgba(255, 197, 42, 0.85) !important;
    border-color: rgba(255, 197, 42, 0.85) !important;
    color: #0a0a0a !important;
    transition: all 0.3s ease-in-out;
}

.btn-gcb-yellow:hover {
    background-color: #ffc52a !important;
    border-color: #ffc52a !important;
    color: #0a0a0a !important;
}

.btn-group-reg .btn-sm {
    min-height: unset !important;
}

.btn-later {
    background: transparent;
    color: #6c757d;
    border: 2px solid #dee2e6;
    padding: 14px 40px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: 200px;
}

.btn-later:hover {
    background: #f8f9fa;
    border-color: #adb5bd;
    color: #495057;
}

.btn-light {
    background: white;
    color: var(--gcb-black);
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    border: 1px solid var(--gcb-gray-300);
    transition: all 0.3s ease;
}

.btn-light:hover {
    background: var(--gcb-gray-100);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline-gcb-dark {
    color: #2f434e;
    border-color: #2f434e;
}

.btn-outline-gcb-dark:active {
    color: #fff;
    background-color: #2f434e;
    border-color: #2f434e;
    box-shadow: inset 0 3px 5px rgba(47, 67, 78, 0.125);
}

.btn-outline-gcb-dark:focus {
    box-shadow: 0 0 0 3px rgba(47, 67, 78, 0.2);
}

.btn-outline-gcb-dark:hover {
    color: #fff;
    background-color: #2f434e;
    border-color: #2f434e;
    transform: translateY(-1px);
}

.btn-outline-gcb-yellow {
    color: #0a0a0a;
    border-color: #ffc52a !important;
}

.btn-outline-gcb-yellow.active,
.btn-outline-gcb-yellow:hover {
    color: #0a0a0a;
    border-color: #ffc52a !important;
}

.btn-outline-gcb-yellow-02 {
    color: #2f434e;
    border-color: #2f434e !important;
}

.btn-outline-gcb-yellow-02.active,
.btn-outline-gcb-yellow-02:hover {
    color: white;
    background-color: #2f434e !important;
    border-color: #2f434e !important;
    transform: translateY(-1px);
}

.btn-rounded {
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 30px !important;
}

.btn-outline-custom {
    background: transparent;
    color: var(--gcb-primary);
    border: 1px solid var(--gcb-primary);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 400;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(47, 67, 78, 0.15);
}

.btn-outline-custom:hover {
    background: var(--gcb-primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 67, 78, 0.15);
}

.btn-outline-custom.btn-sm {
    padding: 3px 10px;
    font-size: 0.75rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(47, 67, 78, 0.15);
}

.btn-save-continue {
    background: #2f434e;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(47, 67, 78, 0.15);
}

.btn-save-continue.btn-sm {
    padding: 6px 16px;
    font-size: 0.875rem;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(47, 67, 78, 0.15);
}

.btn-save-continue:hover {
    background: #1f2f38;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 67, 78, 0.25);
}

.btn-save-draft {
    background: transparent;
    color: #2f434e;
    border: 2px solid #e0e0e0;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-save-draft:hover {
    border-color: #2f434e;
    color: #2f434e;
    background: rgba(47, 67, 78, 0.05);
    transform: translateY(-1px);
}

.btn-submit {
    background: #2f434e;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(47, 67, 78, 0.15);
}

.btn-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn-submit.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.btn-submit:hover {
    background: #1f2f38;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 67, 78, 0.25);
}

.btn-w-150px {
    min-width: 150px !important;
}

.btn.btn-sm {
    min-height: unset !important;
}

/* Capture */
.capture-size-1 {
    width: 180px;
    height: 300px;
    border-radius: 150px;
    object-fit: cover;
    border: 4px solid #ffc52a;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-width: 400px !important;
    max-height: 400px !important;
    transform: scaleX(-1);
}

/* Card */
.card-header-gradient {
    height: 4px;
    background: linear-gradient(90deg,
            var(--gcb-amber) 0%,
            var(--gcb-success) 100%);
}

.card.custom-card-rounded {
    border-radius: 1rem;
}

.card.custom-card-rounded .card-header {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

/* Circle Icon */
.circle-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #d1d1d3;
    color: #717182;
    font-size: 20px;
}

.circle-icon-lg {
    width: 80px !important;
    height: 80px !important;
}

.circle-icon-md {
    width: 60px !important;
    height: 60px !important;
}

.circle-icon-sm {
    width: 30px !important;
    height: 30px !important;
}

.file-thumbnail {
    width: 100px !important;
    height: 100px !important;
    border: 4px solid var(--gcb-amber);
    object-fit: cover !important;
    border-radius: 50% !important;
}

/* Completion */
.completion-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.completion-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FDB813' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* Countdown */
.countdown-timer {
    font-size: 18px;
    font-weight: 700;
    color: var(--gcb-black, #1a1a1a);
}

/* CTA */
.cta-content {
    background: white;
    border-radius: 30px;
    padding: 4rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.cta-premium {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Custom Dropdown */
.custom-dropdown-toggle::after {
    display: none;
}

/* Custom Form */
.custom-form-check {
    display: block;
    padding-left: 0 !important;
}

/* Custom Icon */
.custom-icon-100px {
    width: 100%;
    height: 100px;
    object-fit: contain;
}

.custom-icon-md {
    width: 100%;
    height: 40px;
    object-fit: contain;
}

.custom-icon-sm {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Custom Radio */
.custom-radio-input {
    display: none;
}

.custom-radio-input:checked+.custom-radio-label {
    background-color: #0a0a0a;
    color: #ffffff;
}

.custom-radio-label {
    padding: 0.35rem 0.75rem;
    font-size: 12px;
    color: #4b5563;
    border-radius: 0.5rem;
    border: 1px solid #d1d5db;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.1s ease;
    user-select: none;
    font-weight: 400;
}

.custom-radio-label:active {
    transform: scale(0.98);
}

.custom-radio-label:hover {
    background-color: #e6e6e8;
}

/* Customer Tab */
.customer-tab {
    padding: 5px 30px;
}

.customer-tab.active {
    border-bottom: 4px solid #ffc52a;
}

/* Declaration */
.declaration-content {
    margin-bottom: 30px;
}

.declaration-content h5 {
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.declaration-content h5 i {
    color: #fdb813;
    margin-right: 10px;
    font-size: 14px;
}

.declaration-content .text-content {
    color: #5a5a5a;
    font-size: 14px;
    line-height: 1.6;
    text-align: justify;
    background: rgba(253, 184, 19, 0.02);
    padding: 15px;
    border-radius: 8px;
    border-left: 3px solid #fdb813;
}

/* Detail */
.detail-item {
    display: flex;
    flex-direction: column;
}

.detail-label {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 14px;
    font-weight: 600;
}

/* Disability */
.disability-item .small {
    color: #ffffff91 !important;
}

/* Disabled */
.disabled .select2-container .select2-selection--single {
    background-color: #f3f4f6;
    cursor: not-allowed;
}

/* Download Link */
.download-link-02 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    color: var(--gcb-dark, #4a4a4a);
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    min-width: 120px;
    justify-content: center;
}

.download-link-02:hover {
    border-color: var(--gcb-amber, #fdb813);
    color: var(--gcb-amber, #fdb813);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.2);
}

.download-link-02 i {
    font-size: 16px;
}

/* Edit Links */
.edit-link {
    float: right;
    color: var(--gcb-blue);
    border: 1px solid var(--gcb-blue);
    background: transparent;
    border-radius: 5px;
    font-size: 12px;
    padding: 8px 24px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.edit-link:hover {
    color: var(--gcb-white);
    border: 1px solid var(--gcb-blue);
    background: var(--gcb-blue);
}

/* Error */
#email-errors,
#national-id-errors,
#modal-national-id-errors,
#phone-number-errors,
.field-errors {
    display: block !important;
    width: 100% !important;
    margin-top: 0;
    min-height: 0;
    clear: both !important;
    position: relative !important;
}

#email-errors:empty,
#national-id-errors:empty,
#modal-national-id-errors:empty,
#phone-number-errors:empty,
.field-errors:empty {
    display: none;
}

#email-errors:not(:empty),
#national-id-errors:not(:empty),
#modal-national-id-errors:not(:empty),
#phone-number-errors:not(:empty),
.field-errors:not(:empty) {
    margin-top: 8px;
}

.error-message {
    font-size: 14px;
    color: #dc3545;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FAB */
.fab-02 {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg,
            var(--gcb-primary-gold) 0%,
            var(--gcb-primary-gold-dark) 100%);
    color: var(--gcb-gray-900);
    border: none;
    box-shadow: var(--gcb-shadow-lg);
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all var(--gcb-transition-base);
}

/* FAQ */
.faq-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, white 0%, #f8f9fa 100%);
}

/* Feature */
.fas.feature-icon {
    display: flex !important;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 1.5rem;
    color: var(--gcb-amber);
}

.feature-icon-box {
    width: 60px;
    height: auto;
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.1) 0%,
            rgba(253, 184, 19, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-item-02 {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--gcb-dark, #4a4a4a);
}

.feature-item-02 i {
    color: var(--gcb-success, #28a745);
    font-size: 12px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, white 100%);
}

/* Field Errors */
.field-errors .invalid-feedback,
#national-id-errors .invalid-feedback,
#modal-national-id-errors .invalid-feedback,
#email-errors .invalid-feedback,
#phone-number-errors .invalid-feedback {
    display: block !important;
    width: 100%;
    margin-top: 8px;
    font-size: 0.875em;
    color: #dc3545;
}

.field-errors .parsley-errors-list {
    margin: 0;
    padding: 0;
}

.field-errors .parsley-errors-list li {
    margin: 0;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: floatCard 4s ease-in-out infinite;
}

/* Font Sizes */
.fs-12-px {
    font-size: 12px !important;
}

.fs-13-px {
    font-size: 13px !important;
}

.fs-14-px {
    font-size: 14px !important;
}

.fs-18-px {
    font-size: 18px !important;
}

.fs-20-px {
    font-size: 20px !important;
}

.fs-22-px {
    font-size: 22px !important;
}

.fs-24-px {
    font-size: 24px !important;
}

.fs-36-px {
    font-size: 36px !important;
}

/* Form */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
}

.form-check-input.preview:disabled,
.form-check-label.preview {
    opacity: 1 !important;
}

.form-check-input:checked {
    background-color: #0a0a0a;
    border-color: #0a0a0a;
}

.form-group {
    margin-bottom: 20px;
}

.form-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gcb-smoke);
    font-size: 16px;
}

.form-icon-wrapper {
    position: relative;
}

.form-icon-wrapper .form-control {
    padding-left: 44px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gcb-black);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.form-label .required {
    color: #dc3545;
    margin-left: 4px;
}

.form-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 25px;
    margin-left: 0;
    margin-right: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
    border-right: 1px solid #f0f0f0;
}

.form-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section-subtitle {
    color: var(--gcb-smoke);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 14px;
}

.form-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--gcb-black);
    margin-bottom: 8px;
}

.form-steps-nav {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 30px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.form-steps-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark, #d4a017) 100%);
}

.form-text {
    font-size: 12px;
    color: var(--gcb-smoke);
    margin-top: 5px;
}

/* ========================================
   PART 1 COMPLETE - CONTINUED IN PART 2
   ======================================== */

/* PART 2: G-M */

/* Form Control & Select */
/* .form-control,
.form-select.form-select-2 {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    /* padding: 12px 16px; */
    font-size: 15px;
    line-height: 25px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    width: 100%;
}


.form-control:focus,
.form-select.form-select-2:focus {
    border-color: var(--gcb-amber);
    box-shadow: 0 0 0 3px rgba(253, 184, 19, 0.1);
    outline: none;
    background: white;
    box-shadow: 0 0 0 0.2rem rgba(253, 184, 19, 0.1);
}

.form-control:hover,
.form-select.form-select-2:hover {
    border-color: rgba(253, 184, 19, 0.4);
}

.table .form-select.form-select-2.is-valid {
    background: none !important;
    padding-right: 0.75rem !important;
} */

.select2-container--default .select2-selection--single {
    font-weight: 400;
    line-height: 1.5;
    color: #000000;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #000000;
    line-height: 25px;
}

.form-control:focus {
    box-shadow: none;
    outline: none;
}

/* GCB Classes */
.gcb ul {
    padding: 5px 5px;
    background: #e3e3e3;
    border-radius: 10px;
}

.gcb .nav-pills .nav-link.active {
    color: #0a0a0a !important;
    background-color: #ffc52a !important;
}

.gcb .nav-pills .nav-link {
    color: #a1a1a1 !important;
}

.gcb-btn-primary {
    background: #2f434e;
    color: white;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 400;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
}

.gcb-btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: left 0.5s ease;
}

.gcb-btn-primary:disabled {
    background: #e0e0e0;
    color: #999;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.gcb-btn-primary:hover {
    background: var(--gcb-amber);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47, 67, 78, 0.25);
    color: var(--gcb-black) !important;
}

.gcb-btn-primary:hover::before {
    left: 100%;
}

.gcb-error-message {
    margin: 8px 0;
    font-size: 13px;
    color: var(--gcb-red, #dc3545);
    display: block;
    font-weight: 500;
    animation: slideDown 0.3s ease-out;
    width: 100%;
}

.gcb-error-message i {
    margin-right: 4px;
}

.gcb-form-control {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--gcb-black);
    background: white;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.gcb-form-control.is-invalid {
    border-color: var(--gcb-red);
    background: #fff5f5;
    background-image: none !important;
}

.gcb-form-control.is-invalid:focus {
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
}

.gcb-form-control:focus {
    outline: none;
    border-color: var(--gcb-amber);
    box-shadow: 0 0 0 4px rgba(253, 184, 19, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.08);
    background: #fffef5;
}

.gcb-form-control:hover {
    border-color: #d0d0d0;
}

.gcb-form-control::placeholder {
    color: #b0b0b0;
    font-weight: 400;
}

.gcb-form-group {
    margin-bottom: 24px;
    display: block;
    width: 100%;
}

.gcb-form-group:has(.field-errors:not(:empty)) .gcb-help-text,
.gcb-form-group:has(.parsley-errors-list:not(:empty)) .gcb-help-text {
    display: none;
}

.gcb-form-group .gcb-error-message,
.gcb-form-group .parsley-errors-list {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    display: block !important;
    width: 100% !important;
    float: none !important;
    clear: both !important;
}

.gcb-form-label {
    display: block;
    font-weight: 600;
    color: var(--gcb-black);
    margin-bottom: 10px;
    font-size: 14px;
}

.gcb-form-label .gcb-optional {
    color: var(--gcb-smoke);
    font-weight: 400;
    font-size: 13px;
    margin-left: 4px;
}

.gcb-form-label .gcb-required {
    color: var(--gcb-red);
    font-weight: 700;
    margin-left: 4px;
}

.gcb-form-label .text-amber {
    color: var(--gcb-amber) !important;
}

.text-gcb-smoke {
    color: var(--gcb-smoke) !important;
}

.text-gcb-gray-800 {
    color: var(--gcb-gray-800) !important;
}

.text-chocolate-brown {
    color: var(--gcb-chocolate-brown) !important;
}

.text-lemon-chiffon {
    color: var(--gcb-lemon-chiffon) !important;
}

.gcb-h1 {
    font-weight: 600;
    font-size: 40px;
    letter-spacing: -1px;
}

.gcb-h1-subtitle {
    font-size: 24px;
    letter-spacing: 0;
    color: #565656 !important;
}

.gcb-help-text {
    margin-top: 8px;
    font-size: 13px;
    color: var(--gcb-smoke);
    display: flex;
    align-items: center;
    line-height: 1.5;
}

.gcb-info-box {
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.1) 0%,
            rgba(253, 184, 19, 0.2) 100%);
    border: 1px solid rgba(253, 184, 19, 0.1);
    border-radius: 12px;
    padding: 20px;
}

.gcb-input-wrapper {
    position: relative;
    display: block;
    width: 100%;
}

.gcb-input-wrapper.focused .gcb-form-control {
    border-color: var(--gcb-amber);
    box-shadow: 0 0 0 4px rgba(253, 184, 19, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.08);
    background: #fffef5;
}

.gcb-input-wrapper.input-group {
    position: relative;
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    overflow: hidden;
}

.gcb-input-wrapper.input-group .input-group-text,
.gcb-input-wrapper.input-group .gcb-form-control {
    border: none;
}

.gcb-input-wrapper.input-group .input-group-text {
    padding: 0.375rem 0 0.375rem 0.75rem !important;
    background: #fff !important;
    letter-spacing: 0.025rem !important;
}

.gcb-input-wrapper.input-group .gcb-form-control {
    border-left: 0 !important;
    padding-left: 0 !important;
    letter-spacing: 0.025rem !important;
}

.gcb-input-wrapper.input-group:focus-within {
    border: 2px solid var(--gcb-amber);
    box-shadow: 0 0 0 4px rgba(253, 184, 19, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.08);
}

.gcb-input-wrapper.input-group:has(.is-invalid) {
    border-color: #dc3545;
}

.gcb-input-wrapper.input-group:has(.is-invalid):focus-within {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.gcb-input-wrapper.input-group .invalid-feedback {
    display: none !important;
}

.gcb-success-message {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.gcb-yellow-gradient {
    background: linear-gradient(93.06deg,
            #ffcd29 2.54%,
            #f6bf36 58.23%) !important;
}

/* Height Classes */
.h-100px {
    height: 100px !important;
}

.h-115px {
    height: 115px !important;
}

.h-120px {
    height: 120px !important;
    border-radius: 10px;
}

.h-40px {
    height: 40px !important;
}

.h-60px {
    height: 60px !important;
}

.h-80px {
    height: 80px !important;
}

/* Harvest Gold Card */
.harvest-gold-card {
    background: #fffad04d;
    border: 1px solid #dd8e18;
    border-radius: 20px;
}

/* Help */
.help-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.help-link {
    flex: 1;
    padding: 10px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    color: var(--gcb-black);
    font-size: 13px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.help-link i {
    font-size: 16px;
}

.help-link:hover {
    background: var(--gcb-amber);
    border-color: var(--gcb-amber);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(253, 184, 19, 0.3);
}

.help-section {
    background: white;
    margin: 20px 30px 30px;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
}

.help-text {
    font-size: 12px;
    color: var(--gcb-smoke);
    margin-top: 5px;
}

.help-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gcb-black);
    margin-bottom: 8px;
}

/* Hero */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--gcb-amber);
    color: var(--gcb-black);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

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

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 3s ease-in-out infinite;
}

.hero-premium {
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
}

.hero-premium::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 50%,
            rgba(253, 184, 19, 0.15) 0%,
            transparent 50%),
        radial-gradient(circle at 80% 80%,
            rgba(253, 184, 19, 0.08) 0%,
            transparent 50%),
        radial-gradient(circle at 40% 20%,
            rgba(0, 0, 0, 0.05) 0%,
            transparent 50%);
    animation: floatPattern 20s ease-in-out infinite;
}

.hero-subtitle {
    color: var(--gcb-gray-600);
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg,
            var(--gcb-gray-900) 0%,
            var(--gcb-gray-700) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-title.text-white {
    -webkit-text-fill-color: white;
}

.hero-visual {
    position: relative;
}

/* Icon Overlay */
.icon-overlay-left {
    mix-blend-mode: color-burn;
    position: absolute;
    z-index: 0;
    bottom: 0;
    height: 100px;
    left: -30px;
    opacity: 0.8;
}

.icon-overlay-right {
    mix-blend-mode: color-burn;
    position: absolute;
    z-index: 0;
    top: 0;
    height: 130px;
    right: 0;
    opacity: 0.8;
}

/* Image */
img.img-fluid.object-cover {
    object-fit: cover !important;
}

.img-preview {
    width: 200px;
    height: 300px;
    padding: 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    border: 2px #c8b8b8 dashed;
}

/* Info */
.info-card.enhanced-info {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 20px;
}

.info-card-02 {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.info-card-content {
    padding: 24px 20px;
}

.info-card-footer {
    background: rgba(0, 163, 77, 0.05);
    padding: 12px 20px;
    border-top: 1px solid rgba(0, 163, 77, 0.1);
    font-size: 13px;
    color: var(--gcb-success);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-card-header {
    background: #c5c5c5;
    position: relative;
    padding: 20px;
    color: var(--gcb-black);
    display: flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.info-card-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-image: radial-gradient(circle at 20% 80%,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 30.5%),
        radial-gradient(circle at 80% 20%,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 30.5%),
        radial-gradient(circle at 40% 40%,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 30.5%),
        radial-gradient(circle at 90% 90%,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 30.5%);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px, 20px 20px, 60px 60px;
    pointer-events: none;
}

.info-card-header i {
    font-size: 24px;
    color: var(--gcb-amber);
}

.info-card-header .info-card-title {
    color: var(--gcb-black);
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.info-content-02 {
    padding: 32px;
}

.info-description-02 {
    font-size: 16px;
    color: var(--gcb-dark, #4a4a4a);
    margin-bottom: 32px;
    line-height: 1.6;
}

.info-footer {
    background: rgba(0, 163, 77, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 12px;
    color: var(--gcb-success);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-header {
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
}

.info-header-02 {
    background: linear-gradient(135deg,
            var(--gcb-amber, #fdb813) 0%,
            var(--gcb-primary-gold-dark, #d4a017) 100%);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-header-01-danger {
    background: var(--gcb-danger);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-header-02b {
    padding: 20px 24px;
    flex-direction: column;
    text-align: center;
    gap: 12px;
}

.info-icon-02 {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
}

.info-icon i {
    font-size: 60px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-item.compact {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.info-item.compact .info-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: rgba(253, 184, 19, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gcb-amber);
    font-size: 16px;
}

.info-item.compact .info-item-text h6 {
    font-size: 13px;
    font-weight: 600;
    color: var(--gcb-black);
    margin-bottom: 4px;
}

.info-item.compact .info-item-text p {
    font-size: 12px;
    color: #4a4a4a;
    line-height: 1.4;
    margin: 0;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(253, 184, 19, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gcb-amber);
}

.info-item-text h5 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gcb-black);
    margin-bottom: 4px;
}

.info-item-text p {
    font-size: 13px;
    color: var(--gcb-smoke);
    line-height: 1.5;
    margin: 0;
}

.info-label {
    font-size: 14px;
    color: #6d6d6d;
    font-weight: 500;
}

.info-value {
    font-size: 15px;
    color: var(--gcb-black);
    font-weight: 500;
}

.info-list {
    margin: 0;
    padding-left: 20px;
}

.info-list li {
    margin-bottom: 8px;
}

.info-list li:last-child {
    margin-bottom: 0;
}

.info-note-card {
    background: linear-gradient(135deg,
            rgba(25, 131, 199, 0.05) 0%,
            rgba(25, 131, 199, 0.02) 100%);
    border: 1px solid rgba(25, 131, 199, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
}

.info-note-content {
    color: var(--gcb-smoke);
    font-size: 13px;
    line-height: 1.6;
}

.info-note-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gcb-blue);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
}

.info-note-header i {
    font-size: 18px;
}

.info-panel {
    background: #c5c5c5;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.info-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.4;
    background-image: radial-gradient(circle at 20% 80%,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 30.5%),
        radial-gradient(circle at 80% 20%,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 30.5%),
        radial-gradient(circle at 40% 40%,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 30.5%),
        radial-gradient(circle at 90% 90%,
            transparent 30%,
            rgba(255, 255, 255, 0.3) 30.5%);
    background-size: 80px 80px;
    background-position: 0 0, 40px 40px, 20px 20px, 60px 60px;
    pointer-events: none;
}

.info-panel-content {
    padding: 0 30px 30px;
    position: relative;
    z-index: 1;
}

.info-panel-header {
    padding: 30px 30px 20px;
    position: relative;
    z-index: 1;
}

.info-panel-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--gcb-black);
    margin: 0;
}

.info-title-02 {
    color: white;
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

/* Input Group */
.input-group>.gcb-form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

.input-group-custom {
    padding: 0 10px;
    background-color: #f7f7f7;
    border-radius: 6px;
}

.input-group-custom .input-group-text {
    background-color: #f7f7f7;
    border: none;
}

.input-group-custom .readonly-select,
.input-group-custom .input-group-text {
    background: none !important;
}

/* Invalid */
.invalid-feedback {
    display: block;
    color: #dc3545;
    font-size: 12px;
    margin-top: 5px;
}

.is-invalid {
    border-color: #dc3545;
}

.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.is-valid {
    border-color: #28a745;
}

.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

/* ITI (International Telephone Input) */
.iti {
    width: 100%;
}

.iti .form-control.phone-input {
    padding-left: 6rem !important;
}

.iti__search-input {
    padding: 0.5rem 0.6rem !important;
}

/* List */
.list-gcb-bullet {
    list-style-type: disc;
}

.list-gcb-bullet::marker {
    color: #ffc52a !important;
}

/* Loading */
.loading-dots {
    display: flex;
    gap: 4px;
}

.loading-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--gcb-amber, #fdb813), #d4a017);
    animation: loading-pulse 1.4s ease-in-out infinite both;
}

.loading-dots span:nth-child(1) {
    animation-delay: -0.32s;
}

.loading-dots span:nth-child(2) {
    animation-delay: -0.16s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0s;
}

.loading-text {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Margin */
.mb-7 {
    margin-bottom: 7rem !important;
}

/* Misc */
.md-small {
    font-size: 0.9rem !important;
    line-height: 1.5rem !important;
}

.min-height-1 {
    min-height: 1rem !important;
}

.mobile-option-02 {
    background: linear-gradient(135deg,
            rgba(0, 71, 137, 0.05) 0%,
            rgba(0, 71, 137, 0.02) 100%);
}

.mobile-option-02 .option-icon-02 {
    background: var(--gcb-blue, #004789);
    box-shadow: 0 4px 12px rgba(0, 71, 137, 0.3);
}

.modern-loading {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ========================================
   PART 2 COMPLETE - CONTINUED IN PART 3
   ======================================== */

/* PART 3: N-S */

/* Nav Link */
.nav-link.active .circle-icon {
    color: #000000 !important;
    border: 1px solid #ffc52a !important;
}

/* Navbar */
.navbar-gcb {
    border-bottom: 3px solid var(--gcb-amber);
    transition: all 0.3s ease;
}

.navbar-gcb .navbar-brand {
    color: white !important;
    font-weight: bold;
}

.navbar-gcb .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-gcb .nav-link:hover {
    color: var(--gcb-amber) !important;
    transform: translateY(-1px);
}

.navbar-scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* No Rounded */
.no-rounded-left {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
}

/* Option */
.option-card-02 {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 24px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.option-card-02::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--gcb-amber, #fdb813) 0%,
            var(--gcb-primary-gold-dark, #d4a017) 100%);
}

.option-card-02:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--gcb-amber, #fdb813);
}

.option-description-02 {
    font-size: 14px;
    color: var(--gcb-dark, #4a4a4a);
    line-height: 1.6;
    margin-bottom: 20px;
}

.option-features-02 {
    margin-bottom: 24px;
}

.option-icon-02 {
    width: 56px;
    height: 56px;
    background: var(--gcb-amber, #fdb813);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

.option-link-02 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gcb-blue, #004789);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 16px;
    background: rgba(0, 71, 137, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.option-link-02:hover {
    background: var(--gcb-blue, #004789);
    color: white;
    transform: translateY(-1px);
}

.option-title-02 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gcb-black, #000);
    margin-bottom: 12px;
}

.options-grid-02 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* OTP */
.otp-container {
    max-width: 400px;
}

.otp-input-field {
    width: 60px;
    height: 60px;
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.otp-input-field:focus {
    outline: none;
    border-color: var(--gcb-amber);
    box-shadow: 0 0 0 4px rgba(253, 184, 19, 0.12),
        0 2px 4px rgba(0, 0, 0, 0.08);
    background: #fffef5;
}

.otp-input-field:hover {
    border-color: #d0d0d0;
}

.otp-input-field.is-invalid {
    border-color: var(--gcb-red, #dc3545);
    background: #fff5f5;
    animation: shake 0.3s;
}

.otp-input-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

/* Padding */
.padding-login {
    padding: 50px !important;
}

.pb-100px,
.py-100px,
.p-100px {
    padding-bottom: 100px !important;
}

.pb-120px,
.py-120px,
.p-120px {
    padding-bottom: 120px !important;
}

.pl-100px,
.px-100px,
.p-100px {
    padding-left: 100px !important;
}

.pl-120px,
.px-120px,
.p-120px {
    padding-left: 120px !important;
}

.pr-100px,
.px-100px,
.p-100px {
    padding-right: 100px !important;
}

.pr-120px,
.px-120px,
.p-120px {
    padding-right: 120px !important;
}

.pt-100px,
.py-100px,
.p-100px {
    padding-top: 100px !important;
}

.pt-120px,
.py-120px,
.p-120px {
    padding-top: 120px !important;
}

.pt-50px,
.py-50px,
.p-50px {
    padding-top: 50px !important;
}

.pb-50px,
.py-50px,
.p-50px {
    padding-bottom: 50px !important;
}

.pl-50px,
.px-50px,
.p-50px {
    padding-left: 50px !important;
}

.pr-50px,
.px-50px,
.p-50px {
    padding-right: 50px !important;
}

.pt-30px,
.py-30px,
.p-30px {
    padding-top: 30px !important;
}

.pb-30px,
.py-30px,
.p-30px {
    padding-bottom: 30px !important;
}

.pl-30px,
.px-30px,
.p-30px {
    padding-left: 30px !important;
}

.pr-30px,
.px-30px,
.p-30px {
    padding-right: 30px !important;
}

.pt-20px,
.py-20px,
.p-20px {
    padding-top: 20px !important;
}

.pb-20px,
.py-20px,
.p-20px {
    padding-bottom: 20px !important;
}

.pl-20px,
.px-20px,
.p-20px {
    padding-left: 20px !important;
}

.pr-20px,
.px-20px,
.p-20px {
    padding-right: 20px !important;
}

.mt-50px,
.my-50px,
.m-50px {
    margin-top: 50px !important;
}

.mb-50px,
.my-50px,
.m-50px {
    margin-bottom: 50px !important;
}

.ms-50px,
.mx-50px,
.m-50px {
    margin-left: 50px !important;
}

.me-50px,
.mx-50px,
.m-50px {
    margin-right: 50px !important;
}

.mt-20px,
.my-20px,
.m-20px {
    margin-top: 20px !important;
}

.mb-20px,
.my-20px,
.m-20px {
    margin-bottom: 20px !important;
}

.ms-20px,
.mx-20px,
.m-20px {
    margin-left: 20px !important;
}

.me-20px,
.mx-20px,
.m-20px {
    margin-right: 20px !important;
}

.mt-100px,
.my-100px,
.m-100px {
    margin-top: 100px !important;
}

.mb-100px,
.my-100px,
.m-100px {
    margin-bottom: 100px !important;
}

.ms-100px,
.mx-100px,
.m-100px {
    margin-left: 100px !important;
}

.me-100px,
.mx-100px,
.m-100px {
    margin-right: 100px !important;
}

.py-0p8rem {
    padding-top: 0.8rem !important;
    padding-bottom: 0.8rem !important;
}

/* Parsley */
input.parsley-success {
    color: #212529 !important;
}

.parsley-custom-error {
    color: var(--gcb-red);
    font-size: 13px;
    font-weight: 500;
    display: block !important;
    animation: slideDown 0.3s ease-out;
    width: 100% !important;
    clear: both !important;
    position: relative !important;
}

.parsley-custom-error::before {
    content: "\f06a";
    font-family: "Font Awesome 5 Free", serif;
    font-weight: 900;
    margin-right: 6px;
    color: var(--gcb-red);
}

.parsley-errors-container {
    display: block !important;
    width: 100% !important;
    position: relative !important;
    clear: both !important;
}

.parsley-errors-list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100% !important;
    display: block !important;
    clear: both !important;
    position: relative !important;
}

.parsley-errors-list li {
    list-style: none;
    color: var(--gcb-red);
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

.parsley-errors-list.filled {
    margin-top: 6px !important;
}

/* Phone */
.phone-display {
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.05) 0%,
            rgba(253, 184, 19, 0.02) 100%);
    border: 1px solid rgba(253, 184, 19, 0.2);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.phone-display i {
    color: var(--gcb-amber);
    font-size: 20px;
}

.phone-number {
    font-size: 18px;
    font-weight: 600;
    color: var(--gcb-black);
    letter-spacing: 0.5px;
}

.phone-number-errors {
    min-height: 0;
    width: 100%;
    display: block;
}

.phone-number-errors:empty {
    display: none;
}

.phone-number-errors .gcb-error-message {
    margin-top: 8px;
}

.phone-number-wrapper {
    position: relative;
    display: block !important;
    width: 100%;
}

.phone-number-wrapper .gcb-form-control {
    padding-left: 84px;
}

.phone-number-wrapper .iti {
    width: 100%;
    display: block !important;
}

.phone-number-wrapper .iti__flag-container {
    background: transparent;
    border: none;
}

.phone-number-wrapper+#phone-number-errors,
.phone-number-errors {
    display: block !important;
    width: 100% !important;
    clear: both !important;
    position: relative !important;
    margin-top: 0;
}

/* Process Timeline */
.process-timeline {
    padding: 100px 0;
    position: relative;
}

/* Product Card */
.product-card {
    position: relative;
    overflow: hidden;
}

.product-card-link.is-inactive,
.residency-card.is-inactive {
    pointer-events: none;
    cursor: not-allowed;
}

.product-card-link.is-inactive .product-card,
.residency-card.is-inactive {
    opacity: 0.6;
    filter: grayscale(80%);
    box-shadow: none;
    transform: none;
}

/* Profile */
.profile-header {
    background: linear-gradient(135deg, var(--gcb-black) 0%, #2c2c2c 100%);
    padding: 40px 30px 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.profile-header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(253, 184, 19, 0.1) 100%);
}

.profile-info .info-item {
    margin-bottom: 0 !important;
}

/* Progress */
.progress-bar {
    position: absolute;
    top: 20px;
    left: 60px;
    right: 60px;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark) 100%);
    transition: width 0.3s ease;
}

.progress-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: 3px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--gcb-smoke);
    transition: all 0.3s ease;
}

.progress-container {
    padding: 0 20px;
    margin-bottom: 32px;
}

.progress-label {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gcb-gray-50);
    text-align: center;
    white-space: nowrap;
    font-weight: 500;
}

.progress-line {
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.progress-line-active {
    position: absolute;
    top: 24px;
    left: 10%;
    height: 2px;
    background: linear-gradient(90deg,
            var(--gcb-success) 0%,
            var(--gcb-success) 66%,
            var(--gcb-amber) 66%,
            var(--gcb-amber) 100%);
    width: 40%;
    z-index: 1;
    transition: width 0.3s ease;
}

.progress-step {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 120px;
}

.progress-step.active .progress-circle {
    background: var(--gcb-amber);
    border-color: var(--gcb-amber);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.4);
}

.progress-step.active .progress-label {
    color: var(--gcb-amber);
    font-weight: 600;
}

.progress-step .progress-label:hover,
.progress-step:hover .progress-label {
    color: var(--gcb-amber) !important;
    font-weight: 600;
}

.progress-step.completed .progress-label {
    color: var(--gcb-white);
    /* font-weight: 600; */
}

.progress-step.completed .progress-circle {
    background: var(--gcb-success);
    border-color: var(--gcb-success);
    color: white;
}

.progress-steps-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

/* Quick Help */
.quick-help-card {
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.05) 0%,
            rgba(253, 184, 19, 0.02) 100%);
    border: 1px solid rgba(253, 184, 19, 0.15);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

/* Readonly */
.readonly-label {
    pointer-events: none !important;
    color: #555;
    cursor: not-allowed;
}

.readonly-input,
.input-group-custom.readonly-input,
.input-group-custom.readonly-select {
    pointer-events: none !important;
    background-image: linear-gradient(rgb(0 0 0 / 0%), rgb(0 0 0 / 3%)),
        url("../assets/non-editable-field.png") !important;
    background-position: center !important;
    color: #555;
    background-size: cover !important;
    background-blend-mode: multiply;
    cursor: not-allowed;
    background-repeat: no-repeat;
}

/* Referral */
.referral-valid-feedback {
    display: flex;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875em;
    color: var(--bs-form-valid-color);
}

/* Requirement */
.requirement-check {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
}

.requirement-check i {
    color: white;
    font-size: 0.875rem;
}

.requirement-item {
    display: flex;
    align-items: start;
    transition: all 0.3s ease;
    margin-right: 3px;
}

.requirement-item:hover {
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.05) 0%,
            rgba(253, 184, 19, 0.02) 100%);
    transform: translateX(3px);
}

.requirement-region .requirement-item {
    display: inline-flex;
    width: 100%;
    gap: 0px;
    align-items: start;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.requirements-modern {
    padding: 100px 0;
}

.requirements-section {
    padding: 16px;
}

.requirements-section .requirement-item {
    display: inline-flex;
    gap: 0;
    font-size: 13px;
    color: #6c757d;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

.requirements-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.5rem;
    letter-spacing: 0.045em;
}

/* Resend */
.resend-link {
    align-items: center;
    background: transparent;
    border-radius: 6px;
    border: 1px solid var(--gcb-blue);
    color: var(--gcb-blue);
    display: inline-flex;
    font-weight: 600;
    gap: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.resend-link.disabled {
    color: #999;
    cursor: not-allowed;
    pointer-events: none;
}

.resend-link:hover {
    background: var(--gcb-blue);
    color: white;
    transform: translateX(3px);
}

.resend-section {
    text-align: center;
    padding-top: 20px;
    /* border-top: 1px solid #e0e0e0; */
}

.resend-text {
    color: var(--gcb-smoke);
    font-size: 14px;
    margin-bottom: 8px;
}

/* Retry */
.retry-button {
    align-self: flex-start;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.retry-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Review */
.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.review-item {
    padding: 15px;
    background: rgba(253, 184, 19, 0.02);
    border-left: 3px solid rgba(253, 184, 19, 0.3);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.review-item:hover {
    background: rgba(253, 184, 19, 0.05);
    border-left-color: var(--gcb-amber);
}

.review-label {
    font-size: 12px;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
    font-weight: 500;
}

.review-section {
    background: white;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.review-section:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.review-value {
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 600;
    word-break: break-word;
}

.review-value.empty {
    color: #999;
    font-style: italic;
    font-weight: normal;
}

/* Rounded */
.rounded-4 .rounded-top {
    border-top-left-radius: 1rem !important;
    border-top-right-radius: 1rem !important;
}

.rounded-bx {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
}

.rounded-tx {
    border-top-left-radius: 10px !important;
    border-top-right-radius: 10px !important;
}

/* Section */
.section-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.section-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.1) 0%,
            rgba(253, 184, 19, 0.2) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #fdb813;
    font-size: 20px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gcb-gray-600);
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    background: linear-gradient(135deg,
            var(--gcb-gray-900) 0%,
            var(--gcb-gray-700) 100%);
    letter-spacing: -0.0015rem !important;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title h4 {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 5px 0;
}

.section-title p {
    color: #6c757d;
    font-size: 14px;
    margin: 0;
    margin-top: 3px;
}

/* Security */
.security-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--gcb-smoke);
}

.security-feature i {
    color: var(--gcb-success);
    font-size: 16px;
}

.security-features {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e0e0e0;
    justify-content: center;
}

/* Select2 */
/* .select2.select2-container {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: auto !important;
} */

.select2-container--default .select2-selection--multiple .select2-search.select2-search--inline {
    width: 90% !important;
}

/* Signature */
.signature-img {
    height: 200px;
    max-height: 120px !important;
    width: 100% !important;
    object-fit: contain;
    object-position: center;
}

.signature-pad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(230, 245, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #004085;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 0.25rem;
    cursor: not-allowed;
    z-index: 10;
}

.signature-pad-size {
    width: 100%;
    height: 220px;
}

/* Signup */
.signup-card,
.unified-signup-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 32px;
    position: relative;
    overflow: visible;
}

.signup-card::before,
.unified-signup-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--gcb-amber) 0%,
            var(--gcb-success) 100%);
}

.signup-hero {
    position: relative;
    padding: 40px 0 30px;
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.05) 0%,
            rgba(253, 184, 19, 0.02) 100%);
    overflow: visible;
}

.signup-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FDB813' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

/* SM Icon */
.sm-icon {
    height: 40px;
    width: 40px;
}

/* Spinner */
.spinner-border {
    display: inline-block;
    width: 1rem;
    height: 1rem;
    vertical-align: text-bottom;
    border: 0.25em solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    /* animation: spin 0.75s linear infinite; */
}

.spinner-border-sm {
    width: 1rem;
    height: 1rem;
    border-width: 0.2em;
}

/* Stat Card */
.stat-card-1 {
    top: 20%;
    right: -20px;
    animation-delay: 0s;
}

.stat-card-2 {
    bottom: 20%;
    left: -20px;
    animation-delay: 1s;
}

/* Status */
.status-active {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.status-dormant {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

/* Step */
.step-counter {
    width: 40px;
    height: 40px;
    background: white;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    color: #6c757d;
    margin: 0 auto 8px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.step-icon {
    font-size: 2rem;
    color: var(--gcb-amber);
}

.step-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid transparent;
    background-clip: padding-box;
    position: relative;
    transition: all 0.3s ease;
}

.step-icon-wrapper::before {
    content: "";
    position: absolute;
    top: -3px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(135deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark) 100%);
    border-radius: 50%;
    z-index: -1;
}

.step-icon-wrapper:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-name {
    font-size: 12px;
    color: var(--gcb-smoke);
    font-weight: 500;
    line-height: 1.3;
    max-width: 120px;
    margin: 0 auto;
}

/* Stepper */
.stepper-item {
    flex: 1;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.stepper-item:last-child::before {
    display: none;
}

.stepper-item:hover .step-counter {
    transform: scale(1.05);
}

.stepper-item.active .step-counter {
    background: #fdb813 !important;
    border-color: #fdb813 !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(253, 184, 19, 0.3);
}

.stepper-item.active .step-name {
    color: #fdb813 !important;
    font-weight: 600;
}

.stepper-item.completed .step-counter {
    background: var(--gcb-primary-gold-dark, #d4a017);
    border-color: var(--gcb-primary-gold-dark, #d4a017);
    color: white;
}

.stepper-item.completed .step-counter i {
    color: white;
    font-size: 14px;
}

.stepper-item.completed::before {
    background: var(--gcb-primary-gold-dark, #d4a017);
}

.stepper-item::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 50%;
    right: -50%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.stepper-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 20px;
}

/* Sticky */
.sticky-info-container {
    position: sticky;
    top: 100px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
}

/* Subtitle */
.subtitle-style-1 {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #4e5f69;
}

.subtitle-style-2 {
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    color: #4c4f50;
}

/* Success */
.success-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    animation: fadeIn 0.8s ease;
}

.success-header {
    background: #2f434e;
    padding: 60px 20px 40px;
    text-align: center;
    position: relative;
}

.success-icon {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: pulse 2s ease infinite;
}

.success-icon i {
    font-size: 60px;
    color: var(--gcb-success);
}

.success-message {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
}

.success-title {
    color: white;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Support */
.support-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gcb-amber, #fdb813);
    text-decoration: none;
    transition: all 0.3s ease;
}

.support-item:hover {
    color: var(--gcb-primary-gold-dark, #d4a017);
    transform: translateX(5px);
}

.support-item i {
    font-size: 20px;
}

.support-options {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.support-section {
    padding: 30px;
    text-align: center;
    border-top: 1px solid #dee2e6;
    background: #f8f9fa;
}

.support-title {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 15px;
}

/* ========================================
   PART 3 COMPLETE - CONTINUED IN PART 4
   ======================================== */

/* PART 4: T-Z + Animations + Media Queries + Commented Conflicts */

/* Text Colors */
.txt-gcb-black {
    color: var(--gcb-black) !important;
}

.txt-gcb-blue {
    color: #02438d !important;
}

.txt-gcb-dark {
    color: #4a4a4a !important;
}

.txt-gcb-dark-02 {
    color: #36464d !important;
}

.txt-gcb-dark-03 {
    color: #0a0a0a !important;
}

.txt-gcb-muted {
    color: #6c757d !important;
}

.txt-gcb-yellow {
    color: #ffc52a !important;
}

/* Timeline */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            var(--gcb-amber) 0%,
            var(--gcb-primary-gold-dark) 50%,
            var(--gcb-amber) 100%);
    z-index: 0;
}

.timeline-step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 0.2rem;
}

/* Timer */
#timer {
    display: inline-block;
    min-width: 40px;
    font-weight: 600;
    color: var(--gcb-black, #1a1a1a);
}

/* Title Options */
.title-options {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Unavailable Badge */
.unavailable-badge {
    background-color: #6c757d;
    position: absolute;
    top: 16px;
    right: 16px;
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* User */
a.user-files:hover {
    background: #ffffff !important;
    transition: all 0.3s ease-in-out !important;
    padding: 10px !important;
    border-radius: 8px !important;
}

.user-account-nav {
    background: #748c9933;
    border-radius: 8px;
    padding: 10px 20px;
}

.user-details {
    display: flex;
    gap: 30px;
    margin-top: 15px;
}

.user-files {
    transition: all 0.7s ease-in-out !important;
}

.user-info {
    position: relative;
    z-index: 2;
}

.user-name {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 8px;
}

.user-profile-img {
    height: 300px !important;
    width: 200px !important;
    object-fit: cover;
    object-position: center;
}

/* Video */
video#cameraFeed {
    transform: scaleX(-1) !important;
}

/* Width */
.w-18 {
    width: 18% !important;
}

.w-65p {
    width: 65% !important;
}

.w-80p {
    width: 80% !important;
}

/* Welcome Message */
.welcome-message {
    margin-bottom: 32px;
    margin-top: 0;
    position: relative;
    z-index: 5;
    padding: 20px;
}

/* X-Small & XS-Small */
.x-small {
    font-size: 0.85rem !important;
    line-height: 1.4rem !important;
}

.xs-small {
    font-size: 0.75rem !important;
    line-height: 1.2rem !important;
}

.row {
    /* --bs-gutter-x: 1.8rem; */
    /* --bs-gutter-y: 1.4rem; */
}

.accordion {
    border: none !important;
}

#existingSignaturePreview a {
    display: block !important;
}

.invalid-feedback {
    color: var(--gcb-red) !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-top: 8px !important;
    display: block !important;
    width: 100% !important;
    clear: both !important;
}

.row .g-2,
.row .gy-2 {
    --bs-gutter-y: 0.5rem !important;
}

.z-index-1 {
    z-index: 1 !important;
}

/* ========================================
   ANIMATIONS & KEYFRAMES
   ======================================== */
@keyframes account-reveal {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatCard {

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

    50% {
        transform: translateY(-5px) rotate(1deg);
    }
}

@keyframes floatPattern {

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

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

@keyframes loading-pulse {

    0%,
    80%,
    100% {
        transform: scale(0.8);
        opacity: 0.5;
    }

    40% {
        transform: scale(1.2);
        opacity: 1;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(253, 184, 19, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 184, 19, 0);
    }
}

@keyframes shake {

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

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

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

/* ========================================
   MEDIA QUERIES - RESPONSIVE DESIGN
   ======================================== */

/* Large Screens */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* Medium Screens and Below */
@media (max-width: 991px) {
    .sticky-info-container {
        position: relative;
        top: 0;
        max-height: none;
        margin-top: 40px;
    }
}

/* Small Screens */
@media (max-width: 768px) {
    .action-buttons {
        flex-direction: column;
    }

    .app-download-links-02 {
        justify-content: center;
    }

    .btn-deposit,
    .btn-later {
        width: 100%;
    }

    .download-link-02 {
        flex: 1;
        min-width: auto;
    }

    .floating-stats,
    .timeline-line {
        display: none;
    }

    .form-actions {
        flex-direction: column-reverse;
        gap: 15px;
    }

    .form-body {
        padding: 20px;
    }

    .form-section .col-md-4:only-child {
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }

    .help-options {
        flex-direction: column;
    }

    .hero-subtitle {
        font-size: 15px;
        padding: 0 20px;
    }

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

    .info-content-02 {
        padding: 24px;
    }

    .option-card-02 {
        padding: 20px;
    }

    .options-grid-02 {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .otp-input-group {
        gap: 10px !important;
        flex-wrap: nowrap !important;
    }

    .otp-input-field {
        width: 40px !important;
        height: 40px !important;
        font-size: 1rem !important;
    }

    .progress-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .progress-container {
        padding: 0 10px;
    }

    .progress-label {
        font-size: 9px;
    }

    .progress-line,
    .progress-line-active {
        top: 16px;
    }

    .progress-line-active {
        left: 5%;
        width: 45%;
    }

    .progress-step {
        min-width: 60px;
        max-width: 70px;
        flex: 1;
    }

    .progress-steps-wrapper {
        gap: 10px;
    }

    .review-grid {
        grid-template-columns: 1fr;
    }

    .review-section {
        padding: 20px;
    }

    .security-features {
        flex-direction: column;
        gap: 12px;
    }

    .signup-card,
    .unified-signup-card {
        padding: 24px;
        margin: 0 10px;
    }

    .step-name {
        font-size: 10px;
        max-width: 80px;
    }

    .stepper-wrapper {
        padding: 0 10px;
    }

    .sticky-info-container {
        position: relative;
        top: 0;
        max-height: none;
        margin-top: 30px;
    }

    .success-title {
        font-size: 24px;
    }

    .welcome-message {
        margin-bottom: 24px;
    }

    .application-section-title {
        font-size: 20px;
    }

    .application-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .application-primary-actions {
        flex-direction: column;
    }

    .application-primary-actions .btn {
        width: 100%;
    }

    .application-empty-state {
        padding: 60px 20px;
    }

    .empty-state-icon {
        width: 100px;
        height: 100px;
    }

    .empty-state-icon i {
        font-size: 40px;
    }

    .empty-state-title {
        font-size: 20px;
    }

    .empty-state-message {
        font-size: 14px;
    }

    .dashboard-tabs .nav-pills {
        flex-direction: column;
    }

    .dashboard-tabs .nav-pills .nav-link {
        justify-content: center;
        width: 100%;
    }

    .orders-summary-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .order-summary-card {
        padding: 20px;
    }

    .order-amount-badge {
        padding: 10px 16px;
    }

    .order-amount-value {
        font-size: 18px;
    }

    .order-details-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .order-actions {
        flex-direction: column;
    }

    .order-action-buttons {
        flex-direction: column;
    }

    .order-action-buttons .btn,
    .order-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .failed-transaction-notice,
    .processing-transaction-notice {
        font-size: 13px;
        padding: 10px 14px;
    }

    .gcb-error-message {
        margin: 8px auto !important;
        text-align: center !important;
    }
}

/* ========================================
   MODAL & SUPPORT MODAL
   ======================================== */

#supportModal .modal-content {
    border-radius: 30px !important;
}

/* ========================================
   RECEIPT STYLES
   ======================================== */

/* Receipt Modal */
.receipt-modal {
    z-index: 1056 !important;
    /* Above Bootstrap backdrop (1050) */
}

.receipt-modal .modal-dialog {
    max-width: 600px;
    z-index: inherit;
    /* Inherit from parent */
}

.receipt-modal .modal-content {
    border-radius: 16px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Ensure Bootstrap backdrop stays at correct level */
.modal-backdrop {
    z-index: 1050 !important;
}

/* Critical: Prevent containers from creating new stacking contexts */
main,
.container,
.dashboard-hero,
.tab-content,
.tab-pane,
.orders-section {
    position: static !important;
    z-index: auto !important;
    transform: none !important;
    /* transforms create stacking contexts */
}

/* Ensure modal opens properly */
body.modal-open {
    overflow: hidden !important;
    padding-right: 0 !important;
}

/* Receipt Container */
.receipt-container {
    background: white;
    padding: 0;
    position: relative;
}

/* Receipt Header */
.receipt-header {
    background: linear-gradient(135deg, #2f434e 0%, #1f2f38 100%);
    padding: 40px 30px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.receipt-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FDB813' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.receipt-logo {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.receipt-logo i {
    font-size: 36px;
    color: var(--gcb-amber);
}

.receipt-title {
    color: white;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.receipt-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Receipt Status Badge */
.receipt-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 20px auto 0;
    position: relative;
    z-index: 1;
}

.receipt-status-success {
    background: linear-gradient(135deg, var(--gcb-success) 0%, #00c96d 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 163, 77, 0.3);
}

.receipt-status i {
    font-size: 16px;
}

/* Receipt Body */
.receipt-body {
    padding: 30px;
}

/* Receipt Amount Display */
.receipt-amount-section {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg,
            rgba(253, 184, 19, 0.1) 0%,
            rgba(253, 184, 19, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 30px;
    border: 2px dashed rgba(253, 184, 19, 0.3);
}

.receipt-amount-label {
    font-size: 13px;
    color: var(--gcb-smoke);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 8px;
}

.receipt-amount-value {
    font-size: 42px;
    font-weight: 800;
    color: var(--gcb-black);
    letter-spacing: -1px;
    line-height: 1;
}

.receipt-amount-currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--gcb-smoke);
    margin-right: 4px;
}

/* Receipt Details Section */
.receipt-details-section {
    margin-bottom: 25px;
}

.receipt-section-title {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--gcb-smoke);
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f0f0f0;
}

/* Receipt Detail Item */
.receipt-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    gap: 20px;
}

.receipt-detail-row:last-child {
    border-bottom: none;
}

.receipt-detail-label {
    font-size: 13px;
    color: var(--gcb-smoke);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.receipt-detail-label i {
    color: var(--gcb-amber);
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.receipt-detail-value {
    font-size: 14px;
    color: var(--gcb-black);
    font-weight: 600;
    text-align: right;
    word-break: break-word;
}

/* Receipt Footer */
.receipt-footer {
    background: #f8f9fa;
    padding: 25px 30px;
    text-align: center;
    border-top: 2px dashed #e0e0e0;
}

.receipt-footer-text {
    font-size: 12px;
    color: var(--gcb-smoke);
    line-height: 1.6;
    margin-bottom: 20px;
}

.receipt-footer-text i {
    color: var(--gcb-success);
    margin-right: 4px;
}

/* Receipt Actions */
.receipt-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Receipt Print Styles */
@media print {

    /* Hide everything except the receipt modal */
    body * {
        visibility: hidden;
    }

    .receipt-modal,
    .receipt-modal * {
        visibility: visible;
    }

    .receipt-modal {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        z-index: 9999;
    }

    /* Hide modal chrome elements */
    .receipt-modal .modal-header,
    .receipt-actions,
    .btn-close,
    .modal-backdrop {
        display: none !important;
        visibility: hidden !important;
    }

    .receipt-modal .modal-dialog {
        max-width: 100%;
        margin: 0;
    }

    .receipt-modal .modal-content {
        box-shadow: none;
        border: none;
        border-radius: 0;
    }

    .receipt-container {
        padding: 20px;
    }

    /* Ensure colors print correctly */
    .receipt-header {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .receipt-amount-section {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}

/* Receipt Reference Number */
.receipt-reference {
    font-family: "Courier New", monospace;
    letter-spacing: 1px;
    font-weight: 700;
}

/* Receipt Timestamp */
.receipt-timestamp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    color: var(--gcb-smoke);
    margin-top: 10px;
}

.receipt-timestamp i {
    color: var(--gcb-amber);
}

/* Receipt Download Button */
.btn-receipt-download {
    background: var(--gcb-amber);
    color: var(--gcb-black);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-receipt-download:hover {
    background: var(--gcb-primary-gold-dark);
    color: var(--gcb-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 184, 19, 0.3);
}

/* Receipt Print Button */
.btn-receipt-print {
    background: white;
    color: var(--gcb-black);
    border: 2px solid #e0e0e0;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-receipt-print:hover {
    background: #f8f9fa;
    border-color: var(--gcb-amber);
    color: var(--gcb-black);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Receipt Security Footer */
.receipt-security-note {
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg,
            rgba(0, 163, 77, 0.05) 0%,
            rgba(0, 163, 77, 0.02) 100%);
    border-radius: 8px;
    border: 1px solid rgba(0, 163, 77, 0.1);
}

.receipt-security-note p {
    font-size: 11px;
    color: #6c757d;
    margin: 0;
    line-height: 1.5;
}

/* Receipt Divider */
.receipt-divider {
    height: 2px;
    background: repeating-linear-gradient(to right,
            #e0e0e0 0,
            #e0e0e0 10px,
            transparent 10px,
            transparent 20px);
    margin: 25px 0;
}

#cardPreferencesModal .modal-fullscreen {
    width: 90vw !important;
    height: 90%;
    margin: 0;
}

.custom-popover {
    --bs-popover-max-width: 250px;
    --bs-popover-border-color: var(--gcb-amber);
    --bs-popover-header-font-size: .8rem;
    --bs-popover-header-bg: var(--gcb-amber);
    --bs-popover-header-color: var(--gcb-black);
    --bs-popover-body-padding-x: 1rem;
    --bs-popover-body-padding-y: .5rem;
    --bs-popover-font-size: .75rem;
}


.pagination li.page-item.active {
    --bs-pagination-active-bg: var(--gcb-amber) !important;
    --bs-pagination-active-color: var(--gcb-black) !important;
    --bs-pagination-active-border-color: var(--gcb-primary-gold-dark) !important;
}

.border-1p5 {
    --bs-border-width: 1.5px;
}

.top-30 {
    top: 30% !important;
}

.suggestion-btn {
    transition: all 0.2s;
}
.suggestion-btn:hover {
    background-color: #e9ecef;
    border-color: #adb5bd;
    transform: translateY(-1px);
}

p#referral-code-box {
    margin-top: 5px;
}

.form-check.form-check-end{
    padding-left: 0;
}

.form-check.form-check-end .form-check-input {
    float: unset;
    margin-right: 0;
    margin-left: 0;
}

/* Account purpose/activity section spacing */
.account-purpose-grid {
    --bs-gutter-y: 1rem;
}

.select-wrapper-account-activity .activity-options .form-check {
    display: inline-flex;
    align-items: center;
    margin: 0;
    padding: 2px 0;
}

.select-wrapper-account-activity .activity-options .form-check-input {
    float: none;
    margin: 0;
}

.select-wrapper-account-activity .activity-options .form-check-label {
    margin-left: 8px;
    line-height: 1.2;
}

.select-wrapper-account-activity .activity-data-row {
    min-height: 112px;
}

@media (min-width: 768px) {
    .border-end-md {
        border-right: 1px solid #dee2e6;
    }

    .select-wrapper-account-activity .activity-options {
        gap: 1rem !important;
    }
}

@media (max-width: 767.98px) {
    .select-wrapper-account-activity .activity-data-row {
        min-height: 0;
    }
}
