/* ===== PENGATURAN DASAR & FONT ===== */
:root {
    --primary-color: #2C5784; /* Biru Profesional */
    --secondary-color: #28a745; /* Hijau Kesehatan */
    --dark-grey: #333333;
    --light-grey: #f4f4f4;
    --white-color: #ffffff;
    --text-color: #555555;
    --font-title: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fdfdfd;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BANNER SECTION ===== */
.banner {
    background-color: var(--white-color);
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-area {
    display: flex;
    align-items: center;
}

.logo {
    width: 60px;
    height: 60px;
    margin-right: 15px;
}

.logo-text h1 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.1;
}

.logo-text h2 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin: 0;
    font-weight: 400;
}

.header-contact {
    text-align: right;
    font-size: 0.9rem;
    color: var(--primary-color);
}

/* ===== MENU NAVIGASI ===== */
.navigation-menu {
    background-color: var(--primary-color);
    padding: 0.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navigation-menu ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
}

.navigation-menu ul li a {
    color: var(--white-color);
    text-decoration: none;
    padding: 10px 20px;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 1rem;
    display: block;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 5px;
}

.navigation-menu ul li a:hover,
.navigation-menu ul li a.active {
    background-color: var(--white-color);
    color: var(--primary-color);
}


/* ===== PAGE LINKS SECTION (CARDS) ===== */
.page-links {
    padding: 4rem 0;
    background-color: var(--light-grey);
}

.section-title {
    text-align: center;
    font-family: var(--font-title);
    font-size: 2.2rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    font-size: 1.1rem;
}

.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.card {
    background: var(--white-color);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 25px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.card h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.card p {
    flex-grow: 1; /* Makes paragraph take available space */
    margin-bottom: 15px;
}

.card .card-link {
    font-weight: 700;
    color: var(--secondary-color);
    align-self: flex-start; /* Aligns the link to the start */
}


/* ===== WELCOME SECTION ===== */
.welcome-section {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--white-color);
}

.welcome-section h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.welcome-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--dark-grey);
    color: #e0e0e0;
    padding-top: 3rem;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 3rem;
}

.footer-about, .footer-links, .footer-contact {
    flex: 1;
    min-width: 250px;
}

.site-footer h4 {
    font-family: var(--font-title);
    color: var(--white-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.footer-links ul {
    list-style-type: none;
}

.footer-links ul li a {
    color: #e0e0e0;
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #444;
    background-color: #222;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        text-align: center;
    }

    .header-contact {
        text-align: center;
        margin-top: 1rem;
    }
    
    .navigation-menu ul {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        flex-direction: column;
    }
}

/* ===== FEATURED PROGRAMS SECTION ===== */
.featured-programs {
    padding: 4rem 0;
    background-color: var(--light-grey);
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 2rem;
}

.program-item {
    background: var(--white-color);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
    border: 1px solid #e0e0e0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(44, 87, 132, 0.1);
}

.program-item .program-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    /* Ganti bagian ini jika menggunakan gambar/ikon asli */
    font-weight: bold;
    font-family: var(--font-title);
}

.program-item h3 {
    font-family: var(--font-title);
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

/* ===== KEY FACTS SECTION ===== */
.key-facts {
    padding: 4rem 0;
    background-color: var(--primary-color);
}

.key-facts .section-title,
.key-facts .section-subtitle {
    color: var(--white-color);
}

.facts-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 2rem;
    text-align: center;
}

.fact-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fact-number {
    font-family: var(--font-title);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.fact-label {
    font-size: 1.1rem;
    color: var(--light-grey);
    margin-top: 0.5rem;
}

/* ===== SERVICE FLOW SECTION ===== */
.service-flow {
    padding: 4rem 0;
    background-color: var(--light-grey);
}

.flow-steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2.5rem;
}

