/* =========================================================
   KONTAK.CSS — Batik Ratih Contact Page (Simple)
   ========================================================= */

.kt-simple-contact {
    padding: 140px 0 80px;
    background-color: #fdfaf6;
    min-height: calc(100vh - 100px);
}

.kt-simple-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}

.kt-breadcrumb {
    font-size: 11px;
    letter-spacing: 0.1em;
    font-weight: 600;
    text-transform: uppercase;
    color: #999;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.kt-breadcrumb a { color: #f38814; text-decoration: none; }
.kt-breadcrumb .current { color: #222; }

.kt-simple-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 48px);
    color: #111;
    margin-bottom: 16px;
    line-height: 1.1;
}

.kt-simple-desc {
    color: #555;
    font-size: 15px;
    line-height: 1.6;
}

.kt-simple-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.kt-simple-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.kt-map-wrap {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.kt-address-card {
    background: #fdfaf6;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.kt-addr-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.kt-addr-item svg {
    width: 20px;
    height: 20px;
    stroke: #f38814;
    flex-shrink: 0;
    margin-top: 2px;
}

.kt-addr-item strong {
    display: block;
    font-size: 14px;
    color: #111;
    margin-bottom: 4px;
}

.kt-addr-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* ── FORM STYLES ──────────────────────────────────────── */
.kt-simple-form-wrap {
    background: #fdfaf6;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.kt-form-eyebrow {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: #f38814;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 8px;
}

.kt-form-title-simple {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: #111;
    margin-bottom: 24px;
}

.kt-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.kt-field {
    position: relative;
}

.kt-field input,
.kt-field select,
.kt-field textarea {
    width: 100%;
    background: #f7f4f0;
    border: 1px solid transparent;
    padding: 24px 16px 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #111;
    border-radius: 6px;
    outline: none;
    transition: all 0.2s;
}

.kt-field textarea {
    min-height: 120px;
    resize: vertical;
}

.kt-field select {
    appearance: none;
    cursor: pointer;
}

.kt-field label {
    position: absolute;
    top: 16px;
    left: 16px;
    font-size: 14px;
    color: #777;
    pointer-events: none;
    transition: 0.2s ease all;
}

.kt-field .req { color: #e53935; }

/* Floating Label Logic */
.kt-field input:focus ~ label,
.kt-field input:not(:placeholder-shown) ~ label,
.kt-field select:focus ~ label,
.kt-field select.has-value ~ label,
.kt-field textarea:focus ~ label,
.kt-field textarea:not(:placeholder-shown) ~ label {
    top: 6px;
    font-size: 10px;
    font-weight: 600;
    color: #f38814;
}

.kt-field input:focus,
.kt-field select:focus,
.kt-field textarea:focus {
    border-color: #f38814;
    background: #fff;
    box-shadow: 0 4px 12px rgba(243, 136, 20, 0.1);
}

.kt-submit-wrap {
    margin-top: 10px;
}

.kt-submit-btn {
    background: #f38814;
    color: #fff;
    border: none;
    padding: 16px 24px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    transition: background 0.3s, transform 0.2s;
}

.kt-submit-btn svg { width: 18px; height: 18px; }

.kt-submit-btn:hover {
    background: #d6750b;
    transform: translateY(-2px);
}

.kt-submit-note {
    font-size: 12px;
    color: #888;
    margin-top: 12px;
    text-align: center;
}

.kt-success {
    display: none;
    margin-top: 16px;
    padding: 14px;
    background: #e8f5e9;
    color: #2e7d32;
    font-size: 13px;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
}

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
    .kt-simple-grid {
        grid-template-columns: 1fr;
    }
    .kt-simple-info {
        order: 2;
    }
    .kt-simple-form-wrap {
        order: 1;
    }
}

@media (max-width: 480px) {
    .kt-simple-contact { padding: 100px 0 60px; }
    .kt-simple-form-wrap { padding: 24px; }
    .kt-form-row { grid-template-columns: 1fr; }
    .kt-address-card { padding: 20px; }
}
