/* =====================================================================
   BBA ADMISSION FORM — Enhanced Design (Matching Site Design System)
   ===================================================================== */

:root {
    --bba-navy: #040d4e;
    --bba-blue: #14259b;
    --bba-blue-dark: #163b87;
    --bba-gold: #f2b21b;
    --bba-gold-dark: #c8860a;
    --bba-red: #be2030;
    --bba-text: #1f2937;
    --bba-muted: #6b7280;
    --bba-light: #f5f7fb;
    --bba-white: #ffffff;
    --bba-border: #e5e9f8;
    --bba-shadow: 0 10px 30px rgba(4, 13, 78, 0.08);
    --bba-shadow-lg: 0 16px 40px rgba(4, 13, 78, 0.12);
    --bba-radius: 18px;
    --bba-radius-sm: 8px;
    --bba-transition: 0.25s ease;
    --bba-font: "Poppins", sans-serif;
}

/* =====================================================================
   HERO / BREADCRUMB SECTION
   ===================================================================== */
.bba-hero-section {
    position: relative;
    background: linear-gradient(135deg, #040d4e 0%, #14259b 60%, #1a3fbd 100%);
    padding: 60px 0 50px;
    overflow: hidden;
}

.bba-hero-overlay {
    position: absolute;
    inset: 0;
    background: 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='%23ffffff' fill-opacity='0.03'%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");
    pointer-events: none;
}

.bba-hero-pattern {
    position: absolute;
    right: -80px;
    top: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(242, 178, 27, 0.08);
    pointer-events: none;
}

.bba-hero-pattern::after {
    content: "";
    position: absolute;
    left: -200px;
    bottom: -150px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.bba-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.bba-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(242, 178, 27, 0.15);
    border: 1px solid rgba(242, 178, 27, 0.3);
    color: var(--bba-gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 16px;
    font-family: var(--bba-font);
}

.bba-hero-badge i {
    font-size: 14px;
}

.bba-hero-title {
    font-family: var(--bba-font);
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}

.bba-hero-subtitle {
    font-family: var(--bba-font);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 24px;
    font-weight: 400;
    line-height: 1.6;
}

/* Breadcrumb */
.bba-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 13px;
    font-family: var(--bba-font);
}

.bba-breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: var(--bba-transition);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bba-breadcrumb a:hover {
    color: var(--bba-gold);
}

.bba-breadcrumb-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
}

.bba-breadcrumb-current {
    color: var(--bba-gold);
    font-weight: 600;
}

/* =====================================================================
   FORM SECTION
   ===================================================================== */
.bba-form-section {
    background: var(--bba-light);
    padding: 0 0 60px;
}

/* ── Form Wrapper ── */
.bba-form-wrapper {
    max-width: 1000px;
    margin: -40px auto 0;
    padding: 0 15px;
    position: relative;
    z-index: 3;
}

/* ── Progress Indicator ── */
.bba-form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    padding: 22px 30px;
    background: var(--bba-white);
    border-radius: var(--bba-radius);
    box-shadow: var(--bba-shadow);
    border: 1px solid var(--bba-border);
}

.bba-progress-step {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bba-step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bba-border);
    color: var(--bba-muted);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--bba-font);
    transition: var(--bba-transition);
}

.bba-step-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--bba-muted);
    font-family: var(--bba-font);
    transition: var(--bba-transition);
}

.bba-progress-step.active .bba-step-number {
    background: var(--bba-navy);
    color: var(--bba-gold);
    box-shadow: 0 4px 12px rgba(4, 13, 78, 0.3);
}

.bba-progress-step.active .bba-step-label {
    color: var(--bba-navy);
}

.bba-progress-line {
    flex: 1;
    height: 2px;
    background: var(--bba-border);
    margin: 0 12px;
    max-width: 60px;
}

/* ── Form Card ── */
.bba-form-card {
    background: var(--bba-white);
    border: 1px solid var(--bba-border);
    border-radius: var(--bba-radius);
    box-shadow: var(--bba-shadow-lg);
    overflow: hidden;
}