.flow-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-content h4 {
    font-family: var(--font-title);
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.step-content p {
    line-height: 1.5;
}

/* ===== HERO BANNER SECTION ===== */
.hero-banner {
    /* Latar belakang gradien biru tua, serasi dengan tema */
    background: linear-gradient(rgba(44, 87, 132, 0.8), rgba(44, 87, 132, 0.8)), url(/img/banner.jpg);
    background-size: cover;
    background-position: center;
    padding: 6rem 0;
    text-align: center;
    color: var(--white-color);
}

.hero-content h1 {
    font-family: var(--font-title);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 800px;
    margin: 0 auto 1rem auto;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2rem auto;
    opacity: 0.9;
}

.hero-button {
    display: inline-block;
    background-color: var(--secondary-color); /* Warna hijau yang mencolok */
    color: var(--white-color);
    padding: 14px 30px;
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px; /* Bentuk tombol pil yang modern */
    transition: background-color 0.3s, transform 0.3s;
}

.hero-button:hover {
    background-color: #218838; /* Warna hijau sedikit lebih gelap saat hover */
    transform: translateY(-3px);
}

/* Penyesuaian untuk layar kecil (Mobile) */
@media (max-width: 768px) {
    .hero-banner {
        padding: 4rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* =========================================
   PROFIL PAGE STYLES
   ========================================= */

/* ===== BANNER JUDUL HALAMAN ===== */
.page-header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-title);
    font-size: 2.5rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.8;
}

/* ===== VISI & MISI SECTION ===== */
.vision-mission-section {
    padding: 4rem 0;
}

.vm-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.vision-box, .mission-box {
    padding: 30px;
    border-radius: 8px;
}

.vision-box {
    background-color: #e9f5ff; /* Biru muda */
    border: 2px solid #a3c9f0;
    text-align: center;
}

.mission-box {
    background-color: #e8ffee; /* Hijau muda */
    border-left: 5px solid var(--secondary-color);
}

.vision-box h3, .mission-box h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--dark-grey);
    margin-bottom: 1rem;
}

