/* =========================================
   GLOBAL FONT DECLARATION (LOKAL)
========================================= */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Base Styles & Resets */
* {
    margin: 0;
    padding: 0;
    box-shadow: none;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #ffffff;
    color: #000000;
    line-height: 1.6;
    overflow-x: hidden;
    /* Hilangkan padding-top global agar tidak double dengan hero */
}

/* Typography & Colors */
h1, h2, h3 {
    color: #000000;
}

.text-accent {
    color: #7dc02f;
}

.btn-primary {
    display: inline-block;
    background-color: #7dc02f;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: background 0.3s, transform 0.2s, box-shadow 0.2s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(125, 192, 47, 0.2);
}

.btn-primary:hover {
    background-color: #68a027;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(125, 192, 47, 0.3);
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Modifikasi: Kecualikan hero-section agar padding tidak double */
section:not(.hero-section) {
    padding: 80px 0;
}

/* Responsive */
@media (max-width: 768px) {
    section:not(.hero-section) {
        padding: 50px 0;
    }
}

/* =========================================
   QUICK LINKS & POPUP STYLES (FULL ANIMASI)
========================================= */

/* Section Utama dengan Background Hijau Full Width */
.quick-links-section {
    background-color: #7dc02f;
    padding: 60px 0;
    margin: 0;
    width: 100%;
    position: relative; /* Wajib untuk circuit */
    overflow: hidden; /* Wajib agar circuit tidak keluar area hijau */
}

/* =========================================
   ANIMATED CIRCUIT PATTERN (BACKGROUND)
========================================= */
.circuit-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Jangan menghalangi klik pada card */
    z-index: 1;
    opacity: 0.8; /* Tingkat transparansi sirkuit */
}

.circuit-svg {
    width: 100%;
    height: 100%;
}

/* Garis dasar sirkuit (redup) */
.circuit-base {
    fill: none;
    stroke: rgba(255, 255, 255, 0.15);
    stroke-width: 2;
}

/* Titik-titik node sirkuit */
.circuit-node {
    fill: rgba(255, 255, 255, 0.3);
}

/* Aliran listrik yang menyala */
.circuit-flow {
    fill: none;
    stroke: #ffffff; /* Warna cahaya */
    stroke-width: 3;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.9));
    stroke-dasharray: 100 2500; /* Panjang garis cahaya vs jarak kosong */
    stroke-dashoffset: 2500;
    animation: flowAnimation 8s linear infinite;
}

/* Variasi kecepatan dan arah aliran */
.flow-1 { animation-duration: 7s; stroke-dasharray: 150 2500; }
.flow-2 { animation-duration: 10s; animation-delay: 2s; stroke-dasharray: 200 2500; }
.flow-3 { animation-duration: 6s; animation-delay: 1s; stroke-dasharray: 120 2000; }
.flow-4 { animation-duration: 9s; animation-delay: 3s; stroke-dasharray: 180 2000; }

@keyframes flowAnimation {
    0% { stroke-dashoffset: 2500; }
    100% { stroke-dashoffset: -500; }
}

/* Grid Layout untuk Card */
.ql-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative; /* Agar konten card di atas circuit */
    z-index: 10;
}

/* Styling Card (MODIFIKASI GLASSMORPHISM) */
.ql-card {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    border-bottom: 6px solid transparent;
    opacity: 1; /* Dipertahankan untuk standby animasi JS */
}

/* Hover Effect Card (MODIFIKASI GLASSMORPHISM) */
.ql-card:hover {
    transform: translateY(-15px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-bottom: 6px solid #ffffff;
}

.ql-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    transition: all 0.7s ease;
    z-index: 1;
}

.ql-card:hover::before {
    left: 200%;
}

/* Ikon di dalam Card (MODIFIKASI GLASSMORPHISM) */
.ql-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: #68a027;    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.ql-card:hover .ql-icon {
    transform: rotateY(360deg);
}

.ql-icon i {
    font-size: 35px;
    color: #ffffff;
    transition: color 0.3s ease;
}

.ql-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

