/* ==========================================================================
   RESET & DASAR
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: #050505;
    color: #fff;
    overflow-x: hidden;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    background-color: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(255, 51, 0, 0.2);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 51, 0, 0.6);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.logo-img {
    height: 45px;
    border-radius: 8px;
}

.teks-logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.teks-api {
    color: #fff;
    text-shadow: 0 0 5px #ff0000, 0 0 15px #ff6600, 0 0 30px #ffcc00;
    animation: detak-api 1.5s infinite alternate;
}

@keyframes detak-api {
    0% { text-shadow: 0 0 5px #ff0000, 0 0 10px #ff3300; }
    100% { text-shadow: 0 0 10px #ff0000, 0 0 25px #ff6600, 0 0 40px #ffcc00; color: #ffebcc; }
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-links a:not(.btn-darurat)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    bottom: -5px;
    left: 0;
    transition: 0.4s ease;
}

.nav-links a:hover:not(.btn-darurat)::after,
.nav-links a.aktif::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.aktif {
    color: #fff;
}

.btn-darurat {
    background: linear-gradient(45deg, #990000, #ff1a1a);
    padding: 10px 25px;
    border-radius: 30px;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transition: 0.3s;
    border: 1px solid #ff3300;
}

.btn-darurat:hover {
    background: linear-gradient(45deg, #ff1a1a, #ff6600);
    box-shadow: 0 0 25px rgba(255, 51, 0, 0.8);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ff3300;
    border-radius: 3px;
    transition: 0.4s;
    box-shadow: 0 0 5px #ff0000;
}

/* ==========================================================================
   JUMBOTRON
   ========================================================================== */
.jumbotron {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at right center, #1a0500 0%, #050505 70%);
    padding-top: 80px;
    overflow: hidden;
}

.jumbo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.jumbo-teks {
    flex: 1;
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease-out;
}

.jumbo-teks.muncul {
    opacity: 1;
    transform: translateY(0);
}

.jumbo-judul {
    font-size: 60px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.teks-api-jumbo {
    color: #fff;
    text-shadow: 0 0 10px #ff0000, 0 0 20px #ff3300, 0 0 40px #ffcc00;
    animation: api-jumbo 1.5s infinite alternate;
}

@keyframes api-jumbo {
    0% { text-shadow: 0 0 10px #ff0000, 0 0 20px #ff3300; }
    100% { text-shadow: 0 0 20px #ff0000, 0 0 40px #ff6600, 0 0 60px #ffcc00; color: #ffebcc; }
}

.jumbo-deskripsi {
    font-size: 16px;
    color: #ccc;
    line-height: 1.7;
    margin-bottom: 35px;
}

.jumbo-tombol {
    display: flex;
    gap: 20px;
}

.btn-darurat-utama {
    background: linear-gradient(45deg, #b30000, #ff1a1a);
    padding: 14px 35px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.4);
    transition: 0.3s;
    border: 1px solid #ff3300;
    display: inline-block;
}

.btn-darurat-utama:hover {
    background: linear-gradient(45deg, #ff1a1a, #ff6600);
    box-shadow: 0 0 25px rgba(255, 51, 0, 0.8);
    transform: translateY(-3px);
}

.btn-layanan {
    background: transparent;
    padding: 14px 35px;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #555;
    transition: 0.3s;
    display: inline-block;
}

.btn-layanan:hover {
    border-color: #ff3300;
    background: rgba(255, 51, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.3);
}

.jumbo-visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.9);
    transition: all 1.2s ease-out 0.3s;
}

.jumbo-visual.muncul {
    opacity: 1;
    transform: scale(1);
}

.lingkaran-api {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,51,0,0.15) 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.4), inset 0 0 30px rgba(255, 102, 0, 0.2);
    animation: putar-api 4s linear infinite;
    z-index: 1;
}

.lingkaran-api::before {
    content: '';
    position: absolute;
    top: -10px; left: -10px; right: -10px; bottom: -10px;
    border: 2px dashed rgba(255, 204, 0, 0.5);
    border-radius: 50%;
    animation: putar-api-balik 8s linear infinite;
}

@keyframes putar-api {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.05); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes putar-api-balik {
    100% { transform: rotate(-360deg); }
}

