/* ========================== KONTAK DESA ========================== */

.kontak-desa {
    padding: 100px 20px;
    background: #f9f9f9;
    line-height: 1.7;
}

.kontak-desa .container {
    max-width: 1200px;
    margin: auto;
}

.kontak-desa h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}

.kontak-deskripsi {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 1rem;
    color: #555;
}


/* ========================== KARTU KONTAK ========================== */

.kontak-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.kontak-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.kontak-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.kontak-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
}

.kontak-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}


/* ========================== LINK WHATSAPP ========================== */

.wa-link {
    display: inline-block;
    color: #0abe46;
    text-decoration: none;
    margin-bottom: 6px;
}

.wa-link:hover {
    text-decoration: underline;
}


/* ========================== ALAMAT & MAPS ========================== */

.kontak-alamat {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.kontak-alamat h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.kontak-alamat p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

.maps-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}

.maps-wrapper iframe {
    width: 100%;
    height: 350px;
    border: 0;
}


/* ========================== RESPONSIVE ========================== */

@media (max-width: 768px) {
    .kontak-desa {
        padding: 90px 25px;
    }

    .kontak-desa h2 {
        font-size: 1.7rem;
    }

    .kontak-item,
    .kontak-alamat {
        padding: 28px;
    }

    .maps-wrapper iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .kontak-desa {
        padding: 80px 20px;
    }

    .kontak-desa h2 {
        font-size: 1.5rem;
    }

    .kontak-item,
    .kontak-alamat {
        padding: 24px;
    }

    .maps-wrapper iframe {
        height: 250px;
    }
}
