/* PAGE CONTAINER */
.support .container {
    width: 100%;
    margin: 0 auto;
    padding: 40px 20px;
}

/* HEADINGS */
.support h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #448bca;
}

.support h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #448bca;
}

/* PARAGRAPHS */
.support p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #000000;
}

/* FORM CONTAINER */
#support-form {
    background: #f8f9fc;
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid #e2e6f0;
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
}

/* FIELD SPACING */
#support-form .mb-3 {
    margin-bottom: 1.6rem;
}

/* LABELS */
#support-form .form-label {
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: #448bca;
    display: block;
    text-align: left;
    width: 100%;
}

/* INPUTS + TEXTAREA */
#support-form .form-control {
    border-radius: 6px;
    border: 1px solid #ccd4e0;
    padding: 10px 12px;
    font-size: 1rem;
}

#support-form .form-control:focus {
    border-color: #0066cc;
    box-shadow: 0 0 0 2px rgba(0, 102, 204, 0.15);
}

/* BUTTON */
#support-form .btn-primary {
    background-color: #448bca;
    border-color: #0066cc;
    padding: 6px 14px; /* shorter button */
    font-size: 1rem;
    border-radius: 6px;
    margin-top: 20px;
    color: #ffffff;
    align-self: flex-end; /* bottom-right */
}

#support-form .btn-primary:hover {
    background-color: #448bca;
    border-color: #004c99;
    color: #ffffff;
}

/* 📱 MOBILE OPTIMISATION */
@media (max-width: 640px) {

    #support-form {
        padding: 24px 20px;
    }

    #support-form .form-control {
        width: 100%;
        height: 52px; /* taller fields */
        padding: 14px 14px;
        font-size: 1.05rem;
    }

    #support-form textarea.form-control {
        height: 180px;
    }

    #support-form .btn-primary {
        align-self: flex-end;
        padding: 10px 18px;
        font-size: 1rem;
        margin-top: 10px;
    }
}
/* DESKTOP FIXES */

/* Make text fields taller and full-width */
#support-form .form-control {
    height: 52px;          /* taller fields */
    padding: 14px 14px;    /* more comfortable */
    width: 100%;           /* full width */
    box-sizing: border-box;
}

/* Make textarea taller */
#support-form textarea.form-control {
    height: 180px;
}

/* Make Send Message button shorter and keep it bottom-right */
#support-form .btn-primary {
    padding: 6px 18px;     /* shorter button */
    align-self: flex-end;  /* bottom-right */
    font-size: 1rem;
}



/* 📱 MOBILE OPTIMISATION */
@media (max-width: 640px) {

    /* Reduce padding on mobile */
    #support-form {
        padding: 24px 20px;
    }

    /* Larger tap targets on mobile */
    #support-form .form-control {
        height: 56px;      /* even taller for mobile */
        padding: 16px 16px;
        font-size: 1.05rem;
    }

    /* Larger textarea for mobile typing */
    #support-form textarea.form-control {
        height: 200px;
    }

    /* Mobile-friendly button */
    #support-form .btn-primary {
        padding: 10px 20px;
        margin-top: 12px;
        align-self: flex-end;
    }
}