/* ── Form Header ── */
.bba-form-header {
    background: linear-gradient(135deg, var(--bba-navy) 0%, var(--bba-blue) 100%);
    color: var(--bba-white);
    padding: 32px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bba-form-header::before {
    content: "";
    position: absolute;
    right: -50px;
    top: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
}

.bba-form-header::after {
    content: "";
    position: absolute;
    left: 30px;
    bottom: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(242, 178, 27, 0.1);
}

.bba-form-header-icon {
    width: 52px;
    height: 52px;
    background: rgba(242, 178, 27, 0.15);
    border: 1px solid rgba(242, 178, 27, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

.bba-form-header-icon i {
    font-size: 20px;
    color: var(--bba-gold);
}

.bba-form-header h2 {
    font-family: var(--bba-font);
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 6px;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 2;
    color: #fff;
}

.bba-form-header-session {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 14px;
    position: relative;
    z-index: 2;
    font-family: var(--bba-font);
}

.bba-form-header .bba-form-number {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(242, 178, 27, 0.18);
    color: var(--bba-gold);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 18px;
    border-radius: 999px;
    position: relative;
    z-index: 2;
    font-family: var(--bba-font);
}

/* ── Alert Messages ── */
.bba-alert {
    padding: 14px 20px;
    border-radius: var(--bba-radius-sm);
    margin-bottom: 20px;
    font-size: 13px;
    font-family: var(--bba-font);
    display: flex;
    align-items: center;
    gap: 12px;
}

.bba-alert p {
    margin: 0;
}

.bba-alert>i {
    font-size: 18px;
    flex-shrink: 0;
}

.bba-alert-danger {
    background: #fff0f2;
    color: var(--bba-red);
    border: 1px solid #f9c8ce;
    border-left: 4px solid var(--bba-red);
}

.bba-alert-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
    border-left: 4px solid #10b981;
}

/* ── Form Body ── */
.bba-form-body {
    padding: 35px 40px;
    font-family: var(--bba-font);
}

/* ── Section Titles ── */
.bba-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--bba-navy);
    margin: 35px 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bba-border);
    font-family: var(--bba-font);
}

.bba-section-title:first-child {
    margin-top: 0;
}

.bba-section-title::before {
    content: "";
    width: 4px;
    height: 22px;
    background: var(--bba-gold);
    border-radius: 4px;
    flex-shrink: 0;
}

/* ── Form Grid ── */
.bba-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 18px;
}

.bba-form-group {
    flex: 1;
    min-width: 200px;
}

.bba-form-group.full-width {
    flex: 0 0 100%;
    min-width: 100%;
}

.bba-form-group.half-width {
    flex: 0 0 calc(50% - 9px);
    min-width: calc(50% - 9px);
}

.bba-form-group.third-width {
    flex: 0 0 calc(33.333% - 12px);
    min-width: calc(33.333% - 12px);
}

.bba-form-group.quarter-width {
    flex: 0 0 calc(25% - 14px);
    min-width: calc(25% - 14px);
}

/* ── Labels ── */
.bba-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--bba-text);
    margin-bottom: 6px;
    font-family: var(--bba-font);
}

.bba-label .required {
    color: var(--bba-red);
    margin-left: 2px;
}

/* ── Input Fields ── */
.bba-input,
.bba-select,
.bba-textarea {
    width: 100%;
    padding: 11px 16px;
    font-size: 14px;
    font-family: var(--bba-font);
    color: var(--bba-text);
    background: var(--bba-white);
    border: 1.5px solid var(--bba-border);
    border-radius: var(--bba-radius-sm);
    transition: var(--bba-transition);
    outline: none;
}

.bba-input:hover,
.bba-select:hover,
.bba-textarea:hover {
    border-color: #c5cee8;
}

.bba-input:focus,
.bba-select:focus,
.bba-textarea:focus {
    border-color: var(--bba-blue);
    background: var(--bba-white);
    box-shadow: 0 0 0 4px rgba(20, 37, 155, 0.06);
}

.bba-input::placeholder {
    color: var(--bba-muted);
    font-weight: 400;
}

.bba-textarea {
    min-height: 100px;
    resize: vertical;
}

.bba-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

/* ── Photo Upload Section ── */
.bba-photo-upload {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
    background: var(--bba-light);
    border-radius: 12px;
    border: 2px dashed var(--bba-border);
    transition: var(--bba-transition);
}

.bba-photo-upload:hover {
    border-color: var(--bba-blue);
    background: #f0f3ff;
}

