/* Definisi Variabel Warna dan Font Dasar */
:root {
    --primary-color: #0A4D68;    
    --secondary-color: #088395; 
    --accent-color: #F0C419;     
    --light-bg: #F8F9FA;         
    --dark-text: #343a40;        
    --light-text: #ffffff;
    --card-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --card-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Reset dan Pengaturan Dasar Body */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-bg);
    color: var(--dark-text);
    line-height: 1.7;
}

/* --- Header & Navigation Bar --- */
.main-header {
    background: var(--light-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 80px;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-container img {
    height: 50px;
    width: auto;
    display: block;
    transform: scale(1.8);
    margin-right: 20px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.2;
}

.logo-tagline {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.8rem;
    line-height: 1.2;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-text);
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid transparent;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-color);
    border-color: var(--accent-color);
}

.burger { display: none; cursor: pointer; }
.burger div { width: 25px; height: 3px; background-color: var(--dark-text); margin: 5px; transition: all 0.3s ease; }

/* --- Hero Banner --- */
.hero-banner {
    background-image: linear-gradient(rgba(10, 77, 104, 0.7), rgba(8, 131, 149, 0.7)), url('/img/banner.jpg');
    height: 60vh;
    background-position: center;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-text);
    padding: 0 1.5rem;
}

.hero-content h1 { font-size: 3.2rem; font-weight: 700; text-shadow: 2px 2px 4px rgba(0,0,0,0.5); margin-bottom: 0.5rem; }
.hero-content p.tagline { font-size: 1.3rem; font-weight: 400; max-width: 700px; margin: 0 auto 2rem auto; opacity: 0.9; font-style: italic; }
.cta-button { background-color: var(--accent-color); color: var(--dark-text); padding: 12px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; font-size: 1rem; transition: background-color 0.3s ease, transform 0.3s ease; display: inline-block; }
.cta-button:hover { background-color: #ffd700; transform: translateY(-3px); }

/* --- Grid Section --- */
main { max-width: 1200px; margin: 0 auto; padding: 3rem 1.5rem; }
.section-title { text-align: center; font-size: 2.5rem; color: var(--primary-color); margin-bottom: 2.5rem; }
.page-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.page-card { background-color: var(--light-text); border-radius: 12px; padding: 2.5rem 2rem; text-align: center; text-decoration: none; color: var(--dark-text); box-shadow: var(--card-shadow); transition: all 0.3s ease; border-bottom: 5px solid transparent; }
.page-card:hover { transform: translateY(-10px); box-shadow: var(--card-shadow-hover); border-color: var(--accent-color); }
.page-card i { font-size: 3.5rem; color: var(--primary-color); margin-bottom: 1.5rem; transition: color 0.3s ease; }
.page-card:hover i { color: var(--secondary-color); }
.page-card h3 { font-size: 1.5rem; font-weight: 600; margin-bottom: 0.75rem; }
.page-card p { font-size: 0.95rem; line-height: 1.6; }

/* --- Footer --- */
.main-footer { background-color: var(--dark-text); color: var(--light-bg); padding: 2rem; text-align: center; }
.social-links { margin-top: 1rem; }
.social-links a { color: var(--light-bg); font-size: 1.5rem; margin: 0 0.75rem; transition: color 0.3s ease; }
.social-links a:hover { color: var(--accent-color); }

/* ======================================================= */
/* --- GAYA TAMBAHAN UNTUK HALAMAN KONTEN --- */
/* ======================================================= */
main.content-page {
    padding: 3rem 1.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #6c757d;
    margin-top: -2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section {
    margin-bottom: 2.5rem;
}
.content-section h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}
.content-section h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}
.content-section p, .content-section ul, .content-section ol {
    margin-bottom: 1rem;
}
.content-section ul, .content-section ol {
    padding-left: 20px;
}

