/* CSS Reset and Global Styles */
:root {
    --primary-color: #00796B; /* Teal */
    --primary-light: #00897B;
    --background-color: #f8f9fa;
    --card-background: #FFFFFF;
    --text-color: #2c3e50; /* Dark Slate Gray */
    --text-light: #576b81;
    --white-color: #FFFFFF;
    --shadow-color: rgba(0, 121, 107, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--background-color);
    color: var(--text-color);
    line-height: 1.7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Header Section */
.site-header {
    background-color: var(--white-color);
    padding: 15px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-header .logo {
    display: flex;
    align-items: center;
}

.site-header .logo img {
    height: 60px;
    margin-right: 25px;
    transform: scale(1.6);
}

.site-header .title-block h1 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 700;
}

.site-header .title-block h2 {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
    color: var(--text-light);
}

/* Navigasi */
.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 10px 5px;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--text-color);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.menu-toggle {
    display: none; /* Sembunyikan di desktop */
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--text-color);
    cursor: pointer;
}

/* Banner Section */
.banner {
    height: 60vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white-color);
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('/img/banner.jpg');
    background-size: cover;
    background-position: center;
    padding: 20px;
}

.banner-content {
    max-width: 800px;
}

.banner-title {
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    margin-bottom: 15px;
}

.banner-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.9;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
}

/* Main Content (Service List) */
main {
    padding: 60px 0;
    background-color: var(--white-color);
}

.main-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    display: flex;
    align-items: center;
    background-color: var(--background-color);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
}

.service-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
}

.service-text h3 {
    margin: 0 0 5px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.service-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.service-arrow {
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover .service-arrow {
    opacity: 1;
}

/* Footer Section */
.site-footer {
    background-color: #2c3e50;
    color: rgba(255,255,255,0.7);
    padding-top: 40px;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h4 {
    color: var(--white-color);
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-col ul { list-style-type: none; }
.footer-col ul li a { transition: color 0.3s ease, padding-left 0.3s ease; display: inline-block; }
.footer-col ul li a:hover { color: var(--white-color); padding-left: 5px; }

.social-media a {
    color: rgba(255,255,255,0.7);
    font-size: 1.3rem;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover { color: var(--primary-color); transform: translateY(-3px); }

.footer-bottom {
    background-color: rgba(0,0,0,0.2);
    text-align: center;
    padding: 15px 0;
    font-size: 0.85rem;
}

/* Responsive (Mobile Menu) */
@media (max-width: 850px) {
    .main-nav .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 91px; /* Sesuaikan dengan tinggi header */
        left: 0;
        width: 100%;
        background-color: var(--white-color);
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        padding: 10px 0;
        gap: 0;
    }
    
    .main-nav .nav-menu.active {
        display: flex;
    }
    
    .main-nav .nav-menu li {
        text-align: center;
    }
    
    .main-nav .nav-menu a {
        display: block;
        padding: 15px;
    }
    
    .main-nav a::after {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
}

/* General Section Styling */
.service-section, .featured-programs, .infographics, .faq-section {
    padding: 60px 0;
}

/* Membuat warna latar belakang berselang-seling */
.featured-programs, .faq-section {
    background-color: var(--white-color);
}
.infographics {
    background-color: var(--background-color);
}

/* Featured Programs Section */
.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background-color: var(--background-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.program-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.program-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.program-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Infographics Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    margin-top: 40px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-number {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    margin: 10px 0;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    border-bottom: 1px solid #e0e0e0;
}

.faq-question {
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
}

.faq-question i {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1), padding 0.5s ease;
}

.faq-answer p {
    padding: 0 0 20px 0;
    color: var(--text-light);
    line-height: 1.8;
}

/* State when FAQ item is active/open */
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust if answer is very long */
    transition: max-height 1s cubic-bezier(1, 0, 1, 0);
}

/* ================================================= */
/* ==       STYLE KHUSUS HALAMAN PROFIL           == */
/* ================================================= */

/* Memberi warna latar belakang terang untuk beberapa seksi */
.bg-light {
    background-color: #f8f9fa; /* Warna abu-abu sangat muda */
}

/* Header Halaman Sederhana */
.page-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 40px 20px;
    text-align: center;
}
.page-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Styling Umum untuk Seksi di Halaman Profil */
.profile-section {
    padding: 60px 0;
}
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFC107; /* Warna aksen kuning keemasan */
}
.text-center {
    text-align: center;
}
.lead-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Seksi Visi & Misi */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}
.vision-card, .mission-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
}
.card-icon-profil {
    font-size: 2.5rem;
    color: #FFC107; /* Aksen kuning */
    margin-bottom: 15px;
}
.vision-card h3, .mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.mission-card ul {
    list-style-type: none;
    padding-left: 0;
}
.mission-card ul li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}
.mission-card ul li::before {
    content: '\f058'; /* Font Awesome check-circle icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color);
}


/* Seksi Pimpinan */
.leader-section {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}
.leader-photo img {
    width: 100%;
    max-width: 250px;
    border-radius: 50%;
    border: 8px solid var(--white-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.leader-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
}
.leader-title {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}
.leader-quote {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.7;
    border-left: 3px solid #FFC107; /* Aksen kuning */
    padding-left: 20px;
}

/* Seksi Nilai-nilai */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.value-card {
    text-align: center;
}
.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}
.value-card h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .leader-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .leader-photo {
        margin-bottom: 20px;
    }
    .leader-quote {
        text-align: center;
        border-left: none;
        border-top: 3px solid #FFC107;
        padding-left: 0;
        padding-top: 20px;
    }
}