.img-ambulance {
    width: 100%;
    max-width: 550px;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 20px 25px rgba(0,0,0,0.8));
    animation: melayang 3s ease-in-out infinite alternate;
}

@keyframes melayang {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

/* ==========================================================================
   LAYANAN
   ========================================================================== */
.layanan-section {
    padding: 100px 20px;
    background-color: #050505;
    position: relative;
}

.layanan-container {
    max-width: 1200px;
    margin: 0 auto;
}

.judul-section {
    text-align: center;
    font-size: 42px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 700;
}

.garis-bawah {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    margin: 0 auto 60px;
    border-radius: 5px;
    box-shadow: 0 0 10px #ff3300;
}

.layanan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.layanan-card {
    background: rgba(20, 20, 20, 0.6);
    border: 1px solid rgba(255, 51, 0, 0.2);
    border-radius: 15px;
    padding: 40px 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.layanan-card.muncul-scroll {
    opacity: 1;
    transform: translateY(0);
}

.layanan-card:hover {
    transform: translateY(-12px) !important;
    border-color: #ff3300;
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2), inset 0 0 15px rgba(255, 51, 0, 0.05);
    background: rgba(30, 10, 10, 0.8);
}

.layanan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ffcc00, #ff0000, transparent);
    transition: 0.6s ease-in-out;
}

.layanan-card:hover::before {
    left: 100%;
}

.layanan-icon {
    font-size: 55px;
    margin-bottom: 20px;
    transition: 0.3s ease;
    display: inline-block;
    filter: drop-shadow(0 0 10px rgba(255, 51, 0, 0.5));
}

.layanan-card:hover .layanan-icon {
    transform: scale(1.2);
    filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.8));
}

.layanan-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    transition: 0.3s;
}

.layanan-card:hover h3 {
    color: #ffcc00;
    text-shadow: 0 0 10px rgba(255,51,0,0.5);
}

.layanan-card p {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
}

/* ==========================================================================
   RESPONSIF / MEDIA QUERIES (TABLET & HP)
   ========================================================================== */
@media (max-width: 992px) {
    .jumbo-judul { font-size: 45px; }
    .lingkaran-api { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
    /* Navbar HP */
    .menu-toggle { display: flex; }
    .nav-links {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        background-color: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        border-bottom: 2px solid #ff0000;
        transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    .nav-links.active { left: 0; }
    .btn-darurat { width: 100%; text-align: center; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); background-color: #ffcc00; }
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background-color: #ffcc00; }

    /* Jumbotron HP */
    .jumbotron { padding-top: 130px; padding-bottom: 60px; }
    .jumbo-container { flex-direction: column-reverse; text-align: center; gap: 30px; }
    .jumbo-teks { max-width: 100%; }
    .jumbo-judul { font-size: 38px; }
    .jumbo-tombol { flex-direction: column; gap: 15px; align-items: center; }
    .btn-darurat-utama, .btn-layanan { width: 100%; max-width: 300px; text-align: center; }
    .lingkaran-api { width: 280px; height: 280px; }
    .img-ambulance { max-width: 90%; }
}

@media (max-width: 576px) {
    .jumbo-judul { font-size: 32px; }
    .jumbo-deskripsi { font-size: 14px; }
    .lingkaran-api { width: 240px; height: 240px; }
    
    /* Layanan HP */
    .judul-section { font-size: 34px; }
    .layanan-section { padding: 80px 20px; }
    .layanan-card { padding: 35px 20px; }
}
/* ==========================================================================
   BAGIAN ARMADA (GALERI)
   ========================================================================== */
.armada-section {
    padding: 100px 20px;
    background-color: #0a0a0a; /* Warnanya dibedakan sedikit dari #050505 agar ada batasan yang elegan */
    position: relative;
}

.armada-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Mengatur susunan grid foto */
.armada-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Bingkai luar foto */
.armada-card {
    background: #000;
    border: 1px solid rgba(255, 51, 0, 0.2);
    border-radius: 15px;
    overflow: hidden; /* Mencegah foto yang membesar keluar dari bingkai */
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.8);
    transition: 0.4s ease;
    
    /* Disembunyikan dulu untuk animasi scroll */
    opacity: 0;
    transform: translateY(50px);
}

.armada-card.muncul-scroll {
    opacity: 1;
    transform: translateY(0);
}

.armada-card:hover {
    border-color: #ff3300;
    box-shadow: 0 0 25px rgba(255, 51, 0, 0.4);
}

.armada-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px; 
}

