/* ================================== */
/* STYLING KHUSUS HALAMAN KONTAK */
/* ================================== */

/* Form Hubungi Kami */
.kontak-section {
    max-width: 1200px;
    width: 90%;
    margin: 50px auto;
    padding: 30px;
    border: 1px solid #c79e3d;
    text-align: start;
    border-radius: 8px;
    font-family: 'Playfair Display', serif;
}

.kontak-section .small-title {
    color: #c79e3d;
    font-size: 40px;
    margin-top: 2px;
    margin-bottom: 1px;
}

.kontak-section h1 {
    font-size: 60px;
    color: #c79e3d;
    margin-top: 1px;
    margin-bottom: 20px;
}

.kontak-section p {
    color: black;
    margin-bottom: 30px;
    font-size: 18px;
}

.kontak-content-wrapper {
    display: flex;
    gap: 30px;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0;
    margin: 0;
}

.kontak-text {
    flex: 1;
    padding-right: 20px;
}

.kontak-form {
    flex: 1;
    max-width: 450px;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #c79e3d;
    border-radius: 6px;
    font-size: 17px;
    font-family: 'Playfair Display', serif;
}

textarea {
    height: 100px;
    font-family: 'Playfair Display', serif;
}

button[type="submit"] {
    width: 150px;
    align-self: flex-start;
    padding: 10px 20px;
    background: #c79e3d;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 15px;
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 15px;
}

button[type="submit"]:hover {
    background: #a88331;
}

/* Info Kontak */
.info-kontak {
    text-align: center;
    padding: 30px 5%;
    font-family: 'Playfair Display', serif;
}

.info-kontak .box a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
}

.info-kontak h2 {
    color: #c79e3d;
    font-size: 30px;
}

.info-kontak h4 {
    font-size: 20px;
}

.info-boxes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.box {
    background: #c79e3d;
    color: white;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
    cursor: pointer;
    box-sizing: border-box;
    transition: 0.3s;
}

.box h4 {
    margin: 10px 0 5px;
}

.box p {
    margin: 0;
    font-size: 14px;
}

.box:hover {
    transform: scale(1.05);
    transition: 0.3s;
}

/* Map */
.kontak-map-section {
    text-align: center;
    padding: 50px 5%;
    font-family: 'Playfair Display', serif;
}

.kontak-map-section h2 {
    color: #c79e3d;
    font-size: 30px;
}

/* ========================== */
/* MEDIA QUERIES KONTAK */
/* ========================== */

@media (max-width: 768px) {
    .kontak-section {
        width: 90%;
        margin: 30px auto;
        padding: 15px;
    }

    .kontak-section .small-title {
        font-size: 35px;
    }

    .kontak-section h1 {
        font-size: 50px;
        margin-bottom: 15px;
    }

    .kontak-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .kontak-text {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .kontak-form {
        max-width: 100%;
    }

    .info-boxes {
        gap: 15px;
    }

    .box {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .kontak-section .small-title {
        font-size: 30px;
    }

    .kontak-section h1 {
        font-size: 40px;
    }

    .kontak-section p {
        font-size: 15px;
    }

    .kontak-form {
        width: 100%;
    }

    .kontak-form form {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
    }

    .kontak-form .form-group {
        display: flex;
        flex-direction: column;
        width: 100%;
    }

    .kontak-form input,
    .kontak-form textarea {
        width: 100%;
        box-sizing: border-box;
        margin-bottom: 10px;
        padding: 10px;  
    }

    button[type="submit"] {
        width: 100%;
        margin: 10px auto;
    }

    .info-boxes {
        flex-direction: column;
        gap: 10px;
    }

    .box {
        width: 90%;
        margin: 0 auto;
    }

    .box h4 {
        font-size: 18px;
    }

    .box p {
        font-size: 13px;
    }
}