/* Variabel Warna & Font untuk kemudahan kustomisasi */
:root {
    --primary-color: #2c5d3d;   /* Hijau Tua (Hutan) */
    --secondary-color: #8fbc8f; /* Hijau Muda (Daun) */
    --background-color: #f8f6f2; /* Krem yang lebih lembut */
    --white-color: #ffffff;      /* Putih */
    --text-color: #333333;      /* Abu-abu Tua */
    --text-light: #666666;      /* Abu-abu terang */
    --accent-color: #d2691e;    /* Coklat Oranye (Kayu/Senja) */
    --footer-color: #252525;    /* Hitam lembut */
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif; /* Font untuk judul besar */
}

/* Reset Dasar & Gaya Global */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-primary);
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}

/* Container Umum */
.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
.text-center { text-align: center; }

/* Judul & Paragraf Umum */
.section-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
}
.section-title-alt { /* Versi alternatif judul */
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}
.section-paragraph {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

/* === HEADER & NAVIGASI === */
.main-header {
    background-color: var(--white-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
}

/* === STYLE UNTUK AREA LOGO & TEKS === */
.logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-area img {
    max-width: 180px;
    height: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
    text-transform: uppercase;
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.logo-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Navigasi */
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.3s ease;
}
.nav-links a::after {
    content: ''; position: absolute; width: 0; height: 3px;
    background-color: var(--primary-color); bottom: 0; left: 0;
    transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--primary-color); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger-menu { display: none; font-size: 1.8rem; cursor: pointer; color: var(--primary-color); }

/* ======================= BANNER / HERO SECTION ======================= */
.hero { /* ... Style hero dari sebelumnya tetap sama ... */ }

/* (Salin semua style dari .hero hingga @keyframes fadeInUp dari CSS sebelumnya ke sini) */
.hero {
    position: relative; height: 85vh; display: flex; align-items: center; justify-content: center;
    text-align: center; color: white;
    background: url('/img/banner.jpg') no-repeat center center/cover;
}
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: rgba(0, 0, 0, 0.55); }
.hero-content { position: relative; z-index: 2; max-width: 800px; padding: 0 1rem; }
.hero-title { font-family: var(--font-display); font-size: 4rem; text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); animation: fadeInDown 1s ease-out; }
.hero-subtitle { font-size: 1.3rem; margin: 1rem 0 2rem 0; animation: fadeInUp 1s ease-out 0.5s; animation-fill-mode: both; }
.cta-button {
    background-color: var(--accent-color); color: white; padding: 1rem 2.5rem; border-radius: 50px; text-decoration: none;
    font-weight: 600; font-size: 1.1rem; transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); animation: fadeInUp 1s ease-out 1s; animation-fill-mode: both;
}
.cta-button:hover { background-color: #e87a2d; transform: translateY(-3px); }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* === BAGIAN BARU: SEKILAS TENTANG KAMI === */
.about-glimpse {
    padding: 5rem 0;
    background-color: var(--white-color);
}

/* === BAGIAN BARU: HIGHLIGHT POTENSI === */
.potential-highlight {
    padding: 5rem 0;
}
.potential-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    text-align: center;
}
.potential-item { padding: 1.5rem; }
.potential-icon {
    font-size: 3rem;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.potential-item:hover .potential-icon {
    transform: scale(1.1) rotate(15deg);
    background-color: var(--accent-color);
    color: var(--white-color);
}
.potential-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* === BAGIAN BARU: BERITA & KEGIATAN === */
.latest-news {
    padding: 5rem 0;
    background-color: var(--white-color);
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.news-card {
    background-color: var(--white-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}
.news-content { padding: 1.5rem; }
.news-date {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white-color);
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
.news-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}
.news-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
}
.news-content a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
}
.news-content a:hover { text-decoration: underline; }

