/* =========================================================
   Contact Section
   ========================================================= */

.contact-section {
    min-height: 120vh;
    display: flex;
    align-items: center;
    padding-left: 8%;

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* =========================================================
   Contact Box
   ========================================================= */

.contact-box {
    background: rgba(242, 230, 216, 0.95);
    padding: 40px;
    border-radius: 12px;
    border: 2px solid var(--brown);
    max-width: 420px;
}

/* =========================================================
   Contact Form Styling
   ========================================================= */

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-box label {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.7;
}

.contact-box input,
.contact-box textarea {
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #b9a999;
    border-radius: 4px;
    background: #fff;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-box input:focus,
.contact-box textarea:focus {
    outline: none;
    border-color: #4A3A2E;
    box-shadow: 0 0 0 2px rgba(74, 58, 46, 0.15);
}

.contact-box button {
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    background: #4A3A2E;
    color: #fff;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.contact-box button:hover {
    background: #3a2d23;
}

.contact-box button:active {
    transform: translateY(1px);
}
/* Force clean vertical alignment */
.contact-box label {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-box input,
.contact-box textarea {
    width: 100%;
    box-sizing: border-box;
}

@media (max-width: 768px) {

    .contact-section {
        justify-content: center;
        padding-left: 0;
        padding-right: 0;
    }

    .contact-box {
        width: 90%;
        max-width: 420px;
    }
}