/* Pengaturan Foto */
.armada-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar foto terpotong rapi otomatis */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

/* Efek Zoom dan Gelap saat disentuh kursor */
.armada-card:hover .armada-img {
    transform: scale(1.15); 
    filter: brightness(0.4); /* Dibuat gelap agar tulisan di atasnya terbaca jelas */
}

/* Latar Belakang Teks (Awalnya bersembunyi di bawah) */
.armada-overlay {
    position: absolute;
    bottom: -100%; /* Sembunyi di luar bingkai bawah */
    left: 0;
    width: 100%;
    height: 100%;
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(15, 2, 2, 0.95) 0%, rgba(15, 2, 2, 0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    transition: bottom 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Teks meluncur naik ke atas saat disentuh kursor */
.armada-card:hover .armada-overlay {
    bottom: 0; 
}

.armada-overlay h3 {
    color: #ffcc00;
    font-size: 22px;
    margin-bottom: 8px;
    text-shadow: 0 0 10px #ff0000;
    font-family: 'Montserrat', sans-serif;
}

.armada-overlay p {
    color: #ddd;
    font-size: 14px;
    line-height: 1.6;
}
/* ==========================================================================
   BAGIAN MENGAPA PILIH KAMI (KEUNGGULAN)
   ========================================================================== */
.keunggulan-section {
    padding: 100px 20px;
    background-color: #050505; 
    /* Efek cahaya merah redup elegan dari sisi kiri */
    background-image: radial-gradient(circle at left center, rgba(255, 51, 0, 0.05) 0%, transparent 50%);
    position: relative;
}

.keunggulan-container {
    max-width: 1200px;
    margin: 0 auto;
}

.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

/* Desain Kartu Keunggulan */
.keunggulan-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(20, 20, 20, 0.6);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #ff3300; /* Garis merah tegas di kiri */
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    
    /* Disembunyikan dulu dari samping untuk animasi Scroll Reveal */
    opacity: 0;
    transform: translateX(-50px);
}

.keunggulan-card.muncul-scroll {
    opacity: 1;
    transform: translateX(0);
}

/* Efek saat disentuh kursor */
.keunggulan-card:hover {
    transform: translateX(10px); /* Kartu bergeser ke kanan */
    border-left: 4px solid #ffcc00; /* Garis berubah kuning emas */
    background: rgba(30, 10, 10, 0.9);
    box-shadow: 0 5px 25px rgba(255, 0, 0, 0.15);
}

/* Kotak Lingkaran untuk Ikon FontAwesome */
.icon-box {
    background: #111;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    color: #ff3300;
    box-shadow: 0 0 10px rgba(255,0,0,0.2), inset 0 0 10px rgba(255,0,0,0.1);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex-shrink: 0; 
}

/* Ikon berputar dan menyala terang saat disentuh */
.keunggulan-card:hover .icon-box {
    color: #ffcc00;
    box-shadow: 0 0 20px rgba(255, 51, 0, 0.6), inset 0 0 15px rgba(255, 204, 0, 0.3);
    transform: rotate(360deg); 
}

.keunggulan-teks h3 {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.keunggulan-card:hover .keunggulan-teks h3 {
    text-shadow: 0 0 10px rgba(255, 51, 0, 0.8);
    color: #ffcc00;
}

.keunggulan-teks p {
    color: #aaa;
    font-size: 15px;
    line-height: 1.6;
}

/* Responsif khusus HP untuk bagian keunggulan */
@media (max-width: 576px) {
    .keunggulan-grid {
        grid-template-columns: 1fr; /* 1 kolom penuh */
    }
    
    .keunggulan-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        border-left: none; /* Garis kiri dihilangkan di HP */
        border-bottom: 4px solid #ff3300; /* Pindah ke bawah */
        transform: translateY(50px); /* Efek scroll ubah arah dari bawah */
    }
    
    .keunggulan-card:hover {
        transform: translateY(-10px); /* Bergeser ke atas saat disentuh, bukan ke kanan */
        border-left: none;
        border-bottom: 4px solid #ffcc00;
    }
}
/* ==========================================================================
   BAGIAN TESTIMONI (MODE SLIDER)
   ========================================================================== */
.testimoni-section {
    padding: 100px 20px;
    background-color: #0a0a0a; 
}

.testimoni-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Kotak Pembungkus Slider */
.slider-wrapper {
    max-width: 750px; /* Dibuat agak di tengah agar elegan */
    margin: 40px auto 0;
    position: relative;
    overflow: hidden; 
    border-radius: 15px;
    
    /* Efek muncul saat di-scroll */
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.slider-wrapper.muncul-scroll {
    opacity: 1;
    transform: translateY(0);
}

/* Trek Slider (Tempat bergeser) */
.testimoni-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

/* Lebar masing-masing slide 100% dari wrapper */
.testimoni-slide {
    min-width: 100%;
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 10px;
}

/* Desain Kartu di dalam Slider */
.testimoni-card {
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(255, 51, 0, 0.3);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    text-align: left; /* Teks rata kiri di dalam kartu */
    transition: 0.3s;
}

.testimoni-card:hover {
    border-color: #ff3300;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
}

.testimoni-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #cc0000, #ff3300);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.5);
    flex-shrink: 0;
}

.info-user h4 {
    color: #fff;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 2px;
}

.info-user p {
    color: #aaa;
    font-size: 13px;
}

.bintang {
    color: #ffcc00;
    font-size: 14px;
    margin-bottom: 15px;
    text-shadow: 0 0 5px rgba(255, 204, 0, 0.4);
}

.teks-ulasan {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    font-style: italic;
}

/* Tombol Titik Navigasi (Dots) */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444;
    cursor: pointer;
    transition: 0.4s ease;
}

