/* ==================================================
   Enquiry Modal — University Admission Theme
   Colors: Navy (#0b2545) + Gold (#f0a202)
   ================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

.eq-modal {
    --eq-navy: #0b2545;
    --eq-navy-dark: #071a33;
    --eq-gold: #f0a202;
    --eq-gold-dark: #d38f00;
    --eq-text-light: #eef2f8;
    font-family: 'Poppins', sans-serif;
}

.eq-modal .modal-dialog {
    max-width: 900px;
}

.eq-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(11, 37, 69, 0.35);
    position: relative;
}

.eq-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 20;
    background-color: #fff;
    opacity: 1;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* ---------- Left brand panel ---------- */
.eq-side {
    background: linear-gradient(160deg, var(--eq-navy) 0%, var(--eq-navy-dark) 100%);
    position: relative;
    min-height: 100%;
    overflow: hidden;
}

.eq-side::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: rgba(240, 162, 2, 0.15);
    top: -80px;
    right: -80px;
}

.eq-side::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -60px;
    left: -60px;
}

.eq-side-inner {
    position: relative;
    z-index: 2;
    padding: 44px 38px;
    color: var(--eq-text-light);
    background: black;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
}

.eq-badge {
    display: inline-block;
    background: rgba(240, 162, 2, 0.15);
    color: var(--eq-gold);
    border: 1px solid rgba(240, 162, 2, 0.4);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 30px;
    margin-bottom: 18px;
    width: fit-content;
}

.eq-side-title {
    color:white!important;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 14px;
}

.eq-side-text {
    font-size: 14px;
    color: #b9c4d6;
    margin-bottom: 26px;
}

.eq-side-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.eq-side-list li {
    font-size: 13.5px;
    margin-bottom: 12px;
    color: var(--eq-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.eq-side-list i {
    color: var(--eq-gold);
    font-size: 15px;
}

.eq-side-stats {
    display: flex;
    gap: 34px;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 20px;
}

.eq-stat-num {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
}

.eq-stat-label {
    font-size: 12px;
    color: #9fb0c8;
}

/* ---------- Right form panel ---------- */
.eq-form-wrap {
    background: #fff;
    padding: 40px 36px;
}

.eq-form-title {
    font-weight: 700;
    color: var(--eq-navy);
    margin-bottom: 4px;
    font-size: 21px;
}

.eq-form-sub {
    font-size: 13px;
    color: #6b7686;
    margin-bottom: 22px;
}

.eq-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--eq-navy);
    margin-bottom: 6px;
    display: block;
}

.eq-req {
    color: var(--eq-gold-dark);
}

.eq-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.eq-input-group i {
    position: absolute;
    left: 14px;
    color: #9aa5b5;
    font-size: 15px;
    pointer-events: none;
}

.eq-input {
    padding: 10px 14px 10px 40px !important;
    border-radius: 10px !important;
    border: 1.5px solid #e3e8f0 !important;
    font-size: 14px !important;
    background-color: #f9fafc !important;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.eq-input:focus {
    border-color: var(--eq-navy) !important;
    box-shadow: 0 0 0 3px rgba(11, 37, 69, 0.1) !important;
    background-color: #fff !important;
}

/* ---------- Type pill toggle ---------- */
.eq-pill-group {
    display: flex;
    gap: 10px;
}

.eq-pill {
    flex: 1;
    border: 1.5px solid #e3e8f0;
    background: #f9fafc;
    color: #4c5768;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.eq-pill i {
    font-size: 16px;
}

.eq-pill:hover {
    border-color: var(--eq-navy);
}

.eq-pill.active {
    background: var(--eq-navy);
    border-color: var(--eq-navy);
    color: #fff;
}

.eq-pill.active i {
    color: var(--eq-gold);
}

/* ---------- Collapsible sections ---------- */
.eq-collapse {
    display: none;
    animation: eqFadeIn 0.25s ease;
}

@keyframes eqFadeIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Submit button ---------- */
.eq-btn-submit {
    background: linear-gradient(135deg, var(--eq-gold) 0%, var(--eq-gold-dark) 100%);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14.5px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.eq-btn-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(240, 162, 2, 0.35);
    color: #1a1a1a;
}

.eq-btn-submit:disabled {
    opacity: 0.7;
    transform: none;
    box-shadow: none;
}

.eq-privacy {
    font-size: 11.5px;
    color: #9aa5b5;
    text-align: center;
    margin-top: 12px;
    margin-bottom: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    .eq-form-wrap {
        padding: 30px 22px;
    }
}