/* ===== ADMISSION PAGE ===== */

.admission-section {
    padding: 72px 0 96px;
    background: #f4f6f9;
}

.admission-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

/* ── Form Card ── */
.admission-form-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 28px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.admission-form-header {
    background: linear-gradient(135deg, var(--theme_color) 0%, #7a0008 100%);
    padding: 34px 40px;
}

.adm-eyebrow {
    font-family: 'Open Sans', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 8px;
}

.adm-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
}

.adm-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
    line-height: 1.6;
}

.admission-form-body {
    padding: 36px 40px;
}

/* ── Form Controls ── */
.adm-form-group {
    margin-bottom: 18px;
}

.adm-form-group label {
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 12.5px;
    font-weight: 600;
    color: #444;
    margin-bottom: 6px;
}

.adm-required {
    color: var(--theme_color);
}

.adm-form-control {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1.5px solid #e2e6ed;
    border-radius: 7px;
    font-size: 13.5px;
    font-family: 'Open Sans', sans-serif;
    color: #333;
    background: #fafbfc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.adm-form-control:focus {
    outline: none;
    border-color: var(--theme_color);
    box-shadow: 0 0 0 3px rgba(217, 0, 13, 0.09);
    background: #fff;
}

select.adm-form-control {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
}

textarea.adm-form-control {
    height: auto;
    padding: 12px 14px;
    resize: vertical;
    min-height: 110px;
}

.adm-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* ── Alert ── */
.adm-alert {
    padding: 12px 16px;
    border-radius: 7px;
    font-size: 13.5px;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 14px;
    line-height: 1.5;
}

.adm-alert.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.adm-alert.error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #ef9a9a;
}

/* ── Submit button ── */
.adm-submit-btn {
    width: 100%;
    height: 50px;
    background-color: var(--theme_color);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
    transition: background-color 0.2s ease, opacity 0.2s ease;
    letter-spacing: 0.3px;
}

.adm-submit-btn:hover {
    background-color: #c0000b;
}

.adm-submit-btn:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

/* ── Privacy note ── */
.adm-privacy {
    font-family: 'Open Sans', sans-serif;
    font-size: 11.5px;
    color: #999;
    line-height: 1.6;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #f0f2f5;
    display: flex;
    gap: 6px;
    align-items: flex-start;
}

.adm-privacy .iconify {
    font-size: 14px;
    color: #27ae60;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Info Panel ── */
.admission-info-panel {
    position: sticky;
    top: 110px;
}

.admission-info-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    padding: 28px;
    margin-bottom: 20px;
}

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

.admission-info-title {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 2.5px solid var(--theme_color);
}

/* Steps */
.admission-step {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.admission-step:last-child {
    margin-bottom: 0;
}

.admission-step-num {
    width: 32px;
    height: 32px;
    background: var(--theme_color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Open Sans', sans-serif;
}

.admission-step-text h4 {
    font-family: 'Open Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #222;
    margin: 0 0 3px;
}

.admission-step-text p {
    font-family: 'Open Sans', sans-serif;
    font-size: 12.5px;
    color: #777;
    margin: 0;
    line-height: 1.55;
}

/* Contact items */
.admission-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 11px 0;
    border-bottom: 1px solid #f2f4f7;
}

.admission-contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.admission-contact-icon {
    width: 38px;
    height: 38px;
    background: rgba(217, 0, 13, 0.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admission-contact-icon .iconify {
    font-size: 18px;
    color: var(--theme_color);
}

.admission-contact-label {
    font-family: 'Open Sans', sans-serif;
    font-size: 10.5px;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 2px;
}

.admission-contact-value {
    font-family: 'Open Sans', sans-serif;
    font-size: 13.5px;
    color: #333;
    font-weight: 600;
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .admission-grid {
        grid-template-columns: 1fr;
    }
    .admission-info-panel {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .admission-info-card {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .adm-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .admission-form-header {
        padding: 28px 24px;
    }
    .admission-form-body {
        padding: 24px;
    }
    .admission-section {
        padding: 48px 0 64px;
    }
    .admission-info-panel {
        grid-template-columns: 1fr;
    }
}
