/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Background */
body {
    font-family: "Poppins", sans-serif;
    background: #ffffff;
}

/* HEADER */
.header-profil {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(90deg, #16814f, #198c60, #20c294);
    color: white;
}

.header-profil h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.header-profil p {
    font-size: 1.1rem;
}

/* KONTEN UTAMA */
.profil-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 20px;
}

/* SECTION */
.profil-section {
    margin-bottom: 50px;
    line-height: 1.8;
    text-align: justify;
}

.profil-section h2 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.profil-section h3 {
    margin-top: 15px;
    margin-bottom: 10px;
    color: #1976d2;
}

.italic {
    font-style: italic;
}

/* LIST */
.profil-section ul {
    margin-top: 10px;
    padding-left: 20px;
    line-height: 1.8;
}

/* MAP */
.map-wrapper {
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* BUTTON */
.btn-center {
    text-align: center;
    margin-top: 20px;
}

.btn-back {
    padding: 12px 25px;
    background: #1976d2;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
}

.btn-back:hover {
    background: #0d47a1;
}

/* =========================
   FOOTER NU CARE LAZISNU (GRADIENT)
========================= */
.footer {
    width: 100vw; /* ✅ pastikan penuh satu layar */
    margin: 0;
    padding: 60px 80px 30px 80px;
    background: linear-gradient(90deg, #16814f, #198c60, #20c294);
    color: #ffffff;
    font-family: 'Segoe UI', sans-serif;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    right: 50%;
    transform: translateX(-50%); /* ✅ biar posisi benar-benar simetris */
}


.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 10px;
}

.footer-section h2, .footer-section h3 {
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.footer-section p, .footer-section a, .footer-section li {
    color: #f5fff7;
    font-size: 0.95rem;
    text-decoration: none;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a:hover {
    text-decoration: underline;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.2);
    color: #d7fff1;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 20px;
    text-align: justify;
}

.footer-bottom h4 {
    margin-bottom: 10px;
    font-weight: bold;
    color: #ffffff;
}

.footer-bottom p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #f9fffb;
}