/* === BAGIAN BARU: GALERI MINI === */
.mini-gallery {
    padding: 5rem 0;
}
.photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 3rem;
}
.photo-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.photo-item:hover img {
    transform: scale(1.1);
}
/* Membuat grid lebih menarik di layar besar */
@media (min-width: 768px) {
    .photo-grid { grid-template-columns: repeat(4, 1fr); }
    .photo-item:first-child { grid-column: 1 / 3; grid-row: 1 / 3; }
    .photo-item:nth-child(4) { grid-column: 3 / 5; }
}
.cta-button-alt {
    display: inline-block;
    margin-top: 3rem;
    background-color: var(--primary-color);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button-alt:hover {
    background-color: #1e3c28;
    transform: translateY(-3px);
}

/* ======================= FOOTER ======================= */
.main-footer {
    background-color: var(--footer-color);
    color: #ccc;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}

/* ======================= RESPONSIVE DESIGN (MOBILE) ======================= */
@media (max-width: 992px) {
    .nav-links {
        display: none; flex-direction: column; width: 100%; position: absolute;
        top: 100%; left: 0; background-color: var(--white-color);
        text-align: center; padding: 1rem 0; box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .nav-links li { padding: 1rem 0; }
    .hamburger-menu { display: block; }
    .hero-title { font-size: 2.8rem; }
    .section-title { font-size: 2.2rem; }

    /* BARIS KODE YANG BENAR ADA DI SINI */
    .logo-text {
        display: none;
    }
}


@media (max-width: 480px) {
    .content-container { padding: 0 1rem; }
    .logo img { max-width: 180px; }
    .hero-title { font-size: 2.2rem; }
    .hero-subtitle { font-size: 1.1rem; }
}

/* ========================================= */
/* === STYLE UNTUK HALAMAN TENTANG KAMI === */
/* ========================================= */

/* Header Halaman Internal */
.page-header {
    background-color: var(--primary-color);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white-color);
}
.page-title {
    font-family: var(--font-display);
    font-size: 3rem;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}
.page-subtitle {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0.5rem auto 0 auto;
    opacity: 0.9;
}

/* Bagian Sambutan Kepala Desa */
.welcome-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}
.profile-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.profile-image {
    flex-basis: 30%;
    min-width: 250px;
}
.profile-image img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.profile-text {
    flex-basis: 70%;
}
.profile-text h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.profile-text blockquote {
    font-size: 1.1rem;
    font-style: italic;
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.profile-text h4 {
    font-size: 1.2rem;
    font-weight: 700;
}
.profile-text p {
    color: var(--text-light);
}

/* Bagian Timeline Sejarah */
.history-section {
    padding: 5rem 0;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 2rem auto;
    padding: 1rem 0;
}
/* Garis vertikal di tengah timeline */
.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--secondary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
}
/* Mengatur posisi item Kiri dan Kanan */
.timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 70px;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 70px;
    text-align: left;
}
/* Bulatan di timeline */
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white-color);
    border: 4px solid var(--primary-color);
    top: 25px;
    border-radius: 50%;
    z-index: 1;
}
.timeline-item:nth-child(odd) .timeline-dot {
    right: -10px;
}
.timeline-item:nth-child(even) .timeline-dot {
    left: -10px;
}
.timeline-content {
    padding: 20px 30px;
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
}
.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Bagian Visi & Misi */
.vision-mission-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}
.vm-card {
    background-color: #fcfcfc;
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 7px solid var(--primary-color);
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.vm-card h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--primary-color);
}
.vm-card h3 i {
    color: var(--accent-color);
}
.vm-card ul {
    list-style: none;
}
.vm-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
}
.vm-card ul i {
    color: var(--primary-color);
    margin-top: 5px;
}

/* Penyesuaian untuk Layar Mobile */
@media (max-width: 992px) {
    .profile-container {
        flex-direction: column;
        text-align: center;
    }
    .vm-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .page-title { font-size: 2.5rem; }
    /* Membuat timeline menjadi satu kolom */
    .timeline::after { left: 10px; }
    .timeline-item { width: 100%; padding-left: 50px; padding-right: 0; }
    .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
        left: 0;
        text-align: left;
    }
    .timeline-dot {
        left: 0;
    }
}

/* ========================================= */
/* === STYLE UNTUK HALAMAN POTENSI === */
/* ========================================= */

/* Menambah variabel warna baru */
:root {
    --potential-yellow: #ffc107;
    --potential-teal: #20c997;
    --potential-orange: #fd7e14;
}

/* Bagian Showcase Potensi Utama */
.potential-showcase {
    padding: 5rem 0;
}
.alt-bg {
    background-color: var(--white-color);
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
/* Modifier untuk membalik urutan grid */
.showcase-grid.grid-reverse {
    direction: rtl; /* Trik untuk membalik urutan kolom */
}
.showcase-grid.grid-reverse > * {
    direction: ltr; /* Mengembalikan arah teks normal */
}

.showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    object-fit: cover;
}

