/* === Kontak Section === */
.kontak-section {
    background-color: #ffffff;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Judul Section */
.kontak-section .section-title {
    font-size: 2.8rem; /* atau 3rem kalau ingin lebih mencolok */
    font-weight: 800; /* dari 700 ke 800 */
    color: #003366; /* biru tua */
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

/* garis dekoratif di bawah judul */
.kontak-section .section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background-color: #003366; /* biru tua */
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Subjudul */
.kontak-section .kontak-subtitle {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Info Kontak */
.kontak-section .kontak-info {
    margin-bottom: 40px;
}

.kontak-section .kontak-info p {
    margin: 12px 0;
    font-size: 1.15rem;
}

.kontak-section .kontak-info strong {
    color: #003366; /* biru tua */
}

/* Link */
.kontak-section .kontak-info a {
    color: #003366; /* biru tua */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.kontak-section .kontak-info a:hover {
    color: #003366; /* tetap biru tua */
    text-shadow: 0 0 6px rgba(0, 51, 102, 0.7); /* biru tua glow */
}

/* Maps */
.kontak-section .kontak-maps {
    margin: 30px auto 0;
    max-width: 800px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontak-section .kontak-maps iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

.kontak-section .kontak-maps:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.6);
}

/* Divider Wave */
.wave-dividerkontak {
    width: 100%;
    height: 150px;
    overflow: hidden;
    line-height: 0;
    background: #d0e0e3;
    margin-top: -1px;
    margin-bottom: -1px;
}

.wave-dividerkontak svg {
    display: block;
    width: 100%;
    height: 100%;
}

.wave-dividerkontak .shape-fillkontak {
    fill: #ffffff;
}
