/* ═══════════════════════════════════════════════════════
   HERO HEADER
═══════════════════════════════════════════════════════ */
.contact-header-label {
    display: inline-block;
    color: var(--color-primary);
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-header-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 16px;
}

.contact-header-desc {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text-muted);
    max-width: 680px;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   SIDEBAR — INFO CARDS
═══════════════════════════════════════════════════════ */
.info-card {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    padding: 2px;
    margin-bottom: 5px;
    border-radius: 14px;
}

    .info-card:last-of-type {
        margin-bottom: 0;
    }

.info-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: rgba(244, 187, 68, 0.15);
    color: var(--color-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-label {
    font-family: "Inter", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin: 0 0 4px;
}

.info-value {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

/* ═══════════════════════════════════════════════════════
   WHATSAPP BUTTON
═══════════════════════════════════════════════════════ */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    padding: 10px 17px;
    margin: 3px 0;
    background: #25D366;
    color: #fff;
    border-radius: 14px;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

    .whatsapp-btn:hover {
        opacity: 0.92;
        transform: translateY(-1px);
        color: #fff;
    }

/* ═══════════════════════════════════════════════════════
   MAP
═══════════════════════════════════════════════════════ */
.map-wrap {
    border-radius: 14px;
    overflow: hidden;
/*    height: 200px;*/
    border: 1px solid var(--color-border);
    box-shadow: 0 10px 24px rgba(41, 32, 117, 0.08);
}

/* ═══════════════════════════════════════════════════════
   FORM CARD
═══════════════════════════════════════════════════════ */
.form-card {
    padding: 36px;
    border-radius: 16px;
}

@media (max-width: 575px) {
    .form-card {
        padding: 24px 16px;
    }
}

.form-card-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 28px;
}

/* ─── Field Label ────────────────────────────────── */
.field-label {
    display: block;
    font-family: "Inter", sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
}

/* ─── Field Control (input / select / textarea) ──── */
.field-control {
    display: block;
    width: 100%;
    background: rgba(255, 255, 255, 0.6);
    border: none;
    border-bottom: 2px solid var(--color-border);
    border-radius: 0;
    padding: 12px 4px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--color-text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

    .field-control::placeholder {
        color: var(--color-text-muted);
        opacity: 0.6;
    }

    .field-control:focus {
        border-bottom-color: var(--color-primary);
        box-shadow: 0 2px 0 0 rgba(41, 32, 117, 0.15);
    }

textarea.field-control {
    resize: vertical;
    border: 1px solid var(--color-border);
    border-radius: var(--input-radius);
    padding: 12px 14px;
}

    textarea.field-control:focus {
        border-color: var(--color-primary);
        box-shadow: var(--input-shadow-focus);
    }

select.field-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235e5a80' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    cursor: pointer;
}

/* ─── Submit Button ──────────────────────────────── */
.btn-submit {
    background: var(--color-primary);
    color: #fff;
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 36px;
    border-radius: var(--btn-radius);
    border: none;
    cursor: pointer;
    width: 100%;
    transition: background 0.2s ease, transform 0.15s ease;
    box-shadow: 0 4px 16px rgba(41, 32, 117, 0.25);
}

@media (min-width: 768px) {
    .btn-submit {
        width: auto;
    }
}

.btn-submit:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
}

.btn-submit:active {
    transform: scale(0.97);
}

/* ═══════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════ */
.faq-section {
    margin-top: 64px;
    padding-bottom: 64px;
}

.faq-section-title {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--color-text);
    margin: 0;
}

.faq-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: 9999px;
    margin: 12px auto 32px;
}

.faq-card {
    padding: 24px;
    border-radius: 14px;
    height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

    .faq-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 16px 36px rgba(41, 32, 117, 0.1);
    }

.faq-question {
    font-family: "Hanken Grotesk", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.faq-answer {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: var(--color-text-muted);
    margin: 0;
}