.dot.active {
    background: #ff3300;
    box-shadow: 0 0 10px #ff0000;
    width: 30px; /* Titik yang aktif memanjang jadi kapsul */
    border-radius: 6px; 
}

/* Responsif HP */
@media (max-width: 576px) {
    .testimoni-card {
        padding: 30px 20px;
    }
}
/* ==========================================================================
   BAGIAN FOOTER
   ========================================================================== */
.footer-section {
    background-color: #000000;
    color: #ccc;
    padding: 80px 20px 20px;
    border-top: 2px solid rgba(255, 51, 0, 0.4);
    position: relative;
    box-shadow: 0 -10px 30px rgba(255, 0, 0, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    margin-bottom: 15px;
}

.footer-desc {
    font-size: 14px;
    color: #aaa;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sosmed-title {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
}

/* Tombol Lingkaran Media Sosial */
.sosmed-links {
    display: flex;
    gap: 12px;
}

.sosmed-btn {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 51, 0, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Efek Membara saat Tombol Sosmed Di-hover */
.sosmed-btn:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, #ff1a1a, #ff6600);
    border-color: #ffcc00;
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.8);
    color: #fff;
}

.footer-col h3 {
    color: #fff;
    font-size: 20px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #ff0000, #ffcc00);
    border-radius: 3px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a i {
    color: #ff3300;
    font-size: 12px;
    margin-right: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover i {
    color: #ffcc00;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #aaa;
}

.footer-col p i {
    color: #ff3300;
    margin-right: 8px;
}

.footer-col p strong {
    color: #fff;
}

/* Hak Cipta Bawah */
.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: #777;
    font-size: 14px;
}

/* Responsif HP */
@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-section {
        padding: 60px 20px 20px;
    }
}
/* ==========================================================================
   WIDGET FLOATING WHATSAPP INTERAKTIF & KEREN
   ========================================================================== */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Tombol Lingkaran WA Utama */
.floating-wa {
    position: relative;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.6);
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-wa:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.9);
}

/* Badge Notifikasi Merah Membara */
.wa-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    background: #ff0000;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
    animation: detak-badge 1.5s infinite;
    z-index: 3;
}

/* Gelombang Radar */
.wa-wave, .wa-wave-2 {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25d366;
    opacity: 0;
    animation: gelombang-radar 2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: none;
}

.wa-wave-2 {
    animation-delay: 1s;
}