@media (max-width: 768px) {
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================= */
/* ==       STYLE KHUSUS HALAMAN LAYANAN          == */
/* ================================================= */

/* Mengubah warna aksen di page header khusus halaman ini */
.service-page .page-header {
    background-color: #1976D2; /* Biru yang lebih gelap */
}
.service-page .section-title::after {
    background-color: #2196F3; /* Aksen biru */
}

/* Seksi Unggulan: Pelayanan Puskesmas */
.featured-service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}
.featured-service-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.featured-service-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}
.featured-service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}
.puskesmas-services {
    list-style-type: none;
    padding-left: 0;
}
.puskesmas-services li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-weight: 600;
}
.puskesmas-services li::before {
    content: '\f00c'; /* Font Awesome check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-color); /* Warna teal utama */
    font-size: 1.1rem;
}

/* Grid Layanan Lainnya */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background-color: var(--white-color);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    border-top: 4px solid #2196F3; /* Aksen biru */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.service-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E3F2FD; /* Biru muda */
    color: #1976D2; /* Biru tua */
    font-size: 1.8rem;
    margin-bottom: 20px;
}
.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}
.service-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Alur Pelayanan (Steps) */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    text-align: center;
}
.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #2196F3; /* Aksen biru */
    color: var(--white-color);
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(33, 150, 243, 0.4);
}
.step-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}
.step-item p {
    color: var(--text-light);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .featured-service-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================================= */
/* ==        STYLE KHUSUS HALAMAN PROGRAM         == */
/* ================================================= */

/* Warna aksen ungu untuk halaman ini */
.program-page .page-header {
    background-color: #5E35B1; /* Ungu gelap */
}
.program-page .section-title::after {
    background-color: #673AB7; /* Ungu utama */
}

/* Seksi Program Unggulan */
.featured-program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}
.featured-program-image {
    order: 2; /* Pindah gambar ke kanan */
}
.featured-program-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.featured-program-content {
    order: 1;
}
.featured-program-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}
.featured-program-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}
.featured-program-content p {
    color: var(--text-light);
    line-height: 1.8;
}
.program-goals {
    list-style-type: none;
    padding-left: 0;
}
.program-goals li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 12px;
    font-weight: 600;
}
.program-goals li::before {
    content: '\f14a'; /* Font Awesome check-square icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #673AB7; /* Aksen ungu */
    font-size: 1.2rem;
}

/* Program Accordion */
.program-accordion {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.program-accordion-item {
    background-color: var(--white-color);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
    border: 1px solid #e0e0e0;
}
.program-accordion-title {
    width: 100%;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background-color: var(--white-color);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    transition: background-color 0.3s ease;
}
.program-accordion-title:hover {
    background-color: #f9f9f9;
}
.program-accordion-title div {
    display: flex;
    align-items: center;
    gap: 15px;
}
.program-accordion-title div i {
    color: #673AB7; /* Aksen ungu */
    font-size: 1.3rem;
}
.program-accordion-title > .fas { /* Icon plus/minus */
    font-size: 1rem;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}
.program-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.5s ease-in-out;
    padding: 0 20px;
    color: var(--text-light);
    line-height: 1.7;
}

