/* --- Reset & Basic Setup --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #F8F9FA; /* Sedikit lebih cerah dari sebelumnya */
    color: #343A40;
    line-height: 1.7;
    animation: fadeInPage 1s ease-in-out;
}

/* --- Animasi --- */
@keyframes fadeInPage {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- Header & Navigation --- */
.main-header {
    /* background-color: #FFFFFF; <-- Hapus atau ganti baris ini */
    background: linear-gradient(110deg, #386641 0%, #4a7d54 50%, #6a994e 100%); /* <-- Gradient BARU */
    padding: 1rem 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1); /* Shadow sedikit dipertegas */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}
.logo img:hover {
    transform: scale(1.05);
}

.logo-text h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700; /* Dibuat sedikit tebal untuk menonjol */
    color: #FFFFFF; /* Putih bersih untuk kontras maksimal */
}

.logo-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 400; /* Bobot normal untuk subjudul */
    color: #E9E3D8; /* Warna krem/putih pudar, agar ada hierarki */
    opacity: 0.9;   /* Sedikit transparan agar lebih lembut */
}

/* Atur container utamanya menjadi flexbox */
.logo-container {
    display: flex; /* Ini adalah kunci utamanya, membuat elemen di dalamnya berjajar ke samping */
    align-items: center; /* Membuat gambar dan tulisan sejajar secara vertikal di tengah */
    gap: 15px; /* Memberi jarak 15px antara gambar dan tulisan */
}

/* Sedikit styling tambahan untuk gambar (opsional) */
.logo-image img {
    display: block; /* Menghilangkan spasi ekstra di bawah gambar */
    max-width: 80px; /* Contoh batas lebar gambar agar tidak terlalu besar */
    height: auto;
}

/* Styling untuk teks di sebelah kanan logo */
.logo-text h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700; /* Dibuat sedikit tebal untuk menonjol */
    color: #FFFFFF; /* Putih bersih untuk kontras maksimal */
}

.logo-text p {
    margin: 0;
    font-size: 14px;
    font-weight: 400; /* Bobot normal untuk subjudul */
    color: #E9E3D8; /* Warna krem/putih pudar, agar ada hierarki */
    opacity: 0.9;   /* Sedikit transparan agar lebih lembut */
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    text-decoration: none;
    /* color: #343A40; <-- Ganti warna teks ini */
    color: #FFFFFF; /* <-- Menjadi putih agar terbaca */
    font-weight: 600;
    font-size: 1rem;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.9; /* Sedikit transparan untuk efek kedalaman */
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    /* background-color: #386641; <-- Ganti warna garis ini */
    background-color: #F4F1EA; /* <-- Menjadi warna krem/putih */
    transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.main-nav a:hover, .main-nav a.active {
    /* color: #386641; <-- Ganti warna hover ini */
    color: #FFFFFF; /* <-- Warna tetap putih */
    opacity: 1; /* Opacity penuh saat aktif/hover */
}

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}


/* --- Area Banner --- */
.banner-slider {
    width: 100%;
    height: 70vh; /* Tinggi slider sekitar 70% dari tinggi layar */
    position: relative;
    background-color: #f0f0f0; /* Warna latar jika gambar gagal dimuat */
}

.banner-slider .swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    overflow: hidden; /* Penting agar overlay tidak bocor */
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Membuat gambar menutupi area tanpa distorsi */
    filter: brightness(0.6); /* Membuat gambar sedikit lebih gelap agar teks terbaca */
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    max-width: 800px;
    padding: 20px;
    text-align: center;
    animation: fadeInUp 1s ease-out forwards;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
}

.slide-content p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}

.button-slide {
    background-color: #BC6C25;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.button-slide:hover {
    background-color: #386641;
    transform: translateY(-3px);
}

/* Kustomisasi warna navigasi Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: #FFFFFF; /* Warna panah */
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    opacity: 1;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    width: 10px;
    height: 10px;
}

.swiper-pagination-bullet-active {
    background: #BC6C25; /* Warna titik aktif */
}

/* --- Main Content & Navigation Grid --- */
main {
    padding: 3rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.navigation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.nav-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    padding: 2.5rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E9ECEF;
    animation: fadeInUp 1.2s ease-out forwards;
    opacity: 0;
}
.navigation-grid a:nth-child(2) { animation-delay: 0.1s; }
.navigation-grid a:nth-child(3) { animation-delay: 0.2s; }
.navigation-grid a:nth-child(4) { animation-delay: 0.3s; }
.navigation-grid a:nth-child(5) { animation-delay: 0.4s; }


.nav-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(56, 102, 65, 0.15);
}

