.contact-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.contact-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45); /* dark layer */
    z-index: 2;
}

.contact-form-wrapper {
    position: relative;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 4rem 2rem;
    border-radius: 1rem;
    max-width: 700px;
    width: 90%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    color: var(--black);
}

.contact-form-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--deep-brown);
}

.contact-form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.6rem;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-family: inherit;
    box-sizing: border-box;
}

.contact-form-row input {
    flex: 1;
}

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

.contact-submit-btn {
    background-color: var(--deep-brown);
    color: white;
    font-size: 1.8rem;
    padding: 1rem 2rem;
    
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

.contact-form input:not(.contact-form-row input),
.contact-form select,
.contact-form textarea {
    margin-bottom: 1.5rem;
}
.contact-form select {
    appearance: none;
    -webkit-appearance: none; /* Safari/iOS */
    -moz-appearance: none;    /* Firefox */
    background-color: white;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='black' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.5rem;
    padding-right: 4rem; /* room for the icon */
}