/* USAGC Multi-Step Form Frontend Styling */
:root {
    --usagc-navy: #0f2b5c;
    --usagc-navy-dark: #071938;
    --usagc-red: #dc2626;
    --usagc-red-hover: #b91c1c;
    --usagc-blue-light: #eff6ff;
    --usagc-blue-card: #f0f7ff;
    --usagc-blue-border: #bfdbfe;
    --usagc-blue-accent: #2563eb;
    --usagc-text-dark: #0f172a;
    --usagc-text-muted: #64748b;
    --usagc-border: #e2e8f0;
    --usagc-radius: 14px;
    --usagc-shadow: 0 10px 25px -5px rgba(15, 43, 92, 0.06), 0 8px 10px -6px rgba(15, 43, 92, 0.04);
}

.usagc-app-wrapper {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: var(--usagc-text-dark);
    margin: 0 auto;
    padding: 20px 15px;
    box-sizing: border-box;
}

.usagc-app-wrapper * {
    box-sizing: border-box;
}

.text-red { color: var(--usagc-red) !important; }
.usagc-divider { height: 1px; background: var(--usagc-border); margin: 24px 0; }

/* -------------------------------------------------------------
   STEP PROGRESS HEADER
------------------------------------------------------------- */
.usagc-progress-header {
    margin-bottom: 40px;
    padding: 10px 0;
}

.usagc-progress-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 0 auto;
}

.usagc-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    cursor: pointer;
    flex: 1;
}

.circle-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    background: #ffffff;
    color: var(--usagc-navy);
    font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.step-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--usagc-navy);
    margin-top: 10px;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.usagc-step-node.active .circle-node {
    background: var(--usagc-navy);
    border-color: var(--usagc-navy);
    color: #ffffff;
    box-shadow: 0 0 0 4px rgba(15, 43, 92, 0.15);
}

.usagc-step-node.completed .circle-node {
    background: #10b981;
    border-color: #10b981;
    color: #ffffff;
}

.usagc-step-divider {
    flex: 1;
    height: 3px;
    background: #e2e8f0;
    position: relative;
    top: -14px;
    margin: 0 4px;
    border-radius: 4px;
    transition: background-color 0.4s ease;
}

.usagc-step-divider.active,
.usagc-step-divider.completed {
    background: var(--usagc-blue-accent);
}


/* -------------------------------------------------------------
   STEP 1: NUMBER OF APPLICANTS VIEW
------------------------------------------------------------- */
.usagc-hero-card {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid var(--usagc-blue-border);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px -15px rgba(37, 99, 235, 0.08);
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    color: #475569;
    max-width: 650px;
    margin: 0 auto 30px auto;
    line-height: 1.6;
}

.usagc-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--usagc-blue-card);
    border: 1px solid var(--usagc-blue-border);
    border-radius: 50px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--usagc-navy);
    margin-bottom: 36px;
}

.usagc-info-pill .info-icon {
    font-size: 18px;
    color: var(--usagc-red);
}

.usagc-counter-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    max-width: 420px;
    margin: 0 auto 36px auto;
    padding: 20px;
}

.counter-label {
    display: block;
    font-size: 12px;
    font-weight: 800;
    color: var(--usagc-navy);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.counter-control-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dbeafe;
    border-radius: 12px;
    padding: 6px 12px;
}

.cnt-btn {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    color: var(--usagc-navy);
    font-size: 22px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cnt-btn:hover {
    background: var(--usagc-navy);
    color: #ffffff;
    border-color: var(--usagc-navy);
}

.cnt-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--usagc-navy);
}

.hero-cta-wrap {
    margin-top: 20px;
}

.hero-footer-trust {
    text-align: center;
    margin-top: 30px;
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hero-footer-trust i { color: var(--usagc-blue-accent); font-size: 16px; }

/* -------------------------------------------------------------
   BUTTONS
------------------------------------------------------------- */
.usagc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1;
}

.usagc-btn-red {
    background: var(--usagc-red);
    color: #ffffff;
}

.usagc-btn-red:hover {
    background: var(--usagc-red-hover);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
}

.usagc-btn-outline {
    background: #ffffff;
    border-color: #cbd5e1;
    color: var(--usagc-navy);
}

.usagc-btn-outline:hover {
    border-color: var(--usagc-navy);
    background: #f8fafc;
}

