/* lsa.css */

/* ── Shared ── */
.lsa-eyebrow {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #2c7be5;
    margin: 0 0 10px;
}

.lsa-accent-bar {
    width: 40px;
    height: 3px;
    background: #2c7be5;
    border-radius: 2px;
    margin-bottom: 24px;
}

.lsa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: background 0.2s ease, color 0.2s ease;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.lsa-btn-primary {
    background: var(--darkblue);
    color: white;
}
.lsa-btn-primary:hover { background: #2c7be5; color: white; }

.lsa-btn-secondary {
    background: var(--gold);
    color: var(--darkblue);
}
.lsa-btn-secondary:hover { background: #e6c200; color: var(--darkblue); }

/* ── About Section ── */
.lsa-about-section {
    padding: 64px 24px 0;
    background: white;
}

.lsa-about-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.lsa-about-inner h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--darkblue);
    margin: 0 0 14px;
    font-family: Arial, sans-serif;
    font-weight: 900;
}

.lsa-about-inner .lsa-accent-bar {
    margin: 0 auto 24px;
}

.lsa-about-desc {
    font-size: 15px;
    line-height: 1.85;
    color: #5a6a7a;
    margin: 0;
}

/* Stats strip */
.lsa-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 960px;
    margin: 48px auto 0;
    gap: 0;
}

.lsa-stat {
    padding: 28px 20px;
    text-align: center;
    border-top: 4px solid var(--stat-color);
    background: #f5f8fb;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lsa-stat:not(:last-child) {
    border-right: 1px solid #e4eaf0;
}

.lsa-stat-value {
    font-size: 17px;
    font-weight: 900;
    color: var(--darkblue);
    font-family: Arial, sans-serif;
}

.lsa-stat-label {
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #8a9ab0;
}

/* ── Enrollment Section ── */
.lsa-enroll-section {
    padding: 64px 24px 72px;
    background: #f5f8fb;
}

.lsa-enroll-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 960px;
    margin: 0 auto;
}

.lsa-tuition,
.lsa-form-wrap {
    background: white;
    border-radius: 12px;
    padding: 40px 36px;
    box-shadow: 0 2px 16px rgba(44,62,80,0.07);
}

.lsa-tuition h2,
.lsa-form-wrap h2 {
    font-size: 22px;
    color: var(--darkblue);
    margin: 0 0 14px;
    font-family: Arial, sans-serif;
    font-weight: 900;
}

.lsa-note {
    font-size: 14px;
    line-height: 1.7;
    color: #5a6a7a;
    margin: 0 0 24px;
}

/* Fee list */
.lsa-fee-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.lsa-fee-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 13px 0;
    border-bottom: 1px solid #edf1f5;
    font-size: 14px;
    color: #5a6a7a;
}

.lsa-fee-list li:first-child {
    border-top: 1px solid #edf1f5;
}

.lsa-fee-list li strong {
    color: var(--darkblue);
    font-weight: 900;
    text-align: right;
}

.lsa-fee-list li small {
    font-weight: normal;
    font-size: 12px;
    color: #8a9ab0;
    margin-left: 3px;
}

.lsa-action-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Form */
.lsa-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.lsa-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lsa-field label {
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--darkblue);
}

.lsa-field input[type="text"],
.lsa-field input[type="email"] {
    padding: 11px 14px;
    background: #f5f8fb;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    color: var(--darkblue);
    outline: none;
    transition: box-shadow 0.2s ease;
}

.lsa-field input:focus {
    box-shadow: 0 0 0 3px rgba(44,123,229,0.18);
}

.lsa-field input[type="file"] {
    font-size: 13px;
    color: #5a6a7a;
}

.lsa-file-hint {
    font-size: 12px;
    color: #8a9ab0;
    margin: 2px 0 0;
}

.lsa-warning {
    font-size: 13px;
    color: #b33;
    margin: 0;
}

/* ── Mobile ── */
@media (max-width: 680px) {
    .lsa-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .lsa-stat:nth-child(2) {
        border-right: none;
    }

    .lsa-stat:nth-child(1),
    .lsa-stat:nth-child(2) {
        border-bottom: 1px solid #e4eaf0;
    }

    .lsa-enroll-grid {
        grid-template-columns: 1fr;
    }

    .lsa-tuition,
    .lsa-form-wrap {
        padding: 28px 22px;
    }
}
