/*************************************
   CONTACT FORM
**************************************/


/* CONTACT WRAPPER */

.contact-wrapper{

    max-width:700px;

    margin:40px auto;

    padding:0 20px;
}



/* INTRO TEXT */

.contact-intro{

    text-align:center;

    font-size:1rem;

    color:#555;

    margin-bottom:30px;

    line-height:1.5;
}



/* FORM */

.contact-form{

    background:#fff;

    padding:30px;

    border-radius:10px;

    border:1px solid #e6e6e6;

    box-shadow:0 4px 18px rgba(0,0,0,0.05);
}



/* FORM ROW */

.form-row{

    margin-bottom:15px;
}



/* INPUTS */

.contact-form input,
.contact-form select,
.contact-form textarea{

    width:100%;

    padding:12px 14px;

    border:1px solid #ddd;

    border-radius:6px;

    font-size:14px;

    outline:none;

    transition:.2s ease;

    font-family:inherit;
}



/* INPUT FOCUS */

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{

    border-color:#0066cc;

    box-shadow:0 0 0 3px rgba(0,102,204,0.1);
}



/* TEXTAREA */

.contact-form textarea{

    min-height:140px;

    resize:vertical;
}



/* BUTTON */

.contact-form button{

    width:100%;

    padding:14px;

    background:#0066cc;

    color:#fff;

    font-size:16px;

    font-weight:600;

    border:none;

    border-radius:6px;

    cursor:pointer;

    transition:.2s ease;
}


.contact-form button:hover{

    background:#004c99;

    transform:translateY(-1px);
}



/* SUCCESS MESSAGE */

.success-msg{

    max-width:700px;

    margin:15px auto;

    padding:12px;

    text-align:center;

    background:#e7f7e7;

    border:1px solid #b7e2b7;

    color:#2e6b2e;

    border-radius:6px;
}



/*************************************
   CONTACT MOBILE
**************************************/

@media(max-width:600px){

    .contact-form{

        padding:20px;
    }

}



/*************************************
   CONTACT BANNER
**************************************/

.contact-banner{

    background:#003366;

    color:#fff;

    text-align:center;

    padding:40px 20px;

    margin-bottom:25px;
}


.contact-banner h1{

    margin:0;

    font-size:2rem;

    font-weight:700;
}


.contact-banner p{

    margin-top:8px;

    font-size:1rem;

    opacity:.9;
}

/*************************************
   CONSENT CHECKBOX
**************************************/

.consent label{

    display:flex;

    align-items:center;

    gap:8px;

    font-size:13px;

    color:#444;

    line-height:1.4;

    cursor:pointer;
}


.consent input{

    width:auto;

    margin:0;

    flex-shrink:0;
}


.consent a{

    color:#0066cc;

    text-decoration:none;
}


.consent a:hover{

    text-decoration:underline;
}


.footer-copy-row {
    font-size: 11px;
}