/* Teks di dalam Card (MODIFIKASI GLASSMORPHISM) */
.ql-card h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.ql-card p {
    font-size: 0.95rem;
    color: #f0f0f0;
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.fade-in-up {
    animation: slideUpFade 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   POP-UP / MODAL STYLES
========================================= */

/* Latar Belakang Gelap (Overlay) */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000; /* Harus di atas header */
    display: none; /* Disembunyikan secara default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}

/* Kotak Konten Pop-up */
.popup-content {
    background: #ffffff;
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    position: relative;
    display: none; /* Disembunyikan secara default */
    transform: scale(0.8) translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* Animasi Muncul Pop-up */
.popup-content.active {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Tombol Close (X) */
.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.popup-close:hover {
    color: #ff3333;
}

/* Teks di dalam Pop-up */
.popup-content h2 {
    color: #333333;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.popup-content p {
    color: #555555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Tombol Aksi di dalam Pop-up */
.btn-popup {
    display: inline-block;
    background: #7dc02f;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-popup:hover {
    background: #ffffff;
    color: #7dc02f;
    border: 2px solid #7dc02f;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ql-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 15px;
    }
    
    .ql-card {
        padding: 30px 20px;
    }

    .ql-card h3 {
        font-size: 1rem;
    }

    .ql-card p {
        font-size: 0.8rem;
    }

    .popup-content {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .ql-grid {
        grid-template-columns: 1fr; /* Jadi 1 kolom di layar sangat kecil */
    }
}

/* =========================================
   REVISI: SCROLLABLE TIMELINE
========================================= */
.timeline-container {
    position: relative;
    max-width: 650px;
    margin: 0 auto;
    text-align: left;
    padding-left: 10px; 
    
    /* --- TAMBAHAN UNTUK SCROLL --- */
    max-height: 50vh; /* Membatasi tinggi maksimal (50% dari tinggi layar) */
    overflow-y: auto; /* Memunculkan scroll vertikal jika konten berlebih */
    padding-right: 15px; /* Jarak agar teks tidak menabrak scrollbar */
}

/* Mempercantik Scrollbar (Khusus Webkit: Chrome/Safari/Edge) */
.timeline-container::-webkit-scrollbar {
    width: 6px;
}
.timeline-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.timeline-container::-webkit-scrollbar-thumb {
    background-color: #7dc02f; /* Warna hijau Hexa */
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Lingkaran angka (Dot) */
.timeline-dot {
    position: relative;
    z-index: 2;
    width: 34px;
    height: 34px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
    color: #999999;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Konten teks timeline */
.timeline-content {
    margin-left: 20px;
    background: #f9f9f9;
    padding: 20px 25px;
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    width: 100%;
}

.timeline-content h3 {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Efek Hover & Highlight (Fokus pada Step 1) */
.timeline-item:hover .timeline-dot,
.timeline-item.highlight .timeline-dot {
    border-color: #7dc02f;
    color: #7dc02f;
    box-shadow: 0 0 15px rgba(125, 192, 47, 0.2);
}

.timeline-item:hover .timeline-content,
.timeline-item.highlight .timeline-content {
    background: #ffffff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left-color: #7dc02f;
}

/* Responsif untuk layar HP */
@media (max-width: 480px) {
    .timeline-container::before {
        left: 22px;
    }
    .timeline-dot {
        width: 26px;
        height: 26px;
        font-size: 0.85rem;
    }
    .timeline-content {
        margin-left: 15px;
        padding: 15px;
    }
}

/* =========================================
   MODAL LEBAR & CAROUSEL LAYANAN
========================================= */

/* Class khusus untuk modal yang butuh area luas (seperti Services) */
.popup-content.modal-wide {
    max-width: 850px;
    padding: 40px 30px;
}

/* Container Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track / Lintasan Geser */
.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 5px 20px 5px; /* Padding bawah untuk area scrollbar */
    scrollbar-width: thin;
    scrollbar-color: #7dc02f #f0f0f0;
}

/* Custom Scrollbar untuk Webkit (Chrome/Safari) */
.carousel-track::-webkit-scrollbar {
    height: 8px;
}
.carousel-track::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 10px;
}
.carousel-track::-webkit-scrollbar-thumb {
    background-color: #7dc02f;
    border-radius: 10px;
}

/* Card Individual di dalam Carousel */
.carousel-card {
    min-width: 260px;
    max-width: 260px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 25px 20px;
    text-align: left;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

/* Efek saat card layanan disorot */
.carousel-card:hover {
    border-color: #7dc02f;
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(125, 192, 47, 0.15);
}

.carousel-card h3 {
    color: #7dc02f;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.carousel-card p {
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1; /* Mendorong tombol 'read-more' ke paling bawah */
}

.carousel-card .read-more {
    font-weight: 800;
    color: #333333;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.carousel-card:hover .read-more {
    color: #7dc02f;
}

/* =========================================
   PENYESUAIAN CARD PORTOFOLIO & LOGO KLIEN
========================================= */
.portfolio-card {
    justify-content: flex-start; /* Memastikan isi rata atas */
}

.client-logo {
    width: 45px; /* Ukuran logo kecil dan proporsional */
    height: 45px;
    object-fit: contain; /* Mencegah logo gepeng */
    margin-bottom: 15px;
    border-radius: 6px; 
    background-color: #ffffff; /* Memastikan logo terlihat jelas */
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); /* Memberikan sedikit kedalaman pada logo */
}

/* Penyesuaian Carousel di Layar HP */
@media (max-width: 768px) {
    .popup-content.modal-wide {
        padding: 30px 15px;
    }
    .carousel-card {
        min-width: 230px;
        padding: 20px 15px;
    }
}

/* =========================================
   MASCOT FLYER & JETPACK GLOW ANIMATION
========================================= */

/* Container Maskot Terbang */
.mascot-flyer {
    position: fixed; /* Penting agar bisa bergerak bebas di layar */
    top: 0;
    left: 0;
    pointer-events: none; /* Jangan mengganggu interaksi mouse ke card */
    z-index: 1000; /* Harus di atas card */
    width: 60px; /* Diperkecil agar proporsional sebagai icon kecil yang terbang */
    height: auto;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1); /* Animasi smooth saat mengejar cursor */
    transform: translate(0,0) scale(0.6);
}

.mascot-flyer img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(125, 192, 47, 0.8)); /* Efek pendar dasar */
    animation: jetpackGlow 2s infinite ease-in-out; /* Animasi berdenyut */
}

/* Animasi Berdenyut Jetpack Glow */
@keyframes jetpackGlow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(125, 192, 47, 0.8)) drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(125, 192, 47, 1)) drop-shadow(0 0 10px rgba(255, 255, 255, 0.6));
    }
}