/* Balon Teks (Tooltip) */
.wa-tooltip {
    background: rgba(15, 15, 15, 0.95);
    border: 1px solid rgba(37, 211, 102, 0.5);
    color: #fff;
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 0 15px rgba(37, 211, 102, 0.2);
    font-size: 13px;
    line-height: 1.4;
    position: relative;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 12px;
    opacity: 0;
    transform: translateX(20px);
    animation: muncul-tooltip 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    animation-delay: 1.5s; /* Muncul 1.5 detik setelah web dibuka */
}

.wa-tooltip strong {
    color: #25d366;
}

/* Tombol Silang (X) */
.wa-close-btn {
    background: transparent;
    border: none;
    color: #888;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0;
    line-height: 1;
}

.wa-close-btn:hover {
    color: #ff3300;
}

/* Keyframe Animasi */
@keyframes gelombang-radar {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.8); opacity: 0; }
}

@keyframes detak-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

@keyframes muncul-tooltip {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Responsif HP */
@media (max-width: 480px) {
    .wa-tooltip {
        display: none !important; /* Disembunyikan di HP kecil agar tidak menutupi layar */
    }
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    .floating-wa {
        width: 55px;
        height: 55px;
        font-size: 30px;
    }
}
/* ==========================================================================
   BAGIAN ARTIKEL & EDUKASI (PASTIKAN PASTE DI PALING BAWAH)
   ========================================================================== */
.edukasi-section {
    padding: 100px 20px;
    background-color: #050505;
    position: relative;
}

.edukasi-container {
    max-width: 900px;
    margin: 0 auto;
}

.edukasi-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.edukasi-card {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(255, 51, 0, 0.2);
    border-radius: 15px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(40px);
}

.edukasi-card.muncul-scroll {
    opacity: 1;
    transform: translateY(0);
}

.edukasi-card:hover {
    border-color: #ff3300;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.2);
    transform: translateY(-5px);
    background: rgba(30, 15, 10, 0.9);
}

.edukasi-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #cc0000, #ff3300);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 51, 0, 0.5);
    flex-shrink: 0;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.edukasi-card:hover .edukasi-icon-box {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 0 25px rgba(255, 204, 0, 0.6);
    color: #ffcc00;
}

.edukasi-konten {
    flex: 1;
}

.edukasi-kategori {
    display: inline-block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffcc00;
    font-weight: 600;
    margin-bottom: 8px;
}

.edukasi-konten h3 {
    color: #fff;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
    transition: 0.3s;
}

.edukasi-card:hover .edukasi-konten h3 {
    color: #ff3300;
    text-shadow: 0 0 10px rgba(255, 51, 0, 0.3);
}

.edukasi-konten p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.btn-baca {
    color: #ff3300;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
    cursor: pointer;
    border: none;
    background: none;
}

.btn-baca:hover {
    color: #ffcc00;
    gap: 15px;
}

/* ==========================================================================
   DESAIN POP-UP (MODAL) ARTIKEL
   ========================================================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.tampil {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #0a0a0a;
    border: 1px solid #ff3300;
    border-radius: 15px;
    width: 90%;
    max-width: 750px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(255, 0, 0, 0.3);
    transform: translateY(-50px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.tampil .modal-box {
    transform: translateY(0);
}

.tutup-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 35px;
    cursor: pointer;
    line-height: 1;
    transition: 0.3s;
}

.tutup-modal:hover {
    color: #ff3300;
    transform: scale(1.1);
}

.modal-judul {
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
    font-size: 26px;
    margin-bottom: 20px;
    padding-right: 30px;
}

.modal-isi p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-isi ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.modal-isi ul li {
    color: #bbb;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.modal-isi ul li::before {
    content: '■';
    position: absolute;
    left: 0;
    top: 0px;
    color: #ff3300;
    font-size: 12px;
}

.modal-isi ul li strong {
    color: #fff;
}

/* ==========================================================================
   RESPONSIF KHUSUS ARTIKEL & POP-UP
   ========================================================================== */
@media (max-width: 768px) {
    .edukasi-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }
    .btn-baca {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .modal-box {
        padding: 30px 20px;
        width: 95%;
    }
    .modal-judul {
        font-size: 22px;
    }
}