/* ===========================
   Contact Section — contact.css
   =========================== */

.contact-section {
    display: flex;
    align-items: stretch;
    background: #FAF7F4;
    min-height: 760px;
    font-family: 'Manrope', sans-serif;
}

/* ===========================
   LEFT — Portrait Image
   =========================== */
.contact-image-wrap {
    display: flex;
    flex: 0 0 50%;
    max-width: 50%;
    position: relative;
    align-items: center;
    overflow: hidden;
}

.contact-img {
    width: 100%;
    max-width: 614px;
    height: auto;
    margin-left: 60px;
    margin-top: 60px;
    border-radius: 10px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ===========================
   RIGHT — Form
   =========================== */
.contact-form-wrap {
    flex: 0 0 50%;
    max-width: 50%;
    background: #FAF7F4;
    padding: 80px 80px 80px 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-heading {
    font-size: 52px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 52px;
    letter-spacing: -1px;
    line-height: 1.1;
}

/* ---- Field ---- */
.contact-field {
    display: flex;
    flex-direction: column;
    margin-bottom: 42px;
}

.contact-label {
    font-size: 17px;
    font-weight: 400;
    color: #AAAAAA;
    margin-bottom: 14px;
    letter-spacing: 0;
}

.contact-input {
    background: transparent;
    border: none;
    border-bottom: 1.5px solid #CCCCCC;
    outline: none;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    color: #111111;
    padding: 0 0 10px 0;
    width: 100%;
    transition: border-color 0.2s ease;
}

    .contact-input:focus {
        border-bottom-color: #FF8000;
    }

/* ---- Send Button ---- */
.btn-send-message {
    margin-top: 10px;
    display: inline-block;
    background: #FF8000;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 20px 52px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    width: fit-content;
    transition: background 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 20px rgba(255,128,0,0.35);
}

    .btn-send-message:hover {
        background: #e07000;
        transform: translateY(-2px);
    }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
    .contact-section {
        flex-direction: column;
        min-height: auto;
    }

    .contact-image-wrap,
    .contact-form-wrap {
        flex: none;
        max-width: 100%;
        width: 100%;
    }

    .contact-image-wrap {
        height: auto;
        min-height: 280px;
    }

    .contact-img {
        margin-left: 20px;
        margin-top: 20px;
        max-width: 90%;
    }

    .contact-form-wrap {
        padding: 48px 28px 60px;
    }

    .contact-heading {
        font-size: 36px;
        margin-bottom: 36px;
    }

    .contact-field {
        margin-bottom: 32px;
    }

    .btn-send-message {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .contact-heading {
        font-size: 28px;
    }

    .contact-form-wrap {
        padding: 40px 20px 50px;
    }

    .contact-img {
        margin-left: 16px;
        margin-top: 16px;
    }
}
