/* ═══════════════════════════════════════
   CONTACT PAGE — contact.css
   All classes prefixed "contact-" 
   ═══════════════════════════════════════ */

/* ── Section Wrapper ── */
.contact-section {
    background-color: #F5F0EA;
    padding: 100px 0 120px;
}

/* ── Section Header ── */
.contact-eyebrow {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--biscuit);
    margin-bottom: 12px;
}

.contact-title {
    font-family: 'Lato', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--coffee);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.contact-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #5a4a40;
    margin-bottom: 60px;
    max-width: 520px;
    line-height: 1.7;
}

/* ── Two-column layout ── */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 64px;
    align-items: start;
}

/* ────────────────────────────
   LEFT — Info Panel
   ──────────────────────────── */
.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background-color: var(--biscuit);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 16px;
}

.contact-info-text h4 {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--biscuit);
    margin: 0 0 6px;
}

.contact-info-text p,
.contact-info-text a {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: var(--coffee);
    margin: 0;
    line-height: 1.65;
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--biscuit);
}

/* Divider */
.contact-info-divider {
    width: 100%;
    height: 1px;
    background-color: #d8c2aa;
}

/* Opening Hours box */
.contact-hours-box {
    background-color: var(--coffee);
    border-radius: 12px;
    padding: 32px 36px;
    color: #EBE1D3;
}

.contact-hours-box h4 {
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--biscuit);
    margin: 0 0 20px;
}

.contact-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(235, 225, 211, 0.1);
}

.contact-hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-hours-row span {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: #EBE1D3;
}

.contact-hours-row .contact-hours-time {
    font-weight: 400;
    color: #c5a06e;
}

/* ────────────────────────────
   RIGHT — Contact Form
   ──────────────────────────── */
.contact-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 48px 44px;
    box-shadow: 0 12px 48px rgba(30, 20, 15, 0.08);
}

.contact-form-heading {
    font-family: 'Lato', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--coffee);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.contact-form-note {
    font-family: 'Poppins', sans-serif;
    font-size: 13.5px;
    font-weight: 300;
    color: #7a6a60;
    margin-bottom: 36px;
}

/* Form controls */
.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.contact-form-group label {
    font-family: 'Poppins', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--coffee);
    margin-bottom: 8px;
}

.contact-form-group input,
.contact-form-group select,
.contact-form-group textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: var(--coffee);
    background-color: #faf8f5;
    border: 1px solid #e0d0bc;
    border-radius: 8px;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
}

.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: #b0a090;
}

.contact-form-group input:focus,
.contact-form-group select:focus,
.contact-form-group textarea:focus {
    border-color: var(--biscuit);
    box-shadow: 0 0 0 3px rgba(167, 130, 75, 0.12);
    background-color: #fff;
}

.contact-form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Select arrow */
.contact-select-wrap {
    position: relative;
}

.contact-select-wrap::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--biscuit);
    pointer-events: none;
    font-size: 13px;
}

/* Submit button */
.contact-submit-btn {
    width: 100%;
    padding: 15px 32px;
    background-color: var(--coffee);
    color: #ffffff;
    font-family: 'Lato', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.28s ease, transform 0.2s ease;
    margin-top: 8px;
}

.contact-submit-btn:hover {
    background-color: var(--biscuit);
    transform: translateY(-2px);
}

/* ── Map Strip ── */
.contact-map-strip {
    margin-top: 80px;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    box-shadow: 0 10px 40px rgba(30, 20, 15, 0.1);
}

.contact-map-strip iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-card {
        padding: 36px 28px;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 80px 0 100px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-map-strip {
        height: 280px;
        margin-top: 50px;
    }
}

@media (max-width: 575.98px) {
    .contact-form-card {
        padding: 28px 20px;
    }

    .contact-hours-box {
        padding: 24px 22px;
    }
}