.bba-photo-preview {
    width: 110px;
    height: 130px;
    border-radius: 12px;
    border: 3px solid var(--bba-border);
    object-fit: cover;
    flex-shrink: 0;
    background: var(--bba-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.bba-photo-info {
    flex: 1;
}

.bba-file-input {
    font-size: 13px;
    font-family: var(--bba-font);
}

.bba-photo-note {
    font-size: 12px;
    color: var(--bba-red);
    margin-top: 10px;
    line-height: 1.5;
    font-weight: 500;
}

/* ── Education Table ── */
.bba-edu-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bba-border);
    margin-bottom: 18px;
    font-family: var(--bba-font);
}

.bba-edu-table thead {
    background: var(--bba-navy);
}

.bba-edu-table thead th {
    padding: 13px 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--bba-white);
    text-align: left;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.bba-edu-table tbody td {
    padding: 14px 10px;
    border-bottom: 1px solid var(--bba-border);
    vertical-align: middle;
    background: var(--bba-white);
}

.bba-edu-table tbody tr:last-child td {
    border-bottom: none;
}

.bba-edu-table tbody tr:hover td {
    background: var(--bba-light);
}

.bba-edu-table tbody td:first-child {
    font-weight: 700;
    font-size: 13px;
    color: var(--bba-navy);
    white-space: nowrap;
}

.bba-edu-table tbody td .required {
    color: var(--bba-red);
}

.bba-edu-table input[type="text"],
.bba-edu-table input[type="file"] {
    width: 100%;
    padding: 9px 10px;
    font-size: 13px;
    font-family: var(--bba-font);
    border: 1.5px solid var(--bba-border);
    border-radius: 6px;
    background: var(--bba-white);
    transition: var(--bba-transition);
    outline: none;
}

.bba-edu-table input[type="text"]:focus {
    border-color: var(--bba-blue);
    box-shadow: 0 0 0 3px rgba(20, 37, 155, 0.06);
}

.bba-edu-table input[type="file"] {
    font-size: 12px;
    padding: 7px 8px;
}

/* ── Parents Table ── */
.bba-parents-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bba-border);
    font-family: var(--bba-font);
}

.bba-parents-table thead {
    background: var(--bba-navy);
}

.bba-parents-table thead th {
    padding: 13px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--bba-white);
    text-align: left;
}

.bba-parents-table tbody td {
    padding: 12px 14px;
    border-bottom: 1px solid var(--bba-border);
    vertical-align: middle;
    background: var(--bba-white);
}

.bba-parents-table tbody tr:last-child td {
    border-bottom: none;
}

.bba-parents-table tbody tr:hover td {
    background: var(--bba-light);
}

.bba-parents-table tbody td:first-child {
    font-weight: 700;
    font-size: 13px;
    color: var(--bba-navy);
    width: 140px;
}

.bba-parents-table tbody td:first-child .required {
    color: var(--bba-red);
}

.bba-parents-table input {
    width: 100%;
    padding: 9px 12px;
    font-size: 13px;
    font-family: var(--bba-font);
    border: 1.5px solid var(--bba-border);
    border-radius: 6px;
    background: var(--bba-white);
    transition: var(--bba-transition);
    outline: none;
}

.bba-parents-table input:focus {
    border-color: var(--bba-blue);
    box-shadow: 0 0 0 3px rgba(20, 37, 155, 0.06);
}

/* ── Education Note ── */
.bba-edu-note {
    font-size: 13px;
    color: var(--bba-muted);
    font-family: var(--bba-font);
    padding: 10px 14px;
    line-height: 1.6;
    background: #fffbeb;
    border-radius: 6px;
    border: 1px solid #fde68a;
}

.bba-edu-note strong {
    color: var(--bba-navy);
}

/* ── Declaration ── */
.bba-declaration {
    background: var(--bba-light);
    padding: 24px;
    border-radius: 12px;
    margin-top: 28px;
    border: 1px solid var(--bba-border);
    position: relative;
}

.bba-declaration::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--bba-gold);
    border-radius: 4px 0 0 4px;
}

.bba-declaration label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    line-height: 1.7;
    color: var(--bba-text);
    cursor: pointer;
    font-family: var(--bba-font);
}

.bba-declaration input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--bba-blue);
    cursor: pointer;
}

