/* ==============================
   CONTACT SECTION (redesign)
   ============================== */
.contact-section {
    --ink: #17181a;
    --muted: #5b5f66;
    --border: #e4e4e2;
    --accent-from: #f4436c;
    --accent-to: #ef2f6e;
    --green: #d8f26a;
    --peach: #ffd9ad;
    --lavender: #d9cdfb;
    background: #fbfbfa;
    color: var(--ink);
    font-family: 'Inter', system-ui, sans-serif;
    padding: 80px 0 40px;
    text-align: left;
}

.contact-section .contact-wrap {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-section .headline {
    font-family: 'Anton', sans-serif;
    font-size: 56px;
    line-height: 1;
    letter-spacing: 0.5px;
    margin: 0 0 24px;
    color: var(--ink);
    text-transform: none;
}

.contact-section .intro {
    font-size: 17px;
    line-height: 1.6;
    color: var(--muted);
    max-width: 480px;
    margin: 0 0 48px;
}

.contact-section .info-row {
    display: flex;
    gap: 22px;
    margin-bottom: 40px;
}

.contact-section .icon-tile {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-section .icon-tile svg { width: 30px; height: 30px; }
.contact-section .icon-tile.green { background: var(--green); }
.contact-section .icon-tile.peach { background: var(--peach); }
.contact-section .icon-tile.lavender { background: var(--lavender); }

.contact-section .info-title {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    letter-spacing: 0.3px;
    margin: 6px 0 10px;
    color: var(--ink);
}

.contact-section .info-text {
    font-size: 16px;
    color: var(--ink);
    line-height: 1.5;
    margin: 0;
}

.contact-section .map-btn {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1.5px solid var(--ink);
    border-radius: 8px;
    background: transparent;
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    letter-spacing: 0.3px;
    color: var(--ink);
    cursor: pointer;
}

.contact-section .map-btn svg { width: 16px; height: 16px; }

.contact-section .email-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.contact-section .email-links a {
    color: var(--ink);
    font-size: 16px;
    text-decoration: underline;
}

/* Form card */
.contact-section .form-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
}

.contact-section .field { margin-bottom: 28px; }

.contact-section .field label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--ink);
}

.contact-section .required { color: var(--accent-from); }

.contact-section .field input,
.contact-section .field textarea,
.contact-section .field select {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--ink);
    background: #fff;
    outline: none;
}

.contact-section .field input:focus,
.contact-section .field textarea:focus,
.contact-section .field select:focus {
    border-color: var(--ink);
}

.contact-section .field textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-section .select-wrap { position: relative; }

.contact-section .select-wrap select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 44px;
    cursor: pointer;
}

.contact-section .select-wrap .chevron {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 16px;
    height: 16px;
}

.contact-section .submit-btn {
    width: 100%;
    border: none;
    border-radius: 10px;
    padding: 18px;
    background: linear-gradient(90deg, var(--accent-from), var(--accent-to));
    color: #fff;
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.contact-section .submit-btn:hover { filter: brightness(1.05); }

.contact-section .disclaimer {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 16px;
}

.contact-section .disclaimer a {
    color: var(--muted);
    text-decoration: underline;
}

.contact-section .success-box,
.contact-section .error-box {
    margin-top: 20px;
}

@media (max-width: 900px) {
    .contact-section {
        padding: 40px 0 24px;
    }

    .contact-section .contact-wrap {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 16px;
    }

    .contact-section .headline {
        font-size: 34px;
        margin-bottom: 16px;
    }

    .contact-section .intro {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .contact-section .info-row {
        gap: 16px;
        margin-bottom: 24px;
    }

    .contact-section .icon-tile {
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        border-radius: 12px;
    }

    .contact-section .icon-tile svg { width: 24px; height: 24px; }

    .contact-section .info-title {
        font-size: 17px;
        margin: 2px 0 6px;
    }

    .contact-section .info-text { font-size: 14px; }

    .contact-section .map-btn {
        margin-top: 10px;
        padding: 10px 16px;
    }

    .contact-section .email-links {
        gap: 4px;
        margin-top: 8px;
    }

    .contact-section .form-card {
        padding: 24px 16px;
        border-radius: 16px;
    }

    .contact-section .field { margin-bottom: 16px; }

    .contact-section .field label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .contact-section .field input,
    .contact-section .field textarea,
    .contact-section .field select {
        padding: 12px 14px;
        border-radius: 8px;
    }

    .contact-section .select-wrap select {
        padding-right: 40px;
    }

    .contact-section .select-wrap .chevron { right: 12px; }

    .contact-section .field textarea { min-height: 110px; }

    .contact-section .submit-btn { padding: 16px; }

    .contact-section .disclaimer {
        margin-top: 12px;
        font-size: 12px;
    }

    .contact-section .success-box,
    .contact-section .error-box {
        margin-top: 12px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 28px 0 16px;
    }

    .contact-section .contact-wrap {
        gap: 24px;
        padding: 0 12px;
    }

    .contact-section .headline { font-size: 28px; }

    .contact-section .intro { margin-bottom: 20px; }

    .contact-section .info-row { margin-bottom: 20px; }

    .contact-section .form-card { padding: 20px 12px; }
}
