/* ===========================================================
   Admissions page
   Reuses .tp-hero / .tp-breadcrumb from toddler.css.
   =========================================================== */

.adm-section {
    padding: 84px 24px;
}

.adm-section.tint {
    background: #eef4f8;
}

.adm-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px;
}

.adm-head span {
    color: #30A7DF;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
}

.adm-head h2 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #101828;
    margin-top: 10px;
}

.adm-head p {
    color: #4A5565;
    font-size: 16px;
    line-height: 26px;
    margin-top: 12px;
}

/* ---------- Steps timeline ---------- */
.adm-steps {
    max-width: 760px;
    margin: 0 auto;
}

.adm-step {
    position: relative;
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 24px;
    align-items: start;
    padding-bottom: 38px;
}

.adm-step:last-child {
    padding-bottom: 0;
}

/* connecting line between step numbers */
.adm-step::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 62px;
    height: calc(100% - 62px);
    width: 2px;
    background: #cfe0ea;
}

.adm-step:last-child::before {
    display: none;
}

.adm-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #85C555;
    color: #fff;
    font-family: 'Fira Sans', sans-serif;
    font-weight: 700;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adm-step-body {
    padding-top: 13px;
}

.adm-step-body p {
    color: #364152;
    font-size: 17px;
    line-height: 28px;
    margin: 0;
}

.adm-step-body a {
    color: #30A7DF;
    text-decoration: none;
    font-weight: 600;
}

.adm-step-body a:hover {
    text-decoration: underline;
}

/* ---------- Subsidy card ---------- */
.adm-subsidy {
    max-width: 820px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 38px 42px;
    box-shadow: 0 16px 40px rgba(14, 68, 89, 0.08);
    border-left: 5px solid #30A7DF;
}

.adm-subsidy h3 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #0E4459;
    margin-bottom: 12px;
}

.adm-subsidy p {
    color: #4A5565;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 16px;
}

.adm-subsidy a {
    color: #30A7DF;
    word-break: break-word;
}

.adm-phones {
    list-style: none;
    margin: 0;
    display: grid;
    gap: 12px;
}

.adm-phones li {
    display: flex;
    gap: 12px;
    align-items: baseline;
    color: #364152;
    font-size: 16px;
    border-top: 1px solid #eef0f3;
    padding-top: 12px;
}

.adm-phones .ph-label {
    color: #4A5565;
    min-width: 190px;
}

.adm-phones .ph-num {
    font-weight: 700;
    color: #0E4459;
}

/* ---------- CTA ---------- */
.adm-cta {
    background: #eef4f8;
    padding: 72px 24px;
    text-align: center;
}

.adm-cta h2 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 12px;
}

.adm-cta p {
    color: #4A5565;
    font-size: 16px;
    line-height: 26px;
    max-width: 560px;
    margin: 0 auto 26px;
}

.adm-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.adm-btn {
    padding: 14px 28px;
    border: none;
    border-radius: 10px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: filter 0.2s;
}

.adm-btn.primary {
    background: #85C555;
    color: #fff;
}

.adm-btn.secondary {
    background: #30A7DF;
    color: #fff;
}

.adm-btn:hover {
    filter: brightness(0.93);
}

/* ---------- Downloadable forms ---------- */
.adm-forms-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.adm-form-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    border: 1px solid #e4edf3;
    border-radius: 14px;
    padding: 20px 22px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(14, 68, 89, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.adm-form-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(14, 68, 89, 0.12);
}

.adm-form-ic {
    flex: 0 0 auto;
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: #fdecec;
    color: #d9534f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.5px;
}

.adm-form-meta {
    min-width: 0;
}

.adm-form-meta h4 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 16px;
    color: #0E4459;
    margin: 0 0 3px;
}

.adm-form-meta span {
    font-size: 13px;
    color: #8a97a3;
}

.adm-form-dl {
    margin-left: auto;
    color: #30A7DF;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

/* ---------- Book a Visit ---------- */
.adm-visit {
    background: #0E4459;
    padding: 84px 24px;
}

.adm-visit-inner {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.adm-visit-info h2 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 14px;
}

.adm-visit-info p {
    color: #cfe3ea;
    font-size: 16px;
    line-height: 27px;
    margin-bottom: 16px;
}

.adm-visit-info a {
    color: #85C555;
    font-weight: 600;
    text-decoration: none;
}

.adm-visit-form {
    background: #ffffff;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 22px 54px rgba(0, 0, 0, 0.25);
}

.adm-visit-form input,
.adm-visit-form textarea {
    width: 100%;
    padding: 13px 15px;
    margin-bottom: 14px;
    border: 1px solid #d8e2e9;
    border-radius: 9px;
    font-family: 'Fira Sans', sans-serif;
    font-size: 15px;
    box-sizing: border-box;
}

.adm-visit-form button {
    width: 100%;
    padding: 14px;
    background: #85C555;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: filter 0.2s;
}

.adm-visit-form button:hover {
    filter: brightness(0.93);
}

.adm-visit-success {
    display: none;
    background: #f0faf0;
    border: 1px solid #85C555;
    color: #2e7d32;
    border-radius: 9px;
    padding: 13px;
    margin-bottom: 14px;
    font-size: 14px;
    text-align: center;
}

@media (max-width: 768px) {
    .adm-forms-grid {
        grid-template-columns: 1fr;
    }

    .adm-visit-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {

    .adm-section,
    .adm-cta,
    .adm-visit {
        padding: 56px 20px;
    }

    .adm-head h2 {
        font-size: 28px;
    }

    .adm-subsidy {
        padding: 28px 22px;
    }

    .adm-phones li {
        flex-direction: column;
        gap: 2px;
    }

    .adm-phones .ph-label {
        min-width: auto;
    }
}