.usagc-btn-lg {
    padding: 16px 36px;
    font-size: 16px;
    border-radius: 12px;
}

.usagc-btn-block { width: 100%; }

/* -------------------------------------------------------------
   STEP VIEWS TOGGLING
------------------------------------------------------------- */
.usagc-step-view {
    display: none;
}
.usagc-step-view.active {
    display: block;
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(6px); }
    to { opacity: 1; transform: translateY(0); }
}

/* -------------------------------------------------------------
   STEP 2: APPLICANT FORM & SIDEBAR
------------------------------------------------------------- */
.step-title-header {
    margin-bottom: 20px;
}

.step-title-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0;
}

.step-subtitle-badge {
    font-size: 13px;
    font-weight: 600;
    color: var(--usagc-text-muted);
    margin-top: 4px;
}

.usagc-alert-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.5;
}

.info-alert {
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    color: #0369a1;
    border-radius: 8px;
    padding: 14px 18px;
    margin-bottom: 24px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-alert i { font-size: 18px; color: #ef4444; }

.step-2-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
}

/* Responsive Step 2 Overview Dropdown format for screens <= 980px */
@media screen and (max-width: 980px) {
    .step-2-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
    }

    .step-2-sidebar {
        order: -1 !important;
        width: 100% !important;
    }

    #sidebarApplicantSummaryCard {
        border-radius: 12px !important;
        border: 1px solid #bfdbfe !important;
        background: #ffffff !important;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.08) !important;
        padding: 0 !important;
        overflow: hidden !important;
    }

    .sidebar-card-header {
        padding: 12px 16px !important;
        background: #f0f7ff !important;
        cursor: pointer !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        user-select: none !important;
    }

    .overview-mobile-badge {
        display: inline-block !important;
        font-size: 11px !important;
        background: #dbeafe !important;
        color: #1d4ed8 !important;
        padding: 2px 8px !important;
        border-radius: 10px !important;
        font-weight: 700 !important;
        margin-left: 6px !important;
    }

    .overview-chevron-icon {
        display: block !important;
        font-size: 13px !important;
        color: #2563eb !important;
        transition: transform 0.3s ease !important;
    }

    #sidebarApplicantSummaryCard.is-expanded .overview-chevron-icon {
        transform: rotate(180deg) !important;
    }

    .sidebar-card-body {
        display: none;
        padding: 14px 16px !important;
        border-top: 1px solid #bfdbfe !important;
        background: #ffffff !important;
    }

    #sidebarApplicantSummaryCard.is-expanded .sidebar-card-body {
        display: block !important;
    }

    .form-row-2 {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }
}

@media screen and (min-width: 981px) {
    .sidebar-card-header {
        cursor: default !important;
        padding: 0 0 10px 0 !important;
        background: transparent !important;
    }

    .overview-mobile-badge {
        display: none !important;
    }

    .overview-chevron-icon {
        display: none !important;
    }

    .sidebar-card-body {
        display: block !important;
    }
}

.step-2-main-form {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--usagc-navy);
    margin: 24px 0 18px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title i { color: #2563eb; }

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 18px;
}

.form-row-1 {
    margin-bottom: 18px;
}