/* Profil */
.profile-card { display: flex; align-items: center; gap: 2rem; background: var(--light-bg); padding: 1.5rem; border-radius: 8px; }
.profile-card img { border-radius: 50%; width: 150px; height: 150px; object-fit: cover; }

/* Layanan */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.service-card { border: 1px solid #ddd; border-radius: 8px; padding: 1.5rem; text-align: center; }
.service-card i { font-size: 3rem; color: var(--primary-color); margin-bottom: 1rem; }
.service-button { display: inline-block; margin-top: 1rem; background: var(--primary-color); color: var(--light-text); text-decoration: none; padding: 8px 15px; border-radius: 5px; transition: background 0.3s; }
.service-button:hover { background: var(--secondary-color); }

/* Informasi Publik */
.info-list { list-style: none; padding: 0; }
.info-item { display: flex; align-items: center; padding: 1rem; border-bottom: 1px solid #eee; }
.info-item i { font-size: 1.5rem; color: var(--accent-color); margin-right: 1rem; }
.info-item a { text-decoration: none; color: var(--primary-color); font-weight: 600; }
.info-item a:hover { text-decoration: underline; }

/* Kontak */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 2rem; align-items: flex-start; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-item i { font-size: 1.5rem; color: var(--primary-color); margin-top: 5px; }
.contact-form label { display: block; margin-bottom: 0.5rem; font-weight: 600; }
.contact-form input, .contact-form textarea { width: 100%; padding: 0.8rem; margin-bottom: 1rem; border: 1px solid #ccc; border-radius: 5px; font-family: 'Poppins', sans-serif; }
.contact-form button { width: 100%; padding: 0.8rem; border: none; background: var(--accent-color); color: var(--dark-text); font-weight: 700; border-radius: 5px; cursor: pointer; transition: background 0.3s; }
.contact-form button:hover { background: #e0b30f; }


/* --- Responsive & Mobile Navigation --- */
@media screen and (max-width: 768px) {
    nav { height: 70px; }
    .logo-container img { height: 40px; }
    .logo-tagline { display: none; }
    .logo-title { font-size: 1rem; }
    .nav-links { top: 70px; position: absolute; right: 0px; height: calc(100vh - 70px); background-color: var(--light-text); display: flex; flex-direction: column; align-items: center; justify-content: space-around; width: 60%; transform: translateX(100%); transition: transform 0.5s ease-in; }
    .nav-links li { margin-left: 0; opacity: 0; }
    .burger { display: block; }
    .nav-active { transform: translateX(0%); }
    .hero-content h1 { font-size: 2.2rem; }
    .hero-content p.tagline { font-size: 1.1rem; }

    /* Responsive untuk halaman konten */
    .profile-card { flex-direction: column; text-align: center; }
    .contact-grid { grid-template-columns: 1fr; }
}

@keyframes navLinkFade { from { opacity: 0; transform: translateX(50px); } to { opacity: 1; transform: translateX(0px); } }
.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }


.home-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Bagian Tentang Kami */
.home-about {
    padding: 4rem 0;
}
.home-about .home-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.about-text p {
    margin-bottom: 1.5rem;
}
.cta-button-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-block;
}
.cta-button-secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}


/* Bagian Nilai-Nilai Kami */
.home-values {
    background-color: #f1f5f9; /* Warna latar yang lembut */
    padding: 4rem 0;
    text-align: center;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.value-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
}
.value-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    background-color: var(--primary-color);
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-bottom: 1rem;
}
.value-item h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Bagian Ajakan Bertindak (CTA) */
.home-cta {
    background-color: var(--primary-color);
    color: var(--light-text);
    text-align: center;
    padding: 4rem 1.5rem;
}
.home-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.home-cta p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.home-cta .cta-button {
    transform: scale(1.1);
}
.home-cta .cta-button:hover {
    background-color: #ffd700;
    transform: scale(1.15) translateY(-3px);
}


