/*====================================================
        PAGE BANNER
====================================================*/

.page-banner{
    position:relative;
    overflow:hidden;
    padding:170px 0 90px;
    background:
    radial-gradient(circle at 15% 20%,rgba(212,175,55,.14),transparent 40%),
    radial-gradient(circle at 85% 0%,rgba(40,130,255,.16),transparent 35%),
    linear-gradient(180deg,#040816 0%,#071225 55%,#050816 100%);
}

.page-banner::before,
.page-banner::after{
    content:"";
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    opacity:.3;
    pointer-events:none;
}

.page-banner::before{
    width:280px;
    height:280px;
    background:#1f6fff;
    top:-100px;
    right:-90px;
}

.page-banner::after{
    width:240px;
    height:240px;
    background:#d4af37;
    bottom:-100px;
    left:-80px;
}

.page-banner h1{
    position:relative;
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:clamp(32px,4vw,48px);
    letter-spacing:.3px;
    margin-bottom:16px;
}

.page-banner p{
    position:relative;
    color:#c7cbdc;
    font-size:17px;
    letter-spacing:.3px;
}

/*====================================================
        SHARED TAG
====================================================*/

.volunteer-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:6px 16px;
    border-radius:50px;
    background:rgba(212,175,55,.12);
    border:1px solid rgba(212,175,55,.3);
    color:#f8dd7f;
    font-size:12.5px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.volunteer-tag--center{
    display:inline-flex;
}

/*====================================================
        WHY VOLUNTEER (lead)
====================================================*/

.volunteer-lead{
    background:#050816;
    padding:100px 0 90px;
}

.volunteer-lead-inner{
    max-width:780px;
    margin:0 auto;
    text-align:center;
}

.volunteer-lead-text{
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:clamp(21px,2.4vw,27px);
    line-height:1.55;
    margin-bottom:22px;
}

.volunteer-lead-sub{
    color:#c7cbdc;
    font-size:16.5px;
    line-height:1.9;
}

/*====================================================
        OPPORTUNITIES
====================================================*/

.volunteer-section{
    background:#050816;
    padding:90px 0;
}

.volunteer-section.alternate{
    background:#071225;
}

.volunteer-intro{
    max-width:560px;
    margin:0 auto 44px;
    text-align:center;
}

.volunteer-intro h2{
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:clamp(24px,2.6vw,32px);
    margin:0;
}

.volunteer-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:26px;
}

.volunteer-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.1);
    border-radius:20px;
    padding:34px 30px;
    transition:transform .4s ease, border-color .4s ease, box-shadow .4s ease;
}

.volunteer-card:hover{
    transform:translateY(-8px);
    border-color:rgba(212,175,55,.3);
    box-shadow:0 25px 55px rgba(0,0,0,.4);
}

.volunteer-icon{
    width:52px;
    height:52px;
    border-radius:14px;
    background:rgba(212,175,55,.12);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#d4af37;
    font-size:20px;
    margin-bottom:18px;
}

.volunteer-card h3{
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-weight:700;
    font-size:18px;
    margin-bottom:10px;
}

.volunteer-card p{
    color:#a9aec4;
    font-size:14.5px;
    line-height:1.75;
    margin:0;
}

/*====================================================
        VOLUNTEER FORM
====================================================*/

.volunteer-form-section{
    position:relative;
    overflow:hidden;
    background:#050816;
    padding:0 0 110px;
}

.volunteer-form-card{
    position:relative;
    max-width:820px;
    margin:0 auto;
    padding:52px 48px;
    border-radius:24px;
    background:
    radial-gradient(circle at 20% 0%,rgba(212,175,55,.1),transparent 45%),
    rgba(255,255,255,.03);
    border:1px solid rgba(212,175,55,.25);
}

.volunteer-form-intro{
    text-align:center;
    max-width:560px;
    margin:0 auto 40px;
}

.volunteer-form-intro h2{
    color:#fff;
    font-family:'Poppins',sans-serif;
    font-weight:800;
    font-size:clamp(22px,2.6vw,28px);
    margin:0 0 14px;
}

