/* ==========================================================================
   1. Global Styles & Konfigurasi Dasar
   ========================================================================== */

:root {
    --color-primary: #2E8B57; /* Hijau Medis */
    --color-secondary: #4682B4; /* Biru Kepercayaan */
    --color-dark: #2c3e50; /* Abu-abu Gelap untuk Teks */
    --color-light: #ecf0f1; /* Abu-abu Sangat Terang */
    --color-white: #ffffff;
    --font-body: 'Poppins', sans-serif;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.12);
    --transition-fast: all 0.3s ease;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    margin: 0;
    background-color: #f9fafb;
    color: var(--color-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
}

/* ==========================================================================
   2. Header & Banner Section
   ========================================================================== */

.banner {
    position: relative;
    color: var(--color-white);
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('/img/banner.jpg');
    background-size: cover;
    background-position: center 30%;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(46, 139, 87, 0.7), rgba(70, 130, 180, 0.7));
}

.banner-content {
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
    padding: 0 15px;
}

.logo {
    width: 90px;
    margin-bottom: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    padding: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
    transform: scale(1.4);
}

.banner h1 {
    font-size: 2.8em;
    font-weight: 700;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.banner p {
    font-size: 1.2em;
    margin: 15px auto 0;
    max-width: 600px;
    font-weight: 400;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   3. Navigation Menu
   ========================================================================== */

.navigation {
    background-color: var(--color-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu a {
    display: block;
    color: var(--color-dark);
    text-decoration: none;
    font-size: 1em;
    font-weight: 600;
    padding: 20px 25px;
    position: relative;
    transition: var(--transition-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--color-primary);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--color-primary);
    background-color: #f9fafb;
}

.nav-menu a:hover::after, .nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none; /* Sembunyikan di desktop */
}

/* ==========================================================================
   4. Main Content & Sections (Gaya sama seperti sebelumnya)
   ========================================================================== */
main { width: 100%; }
.section-title { text-align: center; color: var(--color-dark); font-size: 2.5em; font-weight: 700; margin-bottom: 50px; position: relative; padding-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background-color: var(--color-primary); border-radius: 2px; }
.section-title-light { text-align: center; color: var(--color-white); font-size: 2.5em; font-weight: 700; margin-bottom: 30px; }
section { padding: 80px 20px; }
.welcome-section { text-align: center; }
.welcome-section p { font-size: 1.2em; line-height: 1.7; max-width: 800px; margin: -20px auto 0 auto; color: #555; }
.featured-services { background-color: var(--color-light); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background-color: var(--color-white); border-radius: 10px; padding: 40px; text-align: center; box-shadow: var(--shadow-soft); transition: var(--transition-fast); border: 1px solid #e0e0e0; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-medium); border-color: var(--color-primary); }
.service-icon { margin-bottom: 20px; }
.service-icon svg { width: 48px; height: 48px; color: var(--color-primary); transition: var(--transition-fast); }
.service-card:hover .service-icon svg { transform: scale(1.1) rotate(-5deg); }
.service-card h3 { margin-bottom: 15px; font-size: 1.5em; font-weight: 600; }
.service-card p { font-size: 1em; line-height: 1.6; color: #666; }
.vision-mission { background: linear-gradient(45deg, var(--color-secondary), #3a6a94); color: var(--color-white); }
.vision-mission-content { display: flex; justify-content: center; gap: 60px; flex-wrap: wrap; text-align: center; }
.vision, .mission { max-width: 450px; }
.vision p { font-size: 1.2em; font-style: italic; line-height: 1.6; opacity: 0.9; }
.mission ul { list-style: none; padding-left: 0; text-align: left; }
.mission li { font-size: 1.1em; line-height: 1.8; position: relative; margin-bottom: 15px; padding-left: 35px; }
.mission li::before { content: '✓'; position: absolute; left: 0; color: var(--color-white); background-color: var(--color-primary); border-radius: 50%; width: 24px; height: 24px; text-align: center; line-height: 24px; font-weight: bold; }
.health-focus, .closing-section { text-align: center; }
.health-focus { background-color: #e8f5e9; }
.closing-section { background-color: var(--color-white); }
.health-focus p, .closing-section p { font-size: 1.2em; line-height: 1.7; max-width: 700px; margin: -20px auto 30px auto; color: #555; }
.cta-button, .cta-button-large { display: inline-block; color: var(--color-white); text-decoration: none; border-radius: 50px; font-weight: 600; transition: var(--transition-fast); box-shadow: var(--shadow-soft); }
.cta-button { background-color: var(--color-primary); padding: 14px 30px; }
.cta-button:hover { background-color: #256d45; transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.cta-button-large { background-color: var(--color-secondary); padding: 18px 45px; font-size: 1.1em; }
.cta-button-large:hover { background-color: #3a6a94; transform: translateY(-3px); box-shadow: var(--shadow-medium); }

/* ==========================================================================
   5. Footer Section (Gaya sama seperti sebelumnya)
   ========================================================================== */
.site-footer { background-color: var(--color-dark); color: var(--color-light); padding: 60px 20px 20px 20px; font-size: 0.95em; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-bottom: 40px; }
.footer-about h4, .footer-links h4, .footer-contact h4 { color: var(--color-white); font-size: 1.2em; font-weight: 600; margin-bottom: 20px; position: relative; padding-bottom: 10px; }
.footer-about h4::after, .footer-links h4::after, .footer-contact h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 2px; background-color: var(--color-primary); }
.footer-about p, .footer-contact p { line-height: 1.7; opacity: 0.8; margin: 0 0 10px 0; }
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a, .footer-contact a { color: var(--color-light); text-decoration: none; transition: var(--transition-fast); }
.footer-links a:hover, .footer-contact a:hover { color: var(--color-primary); }
.footer-links a:hover { padding-left: 5px; }
.footer-links a { opacity: 0.8; } .footer-links a:hover { opacity: 1; }
.footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid #444; opacity: 0.7; font-size: 0.9em; }

/* ==========================================================================
   6. Animasi (Gaya sama seperti sebelumnya)
   ========================================================================== */
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }


/* ==========================================================================
   7. RESPONSIVE - GAYA UNTUK MOBILE
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* --- Tombol Hamburger --- */
    .nav-toggle {
        display: block;
        position: absolute;
        top: 50%;
        right: 20px;
        transform: translateY(-50%);
        background: transparent;
        border: 0;
        cursor: pointer;
        z-index: 1001;
    }

    .hamburger {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--color-dark);
        border-radius: 3px;
        position: relative;
        transition: all 0.25s;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 3px;
        background: var(--color-dark);
        border-radius: 3px;
        transition: all 0.25s;
    }

    .hamburger::before { top: -8px; }
    .hamburger::after { top: 8px; }

    /* Animasi Tombol Hamburger saat aktif */
    .nav-toggle.is-active .hamburger { background: transparent; }
    .nav-toggle.is-active .hamburger::before { transform: rotate(45deg) translate(5px, 6px); }
    .nav-toggle.is-active .hamburger::after { transform: rotate(-45deg) translate(5px, -6px); }

    /* --- Menu Navigasi Mobile --- */
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 80px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }

    .nav-menu.nav-menu--visible {
        transform: translateX(0);
    }

    .nav-menu a {
        padding: 15px 30px;
        text-align: left;
        width: 100%;
    }
    
    .nav-menu a::after {
        display: none; /* Hilangkan garis bawah di mobile */
    }

    /* --- Penyesuaian Ukuran Font --- */
    .banner h1 { font-size: 2.2em; }
    .banner p { font-size: 1em; }
    .section-title, .section-title-light { font-size: 2em; }
    .welcome-section p, .health-focus p, .closing-section p { font-size: 1em; }
    .service-card h3 { font-size: 1.3em; }

    /* --- Penyesuaian Spasi --- */
    section { padding: 60px 15px; }
    
    .vision-mission-content {
        gap: 40px;
    }
}

/* ==========================================================================
   8. GAYA TAMBAHAN UNTUK HALAMAN PROFIL
   ========================================================================== */

/* --- Header Halaman Internal --- */
.page-header {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 50px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8em;
    margin: 0;
}

.page-header p {
    font-size: 1.2em;
    opacity: 0.8;
    margin-top: 5px;
}

/* --- Konten Profil (Sejarah) --- */
.profile-content {
    background-color: var(--color-white);
}

.profile-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.profile-text p {
    font-size: 1.1em;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

/* --- Struktur Organisasi --- */
.org-structure {
    background-color: var(--color-light);
}

.leader-card {
    background: var(--color-white);
    max-width: 600px;
    margin: 0 auto 50px auto;
    text-align: center;
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-medium);
    border-top: 5px solid var(--color-primary);
}

.leader-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--color-light);
}

.leader-card h3 {
    margin: 0 0 5px 0;
    font-size: 1.8em;
    color: var(--color-dark);
}

.leader-title {
    margin: 0 0 15px 0;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1em;
}

.leader-bio {
    font-size: 1em;
    line-height: 1.6;
    color: #666;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.team-member {
    background: var(--color-white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border-bottom: 3px solid var(--color-secondary);
}

.team-member h4 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
}

.team-member p {
    margin: 0;
    color: #777;
    font-size: 0.9em;
}

/* --- Nilai-Nilai Inti --- */
.core-values {
    background-color: var(--color-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    border: 1px solid #e0e0e0;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-fast);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-soft);
}

.value-icon {
    margin-bottom: 15px;
    display: inline-block;
    padding: 15px;
    border-radius: 50%;
    line-height: 1;
}

.value-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.value-card h3 {
    margin: 0 0 10px 0;
    font-size: 1.4em;
}

.value-card p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.5;
    color: #666;
}

/* Warna untuk setiap kartu nilai */
.value-card.color-1 { border-top: 4px solid #2E8B57; }
.value-card.color-1 .value-icon { background-color: #eaf6ef; color: #2E8B57; }

.value-card.color-2 { border-top: 4px solid #4682B4; }
.value-card.color-2 .value-icon { background-color: #e9f2f9; color: #4682B4; }

.value-card.color-3 { border-top: 4px solid #d9534f; }
.value-card.color-3 .value-icon { background-color: #fbecea; color: #d9534f; }

.value-card.color-4 { border-top: 4px solid #f0ad4e; }
.value-card.color-4 .value-icon { background-color: #fdf5e9; color: #f0ad4e; }


/* ==========================================================================
   9. GAYA RESPONSIVE TAMBAHAN UNTUK HALAMAN PROFIL
   ========================================================================== */
@media screen and (max-width: 768px) {
    .page-header h1 {
        font-size: 2em;
    }

    .page-header p {
        font-size: 1em;
    }

    .leader-card {
        padding: 30px 20px;
    }

    .leader-photo {
        width: 120px;
        height: 120px;
    }

    .leader-card h3 {
        font-size: 1.5em;
    }
}

/* ==========================================================================
   10. GAYA TAMBAHAN UNTUK HALAMAN LAYANAN
   ========================================================================== */

.services-content {
    background-color: var(--color-white);
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.services-intro p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
}

.service-category-title {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--color-primary);
}

/* --- Gaya Accordion --- */
.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden; /* Penting untuk animasi */
}

.accordion-header {
    width: 100%;
    background-color: #f9fafb;
    border: none;
    padding: 20px 25px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 1.2em;
    font-weight: 600;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.accordion-header:hover {
    background-color: #e8f5e9; /* Light green on hover */
}

/* Ikon Plus/Minus pada Accordion */
.accordion-header::after {
    content: '+';
    font-size: 1.8em;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header::after {
    content: '−';
    transform: rotate(180deg);
}

.accordion-item.active .accordion-header {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.accordion-item.active .accordion-header::after {
    color: var(--color-white);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: var(--color-white);
}

.accordion-content p {
    padding: 25px;
    margin: 0;
    font-size: 1.05em;
    line-height: 1.7;
    color: #333;
    border-top: 1px solid #e0e0e0;
}

/* --- Service CTA Section --- */
.service-cta {
    background-color: var(--color-secondary);
    color: var(--color-white);
    text-align: center;
    padding: 60px 20px;
}

.service-cta h3 {
    font-size: 2.2em;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 15px;
}

.service-cta p {
    font-size: 1.1em;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.service-cta .cta-button {
    background-color: var(--color-white);
    color: var(--color-secondary);
    font-weight: 700;
}
.service-cta .cta-button:hover {
    background-color: var(--color-light);
    color: var(--color-secondary);
}

/* ==========================================================================
   11. GAYA RESPONSIVE TAMBAHAN UNTUK HALAMAN LAYANAN
   ========================================================================== */
@media screen and (max-width: 768px) {
    .service-category-title {
        font-size: 1.5em;
    }
    .accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .service-cta h3 {
        font-size: 1.8em;
    }
}

/* ==========================================================================
   12. GAYA TAMBAHAN UNTUK HALAMAN INFORMASI PUBLIK
   ========================================================================== */

.info-tabs-section {
    background-color: var(--color-white);
}

.info-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

.info-intro p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555;
}

/* --- Gaya untuk Tab --- */
.tab-buttons {
    display: flex;
    justify-content: center;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 30px;
}

.tab-btn {
    background: none;
    border: none;
    padding: 15px 25px;
    font-family: var(--font-body);
    font-size: 1.1em;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
    margin-bottom: -2px; /* Agar border bawah menyatu */
}

.tab-btn:hover {
    color: var(--color-primary);
}

.tab-btn.active {
    color: var(--color-primary);
    border-bottom: 3px solid var(--color-primary);
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 1.5em;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.tab-content p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.tab-content ul {
    list-style: none;
    padding-left: 0;
}

.tab-content li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.tab-content li::before {
    content: '»';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

/* --- Gaya untuk Pusat Unduhan --- */
.document-download {
    background-color: var(--color-light);
}

.doc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.doc-card {
    background-color: var(--color-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-soft);
}

.doc-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-secondary);
}

.doc-icon {
    flex-shrink: 0;
    margin-right: 20px;
    color: var(--color-secondary);
}

.doc-icon svg {
    width: 36px;
    height: 36px;
}

.doc-info h4 {
    margin: 0 0 5px 0;
    font-size: 1.2em;
}

.doc-info p {
    margin: 0;
    font-size: 0.9em;
    color: #777;
    line-height: 1.5;
}

.download-btn {
    margin-left: auto;
    flex-shrink: 0;
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 8px 18px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.download-btn:hover {
    background-color: #3a6a94;
}

/* Animasi Fade In untuk Konten Tab */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   13. GAYA RESPONSIVE TAMBAHAN UNTUK INFORMASI PUBLIK
   ========================================================================== */
@media screen and (max-width: 768px) {
    .tab-buttons {
        flex-direction: column;
    }
    .tab-btn {
        border-bottom: 1px solid #e0e0e0;
        margin-bottom: 0;
    }
    .tab-btn.active {
        border-bottom: 3px solid var(--color-primary);
    }
}

/* ==========================================================================
   14. GAYA TAMBAHAN UNTUK HALAMAN KONTAK
   ========================================================================== */

.contact-section {
    padding-top: 0;
    padding-bottom: 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* 2 kolom dengan rasio lebar */
    background: var(--color-white);
    box-shadow: var(--shadow-medium);
    border-radius: 10px;
    overflow: hidden;
    margin: -80px auto 0 auto; /* Trik agar menimpa header halaman */
    position: relative;
    z-index: 10;
}

/* --- Kolom Kiri: Detail Kontak --- */
.contact-details {
    background-color: var(--color-secondary);
    color: var(--color-white);
    padding: 50px 40px;
}

.contact-details h3 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-details > p {
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 40px;
}

.info-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-icon {
    flex-shrink: 0;
    margin-right: 20px;
    background: rgba(255,255,255,0.1);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 22px;
    height: 22px;
}

.info-text h4 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
}

.info-text p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* --- Kolom Kanan: Formulir --- */
.contact-form {
    padding: 50px 40px;
}

.contact-form h3 {
    font-size: 2em;
    margin-top: 0;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.contact-form > p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9em;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(46, 139, 87, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    background-color: #256d45;
    box-shadow: var(--shadow-soft);
}

/* --- Bagian FAQ --- */
.faq-section {
    background-color: var(--color-light);
    padding-top: 140px; /* Memberi ruang dari kartu kontak di atas */
    margin-top: -80px; /* Trik agar latar menyatu */
    z-index: 1;
    position: relative;
}

/* ==========================================================================
   15. GAYA RESPONSIVE TAMBAHAN UNTUK HALAMAN KONTAK
   ========================================================================== */
@media screen and (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr; /* Ubah jadi 1 kolom di tablet */
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        margin-top: 0;
        padding: 0;
    }
    .contact-grid {
        margin-top: 0;
        border-radius: 0;
    }
    .contact-details, .contact-form {
        padding: 40px 25px;
    }
    .faq-section {
        padding-top: 60px;
        margin-top: 0;
    }
}