/* ============================================================
   contact-touch  —  Get in Touch Section
   File: css/pages/contact.css
   ============================================================ */

/* ── Section wrapper ── */
.contact-touch {
    background-color: #f7f6f3;
    padding: 48px var(--section-x);
}

.contact-touch__inner {
    display: flex;
    align-items: flex-start;
    gap: 48px;
}

/* ════════════════════════════════════════
   LEFT COLUMN — Info Panel
════════════════════════════════════════ */
.contact-touch__info {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Header: title + desc */
.contact-touch__info-header {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-touch__title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.15;
    margin: 0;
}

.contact-touch__desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 24px;
    margin: 0;
}

/* Contact items list */
.contact-touch__items {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-touch__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    height: 63px;
}

/* Dark navy icon square */
.contact-touch__item-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: radial-gradient(ellipse at center,
        #0f1116 0%,
        #0d1829 50%,
        #0b1f3b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-touch__item-body {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-touch__item-label {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-body);
    line-height: 24px;
}

.contact-touch__item-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 24px;
}

/* Free Consultation card */
.contact-touch__free-card {
    background-color: var(--color-white);
    border: 1.5px solid var(--color-gold);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-touch__free-card-head {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-touch__free-card-title {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--color-body);
    line-height: 24px;
}

.contact-touch__free-card-desc {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 24px;
    margin: 0;
}

/* ════════════════════════════════════════
   RIGHT COLUMN — Form Card
════════════════════════════════════════ */
.contact-touch__form-card {
    flex-shrink: 0;
    width: 596px;
    background-color: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.contact-touch__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Form field rows ── */
.ctf-row {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
}

.ctf-field {
    flex: 1 0 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ctf-field--full {
    flex: 1 0 100%;
}

/* ── Labels ── */
.ctf-label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-body);
    line-height: 14px;
    display: block;
}

.ctf-required {
    color: #ff383c;
}

/* ── Base input / textarea / select ── */
.ctf-input {
    width: 100%;
    height: 36px;
    padding: 4px 12px;
    background-color: var(--color-white);
    border: 1px solid #e0e5ea;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-body);
    line-height: 20px;
    outline: none;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
}

/* Placeholder colour */
.ctf-input::placeholder {
    color: #999999;
}

/* Active / focused field (matches Figma "First Name" dark border state) */
.ctf-input--active,
.ctf-input:focus {
    border-color: var(--color-body);
}

/* Textarea taller */
.ctf-textarea {
    height: 80px;
    resize: none;
    padding-top: 8px;
    line-height: 20px;
}

/* Select wrapper (positions chevron icon) */
.ctf-select-wrap {
    position: relative;
    width: 100%;
}

.ctf-select-wrap .ctf-input {
    padding-right: 36px;
    cursor: pointer;
    color: #999999; /* placeholder look when nothing selected */
}

.ctf-select-wrap .ctf-input:valid:not(:placeholder-shown) {
    color: var(--color-body);
}

.ctf-select-arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Date wrapper (calendar icon + input side by side) */
.ctf-date-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    height: 36px;
    padding: 4px 12px;
    background-color: var(--color-white);
    border: 1px solid #e0e5ea;
    border-radius: 8px;
    box-sizing: border-box;
}

.ctf-date-wrap img {
    flex-shrink: 0;
}

.ctf-input--date {
    border: none;
    border-radius: 0;
    height: auto;
    padding: 0;
    flex: 1;
    color: #999999;
}

.ctf-input--date:focus {
    border: none;
    outline: none;
}

/* ── Divider ── */
.ctf-divider {
    width: 100%;
    border: none;
    border-top: 1px solid #e0e5ea;
    margin: 4px 0 0;
}

/* ── Disclaimer notice ── */
.ctf-notice {
    width: 100%;
    background-color: #f7f6f3;
    border: 1px solid var(--color-gold);
    border-radius: 8px;
    padding: 16px;
    box-sizing: border-box;
}

.ctf-notice p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    color: var(--color-gold);
    line-height: 20px;
    margin: 0;
}

.ctf-notice strong {
    font-weight: 700;
    color: var(--color-gold);
}

/* ── Submit button ── */
.ctf-submit {
    width: 100%;
    justify-content: center;
    padding: 10px 18px;
    font-size: 14px;
}

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */

/* Tablet — stack columns, form full-width */
@media (max-width: 1100px) {
    .contact-touch {
        padding: 48px 40px;
    }

    .contact-touch__inner {
        flex-direction: column;
        gap: 40px;
    }

    .contact-touch__info {
        width: 100%;
    }

    .contact-touch__form-card {
        width: 100%;
    }

    .contact-touch__title {
        font-size: 34px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .contact-touch {
        padding: 40px 24px;
    }

    .contact-touch__inner {
        gap: 32px;
    }

    .contact-touch__title {
        font-size: 28px;
    }

    .contact-touch__item {
        height: auto;
    }

    .contact-touch__item-icon {
        width: 40px;
        height: 40px;
    }

    .contact-touch__item-icon img {
        width: 20px;
        height: 20px;
    }

    .contact-touch__form-card {
        padding: 20px;
    }

    /* Stack paired rows on mobile */
    .ctf-row {
        flex-direction: column;
        gap: 12px;
    }

    .ctf-field {
        flex: unset;
        width: 100%;
    }
}