.volunteer-form-intro p{
    color:#c7cbdc;
    font-size:16px;
    line-height:1.85;
    margin:0;
}

/*=========================
        FORM LAYOUT
=========================*/

.vf-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
    margin-bottom:22px;
}

.vf-field{
    display:flex;
    flex-direction:column;
}

.vf-field--full{
    margin-bottom:22px;
}

.vf-field label{
    color:#e3e6f5;
    font-size:14px;
    font-weight:600;
    margin-bottom:9px;
}

.vf-optional{
    color:#7d839c;
    font-weight:400;
}

.vf-field input,
.vf-field select,
.vf-field textarea{
    width:100%;
    padding:13px 16px;
    border-radius:12px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.14);
    color:#fff;
    font-size:15px;
    font-family:inherit;
    transition:border-color .3s ease, background .3s ease;
}

.vf-field textarea{
    resize:vertical;
    min-height:120px;
}

.vf-field input::placeholder,
.vf-field textarea::placeholder{
    color:#6b7189;
}

.vf-field input:focus,
.vf-field select:focus,
.vf-field textarea:focus{
    outline:none;
    border-color:rgba(212,175,55,.6);
    background:rgba(255,255,255,.06);
}

.vf-field select{
    appearance:none;
    -webkit-appearance:none;
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d4af37' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat:no-repeat;
    background-position:right 16px center;
    padding-right:38px;
}

.vf-field select option{
    background:#0c1024;
    color:#fff;
}

.vf-error{
    display:none;
    color:#ff8686;
    font-size:12.5px;
    margin-top:7px;
}

.vf-field.vf-invalid input,
.vf-field.vf-invalid select,
.vf-field.vf-invalid textarea{
    border-color:rgba(255,80,80,.6);
}

.vf-field.vf-invalid .vf-error{
    display:block;
}

/*=========================
        CHECKBOX GROUP
=========================*/

.vf-checkbox-group{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:12px;
}

.vf-checkbox{
    display:flex;
    align-items:center;
    gap:10px;
    padding:12px 16px;
    border-radius:12px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.12);
    cursor:pointer;
    transition:border-color .3s ease, background .3s ease;
}

.vf-checkbox:hover{
    border-color:rgba(212,175,55,.35);
}

.vf-checkbox input{
    width:17px;
    height:17px;
    accent-color:#d4af37;
    cursor:pointer;
}

.vf-checkbox span{
    color:#d8dff1;
    font-size:14px;
}

/*=========================
        SUBMIT / SUCCESS
=========================*/

.vf-submit{
    width:100%;
    justify-content:center;
    text-align:center;
    border:0;
    cursor:pointer;
    margin-top:6px;
}

.vf-success{
    display:none;
    align-items:center;
    gap:10px;
    margin-top:20px;
    padding:16px 18px;
    border-radius:14px;
    background:rgba(80,200,120,.1);
    border:1px solid rgba(80,200,120,.35);
    color:#7de3a0;
    font-size:14.5px;
    font-weight:600;
}

.vf-success.is-visible{
    display:flex;
}

/*=========================
        TABLET
=========================*/

@media(max-width:991px){

.page-banner{
    padding:150px 0 70px;
}

.volunteer-lead{
    padding:80px 0 70px;
}

.volunteer-section{
    padding:70px 0;
}

.volunteer-grid{
    grid-template-columns:repeat(2, 1fr);
}

.volunteer-form-section{
    padding:0 0 90px;
}

.volunteer-form-card{
    padding:40px 30px;
}

.vf-row{
    grid-template-columns:1fr;
    gap:20px;
}

}

/*=========================
        MOBILE
=========================*/

@media(max-width:576px){

.page-banner{
    padding:140px 0 60px;
}

.page-banner h1{
    font-size:28px;
}

.volunteer-lead{
    padding:60px 0 50px;
}

.volunteer-lead-text{
    font-size:20px;
}

.volunteer-grid{
    grid-template-columns:1fr;
}

.volunteer-form-card{
    padding:30px 22px;
}

.vf-checkbox-group{
    grid-template-columns:1fr;
}

}