.potential-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.tag-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.tag {
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-color);
}
.tag-yellow { background-color: #ffc10730; }
.tag-teal { background-color: #20c99730; }
.tag-orange { background-color: #fd7e1430; }

.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.cta-button-small {
    background-color: var(--potential-yellow);
    color: var(--text-color);
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta-button-small:hover { transform: translateY(-3px); }
.cta-button-small.btn-teal { background-color: var(--potential-teal); color: var(--white-color); }

/* Bagian Showcase Produk Kerajinan */
.products-showcase {
    padding: 5rem 0;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.product-card {
    background-color: var(--white-color);
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border-top: 5px solid transparent;
    transition: transform 0.3s ease, border-top-color 0.3s ease;
}
.product-card:hover {
    transform: translateY(-10px);
    border-top-color: var(--potential-orange);
}
.product-icon {
    font-size: 2.5rem;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
}
.product-icon.icon-orange { background-color: #fd7e1430; color: var(--potential-orange); }
.product-card h3 { font-size: 1.4rem; margin-bottom: 0.5rem; color: var(--primary-color); }
.product-card p { color: var(--text-light); }

/* Bagian Call to Action (CTA) */
.cta-section {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 5rem 2rem;
    margin-top: 3rem;
}
.cta-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}
.cta-section .cta-button {
    background-color: var(--white-color);
    color: var(--primary-color);
}

/* Penyesuaian untuk Mobile */
@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        direction: ltr !important; /* Reset direction di mobile */
    }
    .showcase-grid > * {
        direction: ltr !important;
    }
    .showcase-image {
        margin-bottom: 2rem;
    }
    .potential-title { font-size: 2.2rem; }
}

/* ========================================= */
/* === STYLE UNTUK HALAMAN PEMERINTAHAN === */
/* ========================================= */

/* Bagian Pimpinan Utama */
.leadership-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}
.leadership-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: flex-start;
}
.leader-card {
    background-color: var(--background-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
}
.leader-card img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: -4rem auto 1.5rem auto; /* Efek 'keluar' dari kartu */
    border: 8px solid var(--white-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.leader-info h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-color);
}
.leader-info span {
    font-weight: 600;
    color: var(--accent-color);
    display: block;
    margin-bottom: 1.5rem;
}
.leader-quote {
    font-style: italic;
    color: var(--text-light);
    position: relative;
    padding: 0 1rem;
}
.leader-quote i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    position: absolute;
    top: 0;
    left: 0;
}
.leader-card.secretary {
    background-color: var(--primary-color);
    color: var(--white-color);
}
.leader-card.secretary img {
    border-color: var(--primary-color);
}
.leader-card.secretary h3 {
    color: var(--white-color);
}
.leader-card.secretary span {
    color: var(--secondary-color);
}
.leader-card.secretary .secretary-desc {
    color: #e0e0e0;
}

/* Bagian Perangkat Desa */
.staff-section {
    padding: 5rem 0;
}
.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.staff-card {
    background-color: var(--white-color);
    padding: 2rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}
.staff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.staff-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}
.staff-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
}
.staff-card p {
    color: var(--text-light);
}
.staff-icon {
    position: absolute;
    bottom: -20px;
    right: -15px;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.1;
    transform: rotate(-25deg);
}

/* Bagian Lembaga Desa (Accordion) */
.institution-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}
.accordion {
    max-width: 800px;
    margin: 3rem auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.accordion-item {
    background-color: var(--background-color);
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}
.accordion-header {
    width: 100%;
    padding: 1.5rem;
    background-color: transparent;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 1.5rem;
}
.accordion-body p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
}
.icon-toggle {
    transition: transform 0.4s ease;
}
/* Style saat accordion aktif */
.accordion-item.active .accordion-body {
    max-height: 200px; /* Atur tinggi maksimal yang cukup */
}
.accordion-item.active .icon-toggle {
    transform: rotate(45deg);
}

/* Penyesuaian untuk Mobile */
@media (max-width: 992px) {
    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================= */
/* === STYLE UNTUK HALAMAN KONTAK KAMI === */
/* ========================================= */

.contact-info-section {
    padding: 5rem 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch; /* Membuat semua kartu sama tinggi */
}

/* Kartu untuk Info & Kontak Digital */
.info-card {
    background-color: var(--white-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.info-card .info-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}
.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}
.info-card hr {
    border: none;
    height: 1px;
    background-color: #eee;
    margin: 2rem 0;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
}
.contact-item a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.1rem;
}
.contact-item a:hover {
    color: var(--accent-color);
}
.social-links {
    display: flex;
    gap: 1rem;
}
.social-links a {
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: background-color 0.3s, color 0.3s;
}
.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

/* Kartu untuk Foto Kantor (Pengganti Peta) */
.photo-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.photo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white-color);
    padding: 3rem 1.5rem 1.5rem 1.5rem;
}
.photo-caption h4 {
    font-size: 1.3rem;
}
.photo-caption p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Bagian Formulir Kontak */
.contact-form-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}
.form-container {
    max-width: 800px;
    margin: 0 auto;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 93, 61, 0.2);
}
.form-container button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
}
.form-disclaimer {
    margin-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-light);
}