/* Reset Dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Variabel Warna Elegan */
:root {
    --hitam-pekat: #080808;
    --hitam-kaca: rgba(8, 8, 8, 0.85); /* Transparan untuk efek kaca */
    --emas-solid: #D4AF37;
    /* Gradasi Emas Metalik yang Mewah */
    --emas-gradasi: linear-gradient(45deg, #BF953F, #FCF6BA, #b38728, #FBF5B7, #AA771C);
    --putih: #fdfdfd;
}

body {
    background-color: var(--hitam-pekat);
    color: var(--putih);
    font-family: 'Poppins', sans-serif; /* Font bersih & modern */
}

/* --- NAVBAR STYLING --- */
.navbar {
    background-color: var(--hitam-kaca);
    backdrop-filter: blur(12px); /* Efek Kaca (Glassmorphism) */
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2); /* Garis batas sangat halus */
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s ease; /* Transisi halus saat scroll */
    padding: 15px 0;
}

.navbar.scrolled {
    padding: 8px 0; /* Navbar mengecil saat di-scroll */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    border-bottom: 1px solid rgba(212, 175, 55, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- LOGO & ANIMASI --- */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

/* Animasi Denyut Cahaya Emas pada Ikon */
/* Styling untuk logo gambar sendiri (Menggantikan icon ambulans) */
.custom-logo-icon {
    width: 45px; /* Anda bisa mengubah angka ini untuk membesarkan/mengecilkan logo */
    height: auto;
    object-fit: contain;
    /* Memberikan efek cahaya emas (glow) pada logo gambar Anda agar tetap elegan */
    animation: image-glow 2s infinite alternate;
}

/* Animasi cahaya berdenyut khusus untuk gambar */
@keyframes image-glow {
    0% { 
        filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.4)); 
        transform: scale(1); 
    }
    100% { 
        filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.9)); 
        transform: scale(1.05); 
    }
}
@keyframes glow-pulse {
    0% { filter: drop-shadow(0 0 2px rgba(212, 175, 55, 0.4)); transform: scale(1); }
    100% { filter: drop-shadow(0 0 12px rgba(212, 175, 55, 0.9)); transform: scale(1.05); }
}

/* Teks Logo */
.logo-text {
    font-family: 'Cinzel', serif; /* Font Klasik Mewah */
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Animasi Kilau Emas (Shimmer) pada teks Pandawa */
.gold-text-shimmer {
    background: var(--emas-gradasi);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: emas-shimmer 3s linear infinite;
}

@keyframes emas-shimmer {
    to { background-position: 200% center; }
}

.white-text {
    color: var(--putih);
}

/* --- MENU LINK --- */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-link {
    color: var(--putih);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    transition: 0.3s ease;
}

/* Garis bawah animasi saat di-hover */
.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--emas-gradasi);
    transition: 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.nav-link:hover, .nav-link.active {
    color: var(--emas-solid);
}

/* --- TOMBOL DARURAT MEWAH --- */
.btn-emas-mewah {
    background: var(--emas-gradasi);
    background-size: 200% auto;
    color: var(--hitam-pekat);
    padding: 10px 24px;
    border-radius: 50px; /* Bentuk pil elegan */
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.4s;
    border: 1px solid transparent;
}

.btn-emas-mewah:hover {
    background-position: right center; /* Efek kilau saat disentuh */
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
    transform: translateY(-2px); /* Efek sedikit terangkat */
}

/* --- HAMBURGER MENU --- */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--emas-solid);
}

/* --- RESPONSIVE MOBILE --- */
@media (max-width: 850px) {
    .hamburger { display: block; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        justify-content: center;
        background-color: var(--hitam-pekat);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55); /* Animasi memantul elegan */
        z-index: -1;
    }

    .nav-menu.aktif { left: 0; }
    .nav-item { margin: 15px 0; }
    .nav-link { font-size: 1.5rem; }
    .nav-emergency { display: none; }
    
    /* Animasi silang Hamburger saat aktif */
    .hamburger.aktif .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.aktif .bar:nth-child(2) { opacity: 0; }
    .hamburger.aktif .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: var(--hitam-pekat);
}