/* ── Fee Info ── */
.bba-fee-info {
    margin-top: 22px;
    padding: 18px 24px;
    background: linear-gradient(135deg, rgba(242, 178, 27, 0.06), rgba(242, 178, 27, 0.14));
    border-radius: 12px;
    border: 1px solid rgba(242, 178, 27, 0.3);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bba-fee-info .fee-label {
    font-size: 15px;
    font-weight: 700;
    color: var(--bba-navy);
    font-family: var(--bba-font);
}

.bba-fee-info .fee-amount {
    font-size: 14px;
    color: var(--bba-red);
    font-weight: 700;
    margin: 0;
    font-family: var(--bba-font);
}

/* ── Form Footer / Submit ── */
.bba-form-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 2px solid var(--bba-border);
}

.bba-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 40px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--bba-font);
    color: var(--bba-navy);
    background: var(--bba-gold);
    border: none;
    border-radius: var(--bba-radius-sm);
    cursor: pointer;
    transition: var(--bba-transition);
    letter-spacing: 0.3px;
    text-transform: uppercase;
    box-shadow: 0 6px 20px rgba(242, 178, 27, 0.35);
}

.bba-submit-btn:hover {
    background: var(--bba-gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 178, 27, 0.45);
}

.bba-submit-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(242, 178, 27, 0.3);
}

/* ── Help Card ── */
.bba-help-card {
    margin-top: 24px;
    padding: 20px 28px;
    background: var(--bba-white);
    border: 1px solid var(--bba-border);
    border-radius: var(--bba-radius);
    box-shadow: var(--bba-shadow);
    display: flex;
    align-items: center;
    gap: 18px;
}

.bba-help-icon {
    width: 46px;
    height: 46px;
    min-width: 46px;
    background: #e9ebff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bba-blue);
    font-size: 20px;
}

.bba-help-content {
    flex: 1;
}

.bba-help-content h4 {
    margin: 0 0 3px;
    font-size: 14px;
    font-weight: 700;
    color: var(--bba-navy);
    font-family: var(--bba-font);
}

.bba-help-content p {
    margin: 0;
    font-size: 13px;
    color: var(--bba-muted);
    font-family: var(--bba-font);
}

.bba-help-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--bba-navy);
    color: var(--bba-white);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--bba-radius-sm);
    text-decoration: none;
    transition: var(--bba-transition);
    font-family: var(--bba-font);
    white-space: nowrap;
}

.bba-help-btn:hover {
    background: var(--bba-blue);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(4, 13, 78, 0.25);
}

/* ── Hidden Section ── */
.bba-hidden-section {
    display: none;
}

/* ── Draft Block ── */
.bba-draft-block {
    display: none;
    gap: 18px;
    margin-top: 15px;
}

.bba-draft-block.visible {
    display: flex;
    flex-wrap: wrap;
}

/* =====================================================================
   RESPONSIVE STYLES
   ===================================================================== */