.form-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #334155;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field input[type="date"],
.usagc-select {
    width: 100%;
    height: 44px;
    padding: 10px 14px;
    font-size: 13.5px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.usagc-select:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.field-hint {
    display: block;
    font-size: 11.5px;
    color: #64748b;
    margin-top: 4px;
}

/* Radio Option Pills matching Image */
.pills-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.pill-option {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #e0f2fe;
    border: 1px solid #bae6fd;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0f2b5c;
    cursor: pointer;
    transition: all 0.2s ease;
}

.pill-option input[type="radio"] {
    display: inline-block !important;
    margin: 0 !important;
    width: 14px !important;
    height: 14px !important;
    accent-color: #2563eb !important;
    cursor: pointer !important;
}

.pill-option:hover { background: #bae6fd; }

.pill-option.active {
    background: #bae6fd;
    color: #0f2b5c;
    border-color: #3b82f6;
    box-shadow: 0 1px 4px rgba(37, 99, 235, 0.15);
}

.phone-input-wrap {
    display: flex;
    gap: 8px;
}

.phone-code-select {
    min-width: 145px;
    width: auto;
    flex-shrink: 0;
    max-width: 100%;
    height: 44px;
    padding: 8px 10px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    background: #ffffff;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
    outline: none;
    text-overflow: ellipsis;
}

.status-next-card {
    background: #dbeafe !important;
    border: 1px solid #bfdbfe !important;
    border-radius: 14px !important;
    padding: 20px !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.08) !important;
}

.status-next-card .status-card-header {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.status-next-card .check-icon {
    font-size: 20px;
    color: #2563eb;
    margin-top: 2px;
}

.status-next-card h5 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1e3a8a;
    margin: 0 0 6px 0;
}

.status-next-card p {
    font-size: 12.5px;
    color: #3b82f6;
    margin: 0;
    line-height: 1.4;
}

.status-next-card button {
    width: 100%;
    background: #dc2626;
    border: 1px solid #dc2626;
    color: #ffffff;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 800;
    border-radius: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.status-next-card button:hover {
    background: #b91c1c;
}

.step-2-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--usagc-border);
}

/* Sidebar Cards */
.sidebar-card {
    background: #ffffff;
    border: 1px solid var(--usagc-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--usagc-shadow);
    margin-bottom: 24px;
}

.sidebar-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0 0 16px 0;
}