.nav-card i {
    font-size: 3.5rem;
    background: -webkit-linear-gradient(45deg, #386641, #BC6C25);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.nav-card:hover i {
    transform: scale(1.1);
}

.nav-card h2 {
    font-size: 1.5rem;
    color: #386641;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.nav-card p {
    font-size: 0.95rem;
    color: #6C757D;
}

/* --- Halaman Konten (Contoh: profil.html) --- */
.content-page-container {
    animation: fadeInUp 1s ease-out;
}
.page-title {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 4px solid #386641;
}
.page-title h1 {
    font-size: 2.8rem;
    color: #386641;
}
.content-page {
    padding: 2rem;
    background-color: #FFFFFF;
    max-width: 900px;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
}
.content-section {
    margin-bottom: 2.5rem;
}
.content-section h2 {
    font-size: 1.8rem;
    color: #386641;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
blockquote {
    border-left: 5px solid #BC6C25;
    margin: 1.5rem 0;
    padding: 1rem 1.5rem;
    background-color: #F8F9FA;
    font-style: italic;
    color: #6C757D;
}
.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}
.two-column-grid h3 {
    color: #BC6C25;
    margin-bottom: 0.5rem;
}
.two-column-grid ul, .government-list {
    list-style: none;
    padding-left: 0;
}
.two-column-grid ul li, .government-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.government-list li {
    background-color: #F8F9FA;
    padding: 0.75rem;
    border-radius: 5px;
}
.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    background-color: #386641;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.back-link:hover {
    background-color: #BC6C25;
    transform: translateY(-3px);
}

/* === CSS UNTUK SUBJUDUL BARU === */

/* --- Seksi Pengenalan (Intro Section) --- */
.intro-section {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 4rem auto; /* Memberi jarak ke bawah */
    animation: fadeInUp 1s ease-out;
}

.intro-section h2 {
    font-size: 2.2rem;
    color: #386641;
    margin-bottom: 0.5rem;
}

.intro-section .subtitle {
    font-size: 1.1rem;
    color: #6C757D;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.intro-section p {
    color: #495057;
    font-size: 1rem;
}

/* --- Seksi Agenda & Pengumuman --- */
.agenda-section {
    max-width: 1000px;
    margin: 0 auto 4rem auto;
    text-align: center;
    animation: fadeInUp 1.2s ease-out;
}

.agenda-section h2 {
    font-size: 2.2rem;
    color: #386641;
    margin-bottom: 2rem;
}

.agenda-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; /* Agar responsif di layar kecil */
}

.agenda-card {
    display: flex;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    overflow: hidden; /* Agar border-radius bekerja */
    text-align: left;
    max-width: 450px; /* Batas lebar kartu */
    flex-grow: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.agenda-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.agenda-date {
    background-color: #BC6C25; /* Warna aksen coklat */
    color: #FFFFFF;
    padding: 1.5rem 1.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 80px;
}

.agenda-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.agenda-date .month {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
}

.agenda-details {
    padding: 1.5rem;
}

.agenda-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #343A40;
    margin-bottom: 0.5rem;
}

.agenda-details p {
    font-size: 0.9rem;
    color: #6C757D;
    margin-bottom: 1rem;
}

.agenda-details a {
    color: #386641;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.agenda-details a:hover {
    color: #BC6C25;
}

.agenda-details a i {
    transition: transform 0.3s ease;
    display: inline-block;
}
.agenda-details a:hover i {
    transform: translateX(5px);
}

/* --- Pemisah Judul untuk Kartu Navigasi --- */
.section-divider-heading {
    text-align: center;
    font-size: 1.5rem;
    color: #343A40;
    margin-bottom: 2rem;
    position: relative;
    display: block;
}

.section-divider-heading::before,
.section-divider-heading::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20%;
    height: 2px;
    background-color: #DEE2E6;
}

.section-divider-heading::before {
    left: 15%;
}

.section-divider-heading::after {
    right: 15%;
}

/* --- Footer --- */
.main-footer {
    background-color: #343A40;
    color: #E9ECEF;
    text-align: center;
    padding: 2rem 1rem;
    margin-top: 2rem;
}

/* --- Responsiveness --- */
@media (max-width: 992px) {
    .header-container { flex-direction: column; gap: 1rem; }
    .main-nav ul { gap: 1.5rem; padding: 0; }
    .two-column-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .banner-slider { height: 50vh; }
    .slide-content h1 { font-size: 2.2rem; }
    .slide-content p { font-size: 1rem; }
    .button-slide { padding: 10px 22px; }
}

/* === GAYA BARU KHUSUS UNTUK HALAMAN PROFIL === */

.page-hero {
    padding: 4rem 2rem;
    background: linear-gradient(45deg, rgba(235, 245, 238, 0.9), rgba(254, 251, 246, 0.9)), url('https://via.placeholder.com/1920x400.png/386641/FFFFFF?text=Latar+Desa') no-repeat center center;
    background-size: cover;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    color: #386641;
    font-style: italic;
}