@media (max-width: 991px) {
    .bba-hero-section {
        padding: 45px 0 40px;
    }

    .bba-hero-title {
        font-size: 30px;
    }

    .bba-form-body {
        padding: 28px 24px;
    }

    .bba-form-header {
        padding: 26px 24px;
    }

    .bba-form-progress {
        padding: 18px 20px;
    }

    .bba-step-label {
        display: none;
    }

    .bba-help-card {
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .bba-hero-section {
        padding: 35px 0 30px;
    }

    .bba-hero-title {
        font-size: 24px;
    }

    .bba-hero-subtitle {
        font-size: 13px;
    }

    .bba-form-wrapper {
        margin-top: -30px;
        padding: 0 10px;
    }

    .bba-form-body {
        padding: 20px 16px;
    }

    .bba-form-header {
        padding: 22px 16px;
    }

    .bba-form-header h2 {
        font-size: 16px;
    }

    .bba-form-row {
        gap: 14px;
    }

    .bba-form-group.third-width,
    .bba-form-group.half-width,
    .bba-form-group.quarter-width {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .bba-photo-upload {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bba-edu-table,
    .bba-parents-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bba-form-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .bba-submit-btn {
        width: 100%;
        justify-content: center;
    }

    .bba-section-title {
        font-size: 14px;
    }

    .bba-breadcrumb {
        font-size: 11px;
        padding: 8px 14px;
        gap: 6px;
    }

    .bba-help-card {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .bba-form-progress {
        padding: 14px 12px;
        gap: 0;
    }

    .bba-progress-line {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .bba-hero-title {
        font-size: 20px;
    }

    .bba-form-body {
        padding: 16px 12px;
    }

    .bba-input,
    .bba-select,
    .bba-textarea {
        padding: 9px 12px;
        font-size: 13px;
    }

    .bba-hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }
}

/* =====================================================================
   BBA ADMISSION STATUS PAGE STYLES
   ===================================================================== */

/* ── Status Card ── */
.bba-status-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: var(--bba-radius);
    border: 1px solid var(--bba-border);
    box-shadow: var(--bba-shadow-lg);
    background: var(--bba-white);
    position: relative;
    overflow: hidden;
}

.bba-status-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.bba-status-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 18px;
}

.bba-status-title {
    font-family: var(--bba-font);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 8px;
}

.bba-status-message {
    font-family: var(--bba-font);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* Status Variants */
.bba-status-success::before { background: #10b981; }
.bba-status-success .bba-status-icon {
    background: #ecfdf5;
    color: #10b981;
}
.bba-status-success .bba-status-title { color: #065f46; }
.bba-status-success .bba-status-message { color: #047857; }

.bba-status-error::before { background: var(--bba-red); }
.bba-status-error .bba-status-icon {
    background: #fff0f2;
    color: var(--bba-red);
}
.bba-status-error .bba-status-title { color: #991b1b; }
.bba-status-error .bba-status-message { color: #b91c1c; }

.bba-status-warning::before { background: #f59e0b; }
.bba-status-warning .bba-status-icon {
    background: #fffbeb;
    color: #f59e0b;
}
.bba-status-warning .bba-status-title { color: #92400e; }
.bba-status-warning .bba-status-message { color: #b45309; }

.bba-status-pending::before { background: var(--bba-gold); }
.bba-status-pending .bba-status-icon {
    background: rgba(242, 178, 27, 0.1);
    color: var(--bba-gold-dark);
}
.bba-status-pending .bba-status-title { color: var(--bba-navy); }
.bba-status-pending .bba-status-message { color: var(--bba-muted); }

.bba-status-review::before { background: var(--bba-blue); }
.bba-status-review .bba-status-icon {
    background: #e9ebff;
    color: var(--bba-blue);
}
.bba-status-review .bba-status-title { color: var(--bba-navy); }
.bba-status-review .bba-status-message { color: var(--bba-muted); }

/* ── Details Table ── */
.bba-details-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-family: var(--bba-font);
}

.bba-details-table tr {
    transition: var(--bba-transition);
}

.bba-details-table tr:hover {
    background: var(--bba-light);
}

.bba-details-table th,
.bba-details-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--bba-border);
    font-size: 14px;
    vertical-align: middle;
}

.bba-details-table tr:last-child th,
.bba-details-table tr:last-child td {
    border-bottom: none;
}

.bba-details-table th {
    font-weight: 600;
    color: var(--bba-navy);
    width: 40%;
    white-space: nowrap;
}

.bba-details-table th i {
    color: var(--bba-blue);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.bba-details-table td {
    color: var(--bba-text);
}

/* ── Status Action Buttons ── */
.bba-status-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.bba-pay-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--bba-font);
    color: var(--bba-white);
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: var(--bba-radius-sm);
    text-decoration: none;
    transition: var(--bba-transition);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.35);
}

.bba-pay-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.45);
    color: var(--bba-white);
}

.bba-check-again-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--bba-font);
    color: var(--bba-navy);
    background: var(--bba-white);
    border: 2px solid var(--bba-border);
    border-radius: var(--bba-radius-sm);
    text-decoration: none;
    transition: var(--bba-transition);
}

.bba-check-again-btn:hover {
    background: var(--bba-light);
    border-color: var(--bba-blue);
    color: var(--bba-blue);
    transform: translateY(-2px);
    box-shadow: var(--bba-shadow);
}

/* Responsive for status page */
@media (max-width: 768px) {
    .bba-status-card {
        padding: 30px 20px;
    }

    .bba-status-icon {
        width: 60px;
        height: 60px;
        font-size: 26px;
    }

    .bba-status-title {
        font-size: 18px;
    }

    .bba-details-table th,
    .bba-details-table td {
        padding: 10px 12px;
        font-size: 13px;
    }

    .bba-details-table th {
        width: auto;
    }

    .bba-pay-btn {
        width: 100%;
        justify-content: center;
    }

    .bba-check-again-btn {
        width: 100%;
        justify-content: center;
    }
}

/* =====================================================================
   BBA ADMISSION LANDING PAGE STYLES
   ===================================================================== */

/* ── Action Cards Grid ── */
.bba-landing-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bba-action-card {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 28px 30px;
    background: var(--bba-white);
    border: 1px solid var(--bba-border);
    border-radius: var(--bba-radius);
    box-shadow: var(--bba-shadow);
    text-decoration: none;
    transition: var(--bba-transition);
    position: relative;
    overflow: hidden;
}

.bba-action-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--bba-gold);
    border-radius: 4px 0 0 4px;
    opacity: 0;
    transition: var(--bba-transition);
}

