/* =========================================================
   Southern Steel — Contact Page
   contact.css
   ========================================================= */

.banner {
    width: 100%;
    background-color: #fa2660;
}
.banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}
.enquiry-section {
    background: #ffffff;
    padding: 40px 24px 70px;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    color: var(--ss-text);
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.enquiry-inner {
    max-width: var(--ss-max-width);
    margin: 0 auto;
}
.enquiry-heading {
    color: #fa2660;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}
.enquiry-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 60px;
}
.form-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.form-group {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.form-group label {
    font-weight: 700;
    font-size: 14px;
    color: #222;
    min-width: 130px;
    padding-top: 8px;
    flex-shrink: 0;
}
.required {
    color: var(--ss-required);
}
.field-wrap {
    flex: 1;
}
input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 7px 10px;
    border: 1px solid #000;
    border-radius: 2px;
    font-size: 14px;
    font-family: inherit;
    color: var(--ss-text);
    background: #ffffff;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--ss-navy);
}
textarea {
    resize: vertical;
}
#address {
    min-height: 110px;
}
#additional-info {
    min-height: 175px;
}
select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><polygon points='0,0 12,0 6,8' fill='%23555'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
    cursor: pointer;
    color: #777;
}
.form-group--block {
    flex-direction: column;
    gap: 8px;
}
.form-group--block label {
    padding-top: 0;
    min-width: unset;
}
.products-block {
    margin-top: 4px;
}
.products-block .products-label {
    font-weight: 700;
    font-size: 14px;
    color: #222;
    display: block;
    margin-bottom: 10px;
    line-height: 1.4;
}
.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}
.checkbox-item input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
}
.file-upload-block {
    grid-column: 1 / -1;
    margin-top: 20px;
}
.file-upload-block label {
    font-weight: 700;
    font-size: 14px;
    color: #222;
    display: block;
    margin-bottom: 10px;
}
.file-upload-wrap {
    border: 1px solid #000;
    border-radius: 2px;
    padding: 6px 10px;
    max-width: 500px;
}
input[type="file"] {
    font-size: 13px;
    width: 100%;
}
.captcha-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--ss-border);
    border-radius: 3px;
    padding: 12px 14px;
    max-width: 300px;
    background: #f9f9f9;
    margin-top: 16px;
}
.captcha-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.captcha-left input[type="checkbox"] {
    width: 22px;
    height: 22px;
    cursor: pointer;
}
.captcha-left span {
    font-size: 14px;
}
.captcha-logo {
    font-size: 10px;
    color: #999;
    text-align: center;
    line-height: 1.3;
}
.consent-block {
    grid-column: 1 / -1;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 24px;
    font-size: 14px;
}
.consent-block input[type="checkbox"] {
    margin-top: 3px;
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    cursor: pointer;
}
.consent-block a {
    color: var(--ss-navy);
    text-decoration: underline;
}
.consent-block .consent-sub {
    display: block;
    color: #444;
    margin-top: 4px;
    font-size: 13px;
    line-height: 1.5;
}
.submit-block {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    margin-top: 22px;
}

.btn-submit {
    width: 100%;
    max-width: 520px;
    padding: 13px;
    background: #ffffff;
    color: #fa2660;
    border: 1px solid #fa2660;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.btn-submit:hover {
    background: #fa2660;
    color: #ffffff;
}

@media (max-width: 900px) {
    .enquiry-form {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .banner img {
        height: auto;
    }
}

@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        gap: 6px;
    }
    .form-group label {
        min-width: unset;
        padding-top: 0;
    }
    .enquiry-heading {
        font-size: 22px;
    }
    .enquiry-section {
        padding: 30px 16px 50px;
    }
    .banner img {
        height: auto;
    }
    .captcha-box {
        max-width: 100%;
    }
}