#contact {
    background-image: url('/static/images/product_details/bg-black.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: calc(100vh - 100px);
    color: white;
    padding: 40px 0;
}

#contact .redes {
    font-size: 1.5rem;
}
#contact a {
    color: white;
    text-decoration: none;
}

/* Contact form styles to match reference: transparent inputs with bottom white border */
#contact .form-control,
#contact .form-select,
#contact textarea.form-control {
    background: transparent;
    color: #ffffff;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.6);
    border-radius: 0;
    box-shadow: none;
    padding: 0.5rem 0;
    outline: none;
}

#contact .form-control::placeholder,
#contact textarea.form-control::placeholder {
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

#contact .form-label {
    display: block;
    color: rgba(255,255,255,0.9);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

#contact .form-control:focus,
#contact .form-select:focus,
#contact textarea.form-control:focus {
    box-shadow: none;
    border-bottom-color: #ffffff;
}

/* Ensure selects show a light caret and have same bottom-border look */
#contact .form-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, #fff 50%),
                      linear-gradient(135deg, #fff 50%, transparent 50%);
    background-position: calc(100% - 1rem) calc(50% - 0.25rem), calc(100% - 0.6rem) calc(50% - 0.25rem);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    padding-right: 2.5rem;
}

/* Button style */
#contact .btn-primary {
    background-color: #b51217;
    border-color: #b51217;
    padding: 0.9rem 2.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 0 !important;
    box-shadow: none;
}

#contact .btn-primary:hover,
#contact .btn-primary:focus {
    background-color: #a30f13;
    border-color: #a30f13;
    border-radius: 0 !important;
    box-shadow: none;
}

/* Spacing adjustments to mimic reference */
/* #contact .row.g-3 > [class^='col-'] {
    margin-bottom: 1.25rem;
} */

/* Remove default textarea resize handle color clash */
#contact textarea.form-control {
    resize: vertical;
}

/* Make select caret accessible on IE/Edge */
#contact select::-ms-expand { display: none; }

