.contact-header {
    background-image: url('WebsiteImages/Still\ A11.jpg');
}


/* Contact Section */
.contact-us {
    width: 100%;
    padding: 120px 0;
    background: linear-gradient(to bottom,#070707,#000000);
}

.contact-us .row {
    width: 100%;
    max-width: 1100px; /* keeps it centered and not too wide */
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;  /* centers children */
    align-items: flex-start;
    gap: 40px;
}

.contact-col {
    flex: 1;
    min-width: 300px;
    max-width: 500px; /* prevents form from stretching too wide */
    color: #fff;
}

/* Info Blocks */
.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}
.contact-col div i {
    font-size: 28px;
    color: #fc3f40;
    margin-right: 20px;
}
.contact-col div h5 {
    font-size: 15px;
    margin-bottom: 5px;
    color: #fff;
}
.contact-col div p {
    color: #bbb;
    font-size: 14px;
}

/* Contact Form */
.contact-col form {
    display: flex;
    flex-direction: column;
    align-items: center; /* center form fields */
}

.contact-col input, 
.contact-col textarea {
    width: 100%;
    max-width: 450px; /* keeps form narrow and centered */
    padding: 15px;
    margin-bottom: 15px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #222;
    color: #fff;
}

.contact-col button {
    margin-top: 10px;
    border: 1px solid #fc3f40;
    background: transparent;
    color: #fc3f40;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}
.contact-col button:hover {
    background: #fc3f40;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .contact-us .row {
        flex-direction: column;
        align-items: center;
    }

    .contact-col {
        text-align: center;
    }

    .contact-col form {
        align-items: center;
    }
}