/* --- Penyesuaian Responsive untuk Konten Baru --- */
@media screen and (max-width: 992px) {
    .home-about .home-container {
        grid-template-columns: 1fr;
    }
    .about-image {
        order: -1; /* Pindahkan gambar ke atas di layar kecil */
    }
    .about-text .section-title {
        text-align: center;
    }
}

/* =============================================== */
/* --- GAYA TAMBAHAN UNTUK HALAMAN PROFIL --- */
/* =============================================== */

/* Banner Halaman */
.page-banner {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 3rem 1.5rem;
    text-align: center;
}
.page-banner h1 {
    font-size: 2.8rem;
    font-weight: 700;
}
.page-banner p {
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Sambutan Kepala Kantor */
.profile-welcome {
    padding: 4rem 0;
}
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}
.profile-photo img {
    width: 100%;
    max-width: 350px;
    border-radius: 50%;
    border: 8px solid var(--light-text);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.profile-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.profile-text p {
    margin-bottom: 1rem;
}
.signature {
    margin-top: 1.5rem;
    font-style: italic;
    color: var(--dark-text);
}
.signature strong {
    font-style: normal;
    font-weight: 700;
}

/* Visi & Misi */
.vision-mission-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}
.vm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.vm-card {
    background: var(--light-text);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    border-top: 5px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.vm-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.vm-card h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.vm-card ul {
    list-style: none;
    padding: 0;
}

/* Sejarah */
.history-section {
    padding: 4rem 0;
}
.history-section blockquote {
    border-left: 5px solid var(--accent-color);
    margin: 2rem 0;
    padding: 1rem 1.5rem;
    background: #f8f9fa;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
}

/* Struktur Organisasi */
.org-structure-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}
.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    text-align: center;
}
.structure-item {
    background: var(--light-text);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
}
.structure-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.structure-item h4 {
    font-size: 1.2rem;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}
.structure-item p {
    font-style: italic;
    color: #6c757d;
}

/* Penyesuaian Responsive untuk Profil */
@media screen and (max-width: 992px) {
    .welcome-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .profile-photo {
        margin-bottom: 2rem;
    }
    .profile-photo img {
        margin: 0 auto;
    }
}

/* =============================================== */
/* --- GAYA TAMBAHAN UNTUK HALAMAN LAYANAN --- */
/* =============================================== */

/* Layanan Unggulan */
.service-feature-section {
    padding: 4rem 0;
}
.feature-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.feature-item.reverse .feature-text {
    order: -1;
}
.feature-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.feature-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.feature-text h3 i {
    margin-right: 1rem;
    color: var(--accent-color);
}
.feature-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}
.feature-text ul li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.feature-text ul li i {
    color: var(--secondary-color);
    margin-right: 0.75rem;
}

