/* ==========================================================
   CONTACT HERO
========================================================== */

.contact-hero{
    padding:6rem 0;
    text-align:center;
    color:#fff;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("/static/images/branding/ball.jpg");
    background-size:cover;
    background-position:center;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    padding:.75rem 1.5rem;
    margin-bottom:1.5rem;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);
    color:#fff;
    font-weight:600;
}

.contact-hero h1{
    color:#fff;
    font-size:clamp(2.8rem,6vw,4.5rem);
    margin-bottom:1.5rem;
}

.contact-hero p{
    max-width:720px;
    margin:auto;
    color:rgba(255,255,255,.9);
    line-height:1.9;
    font-size:1.1rem;
}

/* ==========================================================
   SECTIONS
========================================================== */

.section{
    padding:5rem 0;
}

.section-light{
    background:var(--surface);
}

.section-header{
    text-align:center;
    margin-bottom:3rem;
}

.section-header p{
    max-width:720px;
    margin:auto;
    color:var(--text);
    line-height:1.8;
}

/* ==========================================================
   CONTACT CARDS
========================================================== */

.contact-info-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(230px,1fr));
    gap:1.5rem;
}

.contact-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:2rem;
    text-align:center;
    transition:.3s;
}

.contact-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

.contact-card .icon{
    width:70px;
    height:70px;
    margin:0 auto 1.5rem;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,165,0,.12);
    color:var(--primary);
    font-size:1.6rem;
}

.contact-card h3{
    margin-bottom:.8rem;
}

.contact-card p{
    color:var(--text);
    line-height:1.7;
}

/* ==========================================================
   FORM + MAP
========================================================== */

.contact-wrapper{
    display:grid;
    grid-template-columns:1.1fr .9fr;
    gap:2rem;
    align-items:stretch;
}

.contact-form,
.contact-map{
    background:#fff;
    border:1px solid var(--border);
    border-radius:20px;
    padding:2rem;
    box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.contact-form h2{
    margin-bottom:2rem;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:1rem;
}

.form-group{
    margin-bottom:1.4rem;
}

.form-group label{
    display:block;
    margin-bottom:.5rem;
    font-weight:600;
}

.form-control{
    width:100%;
    padding:.9rem 1rem;
    border:1px solid var(--border);
    border-radius:12px;
    font-family:inherit;
    transition:.3s;
}

.form-control:focus{
    outline:none;
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(255,165,0,.12);
}

textarea.form-control{
    resize:vertical;
}

.contact-map{
    padding:0;
    overflow:hidden;
}

.contact-map iframe{
    width:100%;
    height:100%;
    min-height:620px;
    border:none;
}

/* ==========================================================
   HELP
========================================================== */

.help-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:1.5rem;
}

.help-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:2rem;
    text-align:center;
    transition:.3s;
}

.help-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 35px rgba(0,0,0,.08);
}

.help-card i{
    font-size:2rem;
    color:var(--primary);
    margin-bottom:1rem;
}

.help-card h3{
    margin-bottom:1rem;
}

.help-card p{
    color:var(--text);
    line-height:1.8;
}

/* ==========================================================
   SAFEGUARDING
========================================================== */

.safeguarding-banner{
    padding:4rem 0;
    background:#111827;
}

.safeguarding-content{
    display:flex;
    gap:2rem;
    align-items:center;
    color:#fff;
}

.safeguarding-content i{
    font-size:3rem;
    color:var(--primary);
}

.safeguarding-content p{
    color:rgba(255,255,255,.85);
    line-height:1.8;
}

/* ==========================================================
   CTA
========================================================== */

.contact-cta{
    padding:5rem 0;
    text-align:center;
    background:#111827;
}

.contact-cta h2{
    color:#fff;
    margin-bottom:1rem;
}

.contact-cta p{
    max-width:700px;
    margin:0 auto 2rem;
    color:rgba(255,255,255,.85);
}

/* ==========================================================
   BUTTONS
========================================================== */

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:1rem 2.4rem;
    border:none;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.btn-primary{
    background:var(--primary);
    color:#fff;
}

.btn-primary:hover{
    transform:translateY(-3px);
    filter:brightness(.95);
}

.btn-outline-light{
    border:2px solid rgba(255,255,255,.35);
    color:#fff;
}

.btn-outline-light:hover{
    background:#fff;
    color:#111827;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

@media(max-width:992px){

    .contact-wrapper{
        grid-template-columns:1fr;
    }

    .contact-map iframe{
        min-height:450px;
    }

}

@media(max-width:768px){

    .contact-hero{
        padding:5rem 0;
    }

    .form-grid{
        grid-template-columns:1fr;
    }

    .safeguarding-content{
        flex-direction:column;
        text-align:center;
    }

    .contact-info-grid,
    .help-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:576px){

    .section,
    .contact-cta{
        padding:4rem 0;
    }

    .contact-form{
        padding:1.5rem;
    }

}