/* State when accordion item is active/open */
.program-accordion-item.active .program-accordion-title > .fas {
    transform: rotate(225deg); /* Rotasi icon plus menjadi X */
}
.program-accordion-item.active .program-accordion-content {
    max-height: 500px; /* Adjust if content is very long */
    padding: 0 20px 20px 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .featured-program-grid {
        grid-template-columns: 1fr;
    }
    .featured-program-image {
        order: 1; /* Pindah gambar ke atas */
        margin-bottom: 30px;
    }
    .featured-program-content {
        order: 2;
    }
}

/* ================================================= */
/* ==          STYLE KHUSUS HALAMAN FAQ           == */
/* ================================================= */

/* Warna aksen oranye untuk halaman ini */
.faq-page .page-header {
    background-color: #F57C00; /* Oranye gelap */
}
.faq-page .btn-primary {
    background-color: #FF9800; /* Oranye utama */
}
.faq-page .btn-primary:hover {
    background-color: #F57C00;
}

.faq-main-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Search Bar */
.faq-search-bar {
    position: relative;
    margin-bottom: 30px;
}
.faq-search-bar i {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    color: #aaa;
}
#faq-search-input {
    width: 100%;
    padding: 15px 20px 15px 50px;
    font-size: 1rem;
    border-radius: 50px;
    border: 1px solid #ddd;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
#faq-search-input:focus {
    outline: none;
    border-color: #FF9800;
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.2);
}

/* Filter Buttons */
.faq-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.filter-btn {
    background-color: #f1f1f1;
    border: 1px solid #ddd;
    color: var(--text-light);
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}
.filter-btn:hover {
    background-color: #e0e0e0;
}
.filter-btn.active {
    background-color: #FF9800; /* Oranye utama */
    color: var(--white-color);
    border-color: #F57C00;
}

/* FAQ Accordion */
.faq-accordion-container {
    border-top: 1px solid #eee;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-question {
    width: 100%;
    padding: 20px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
}
.faq-question span {
    padding-right: 15px;
}
.faq-question i {
    transition: transform 0.3s ease;
    flex-shrink: 0;
    color: #FF9800;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
    padding: 0 10px;
}
.faq-answer p {
    color: var(--text-light);
    line-height: 1.7;
    padding-bottom: 20px;
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-item.active .faq-answer {
    max-height: 300px; /* Adjust if answer is very long */
}
.faq-not-found {
    text-align: center;
    padding: 30px;
    font-weight: 600;
    color: var(--text-light);
}

/* FAQ Call to Action Section */
.faq-cta {
    background-color: #FFF3E0; /* Krem oranye muda */
}
.faq-cta i {
    font-size: 3rem;
    color: #FF9800; /* Oranye utama */
    margin-bottom: 20px;
}
.faq-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}
.faq-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
    color: var(--text-light);
}

/* ================================================= */
/* ==         STYLE KHUSUS HALAMAN KONTAK         == */
/* ================================================= */

/* Warna aksen merah untuk halaman ini */
.contact-page .page-header {
    background-color: #C62828; /* Merah gelap */
}
.contact-page .section-title::after {
    background-color: #D32F2F; /* Merah utama */
}

/* Grid utama kontak */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr; /* Kolom form lebih lebar */
    gap: 50px;
}

/* Kolom Informasi Kontak (Kiri) */
.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}
.contact-info > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}
.contact-info-item i {
    font-size: 1.5rem;
    color: #D32F2F; /* Merah utama */
    margin-top: 5px;
    flex-shrink: 0;
    width: 25px;
    text-align: center;
}
.contact-info-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 5px 0;
}
.contact-info-item p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

/* Kolom Formulir Kontak (Kanan) */
.contact-form-container {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}
.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D32F2F;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2);
}
textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #D32F2F;
    color: var(--white-color);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-btn:hover {
    background-color: #C62828;
}

/* Seksi Peta */
.contact-map {
    width: 100%;
    height: 450px;
    margin-top: 60px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}