/* ===========================
   CONTACT PAGE STYLES
   =========================== */

/* Layout: form + video side by side */
.contact-layout {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
    justify-content: center;
    align-items: flex-start; /* align top of form and video */
}

/* Form section */
.form-section {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Video container (right side) */
.form-video-container {
    flex: 1 1 300px;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

/* Video styling */
.form-video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Contact icons */
.contact-icons p {
    margin: 0.5rem 0;
    font-size: 1rem;
}

.contact-icons i {
    margin-right: 0.5rem;
    color: var(--golden-yellow);
}

.contact-icons a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-icons a:hover {
    text-decoration: underline;
}

/* Form styling */
form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

form label {
    font-weight: 600;
}

form input,
form textarea {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: var(--table-grey);
    color: var(--white);
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--golden-yellow);
    box-shadow: 0 0 0 2px rgba(251, 175, 51, 0.3);
}

form button {
    background-color: var(--golden-yellow);
    color: var(--black);
    font-weight: 600;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: #e0a021; /* slightly darker on hover */
}