/* ===============================
   SUPPORT FORM SHARED STYLES
   =============================== */

.support-form-header,
.contact-header{
    text-align:center;
    max-width:700px;
    margin:0 auto 40px;
}

.support-form-header h2,
.contact-header h2{
    font-size:34px;
    font-weight:700;
    margin-bottom:10px;
    color:#0f172a;
}

.support-form-header p,
.contact-header p{
    color:#64748b;
    font-size:15px;
}


/* MAIN FORM CARD */

.support-form{

    background:#ffffff;
    padding:40px;
    border-radius:18px;

    border:1px solid #e2e8f0;

    box-shadow:0 20px 50px rgba(15,23,42,0.08);

    max-width:900px;
    margin:auto;
}

.contact-form-card h3{
    margin-bottom:25px;
    font-size:22px;
    color:#0f172a;
}


/* GRID */

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}


/* FULL WIDTH ELEMENT */

.full-width{
    grid-column:1 / -1;
}


/* FORM GROUP */

.form-group{
    display:flex;
    flex-direction:column;
}

label{
    font-size:14px;
    font-weight:500;
    margin-bottom:6px;
    color:#334155;
}


/* INPUTS */

input,
select,
textarea{

    width:95%;
    padding:12px 14px;

    border-radius:10px;

    border:1px solid #cbd5e1;

    font-family:'Poppins', sans-serif;

    font-size:14px;

    transition:all .2s ease;

    background:#f8fafc;
}


/* INPUT FOCUS */

input:focus,
select:focus,
textarea:focus{

    outline:none;

    border-color:#2563eb;

    background:#ffffff;

    box-shadow:0 0 0 3px rgba(37,99,235,0.15);
}


/* TEXTAREA */

textarea{
    resize:vertical;
}


/* SUBMIT BUTTON */

.support-form button,
.contact-form-card button{

    margin-top:25px;

    width:100%;

    border:none;

    padding:14px;

    font-size:15px;

    font-weight:600;

    border-radius:999px;

    cursor:pointer;

    background:linear-gradient(135deg,#2563eb,#0ea5e9);

    color:white;

    transition:all .25s ease;

    box-shadow:0 12px 30px rgba(37,99,235,0.25);
}

.support-form button:hover,
.contact-form-card button:hover{

    transform:translateY(-2px);

    box-shadow:0 18px 40px rgba(37,99,235,0.30);
}


/* CONTACT PAGE CARDS */

.support-options{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin:40px auto;
    max-width:900px;
}

.support-card{

    background:#ffffff;

    border-radius:16px;

    border:1px solid #e2e8f0;

    padding:25px;

    text-align:center;

    transition:all .25s ease;

    box-shadow:0 10px 30px rgba(15,23,42,0.06);
}

.support-card:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 40px rgba(15,23,42,0.10);

    border-color:#2563eb;
}

.support-card h3{
    margin-bottom:6px;
}

.support-card p{
    color:#64748b;
}


/* CONTACT PAGE CONTAINER */

.contact-container{
    max-width:1000px;
    margin:auto;
    padding:120px 20px 80px;
}


/* CONTACT FORM CARD */

.contact-form-card{

    margin-top:30px;

    background:#ffffff;

    border-radius:18px;

    padding:35px;

    border:1px solid #e2e8f0;

    box-shadow:0 20px 50px rgba(15,23,42,0.08);
}

.contact-form-card h3{
    margin-bottom:20px;
}


/* RESPONSIVE */

@media(max-width:768px){

.form-grid{
    grid-template-columns:1fr;
}

.support-options{
    grid-template-columns:1fr;
}

}