.kontak-page {
    padding: 60px 20px 100px;
    background: #ffffff;

    display: flex;
    justify-content: center;
}

.kontak-container {
    width: 100%;
    max-width: 900px;
}

/* TITLE */
.kontak-container h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.subtitle {
    color: #777;
    margin-bottom: 20px;
}

/* WA BUTTON */
.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: #25D366;
    color: #fff;

    padding: 12px 20px;
    border-radius: 30px;

    text-decoration: none;
    font-weight: 600;

    margin-bottom: 25px;
    transition: 0.3s;
}

.btn-wa img {
    width: 20px;
}

.btn-wa:hover {
    transform: scale(1.05);
}

/* EMAIL NOTE */
.email-note {
    color: #999;
    margin-bottom: 20px;
}

/* FORM */
.kontak-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kontak-form label {
    font-size: 14px;
    font-weight: 600;
}

/* INPUT */
.kontak-form input,
.kontak-form textarea {
    width: 100%;
    padding: 14px;

    border-radius: 8px;
    border: none;

    background: #f2f2f2;

    font-size: 14px;
}

/* TEXTAREA */
.kontak-form textarea {
    height: 120px;
    resize: none;
}

/* BUTTON */
.btn-submit {
    width: 120px;

    padding: 10px;
    border: none;
    border-radius: 6px;

    background: #e91e63;
    color: #fff;

    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #d81b60;
}
