.hero-contact {
    background-image: url('../images/bujaldon-contacto-header.png');
    background-size: cover;
    height: 23.5625rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(106deg, rgba(0, 0, 0, 0.30) 25.42%, rgba(102, 102, 102, 0.00) 69.53%);
    pointer-events: none;
}

.hero-contact p{
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25rem;
    letter-spacing: 0.05rem;
}

/* Contact Form */
.contact-form-v2 {
    background: #FFFFFF;
}

.form-control-contact {
    width: 100%;
    padding: 0.875rem 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    color: #747474;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #D9D9D9;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-control-contact::placeholder {
    color: #747474;
    opacity: 1;
}

.form-control-contact:focus {
    border-bottom-color: #6E941E;
    outline: none;
    box-shadow: none;
}

.form-control-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Checkbox */
.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    border: 1px solid #D9D9D9;
    border-radius: 0.25rem;
    cursor: pointer;
    flex-shrink: 0;
}

.form-check-input:checked {
    background-color: #6E941E;
    border-color: #6E941E;
}

.form-check-label {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
    color: #747474;
    cursor: pointer;
}

.form-check-label a {
    color: #6E941E;
    text-decoration: underline;
}

.form-check-label a:hover {
    color: #4F6E15;
}

/* Submit Button */
.btn-submit-contact {
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 1.875rem;
    border: none;
    background-color: #F49200;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.btn-submit-contact:hover {
    background-color: #d67f00;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 146, 0, 0.3);
}

/* Error Messages */
.contact-form-v2 .errors,
.contact-form-v2 ul {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    list-style: none;
    padding: 0;
}

/* Success/Error Alerts */
.alert {
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 0.5rem;
}

.alert-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Contact Info */
#contact .block-text b {
    font-weight: 600;
    color: #4F473D;
}