.meter-content {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.gauge-ring { width: 64px; height: 64px; }
.circular-chart { display: block; max-width: 100%; max-height: 100%; }
.circle-bg { fill: none; stroke: #e2e8f0; stroke-width: 3.8; }
.circle { fill: none; stroke-width: 3.8; stroke-linecap: round; stroke: #2563eb; }
.percentage { fill: var(--usagc-navy); font-size: 9px; font-weight: 800; text-anchor: middle; }

.gauge-label strong { display: block; font-size: 14px; color: var(--usagc-navy); }
.gauge-label span { font-size: 12px; color: var(--usagc-text-muted); }

.progress-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.progress-checklist li {
    font-size: 13px;
    font-weight: 600;
    color: var(--usagc-text-muted);
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.progress-checklist li.completed { color: #16a34a; }
.progress-checklist li.active { color: var(--usagc-navy); font-weight: 700; }

.status-next-card {
    background: var(--usagc-blue-card);
    border: 1px solid var(--usagc-blue-border);
}

.status-card-header {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.status-card-header .check-icon {
    font-size: 24px;
    color: #2563eb;
}

.status-card-header h5 {
    font-size: 14px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0 0 4px 0;
}

.status-card-header p {
    font-size: 12px;
    color: #475569;
    margin: 0;
    line-height: 1.4;
}

/* -------------------------------------------------------------
   STEP 3: CHOOSE YOUR PLAN
------------------------------------------------------------- */
.step-3-grid {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 30px;
}

.includes-card {
    background: var(--usagc-blue-card);
    border: 1px solid var(--usagc-blue-border);
    position: sticky;
    top: 20px;
}

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

.includes-list li {
    font-size: 12px;
    font-weight: 600;
    color: var(--usagc-navy);
    padding: 10px 0;
    border-bottom: 1px solid rgba(191, 219, 254, 0.6);
    display: flex;
    align-items: center;
    gap: 10px;
}

.includes-list li i { color: #2563eb; font-size: 14px; }

.usagc-plan-card {
    background: #ffffff;
    border: 2px solid var(--usagc-border);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.25s ease;
}

.usagc-plan-card:hover {
    border-color: #93c5fd;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.08);
}

.usagc-plan-card.selected {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.usagc-plan-card.card-popular {
    background: var(--usagc-blue-card);
    border-color: #2563eb;
}

.plan-top-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #1d4ed8;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.8px;
}

.plan-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.plan-badge-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #dbeafe;
    color: #1d4ed8;
    font-size: 16px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.plan-title-wrap { flex: 1; }
.plan-title-wrap h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0 0 4px 0;
}

.plan-price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-val {
    font-size: 26px;
    font-weight: 800;
    color: var(--usagc-navy);
}

.old-price {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

.one-time-label {
    font-size: 12px;
    color: var(--usagc-text-muted);
}

.plan-select-btn {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--usagc-navy);
    font-size: 12px;
    padding: 10px 18px;
}

.usagc-plan-card.card-popular .plan-select-btn {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    font-size: 13px;
    color: #334155;
    padding: 6px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.4;
}

.plan-features li i { color: #2563eb; margin-top: 2px; }

/* Lifetime Plan Card Dark Style */
.usagc-plan-card.card-lifetime {
    background: linear-gradient(135deg, #071938 0%, #0f2b5c 100%);
    border-color: #1e3a8a;
    color: #ffffff;
}

.usagc-plan-card.card-lifetime .plan-title-wrap h4,
.usagc-plan-card.card-lifetime .price-val {
    color: #ffffff;
}

.usagc-plan-card.card-lifetime .plan-badge-circle {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

.usagc-plan-card.card-lifetime .plan-select-btn {
    background: #ffffff;
    color: var(--usagc-navy);
    border: none;
    font-weight: 800;
}

.usagc-plan-card.card-lifetime .plan-features li {
    color: #e2e8f0;
}

.step-3-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--usagc-border);
}

/* -------------------------------------------------------------
   STEP 4 & 5: REVIEW & PAYMENT
------------------------------------------------------------- */
.usagc-review-card,
.usagc-payment-card {
    background: #ffffff;
    border: 1px solid var(--usagc-border);
    border-radius: 20px;
    padding: 40px;
    margin: 0 auto;
    box-shadow: var(--usagc-shadow);
}

.usagc-review-card h2,
.payment-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0 0 10px 0;
}

.review-desc {
    font-size: 14px;
    color: var(--usagc-text-muted);
    margin-bottom: 24px;
}

.review-details-box {
    background: var(--usagc-blue-card);
    border: 1px solid var(--usagc-blue-border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}

.review-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px dashed rgba(191, 219, 254, 0.8);
}

.review-row .lbl { color: #475569; font-weight: 500; }
.review-row .val { color: var(--usagc-navy); font-weight: 700; }

.review-row.total-line {
    font-size: 18px;
    border-bottom: none;
    padding-top: 16px;
    margin-top: 6px;
}

.review-row.total-line .price-red {
    color: var(--usagc-red);
    font-size: 22px;
    font-weight: 800;
}

.terms-agree-wrap {
    margin-bottom: 30px;
    font-size: 13px;
    color: #475569;
}

.step-4-actions {
    display: flex;
    justify-content: space-between;
}

/* -------------------------------------------------------------
   STEP 5: SECURE PAYMENT & ORDER SUMMARY GRID
------------------------------------------------------------- */
.step-5-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

@media (max-width: 991px) {
    .step-5-grid {
        grid-template-columns: 1fr;
    }
}

.usagc-payment-summary-card {
    background: #ffffff;
    border: 1px solid var(--usagc-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--usagc-shadow);
}

.payment-summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--usagc-border);
}

.payment-summary-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-summary-header h3 i {
    color: #2563eb;
}

.badge-plan-selected {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Selected Plan Box */
.pay-summary-plan-box {
    background: linear-gradient(135deg, #f8fafc 0%, #eff6ff 100%);
    border: 1px solid #bfdbfe;
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 20px;
}

.plan-main-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.plan-main-info h4 {
    font-size: 17px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0;
}

.plan-price-tag {
    font-size: 18px;
    font-weight: 800;
    color: #2563eb;
}

.plan-meta-info {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #475569;
}

.plan-meta-info i {
    color: #2563eb;
    margin-right: 4px;
}

/* Pay Summary Section & Applicants List */
.pay-summary-section {
    margin-bottom: 20px;
}

.pay-summary-section h5 {
    font-size: 13px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-summary-section h5 i {
    color: #2563eb;
}

.pay-applicants-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pay-applicant-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 14px;
}

.pay-app-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dbeafe;
    color: #2563eb;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
}

.pay-app-info {
    flex: 1;
    font-size: 13px;
}

.pay-app-name {
    color: #1e293b;
    margin-bottom: 2px;
}

.pay-app-meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #64748b;
}

.pay-app-meta i {
    color: #94a3b8;
}

/* Services List */
.pay-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pay-services-list li {
    font-size: 13px;
    color: #334155;
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pay-services-list li i {
    color: #16a34a;
    font-size: 12px;
}

/* Totals Box */
.pay-summary-totals {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 20px;
}

.pay-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #475569;
    padding: 6px 0;
}

.pay-total-row.final-total {
    border-top: 1px dashed #cbd5e1;
    margin-top: 6px;
    padding-top: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--usagc-navy);
}

.pay-total-row.final-total .total-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--usagc-red);
}

.payment-header { text-align: center; margin-bottom: 24px; }
.lock-icon { font-size: 32px; color: #2563eb; margin-bottom: 12px; }

.payment-summary-bar {
    background: var(--usagc-blue-card);
    border: 1px solid var(--usagc-blue-border);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    margin-bottom: 24px;
}

.payment-summary-bar strong { color: var(--usagc-navy); font-weight: 800; }

.paypal-container-wrap {
    min-height: 150px;
    margin-bottom: 20px;
}

.payment-guarantee {
    text-align: center;
    font-size: 12px;
    color: var(--usagc-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* -------------------------------------------------------------
   STEP 6: CONFIRMATION VIEW (EXACT IMAGE 1 MATCH)
------------------------------------------------------------- */
.usagc-success-banner {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 5px solid #2563eb;
    border-radius: 16px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    box-shadow: var(--usagc-shadow);
}

.banner-icon-circle {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #0284c7;
    color: #ffffff;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.banner-text h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0 0 6px 0;
}

.banner-text p {
    font-size: 14px;
    color: #475569;
    margin: 0;
    line-height: 1.5;
}

.confirmation-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    margin-bottom: 30px;
}

.conf-card {
    background: #ffffff;
    border: 1px solid var(--usagc-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--usagc-shadow);
}

.conf-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.conf-card-header h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0;
}

.status-pill-blue {
    background: #dbeafe;
    color: #1e40af;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

.summary-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 30px;
}

.summary-field .field-lbl {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #94a3b8;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.summary-field .field-val {
    font-size: 16px;
    color: var(--usagc-navy);
    font-weight: 700;
}

.conf-actions {
    display: flex;
    gap: 16px;
}

.timeline-card h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0 0 24px 0;
}

.timeline-steps {
    position: relative;
    padding-left: 20px;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    left: 5px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    margin-bottom: 24px;
}

.timeline-item .item-dot {
    position: absolute;
    left: -20px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e1;
    border: 2px solid #ffffff;
}

.timeline-item.active .item-dot {
    background: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.timeline-item h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--usagc-navy);
    margin: 0 0 4px 0;
}

.timeline-item p {
    font-size: 12px;
    color: var(--usagc-text-muted);
    margin: 0;
    line-height: 1.4;
}

.usagc-bottom-notice {
    background: var(--usagc-blue-card);
    border: 1px solid var(--usagc-blue-border);
    border-radius: 10px;
    padding: 14px 20px;
    font-size: 13px;
    color: #1e40af;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* -------------------------------------------------------------
   AUTH MODAL POPUP (LOGIN & REGISTER)
------------------------------------------------------------- */
.usagc-auth-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.usagc-auth-modal-box {
    background: #ffffff;
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 32px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalPop 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
    from { opacity: 0; transform: scale(0.92); }
    to { opacity: 1; transform: scale(1); }
}

.auth-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
}

.auth-tabs {
    display: flex;
    background: #f1f5f9;
    border-radius: 10px;
    padding: 4px;
    margin-bottom: 24px;
}

.auth-tab {
    flex: 1;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    border: none;
    background: transparent;
    color: #64748b;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.auth-tab.active {
    background: #ffffff;
    color: var(--usagc-navy);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.auth-tab-content { display: none; }
.auth-tab-content.active { display: block; }

.auth-tab-content h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--usagc-navy);
    margin: 0 0 6px 0;
}