/* Background Foto */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Ini gambar sementara, URL ini bisa diganti dengan path fotomu nanti seperti url('foto-kumpul.jpg') */
    background: linear-gradient(rgba(8, 8, 8, 0.7), rgba(8, 8, 8, 0.95)), url('image/1785043498089.png') center/cover no-repeat;
    opacity: 0; /* Disembunyikan dulu sampai animasi petir selesai */
    transition: opacity 2s ease-in-out;
    z-index: 1;
}

.hero-bg.muncul {
    opacity: 1;
}

/* Konten Hero */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-content.muncul {
    opacity: 1;
    transform: translateY(0);
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title .emas {
    color: var(--emas-solid);
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Tombol Garis Emas (Outline) */
.btn-outline-emas {
    border: 2px solid var(--emas-solid);
    color: var(--emas-solid);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
    background: transparent;
}

.btn-outline-emas:hover {
    background-color: var(--emas-solid);
    color: var(--hitam-pekat);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

/* --- ANIMASI PETIR EMAS --- */
.petir-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 5;
    pointer-events: none;
}

.petir {
    position: absolute;
    width: 3px;
    background: #fff;
    /* Memberikan efek cahaya emas menyala pada garis putih */
    box-shadow: 0 0 10px #D4AF37, 0 0 20px #D4AF37, 0 0 40px #F9E596, 0 0 60px #D4AF37;
    opacity: 0;
    transform-origin: top;
    border-radius: 50%;
}

.flash-emas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--emas-solid);
    z-index: 8;
    opacity: 0;
    pointer-events: none;
    mix-blend-mode: color-dodge;
}

.flash-aktif {
    animation: ledakan-emas 2s ease-out forwards;
}

@keyframes ledakan-emas {
    0% { opacity: 0; }
    15% { opacity: 1; background-color: #fff; }
    100% { opacity: 0; background-color: var(--emas-solid); }
}

/* Responsif untuk HP */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .btn-large, .btn-outline-emas { width: 100%; }
}
/* --- EFEK SCROLL SMOOTH UNTUK SELURUH WEB --- */
html {
    scroll-behavior: smooth;
}

/* --- SECTION LAYANAN --- */
.layanan {
    padding: 100px 5%;
    /* Menggunakan warna hitam yang sedikit berbeda dari Hero agar ada batas visual */
    background-color: #111111; 
    overflow-x: hidden; /* Mencegah layar bergeser ke samping karena animasi */
}

.layanan-container {
    max-width: 1200px;
    margin: 0 auto;
}

.judul-section {
    text-align: center;
    margin-bottom: 60px;
}

.judul-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--putih);
    letter-spacing: 1px;
}

.judul-section .emas {
    color: var(--emas-solid);
}

.judul-section p {
    color: #aaaaaa;
    margin-top: 10px;
    font-size: 1.1rem;
}

/* Grid Layout untuk Kotak Layanan */
.layanan-grid {
    display: grid;
    /* Akan otomatis menyesuaikan kolom di HP dan Laptop */
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.layanan-card {
    background-color: var(--hitam-pekat);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    /* Transisi untuk efek hover yang elegan */
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
}

/* Saat kotak layanan disentuh (hover) */
.layanan-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    border-color: var(--emas-solid);
}

.layanan-icon {
    font-size: 3rem;
    color: var(--emas-solid);
    margin-bottom: 25px;
}

