/* CONTAINER CONFIGURATIONS */
.form-main-container {
    max-width: 1200px;
    margin: 2rem auto 6rem auto;
}

.form-content-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* IMAGE BANNER FRAMING */
.contact-hero-banner {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 520px;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 3.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.contact-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

/* TYPOGRAPHY */
.form-header {
    margin-bottom: 2.5rem;
}

.form-header h1 {
    font-size: 4.2rem;
    font-weight: 400;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
}

.form-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
}

/* FORM LAYOUT & INPUT FIELDS */
.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row-gap {
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.input-group input,
.input-group textarea {
    width: 100%;
    background-color: #f6f6f6; /* Flat grey input color as shown */
    border: 1px solid transparent;
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    font-size: 1.05rem;
    font-family: inherit;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: #999999;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, 0.1);
}

/* FULL WIDTH STRETCH SUBMIT */
.submit-pill-btn {
    width: 100%;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.2s ease;
}

.submit-pill-btn:hover {
    background-color: #222222;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
    .form-header h1 {
        font-size: 3rem;
    }
    .contact-hero-banner {
        border-radius: 20px;
    }
}