.auth-sub {
    font-size: 13px;
    color: var(--usagc-text-muted);
    margin-bottom: 20px;
}

.auth-field {
    margin-bottom: 16px;
}

.auth-field label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--usagc-navy);
    margin-bottom: 6px;
}

.auth-field input {
    width: 100%;
    padding: 12px;
    font-size: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    outline: none;
}

.auth-field input:focus {
    border-color: #2563eb;
}

.auth-row-between {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 20px;
}

.auth-alert {
    padding: 10px;
    font-size: 12px;
    border-radius: 6px;
    margin-bottom: 14px;
}

.auth-alert.error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }
.auth-alert.success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }

/* =============================================================
   INTELLIGENT RESPONSIVE MEDIA QUERIES
============================================================= */



/* Laptops & Tablets (Max-width: 992px) */
@media (max-width: 992px) {
    .includes-card {
        position: static;
    }

    .step-3-sidebar {
        order: 2;
    }

    .step-3-plans-list {
        order: 1;
    }
}

/* Tablet Portrait & Mobile (Max-width: 768px) */
@media (max-width: 768px) {
    .usagc-app-wrapper {
        padding: 12px 10px;
    }

    /* Progress Header Scroll & Scaling */
    .usagc-progress-header {
        margin-bottom: 24px;
    }

    .usagc-progress-bar {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        overflow-x: auto;
        padding: 10px 5px 15px 5px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
    }

    .usagc-step-node {
        min-width: 95px;
        flex: 0 0 auto;
    }

    .circle-node {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .step-label {
        font-size: 10px;
    }

    .usagc-step-divider {
        min-width: 25px;
        flex: 0 0 auto;
        top: -12px;
    }

    /* Step 1 Hero Card */
    .usagc-hero-card {
        padding: 30px 18px;
        border-radius: 18px;
    }

    .hero-title {
        font-size: 22px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .usagc-info-pill {
        font-size: 12px;
        padding: 10px 16px;
        flex-direction: column;
        text-align: center;
        border-radius: 16px;
    }

    .usagc-counter-box {
        padding: 16px;
    }

    .cnt-number {
        font-size: 26px;
    }

    /* Step 2 Form & Actions */
    .step-2-main-form {
        padding: 20px 16px;
        border-radius: 14px;
    }

    .form-row-2 {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pills-group {
        gap: 6px;
    }

    .pill-option {
        padding: 8px 14px;
        font-size: 12px;
    }

    .step-2-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .step-2-actions button {
        width: 100%;
    }

    /* Step 3 Plan Cards */
    .plan-card-header {
        flex-wrap: wrap;
        gap: 12px;
    }

    .plan-title-wrap {
        width: 100%;
    }

    .plan-select-btn {
        width: 100%;
        margin-top: 8px;
    }

    /* Step 4 Review */
    .usagc-review-card,
    .usagc-payment-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .review-applicant-card > div:last-child {
        grid-template-columns: 1fr !important;
    }

    .step-4-actions {
        flex-direction: column-reverse;
        gap: 12px;
    }

    .step-4-actions button {
        width: 100%;
    }

    /* Step 6 Confirmation */
    .usagc-success-banner {
        flex-direction: column;
        text-align: center;
        padding: 20px 16px;
    }

    .conf-card {
        padding: 20px 16px;
    }

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

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

    .conf-actions button,
    .conf-actions a {
        width: 100%;
    }
}

/* Small Mobile Phones (Max-width: 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 20px;
    }

    .usagc-btn-lg {
        padding: 14px 20px;
        font-size: 14px;
        width: 100%;
    }

    .phone-input-wrap {
        flex-direction: column;
    }

    .phone-code-select {
        width: 100%;
    }

    .usagc-auth-modal-box {
        padding: 20px 16px;
    }
}

/* =============================================================
   USER DASHBOARD STYLES (MATCHING REFERENCE UI DESIGN)
============================================================= */
/* CSS Protection & Reset for WordPress Theme Compatibility */
.usagc-dashboard-wrapper,
.usagc-dashboard-wrapper * {
    box-sizing: border-box !important;
}

.usagc-dashboard-wrapper {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: 750px !important;
    background: #f8fafc !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    color: #1e293b !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 10px 30px rgba(15, 43, 92, 0.06) !important;
    border: 1px solid #e2e8f0 !important;
    margin: 20px 0 !important;
    float: none !important;
    clear: both !important;
    position: relative !important;
}

/* Left Sidebar */
.usagc-dashboard-wrapper aside.usagc-db-sidebar {
    width: 260px !important;
    min-width: 260px !important;
    max-width: 260px !important;
    background: #ffffff !important;
    border-right: 1px solid #e2e8f0 !important;
    padding: 32px 20px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    flex-shrink: 0 !important;
    float: none !important;
    box-shadow: none !important;
}

.usagc-dashboard-wrapper main.usagc-db-main {
    flex: 1 1 auto !important;
    width: calc(100% - 260px) !important;
    padding: 36px 40px !important;
    background: #f8fafc !important;
    overflow-y: auto !important;
    float: none !important;
}

.db-logo-box {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    padding-left: 8px;
}

.db-logo-mark {
    flex-shrink: 0;
}

.db-logo-text {
    display: flex;
    flex-direction: column;
}

.db-logo-text .logo-title {
    font-family: 'Outfit', sans-serif;
    font-size: 26px;
    font-weight: 800;
    color: #0f2b5c;
    line-height: 1;
    letter-spacing: -0.5px;
}

.db-logo-text .logo-subtitle {
    font-size: 8px;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: 0.5px;
    margin-top: 3px;
}

.usagc-db-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.db-nav-item,
.usagc-dashboard-wrapper button.db-nav-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 12px 18px !important;
    border-radius: 10px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #334155 !important;
    background: transparent !important;
    border: none !important;
    border-left: 4px solid transparent !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    width: 100% !important;
    text-align: left !important;
    box-shadow: none !important;
    outline: none !important;
}

.db-nav-item:hover,
.usagc-dashboard-wrapper button.db-nav-item:hover {
    background: #f1f5f9 !important;
    color: #0f2b5c !important;
}

.db-nav-item.active,
.usagc-dashboard-wrapper button.db-nav-item.active {
    background: #eff6ff !important;
    color: #1d4ed8 !important;
    border: none !important;
    border-left: 4px solid #dc2626 !important;
    font-weight: 700 !important;
    border-radius: 0 10px 10px 0 !important;
    box-shadow: none !important;
}

.db-nav-item .nav-icon {
    font-size: 16px !important;
    color: #64748b !important;
    width: 20px !important;
    text-align: center !important;
}

.db-nav-item.active .nav-icon {
    color: #dc2626 !important;
}

/* Sidebar Footer Buttons */
.usagc-db-sidebar-footer {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 40px !important;
}

.btn-db-signout,
.usagc-dashboard-wrapper a.btn-db-signout {
    border: 1px solid #cbd5e1 !important;
    background: #ffffff !important;
    border-radius: 24px !important;
    padding: 10px 18px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0f2b5c !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

.btn-db-signout:hover,
.usagc-dashboard-wrapper a.btn-db-signout:hover {
    background: #f8fafc !important;
    border-color: #94a3b8 !important;
    color: #dc2626 !important;
}

.btn-db-upgrade,
.usagc-dashboard-wrapper button.btn-db-upgrade {
    background: #dc2626 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 24px !important;
    padding: 12px 20px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    width: 100% !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2) !important;
    outline: none !important;
}

.btn-db-upgrade:hover,
.usagc-dashboard-wrapper button.btn-db-upgrade:hover {
    background: #b91c1c !important;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3) !important;
}
    color: #0f2b5c;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-db-signout:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    color: #dc2626;
}

.btn-db-upgrade {
    background: #dc2626;
    color: #ffffff;
    border: none;
    border-radius: 24px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.btn-db-upgrade:hover {
    background: #b91c1c;
    box-shadow: 0 6px 16px rgba(220, 38, 38, 0.3);
}

/* Main Content Area */
.usagc-db-main {
    flex: 1;
    padding: 36px 40px;
    background: #f8fafc;
    overflow-y: auto;
}

.db-tab-view {
    display: none;
}

.db-tab-view.active {
    display: block;
    animation: fadeInTab 0.3s ease;
}

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

/* Header Banner */
.db-header-banner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background: linear-gradient(135deg, #ffffff 60%, #e0f2fe 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px 36px;
    margin-bottom: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.db-header-text h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #0f2b5c;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.db-header-text p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.db-status-pill {
    background: #2563eb;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 8px 18px;
    border-radius: 20px;
    letter-spacing: 0.8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

/* Stat Cards Grid */
.db-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.db-stat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 22px 24px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
    transition: all 0.2s ease;
}

.db-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.04);
}