/* =========================================
   PAGE TRANSITION (CYBER DOORS) STYLES
========================================= */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 100000; /* Harus paling depan, menutupi segalanya */
    pointer-events: none; /* Biarkan klik tembus saat layar terbuka */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* Panel Pintu (Atas dan Bawah) */
.pt-panel {
    position: absolute;
    width: 100%;
    height: 50vh;
    background-color: #7dc02f;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1;
}

.pt-top {
    top: 0;
    transform: translateY(-100%); /* Sembunyi ke atas */
}

.pt-bottom {
    bottom: 0;
    transform: translateY(100%); /* Sembunyi ke bawah */
}

/* Logo di Tengah Pintu */
.pt-logo {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s ease;
    letter-spacing: 1px;
}

.pt-logo span {
    font-weight: 400;
}

/* STATE: Animasi Sedang Berjalan (Layar Tertutup) */
body.is-transitioning {
    overflow: hidden; /* Mencegah scroll saat transisi */
}

body.is-transitioning .page-transition-overlay {
    pointer-events: all; /* Blokir klik lain saat animasi berjalan */
}

body.is-transitioning .pt-top,
body.is-transitioning .pt-bottom {
    transform: translateY(0); /* Pintu Menutup */
}

body.is-transitioning .pt-logo {
    opacity: 1; /* Logo Muncul */
    transform: scale(1);
    transition-delay: 0.3s;
}



/* =========================================
   PENYESUAIAN CAROUSEL UNTUK OUR TEAM
========================================= */
.team-card {
    text-align: center; /* Untuk tim, teks di tengah terlihat lebih personal */
    cursor: default; /* Menghilangkan cursor pointer karena tidak bisa diklik pindah halaman */
}

.team-card:hover {
    transform: translateY(-5px); /* Tetap ada efek melayang kecil */
    border-color: transparent; /* Hilangkan border hijau saat hover khusus untuk tim */
}

.team-img {
    width: 100%;
    height: 200px; /* Seragamkan tinggi foto tim */
    object-fit: cover; /* Mencegah gambar tim menjadi gepeng */
    object-position: top center; /* Fokus ke wajah */
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #f0f7e9; /* Warna dasar jika PNG transparan */
}

.team-card p {
    margin-bottom: 0; /* Menghilangkan sisa ruang kosong di bawah role */
    font-weight: 600;
}