.page-content {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.profile-section {
    margin-bottom: 5rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: #386641;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #BC6C25;
    border-radius: 2px;
}

/* Timeline Sejarah */
.timeline {
    position: relative;
    padding-left: 3rem;
    border-left: 3px solid #E0E0E0;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: -48px; /* Disesuaikan agar pas di garis */
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #BC6C25;
    border: 4px solid #F8F9FA;
    border-radius: 50%;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

/* Visi Misi */
.visi-misi-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.vm-card {
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.vm-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.vm-card.visi {
    background-color: #EBF5EE; /* Hijau muda */
    color: #386641;
}

.vm-card.misi {
    background-color: #FEFBF6; /* Krem muda */
    color: #BC6C25;
}

.vm-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.vm-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.vm-card ul li {
    margin-bottom: 0.5rem;
}

/* Aparatur Desa */
.aparatur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.aparatur-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    text-align: center;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.aparatur-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.aparatur-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #EBF5EE;
    margin-bottom: 1rem;
}

.aparatur-card h4 {
    color: #2c3e50;
    font-size: 1.2rem;
}

.aparatur-card p {
    color: #BC6C25;
    font-weight: 600;
}

/* Peta */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Penyesuaian Responsif untuk Halaman Profil */
@media (max-width: 768px) {
    .visi-misi-container {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }
}


/* === GAYA BARU KHUSUS UNTUK HALAMAN POTENSI === */

/* Fitur Unggulan (Wisata, Budaya) */
.feature-section {
    padding: 3rem 0;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: center;
    gap: 3rem;
}
/* Untuk membalik urutan gambar dan teks */
.feature-grid.reverse {
    direction: rtl; /* Membalik urutan elemen */
}
.feature-grid.reverse > * {
    direction: ltr; /* Mengembalikan arah teks menjadi normal */
}

.feature-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.feature-content h2 {
    font-size: 2rem;
    color: #386641;
    margin-bottom: 1rem;
}
.feature-content ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}
.feature-content ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.feature-content ul li i {
    color: #BC6C25;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Produk Lokal / UMKM */
.product-section {
    padding: 5rem 2rem;
    background-color: #EBF5EE; /* Latar belakang hijau sangat muda */
    margin: 3rem -2rem; /* Trik agar background full-width */
    text-align: center;
}
.product-header {
    max-width: 800px;
    margin: 0 auto 3rem auto;
}
.product-header p {
    font-size: 1.1rem;
    color: #6C757D;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}
.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.product-info {
    padding: 1.5rem;
}
.product-info h3 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}
.product-info p {
    color: #6C757D;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
.product-tag {
    display: inline-block;
    background-color: #FEFBF6;
    color: #BC6C25;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Call to Action (CTA) */
.cta-section {
    padding: 4rem 2rem;
    margin-top: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #386641, #2C5D35);
    color: #FFFFFF;
    border-radius: 12px;
}
.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.cta-section p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.button-cta {
    background-color: #FFFFFF;
    color: #386641;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.button-cta:hover {
    background-color: #BC6C25;
    color: #FFFFFF;
    transform: scale(1.05);
}

/* Penyesuaian Responsif */
@media (max-width: 768px) {
    .feature-grid.reverse {
        direction: ltr; /* Kembalikan ke normal di mobile */
    }
    .product-section {
        margin: 3rem -1rem; /* Sesuaikan margin di mobile */
        padding: 4rem 1rem;
    }
}

/* === GAYA BARU KHUSUS UNTUK HALAMAN KONTAK === */

.contact-main-section {
    padding: 3rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    background-color: #FFFFFF;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Kolom Kiri: Informasi Kontak */
.contact-info h3 {
    font-size: 1.8rem;
    color: #386641;
    margin-bottom: 0.5rem;
}
.contact-info > p {
    color: #6C757D;
    margin-bottom: 2rem;
}
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.info-item i {
    font-size: 1.5rem;
    color: #BC6C25;
    margin-top: 5px;
    width: 30px;
}
.info-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.2rem;
}
.info-item p {
    margin: 0;
    color: #6C757D;
}

/* Kolom Kanan: Formulir Kontak */
.contact-form h3 {
    font-size: 1.8rem;
    color: #386641;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #495057;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #DEE2E6;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #386641;
    box-shadow: 0 0 0 3px rgba(56, 102, 65, 0.15);
}
.button-form {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    background-color: #386641;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.button-form:hover {
    background-color: #BC6C25;
}

/* Bagian Media Sosial */
.social-media-section {
    margin-top: 4rem;
    text-align: center;
    background-color: #EBF5EE;
    padding: 3rem 2rem;
    border-radius: 12px;
}
.social-media-section h3 {
    font-size: 1.5rem;
    color: #386641;
    margin-bottom: 1.5rem;
}
.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}
.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #FFFFFF;
    color: #386641;
    border-radius: 50%;
    font-size: 1.5rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
.social-icons a:hover {
    transform: translateY(-5px);
    background-color: #BC6C25;
    color: #FFFFFF;
}

/* Peta Full Width di Bawah */
.map-full-container {
    width: 100%;
    margin-top: 5rem;
    line-height: 0; /* Menghilangkan spasi bawah pada iframe */
}