.bba-action-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--bba-shadow-lg);
    border-color: var(--bba-blue);
    text-decoration: none;
}

.bba-action-card:hover::before {
    opacity: 1;
}

.bba-action-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: var(--bba-transition);
}

.bba-action-icon--apply {
    background: linear-gradient(135deg, var(--bba-navy), var(--bba-blue));
    color: var(--bba-gold);
}

.bba-action-icon--status {
    background: linear-gradient(135deg, #059669, #10b981);
    color: var(--bba-white);
}

.bba-action-card:hover .bba-action-icon {
    transform: scale(1.08);
}

.bba-action-body {
    flex: 1;
}

.bba-action-body h3 {
    font-family: var(--bba-font);
    font-size: 17px;
    font-weight: 700;
    color: var(--bba-navy);
    margin: 0 0 5px;
    transition: var(--bba-transition);
}

.bba-action-card:hover .bba-action-body h3 {
    color: var(--bba-blue);
}

.bba-action-body p {
    font-family: var(--bba-font);
    font-size: 13px;
    color: var(--bba-muted);
    margin: 0;
    line-height: 1.5;
}

.bba-action-arrow {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--bba-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bba-muted);
    font-size: 14px;
    transition: var(--bba-transition);
}

.bba-action-card:hover .bba-action-arrow {
    background: var(--bba-navy);
    color: var(--bba-white);
    transform: translateX(4px);
}

/* ── Info Card ── */
.bba-info-card {
    margin-top: 24px;
    background: var(--bba-white);
    border: 1px solid var(--bba-border);
    border-radius: var(--bba-radius);
    box-shadow: var(--bba-shadow);
    overflow: hidden;
}

.bba-info-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--bba-light);
    border-bottom: 1px solid var(--bba-border);
}

.bba-info-card-header i {
    color: var(--bba-blue);
    font-size: 18px;
}

.bba-info-card-header h4 {
    font-family: var(--bba-font);
    font-size: 15px;
    font-weight: 700;
    color: var(--bba-navy);
    margin: 0;
}

.bba-info-list {
    list-style: none;
    padding: 20px 24px;
    margin: 0;
}

.bba-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-family: var(--bba-font);
    font-size: 14px;
    color: var(--bba-text);
    border-bottom: 1px solid var(--bba-border);
}

.bba-info-list li:last-child {
    border-bottom: none;
}

.bba-info-list li i {
    color: #10b981;
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
}

.bba-info-list li strong {
    color: var(--bba-navy);
}

/* Responsive */
@media (max-width: 768px) {
    .bba-action-card {
        padding: 20px 18px;
        gap: 16px;
    }

    .bba-action-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 20px;
    }

    .bba-action-body h3 {
        font-size: 15px;
    }

    .bba-action-arrow {
        display: none;
    }
}

/* =====================================================================
   LOADER OVERLAY
   ===================================================================== */
.bba-loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 13, 78, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bba-loader-overlay.active {
    opacity: 1;
    visibility: visible;
}

.bba-loader-box {
    text-align: center;
    padding: 40px;
}

.bba-spinner {
    width: 52px;
    height: 52px;
    border: 4px solid rgba(255, 255, 255, 0.2);
    border-top-color: var(--bba-gold);
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: bbaSpin 0.8s linear infinite;
}

@keyframes bbaSpin {
    to { transform: rotate(360deg); }
}

.bba-loader-box p {
    font-family: var(--bba-font);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 6px;
}

.bba-loader-box span {
    font-family: var(--bba-font);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}