/* =========================================
   IMAGE LIGHTBOX (ZOOM) STYLES
========================================= */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 100000; /* Paling atas, menutupi modal tim */
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: zoom-out; /* Menandakan klik dimana saja akan menutup zoom */
}

.lightbox-overlay.active {
    opacity: 1;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    transform: scale(0.8);
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    cursor: default; /* Mencegah cursor berubah saat kursor di atas gambar */
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1); /* Efek membesar (zoom in) saat muncul */
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #ffffff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 100001;
}

.lightbox-close:hover {
    color: #7dc02f;
}

/* Modifikasi gambar tim untuk memberitahu user bisa diklik */
.team-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top center;
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: #f0f7e9;
    cursor: zoom-in; /* Tambahan pointer zoom */
}


/* =========================================
   INSTAGRAM FEED (DI BAWAH HERO - LOKASI BACKGROUND PUTIH)
========================================= */
#instagram-feed {
    background-color: #585858; /* Warna abu-abu sangat muda/bersih */
    padding: 60px 0; /* Memberikan ruang atas dan bawah agar warna latarnya terlihat proporsional */
}

.ig-feed-wrapper {
    width: 100%;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolom sejajar di desktop */
    gap: 30px; 
    width: 100%;
}

/* Revisi Desain Card untuk Background Putih */
.ig-card {
    background: #ffffff; /* Latar putih solid */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); /* Bayangan luar yang sangat lembut */
    border: 1px solid #f0f0f0; /* Garis tepi sangat tipis sebagai penegas batas */
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ig-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15); /* Bayangan sedikit menebal saat hover */
    border-color: #7dc02f; /* Muncul aksen hijau khas Hexa saat disentuh kursor */
}

.ig-card iframe {
    display: block;
    width: 100%;
    height: 400px; /* Tinggi diseragamkan */
    border-radius: 15px;
    background: #ffffff;
}

/* RESPONSIVE: Ubah ke 2 Kolom di Tablet */
@media (max-width: 992px) {
    .ig-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* RESPONSIVE: Ubah ke Carousel di Mobile */
@media (max-width: 768px) {
    .ig-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        scrollbar-width: none; /* Menyembunyikan scrollbar di Firefox */
    }
    
    .ig-grid::-webkit-scrollbar {
        display: none; /* Menyembunyikan scrollbar di Chrome/Safari/Edge */
    }

    .ig-card {
        width: 90%; 
        flex: 0 0 90%; 
        flex-shrink: 0;
        scroll-snap-align: center;
    }
}


/* =========================================
   FOOTER STYLES
========================================= */
.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 80px 0 20px;
    font-size: 0.95rem;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #7dc02f;
    border-radius: 2px;
}

/* Col 1: About */
.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo span {
    font-weight: 400;
    font-size: 16px;
    color: #7dc02f;
}

.footer-col p {
    color: #a0a0a0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #7dc02f;
    transform: translateY(-3px);
}

.social-links img {
    width: 20px;
    height: 20px;
    object-fit: contain; /* Memastikan gambar tidak tertarik/gepeng */
    display: block;      /* Menghilangkan whitespace di bawah gambar */
    /* Hapus filter sementara untuk memastikan gambar muncul dulu */
    /* filter: brightness(0) invert(1); */ 
}

/* Col 2: Quick Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #7dc02f;
    transform: translateX(5px);
}

/* Col 3: Contact Info */
.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #a0a0a0;
    line-height: 1.6;
}

.contact-info-list strong {
    color: #ffffff;
    display: block;
    margin-bottom: 2px;
}

/* Col 4: Maps */
.footer-map iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 8px;
    filter: grayscale(100%) invert(90%) contrast(80%); /* Efek dark mode map */
    transition: filter 0.3s ease;
}

.footer-map iframe:hover {
    filter: grayscale(0%) invert(0%) contrast(100%);
}

/* Copyright Bottom */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333333;
    color: #888888;
    font-size: 0.9rem;
}

/* =========================================
   FLOATING WHATSAPP
========================================= */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #ffffff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9998; /* Di bawah transisi halaman */
    transition: all 0.3s ease;
    animation: bounceWa 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
}

.floating-wa img {
    width: 35px;
    height: 35px;
    filter: brightness(0) invert(1);
}

@keyframes bounceWa {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* RESPONSIVE FOOTER */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .floating-wa {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-wa img {
        width: 28px;
        height: 28px;
    }
}