.contact-block {
    background: radial-gradient(rgba(255,255,255,0.05), rgba(0,0,0,0.4));
    border-radius: 8px;
    padding: 20px;
}

.contact-section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.contact-form label {
    margin-top: 15px;
    display: block;
}

/* Allow columns to wrap instead of overflow */
.two-column {
    flex-wrap: wrap;
}

/* Keep columns inside container */
.left,
.contact-form {
    min-width: 300px;
    flex: 1;
    box-sizing: border-box;
}

/* Prevent input overflow */
/* Input fields */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.15); /* lighter background */
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 6px;
    color: #e0d9d9; /* readable text */
    font-size: 16px;
    margin-bottom: 15px;
    box-sizing: border-box;
}

/* Larger input heights */
.contact-form input {
    height: 48px;
}

.contact-form textarea {
    min-height: 140px;
}

/* Focus behaviour */
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #b30000;
    background: rgba(255,255,255,0.20); /* slight highlight */
    color: #e0d9d9; /* readable text */
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #b30000;
    background: rgba(255,255,255,0.12);
}

/* Button */
.contact-form button {
    background: #b30000;
    color: #fff;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-form button:hover {
    opacity: 0.85;
    transform: scale(1.03);
}

/*Mobile Responsiveness*/
@media (max-width: 700px) {
    .contact-section {
        padding: 0 15px;
    }

    .contact-form button {
        width: 100%;
    }
}
