/* ═══ CONTACT SPLIT LAYOUT: Form + WhatsApp ═══ */
.contact-split {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    max-width: 780px;
}

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

.contact-mini-row {
    display: flex;
    gap: 12px;
}

.contact-mini-row input {
    flex: 1;
}

.contact-mini input,
.contact-mini textarea {
    background: #111;
    border: 1px solid #222;
    border-radius: 8px;
    padding: 13px 16px;
    font-size: 14px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    resize: none;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
    box-sizing: border-box;
}

.contact-mini input:focus,
.contact-mini textarea:focus {
    border-color: #444;
}

.contact-mini input::placeholder,
.contact-mini textarea::placeholder {
    color: #444;
}

.contact-mini-submit {
    background: #fff;
    color: #0A0A0A;
    border: none;
    border-radius: 8px;
    padding: 13px 28px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s;
    width: 100%;
}

.contact-mini-submit:hover {
    opacity: 0.85;
}

.contact-or {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 4px;
    color: #333;
    font-size: 12px;
    font-weight: 500;
    flex-shrink: 0;
    align-self: center;
}

.contact-or-line {
    width: 1px;
    height: 32px;
    background: #222;
}

.contact-wa {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-shrink: 0;
    align-self: center;
}

.contact-wa-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    transition: all 0.2s;
    white-space: nowrap;
}

.contact-wa-btn:hover {
    background: #1ebe5a;
    transform: translateY(-1px);
}

.contact-wa-btn svg {
    flex-shrink: 0;
}

.contact-wa-sub {
    font-size: 12px;
    color: #555;
    text-align: center;
}

/* ═══ CONSULTING CTA ═══ */
.contact-consulting {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin: 0 0 40px;
    padding: 24px 28px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    text-decoration: none;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 780px;
}

.contact-consulting:hover {
    border-color: rgba(255,255,255,.15);
    background: rgba(255,255,255,.04);
}

.contact-consulting-text {
    font-size: 14px;
    color: rgba(255,255,255,0.45);
    line-height: 1.55;
}

.contact-consulting-text strong {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    display: block;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
}

.contact-consulting-arrow {
    font-size: 22px;
    color: rgba(255,255,255,0.25);
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(0.4, 0, 0.2, 1), color .3s ease;
}

.contact-consulting:hover .contact-consulting-arrow {
    color: rgba(255,255,255,0.6);
    transform: translateX(4px);
}

/* ═══ TABLET (768px) ═══ */
@media (max-width: 768px) {
    .contact-split {
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }

    .contact-mini {
        width: 100%;
    }

    .contact-or {
        flex-direction: row;
        gap: 12px;
        width: 100%;
        justify-content: center;
    }

    .contact-or-line {
        width: 40px;
        height: 1px;
    }

    .contact-mini-row {
        flex-direction: row;
        gap: 10px;
    }

    .contact-wa {
        width: 100%;
    }

    .contact-wa-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
        font-size: 16px;
        border-radius: 12px;
    }

    .contact-consulting {
        max-width: 100%;
        padding: 20px;
        margin-bottom: 28px;
    }

    .contact-consulting-text {
        font-size: 13px;
    }

    .contact-consulting-text strong {
        font-size: 16px;
    }
}

/* ═══ MOBILE (480px) ═══ */
@media (max-width: 480px) {
    .contact-split {
        gap: 16px;
    }

    .contact-mini-row {
        flex-direction: column;
        gap: 10px;
    }

    .contact-mini input,
    .contact-mini textarea {
        padding: 12px 14px;
        font-size: 14px;
    }

    .contact-mini-submit {
        padding: 14px 20px;
        font-size: 14px;
    }

    .contact-wa-btn {
        padding: 16px 20px;
        font-size: 15px;
    }

    .contact-wa-sub {
        font-size: 11px;
    }
}