.layanan-card h3 {
    color: var(--putih);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.layanan-card p {
    color: #cccccc;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --- ANIMASI SCROLL RINGAN --- */
/* Kita pakai transform dengan jarak kecil (50px) agar sangat ringan dirender browser */

.muncul-kiri {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.muncul-kanan {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.muncul-bawah {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

/* Class 'tampil' akan ditambahkan oleh JavaScript secara otomatis saat di-scroll */
.tampil {
    opacity: 1;
    transform: translate(0, 0);
}
/* --- SECTION ARMADA --- */
.armada {
    padding: 100px 5%;
    /* Background hitam pekat agar beda dari section layanan */
    background-color: var(--hitam-pekat); 
}

.armada-container {
    max-width: 1200px;
    margin: 0 auto;
}

.armada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.armada-card {
    background-color: #111111;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
}

/* Efek saat card disorot mouse */
.armada-card:hover {
    transform: translateY(-10px);
    border-color: var(--emas-solid);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.armada-img-box {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.armada-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.armada-card:hover .armada-img-box img {
    transform: scale(1.1); /* Gambar mobil sedikit membesar saat di-hover */
}

/* Label Khusus VIP */
.badge-emas {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--emas-gradasi);
    color: var(--hitam-pekat);
    padding: 5px 15px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 0.8rem;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.armada-info {
    padding: 25px;
}

.armada-info h3 {
    color: var(--emas-solid);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-family: 'Cinzel', serif; /* Memakai font klasik */
}

.armada-info p {
    color: #bbbbbb;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* List fitur mobil */
.fitur-list {
    list-style: none;
    padding: 0;
}

.fitur-list li {
    color: #e0e0e0;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fitur-list li i {
    color: var(--emas-solid);
    font-size: 0.9rem;
}
/* --- SECTION TENTANG KAMI PREMIUM --- */
.tentang-premium {
    padding: 120px 5%;
    background-color: var(--hitam-pekat);
    overflow: hidden;
}

.tentang-container-premium {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Minimalis */
.tentang-header {
    text-align: center;
    margin-bottom: 80px;
}

.sub-judul-emas {
    color: var(--emas-solid);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.judul-utama-premium {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--putih);
    line-height: 1.2;
    margin-bottom: 25px;
}

.garis-tengah-emas {
    width: 2px;
    height: 40px;
    background: var(--emas-gradasi);
    margin: 0 auto;
}

/* Layout Konten */
.tentang-content-premium {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Sisi Kiri: Teks */
.tentang-teks-wrapper {
    padding-right: 20px;
}

.teks-lead {
    font-size: 1.4rem;
    color: var(--putih);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
    border-left: 3px solid var(--emas-solid);
    padding-left: 20px;
}

.teks-biasa {
    color: #a0a0a0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.signature-box {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.signature-text {
    font-family: 'Cinzel', serif;
    color: var(--emas-solid);
    font-size: 1.8rem;
    font-style: italic;
    font-weight: 400;
}

.signature-box span {
    color: #666;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Sisi Kanan: Visual & Statistik */
.tentang-visual-wrapper {
    position: relative;
}

.gambar-utama-premium img {
    width: 90%;
    height: 500px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.8);
    /* Sedikit di-desaturate agar terlihat elegan seperti majalah mahal */
    filter: grayscale(30%) contrast(1.1);
}

.gambar-kecil-premium {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 45%;
    border: 8px solid var(--hitam-pekat);
    border-radius: 5px;
}

.gambar-kecil-premium img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Kotak Statistik Elegan */
.floating-stats-premium {
    position: absolute;
    top: 40px;
    left: -40px;
    background: #111;
    padding: 30px;
    border-radius: 5px;
    border-left: 2px solid var(--emas-solid);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.9);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-item h4 {
    font-family: 'Cinzel', serif;
    font-size: 2rem;
    color: var(--putih);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.stat-item .emas {
    color: var(--emas-solid);
}

.stat-item p {
    color: #888;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsif HP */
@media (max-width: 950px) {
    .tentang-content-premium {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .floating-stats-premium {
        position: relative;
        top: 0; left: 0;
        flex-direction: row;
        justify-content: space-around;
        margin-top: 30px;
        text-align: center;
    }
    
    .gambar-kecil-premium {
        display: none; /* Sembunyikan di HP agar tidak sumpek */
    }
    
    .gambar-utama-premium img { width: 100%; height: 350px; }
}
/* --- SECTION TESTIMONI EPIC --- */
.testimoni-epic {
    position: relative;
    padding: 120px 5%;
    /* Gradient melingkar agar bagian tengah bercahaya gelap */
    background: radial-gradient(circle at center, #181818 0%, #050505 100%);
    overflow: hidden;
}

/* Kejutan: Background Garis EKG */
.ecg-background {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    opacity: 0.15; /* Tipis dan elegan */
    z-index: 0;
    pointer-events: none;
}

.ecg-line {
    fill: none;
    stroke: var(--emas-solid);
    stroke-width: 3;
    /* Animasi menggambar detak jantung */
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
}

/* Class ini akan dipicu oleh JavaScript setiap kali slide berganti */
.denyut-aktif {
    animation: denyut 2.5s ease-out forwards;
}

@keyframes denyut {
    0% { stroke-dashoffset: 1500; filter: drop-shadow(0 0 2px var(--emas-solid)); }
    50% { filter: drop-shadow(0 0 15px var(--emas-solid)); }
    100% { stroke-dashoffset: 0; filter: drop-shadow(0 0 2px var(--emas-solid)); }
}

.testimoni-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Slider 3D */
.slider-3d-wrapper {
    position: relative;
    perspective: 1500px; /* Memberikan kedalaman 3D */
    margin-top: 80px;
}

.quote-raksasa {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 8rem;
    color: rgba(212, 175, 55, 0.05);
    z-index: 0;
}

.slider-track {
    position: relative;
    min-height: 380px;
}

/* Kartu Testimoni Efek Kaca */
.testimoni-card {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 60px 40px 40px;
    text-align: center;
    /* Animasi keluar (hilang) dengan gaya 3D mundur */
    opacity: 0;
    transform: scale(0.8) translateZ(-100px) translateY(30px);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* Saat Kartu Aktif (Maju ke depan) */
.testimoni-card.active {
    opacity: 1;
    transform: scale(1) translateZ(0) translateY(0);
    pointer-events: auto;
    z-index: 2;
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.1);
}

/* Foto Avatar Melayang */
.avatar-ring {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--hitam-pekat);
    padding: 5px;
    /* Cincin emas di luar foto */
    border: 2px solid var(--emas-solid);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.testimoni-teks {
    color: var(--putih);
    font-size: 1.25rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    margin-top: 20px;
}

.testimoni-nama {
    font-family: 'Cinzel', serif;
    color: var(--emas-solid);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.testimoni-role {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.rating-emas {
    color: var(--emas-solid);
    font-size: 1rem;
    gap: 5px;
}

/* Tombol Navigasi */
.nav-testimoni {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.btn-nav-bulat {
    background: transparent;
    border: 1px solid var(--emas-solid);
    color: var(--emas-solid);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-nav-bulat:hover {
    background: var(--emas-gradasi);
    color: var(--hitam-pekat);
    box-shadow: 0 0 15px var(--emas-solid);
    transform: scale(1.1);
}

.dots-testi {
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--emas-solid);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--emas-solid);
}

/* Responsif HP */
@media (max-width: 768px) {
    .testimoni-card { padding: 50px 20px 30px; }
    .testimoni-teks { font-size: 1.05rem; }
    .slider-track { min-height: 420px; }
    .avatar-ring { width: 80px; height: 80px; top: -40px; }
}
/* --- SECTION ARTIKEL EDUKASI --- */
.artikel {
    padding: 120px 5%;
    background-color: #0a0a0a;
}

.artikel-container {
    max-width: 1200px;
    margin: 0 auto;
}

.artikel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.artikel-card {
    background: #151515;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: 0.4s ease;
    cursor: pointer;
}

.artikel-card:hover {
    transform: translateY(-10px);
    border-color: var(--emas-solid);
    box-shadow: 0 15px 30px rgba(0,0,0,0.8);
}

.artikel-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.artikel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.artikel-card:hover .artikel-img img {
    transform: scale(1.1);
}

.artikel-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--emas-gradasi);
    color: var(--hitam-pekat);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.artikel-info {
    padding: 25px;
}

.artikel-tanggal {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 10px;
    display: block;
}

.artikel-info h3 {
    color: var(--putih);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: 0.3s;
}

.artikel-card:hover h3 {
    color: var(--emas-solid);
}

.artikel-info p {
    color: #aaa;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-baca {
    color: var(--emas-solid);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.artikel-card:hover .btn-baca {
    gap: 15px; /* Panah bergerak ke kanan saat di hover */
}

/* --- MODAL POPUP ARTIKEL (GLASSMORPHISM) --- */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
}

.modal-overlay.aktif {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #111;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    border-radius: 15px;
    overflow-y: auto; /* Bisa discroll kalau artikelnya panjang */
    position: relative;
    border: 1px solid var(--emas-solid);
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
    transform: translateY(50px) scale(0.9);
    transition: 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.modal-overlay.aktif .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 20px; right: 20px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: var(--emas-solid);
    font-size: 1.8rem;
    width: 45px; height: 45px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    transition: 0.3s;
}

.modal-close:hover {
    background: var(--emas-solid);
    color: #111;
    transform: rotate(90deg);
}

.modal-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.modal-body {
    padding: 40px;
}

.modal-body h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--putih);
    line-height: 1.3;
}

.modal-teks-lengkap {
    color: #ddd;
    font-size: 1.05rem;
    line-height: 1.8;
}

.modal-teks-lengkap p { margin-bottom: 20px; }
.modal-teks-lengkap ul { margin-bottom: 20px; padding-left: 20px; }
.modal-teks-lengkap li { margin-bottom: 10px; list-style-type: square; color: #bbb;}
.modal-teks-lengkap strong { color: var(--emas-solid); }

@media (max-width: 768px) {
    .modal-body { padding: 25px; }
    .modal-body h2 { font-size: 1.6rem; }
    .modal-img { height: 200px; }
}
/* --- SECTION FOOTER PREMIUM --- */
.footer-premium {
    background-color: #050505;
    position: relative;
    padding-top: 80px;
    color: #e0e0e0;
}

/* Garis atas bercahaya mewah */
.footer-glow-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 2px;
    background: var(--emas-gradasi);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Kolom Brand */
.footer-logo {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: var(--emas-solid);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-logo .putih {
    color: var(--putih);
}

.footer-deskripsi {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.btn-footer {
    display: inline-flex;
    padding: 12px 25px;
    font-size: 0.9rem;
}

/* Judul Kolom (Tautan, Kontak, dll) */
.footer-title {
    color: var(--putih);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Tautan Cepat */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #999;
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.footer-links li a i {
    font-size: 0.7rem;
    color: var(--emas-solid);
    transition: 0.3s;
}

.footer-links li a:hover {
    color: var(--emas-solid);
    transform: translateX(5px);
}

/* Kontak List */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #999;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact li i {
    color: var(--emas-solid);
    font-size: 1.1rem;
    margin-top: 3px;
}

/* Sosial Media */
.footer-sosmed-teks {
    color: #999;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.sosmed-btn {
    width: 45px;
    height: 45px;
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--emas-solid);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s ease;
}

/* Efek Hover Mewah pada Sosmed */
.sosmed-btn:hover {
    background: var(--emas-gradasi);
    color: var(--hitam-pekat);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
    border-color: transparent;
}

/* Baris Hak Cipta Paling Bawah */
.footer-bottom {
    background: #020202;
    padding: 20px 5%;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom p {
    color: #777;
    font-size: 0.9rem;
    margin: 0;
}

/* Responsif untuk HP dan Tablet */
@media (max-width: 950px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .brand-col {
        grid-column: 1 / 3;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .brand-col {
        grid-column: 1 / 2;
    }
}
/* ==========================================
   TOMBOL FLOATING WA - EFEK PETIR EMAS
   ========================================== */

.wa-epic-container {
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #080808;
    border-radius: 50px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 10000;
    /* Efek transisi bouncy (memantul) saat memanjang */
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), inset 0 0 10px rgba(212, 175, 55, 0.2);
    /* Lebar awal hanya selebar lingkaran */
    width: 65px;
    height: 65px;
    overflow: hidden;
}

/* Cincin Listrik yang Berputar Terus Menerus */
.wa-cincin-listrik {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, var(--emas-solid));
    animation: putar-listrik 2s linear infinite;
    z-index: 0;
}

/* Lubang hitam di tengah agar cincinnya hanya di pinggir (Border) */
.wa-cincin-listrik::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px; right: 3px; bottom: 3px;
    background: #111;
    border-radius: 50px;
}

@keyframes putar-listrik {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Efek Kejutan: Kilatan Petir (ZAP!) */
.wa-kilat-zap {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    background: transparent;
    z-index: 1;
    pointer-events: none;
    /* Animasi menyambar tidak teratur setiap 4 detik */
    animation: sambaran-petir 4s infinite;
}

@keyframes sambaran-petir {
    0%, 88% { box-shadow: none; background: transparent; }
    /* Kilatan Pertama */
    90% { 
        box-shadow: 0 0 40px #fff, inset 0 0 20px #fff; 
        background: rgba(255,255,255,0.8); 
    }
    92% { box-shadow: none; background: transparent; }
    /* Kilatan Kedua (Lebih Emas & Besar) */
    94% { 
        box-shadow: 0 0 60px var(--emas-solid), 0 0 100px var(--emas-terang), inset 0 0 30px var(--emas-solid); 
        background: rgba(212, 175, 55, 0.4); 
    }
    96%, 100% { box-shadow: none; background: transparent; }
}

/* Konten di dalam tombol */
.wa-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    width: 100%;
}

.wa-icon-emas {
    color: var(--emas-solid);
    font-size: 2.2rem;
    min-width: 35px; /* Menjaga ukuran ikon agar tidak gepeng */
    text-align: center;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
    transition: 0.3s;
}

/* Teks yang bersembunyi */
.wa-teks-sembunyi {
    color: var(--hitam-pekat);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(20px); /* Teks sembunyi agak ke kanan */
    transition: all 0.4s ease;
    margin-left: 10px;
}

/* --- INTERAKSI SAAT DISENTUH (HOVER) --- */
.wa-epic-container:hover {
    width: 260px; /* Memanjang secara memantul */
    background: var(--emas-gradasi); /* Latar belakang berubah jadi emas metalik */
}

/* Cincin listrik hilang saat disentuh agar lebih elegan */
.wa-epic-container:hover .wa-cincin-listrik {
    opacity: 0; 
}

/* Ikon WA berubah warna jadi hitam */
.wa-epic-container:hover .wa-icon-emas {
    color: var(--hitam-pekat);
    filter: drop-shadow(0 0 0 transparent);
    transform: rotate(360deg); /* Ikonnya mutar ke dalam */
}

/* Teks Muncul dari kanan ke kiri */
.wa-epic-container:hover .wa-teks-sembunyi {
    opacity: 1;
    transform: translateX(0);
}

/* Responsif HP */
@media (max-width: 768px) {
    .wa-epic-container {
        bottom: 25px;
        right: 25px;
        width: 55px;
        height: 55px;
    }
    .wa-icon-emas {
        font-size: 1.8rem;
    }
}