/* =========================
   HALAMAN KONTAK
   ========================= */

/* ALERT */

.alert-sukses {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 14px;
}

.kontak-page {
    width: 85%;
    max-width: 1100px;
    margin: 60px auto;
}

.kontak-page > h1 {
    text-align: center;
    font-size: 38px;
    color: #22223b;
    margin-bottom: 40px;
}

.kontak-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* BAGIAN INFORMASI */

.kontak-info {
    background: linear-gradient(135deg, #17152b, #30205c);
    color: white;
    padding: 35px;
    border-radius: 20px;
    min-height: 0;
    height: fit-content;
    box-sizing: border-box;
}

.kontak-label {
    display: block;
    color: #a78bfa;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.kontak-info h2 {
    color: white;
    font-size: 30px;
    margin-bottom: 15px;
}

.kontak-desc {
    color: #ddd8ee;
    line-height: 1.7;
    margin-bottom: 30px;
}

.kontak-detail {
    margin-top: 25px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.detail-item span {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.12);
    border-radius: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 18px;
}

.detail-item p {
    color: white;
    margin: 0;
}


/* FORM */

.kontak-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-sizing: border-box;

    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.kontak-form h2 {
    color: #22223b;
    font-size: 28px;
    margin-bottom: 8px;
}

.kontak-form > p {
    color: #777;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #22223b;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    display: block;

    width: 100%;
    box-sizing: border-box;

    padding: 14px 16px;

    border: 1px solid #ddd;
    border-radius: 10px;

    background: #f8f8fc;

    font-family: Arial, sans-serif;
    font-size: 14px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;

    background: white;

    box-shadow: 0 0 0 3px rgba(124,58,237,0.10);
}

.form-group textarea {
    resize: vertical;
}

.kontak-form button {
    display: block;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #2563eb);
    color: white;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.3px;
}

.kontak-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(124,58,237,0.35);
}


/* =========================
   HP
   ========================= */

@media (max-width: 768px) {

    .kontak-page {
        width: 90%;
        margin: 40px auto;
    }

    .kontak-page > h1 {
        font-size: 30px;
    }

    .kontak-wrapper {
        grid-template-columns: 1fr;
    }

    .kontak-info,
    .kontak-form {
        padding: 25px;
    }

}