.db-stat-card.card-blue {
    background: linear-gradient(135deg, #ffffff 65%, #eff6ff 100%);
    border-color: #bfdbfe;
}

.db-stat-card.card-pink {
    background: linear-gradient(135deg, #ffffff 65%, #fff1f2 100%);
    border-color: #fecdd3;
}

.db-stat-card.card-green {
    background: linear-gradient(135deg, #ffffff 65%, #f0fdf4 100%);
    border-color: #bbf7d0;
}

.db-stat-card.card-purple {
    background: linear-gradient(135deg, #ffffff 65%, #f5f3ff 100%);
    border-color: #ddd6fe;
}

.stat-icon-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
}

.icon-blue { background: #dbeafe; color: #2563eb; }
.icon-pink { background: #ffe4e6; color: #e11d48; }
.icon-green { background: #dcfce7; color: #16a34a; }
.icon-purple { background: #ede9fe; color: #7c3aed; }

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.stat-val {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #0f2b5c;
    line-height: 1.2;
}

/* Applicant Details Card */
.db-details-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.db-details-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
    padding-bottom: 16px !important;
    border-bottom: 1px solid #f1f5f9 !important;
}

.db-app-tabs-wrap {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    max-width: 100% !important;
}

.db-app-switch-btn,
.usagc-dashboard-wrapper button.db-app-switch-btn {
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    color: #64748b !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
    outline: none !important;
    white-space: nowrap !important;
}

.db-app-switch-btn.active,
.usagc-dashboard-wrapper button.db-app-switch-btn.active {
    background: #eff6ff !important;
    border-color: #bfdbfe !important;
    color: #1d4ed8 !important;
}

.db-applicant-profile-panel {
    display: none;
}

/* Dashboard Modal Overlay & Popups */
.usagc-db-modal-overlay {
    display: none;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(4px) !important;
    z-index: 999999 !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
}

.usagc-db-modal-box {
    background: #ffffff !important;
    border-radius: 20px !important;
    width: 100% !important;
    max-width: 750px !important;
    max-height: 85vh !important;
    overflow-y: auto !important;
    padding: 32px !important;
    position: relative !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid #e2e8f0 !important;
    color: #1e293b !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.db-modal-close-btn {
    position: absolute !important;
    top: 20px !important;
    right: 20px !important;
    background: #f1f5f9 !important;
    border: none !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    font-size: 20px !important;
    color: #64748b !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.2s ease !important;
}

.db-modal-close-btn:hover {
    background: #fecdd3 !important;
    color: #dc2626 !important;
}

.db-applicant-profile-panel.active {
    display: block;
}

/* 3-Column Info Details Layout */
.db-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.db-info-col {
    display: flex;
    flex-direction: column;
}

.col-title {
    font-size: 12px;
    font-weight: 800;
    color: #2563eb;
    letter-spacing: 0.6px;
    margin: 0 0 18px 0;
    text-transform: uppercase;
}

.info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding: 7px 0;
}

.info-lbl {
    color: #64748b;
    font-weight: 500;
}

.info-val {
    color: #0f172a;
    font-weight: 700;
}

.info-contact-block {
    margin-bottom: 16px;
}

.info-contact-block .info-lbl {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
}

.contact-val {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #0f172a;
}

.contact-val i {
    font-size: 16px;
    color: #2563eb;
}

.info-row-stacked {
    margin-bottom: 16px;
}

.info-row-stacked .info-lbl {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
}

.badge-employed {
    background: #dbeafe;
    color: #1e40af;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 12px;
    display: inline-block;
}

/* Card Panels for Application & Payment Tabs */
.db-card-panel {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.panel-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #0f2b5c;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.db-receipt-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.db-receipt-table th {
    text-align: left;
    background: #f8fafc;
    color: #64748b;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    padding: 12px 16px;
    border-bottom: 1px solid #e2e8f0;
}

.db-receipt-table td {
    padding: 16px;
    border-bottom: 1px solid #f1f5f9;
    color: #1e293b;
}

.badge-paid {
    background: #dcfce7;
    color: #166534;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 12px;
}

.btn-table-receipt {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.btn-table-receipt:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Responsive Styles for Dashboard */
@media (max-width: 1200px) {
    .db-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .usagc-dashboard-wrapper {
        flex-direction: column;
    }

    .usagc-db-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
        padding: 20px;
    }

    .db-details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .usagc-db-main {
        padding: 24px 20px;
    }
}

@media (max-width: 600px) {
    .db-stats-grid {
        grid-template-columns: 1fr;
    }

    .db-header-banner {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 20px;
    }
}

