/* ===== SCHOOL HERO BANNER ===== */
.school-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('https://www.agapechurchkenya.com/public/assets/images/5e399b6b-2beb-42fa-8631-06358d611bee.jpeg') center/cover no-repeat;
    color: #fff;
    overflow: hidden;
}
.school-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}
.school-hero .container {
    position: relative;
    z-index: 2;
}
.school-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.school-hero p {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.7;
}

/* ===== ABOUT SCHOOL ===== */
.school-about {
    background: #faf8f4;
}
.school-about .about-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--clr-primary-lighter, #f0ebe2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
    color: var(--clr-primary, #5c6d3f);
}
.school-about .value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: 16px;
    border: 1px solid #eee;
    height: 100%;
    transition: transform 0.3s, box-shadow 0.3s;
}
.school-about .value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.07);
}
.school-about .value-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.school-about .value-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 0;
}

/* ===== REGISTRATION FORM ===== */
.school-register {
    background: var(--clr-primary-lighter, #f5f1ea);
}
.register-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
    max-width: 680px;
    margin: 0 auto;
}
.register-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.register-card .form-control,
.register-card .form-select {
    border-radius: var(--radius-sm, 10px);
    padding: 12px 18px;
    border: 1px solid #ddd;
}
.register-card .form-control:focus,
.register-card .form-select:focus {
    border-color: var(--clr-primary, #5c6d3f);
    box-shadow: 0 0 0 3px rgba(92, 109, 63, 0.12);
}

/* ===== FADE ANIMATION ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.school-hero .container { animation: fadeInUp 1s ease-out; }