.icon-vision, .icon-mission {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.icon-vision { color: var(--primary-color); }
.icon-mission { color: var(--secondary-color); }

.mission-box ul {
    list-style-type: none;
}

.mission-box ul li {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.mission-box ul li .fa-check-circle {
    color: var(--secondary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* ===== STRUKTUR ORGANISASI SECTION ===== */
.structure-section {
    padding: 4rem 0;
    background-color: var(--light-grey);
}

.leader-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.leader-card {
    background-color: var(--white-color);
    text-align: center;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    width: 250px;
}

.leader-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    object-fit: cover;
    margin-bottom: 1rem;
}

.leader-card h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--dark-grey);
}

.leader-card .leader-title {
    font-size: 0.9rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.department-list {
    margin-top: 3rem;
    text-align: center;
    background-color: var(--white-color);
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.department-list h3 {
    font-family: var(--font-title);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-grey);
    padding-bottom: 0.5rem;
}

.department-list ul {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

/* ===== NILAI-NILAI SECTION ===== */
.values-section {
    padding: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 2rem;
}

.value-card {
    text-align: center;
    padding: 25px;
}

.value-card .value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--white-color);
}

.value-card h4 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

/* Warna-warni untuk ikon nilai */
.icon-blue { background-color: #007bff; }
.icon-green { background-color: #28a745; }
.icon-orange { background-color: #fd7e14; }
.icon-red { background-color: #dc3545; }


/* ===== RESPONSIVE UNTUK HALAMAN PROFIL ===== */
@media(max-width: 992px) {
    .vm-container {
        grid-template-columns: 1fr;
    }
}

/* ===== LANDASAN HUKUM SECTION ===== */
.legal-basis-section {
    padding: 4rem 0;
    background-color: var(--light-grey);
}

.document-grid {
    margin-top: 2.5rem;
    display: grid;
    gap: 25px;
}

.document-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: box-shadow 0.3s, transform 0.3s;
}

.document-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.document-icon {
    flex-shrink: 0;
    font-size: 2.5rem;
    color: var(--primary-color);
}

.document-content h4 {
    font-family: var(--font-title);
    color: var(--dark-grey);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.document-link {
    margin-left: auto;
    flex-shrink: 0;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.document-link:hover {
    background-color: #218838;
}

@media(max-width: 768px) {
    .document-card {
        flex-direction: column;
        text-align: center;
    }
    .document-link {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* =========================================
   LAYANAN PAGE STYLES
   ========================================= */

/* Section utama layanan dengan sedikit padding */
.services-section {
    padding: 2rem 0 4rem 0;
}

/* Judul untuk setiap kategori layanan */
.service-category {
    margin-bottom: 4rem;
}

.service-category h2 {
    font-family: var(--font-title);
    font-size: 2rem;
    color: var(--dark-grey);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 10px;
}
/* Garis bawah dekoratif untuk judul kategori */
.service-category h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

/* Grid untuk kartu-kartu layanan */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Styling untuk setiap kartu layanan */
.service-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    border-bottom: 5px solid transparent;
    box-shadow: 0 4px 15px rgba(0,0,0,0.07);
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

/* Ikon di dalam kartu layanan */
.service-card .service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.2rem;
    color: var(--white-color);
}

.service-card h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* ===== LAYANAN DARURAT CTA ===== */
.emergency-cta {
    background: linear-gradient(45deg, var(--primary-color), #1d3a5a);
    color: var(--white-color);
    padding: 4rem 0;
    text-align: center;
}

.emergency-cta .cta-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.emergency-cta h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.emergency-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-phone-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white-color);
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.4);
}

.cta-phone-button:hover {
    background-color: #218838;
    transform: scale(1.05);
}

/* =========================================
   INFORMASI PUBLIK PAGE STYLES
   ========================================= */

.info-section {
    padding: 4rem 0;
}

/* Navigasi Tab */
.tab-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 2.5rem;
}

.tab-link {
    padding: 12px 25px;
    border: none;
    background-color: transparent;
    cursor: pointer;
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    border-bottom: 3px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tab-link:hover {
    color: var(--primary-color);
}

.tab-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

/* Konten Tab */
.tab-content {
    display: none; /* Disembunyikan secara default oleh JS */
    animation: fadeIn 0.5s;
}

.tab-content.active {
    display: block; /* Ditampilkan oleh JS */
}

.tab-content h3 {
    font-family: var(--font-title);
    font-size: 1.6rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}
.tab-content p {
    margin-bottom: 2rem;
    max-width: 800px;
}

/* Menggunakan kembali style dari pilihan sebelumnya untuk konsistensi */
.document-grid {
    margin-top: 1.5rem;
    display: grid;
    gap: 25px;
}
.document-card {
    background-color: var(--white-color);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.document-icon { flex-shrink: 0; font-size: 2.5rem; }
.document-content h4 { font-family: var(--font-title); color: var(--dark-grey); font-size: 1.2rem; margin-bottom: 0.25rem; }
.document-link { margin-left: auto; flex-shrink: 0; background-color: var(--secondary-color); color: var(--white-color); padding: 8px 15px; text-decoration: none; border-radius: 5px; font-weight: 700; font-size: 0.9rem; }

/* Alur Permohonan Informasi */
.info-request-flow {
    padding: 4rem 0;
    background-color: var(--light-grey);
}
/* Menggunakan kembali style .flow-steps-container & .flow-step dari CSS sebelumnya */


/* Animasi Sederhana */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media(max-width: 600px) {
    .tab-links {
        flex-direction: column;
        align-items: stretch;
    }
}

/* =========================================
   KONTAK PAGE STYLES
   ========================================= */

.contact-section {
    padding: 4rem 0;
}

/* Grid utama 2 kolom: detail kontak dan form */
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
}

/* Styling untuk kolom kiri (detail kontak) */
.contact-details h2, .contact-form-container h2 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    color: var(--dark-grey);
    margin-bottom: 0.5rem;
}

.contact-details p, .contact-form-container p {
    margin-bottom: 2rem;
}

/* Kartu untuk setiap item info kontak */
.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: var(--white-color);
}

.contact-text h4 {
    font-family: var(--font-title);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-text p {
    margin-bottom: 0;
    line-height: 1.5;
}

/* Styling untuk kolom kanan (form) */
.contact-form-container {
    background-color: var(--light-grey);
    padding: 30px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark-grey);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(44, 87, 132, 0.3);
}

.submit-button {
    width: 100%;
    padding: 15px;
    border: none;
    background-color: var(--secondary-color);
    color: var(--white-color);
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #218838;
    transform: translateY(-2px);
}


/* ===== SOCIAL MEDIA SECTION ===== */
.social-media-section {
    padding: 3rem 0;
    text-align: center;
    background-color: var(--light-grey);
}

.social-media-section h3 {
    font-family: var(--font-title);
    font-size: 1.5rem;
    color: var(--dark-grey);
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons .social-icon {
    width: 50px;
    height: 50px;
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 1.3rem;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
}

.social-icons .social-icon:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
    transform: scale(1.1);
}

/* ===== RESPONSIVE UNTUK HALAMAN KONTAK ===== */
@media (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}