/* --- Contact Page Styles --- */
.contact-hero {
    width: 100%;
    background: #f5efe7;
    position: relative;
    height: 330px; /* match index hero min-height */
    display: flex;
    align-items: center;  /* center vertically */
    justify-content: center; /* center horizontally */
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.contact-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
    background: url('images/js-hero-banner-4.png') center center/cover no-repeat, #f5efe7;
    z-index: 1;
    /* Optional: Add overlay for readability */
    /* background-blend-mode: darken; */
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-title {
    position: relative;
    z-index: 2;
    color: #fff;
    font-family: 'Noto Serif TC', serif;
    font-size: 2.8em; /* match index h1 */
    font-weight: bold;
    text-shadow: 0 2px 16px rgba(80,60,10,0.15);
    letter-spacing: 2px;
    text-align: center;
    margin: 0;
    padding: 0;
    /* Vertically center in .equipment-hero */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.contact-main {
    background: #fcf6ee;
    padding: 3em 0 2em 0;
}

.contact-flex {
    display: flex;
    gap: 2.5em;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info {
    flex: 1 1 220px;
    max-width: 270px;
}

.contact-info-block {
    margin-bottom: 2em;
}

.contact-info-title {
    color: #a38128;
    font-size: 1.1em;
    font-family: 'Noto Serif TC', serif;
    font-weight: bold;
    display: flex;
    align-items: center;
    margin-bottom: 0.5em;
    gap: 0.5em;
}

.contact-icon {
    font-size: 1.2em;
    vertical-align: middle;
}

.contact-info-text {
    color: #544a2a;
    font-size: 1em;
    line-height: 1.8;
}

.contact-form-block {
    flex: 2 1 380px;
    max-width: 480px;
    margin: 0 auto;
    background: #f6e7d1;
    border-radius: 1em;
    padding: 2.5em 2em 2em 2em;
    box-shadow: 0 4px 24px rgba(163, 129, 40, 0.07);
}

.contact-form-title {
    font-family: 'Noto Serif TC', serif;
    color: #a38128;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 1.2em;
    text-align: left;
}

.contact-form .form-group {
    margin-bottom: 1.2em;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: none;
    border-bottom: 2px solid #cbb878;
    background: transparent;
    font-size: 1em;
    padding: 0.7em 0.2em;
    color: #544a2a;
    outline: none;
    font-family: inherit;
    transition: border 0.2s;
    resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom: 2px solid #a38128;
}

.contact-submit-btn {
    width: 120px;
    margin-top: 0.5em;
    background: #a38128;
    color: #fff;
    border: none;
    padding: 0.7em 0;
    border-radius: 2em;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.contact-submit-btn:hover {
    background: #d8bc6e;
    color: #fff;
}

.contact-map-section {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    background: #fcf6ee;
    margin-top: 2em;
    margin-bottom: 0;
}

@media (max-width: 900px) {
    .contact-flex {
        flex-direction: column;
        gap: 2em;
    }
    .contact-info, .contact-form-block {
        max-width: 100%;
        width: 100%;
    }
}

.contact-map-iframe {
    width: 100%;
    min-height: 420px;
    height: 40vw;
    max-height: 540px;
    display: block;
    border: 0;
}