/* Layanan Pendukung */
.other-services-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
    text-align: center;
}
.service-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.service-card-item {
    background: var(--light-text);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--card-shadow);
    transition: all 0.3s ease;
}
.service-card-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}
.service-card-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.service-card-item h4 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}
.faq-container {
    max-width: 800px;
    margin: 2rem auto 0 auto;
}
.faq-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-item summary {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.25rem;
    cursor: pointer;
    list-style: none; /* Hapus panah default */
    position: relative;
    color: var(--primary-color);
}
.faq-item summary::-webkit-details-marker {
    display: none; /* Hapus panah default di Chrome */
}
.faq-item summary::after {
    content: '\f078'; /* Font Awesome Chevron Down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease;
}
.faq-item[open] summary::after {
    transform: translateY(-50%) rotate(180deg);
}
.faq-item p {
    padding: 0 1.25rem 1.25rem 1.25rem;
    border-top: 1px solid #e0e0e0;
    margin: 0;
}

/* Penyesuaian Responsive untuk Layanan */
@media screen and (max-width: 992px) {
    .feature-item,
    .feature-item.reverse {
        grid-template-columns: 1fr;
    }
    .feature-item.reverse .feature-text {
        order: 0; /* Kembalikan urutan normal di mobile */
    }
    .feature-text {
        text-align: center;
    }
    .feature-text ul {
        text-align: left;
        display: inline-block;
    }
}

/* =============================================== */
/* --- GAYA TAMBAHAN UNTUK HALAMAN PROGRAM --- */
/* =============================================== */

/* Program Unggulan (bisa menggunakan style dari halaman layanan) */
.program-feature-section {
    padding: 4rem 0;
}
/* Menggunakan kembali style .feature-item dari layanan.css */

/* Program Lainnya */
.other-programs-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}
.program-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.program-card {
    background: var(--light-text);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-left: 5px solid var(--accent-color);
}
.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--card-shadow-hover);
}
.program-card .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 1.5rem 1rem 1.5rem;
}
.program-card .card-header i {
    font-size: 2rem;
    color: var(--primary-color);
}
.program-card .card-header h4 {
    font-size: 1.3rem;
    color: var(--dark-text);
}
.program-card .card-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    flex-grow: 1; /* Membuat semua card sama tinggi */
    color: #555;
}
.program-card .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background-color: #f8f9fa;
    border-top: 1px solid #eee;
    border-radius: 0 0 12px 12px;
}
.program-card .card-footer a {
    text-decoration: none;
    font-weight: 600;
    color: var(--primary-color);
}
.program-card .card-footer a:hover {
    text-decoration: underline;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #fff;
}
.status-badge.status-aktif {
    background-color: #28a745; /* Hijau */
}
.status-badge.status-berkala {
    background-color: #17a2b8; /* Biru Info */
}
.status-badge.status-berkelanjutan {
    background-color: #ffc107; /* Kuning */
    color: var(--dark-text);
}

/* Testimonial Section */
.testimonial-section {
    padding: 4rem 0;
}
.testimonial-box {
    background: var(--primary-color);
    color: var(--light-text);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.testimonial-box::before {
    content: '\f10d'; /* Font Awesome Quote Left */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 3rem;
    color: var(--secondary-color);
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    opacity: 0.5;
}
.testimonial-box blockquote {
    font-size: 1.3rem;
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    border: none;
    padding: 0;
}
.testimonial-box cite {
    display: block;
    margin-top: 1.5rem;
    font-weight: 600;
    font-style: normal;
    color: var(--accent-color);
}

/* =============================================== */
/* --- GAYA TAMBAHAN UNTUK HALAMAN KONTAK --- */
/* =============================================== */

/* Kartu Info Kontak */
.contact-cards-section {
    padding: 4rem 0;
}
.contact-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.contact-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--card-shadow);
    border-bottom: 5px solid var(--accent-color);
}
.contact-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}
.contact-card h3 {
    font-size: 1.5rem;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

/* Formulir Kontak */
.contact-form-section {
    background-color: #f8f9fa;
    padding: 4rem 0;
}
.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}
.contact-intro-text h3 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.contact-intro-text img {
    width: 100%;
    margin-top: 1.5rem;
    border-radius: 12px;
}

.main-contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--dark-text);
}
.main-contact-form input,
.main-contact-form textarea,
.main-contact-form select {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
}
.main-contact-form input:focus,
.main-contact-form textarea:focus,
.main-contact-form select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 77, 104, 0.2);
}
.main-contact-form button {
    width: 100%;
    font-size: 1.1rem;
}

/* Social Media Follow */
.social-media-follow {
    padding: 4rem 0;
    text-align: center;
}
.social-icon-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}
.social-icon-list .social-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--light-text);
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon-list .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    color: #fff;
}
/* Warna hover khusus media sosial */
.social-icon-list .social-link.facebook:hover { background-color: #1877F2; }
.social-icon-list .social-link.twitter:hover { background-color: #1DA1F2; }
.social-icon-list .social-link.instagram:hover { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.social-icon-list .social-link.youtube:hover { background-color: #FF0000; }


/* Penyesuaian Responsive untuk Kontak */
@media screen and (max-width: 992px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
    }
}