/* ============================
   NJARIN — CONTACT COMPACT
   ============================ */

.contact-section {
    padding: 60px 20px;
    background: #F4ECE2;
    display: flex;
    justify-content: center;
}

.minimal-contact-card {
    display: flex;
    background: #FFFFFF;
    border-radius: 24px;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 20px 60px rgba(62, 39, 35, 0.05);
    border: 1px solid var(--color-line);
    overflow: hidden;
}

.contact-header {
    flex: 1;
    background: var(--color-primary);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 10l10 10M10 20l10-10M30 10l10 10M30 20l10-10M50 10l10 10M50 20l10-10M70 10l10 10M70 20l10-10M90 10l10 10M90 20l10-10' stroke='%23FFFFFF' stroke-width='0.5' fill='none' opacity='0.08'/%3E%3C/svg%3E");
    padding: 40px 30px;
    color: #F4ECE2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 40px;
}

.contact-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.contact-brand img {
    height: 24px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
}

.contact-header h2 {
    font-size: 1.6rem;
    color: #F4ECE2;
    margin-bottom: 10px;
    line-height: 1.2;
}

.contact-header p {
    color: rgba(244, 236, 226, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

.minimal-form {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.input-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.input-field label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.7;
}

.input-field input,
.input-field select,
.input-field textarea {
    border: 1px solid #EEE;
    background: #FAFAFA;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--color-text);
    outline: none;
    transition: all 0.3s;
}

.input-field input:focus,
.input-field select:focus,
.input-field textarea:focus {
    background: #FFF;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.05);
}


.input-field label {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--color-primary);
    opacity: 0.7;
}

.btn-minimal {
    background: var(--color-primary);
    color: #F4ECE2;
    padding: 14px;
    border: none;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 5px;
}


@media (max-width: 900px) {
    .minimal-contact-card {
        flex-direction: column;
    }
    .contact-header {
        padding: 40px 30px;
        text-align: center;
    }
    .minimal-form {
        padding: 40px 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}



