:root {
    --red: #d0021b;
    --black: #1a1a1a;
    --grey: #f5f5f5;
    --border: #e8e8e8;
    --white: #ffffff;
}

* { margin:0; padding:0; box-sizing: border-box; }
body { 
    font-family: 'Noto Sans JP', sans-serif; 
    color: var(--black); 
    line-height: 1.6; 
    overflow-x: hidden;
    
    /* Tambahkan padding agar konten tidak tertutup header yang melayang */
    padding-top: 80px; 

    /* Perbaiki jalur background karena file Anda di details/outbound/ */
    background: url('../../assets/images/background-polygon.webp') no-repeat center center fixed; 
    background-size: cover; 
    background-color: #1a1a1a; 
}
/* Update container agar konten "melayang" di atas background poligon */
.detail-container { 
    max-width: 1000px; 
    margin: 50px auto; 
    padding: 40px; 
    background: rgba(255, 255, 255, 0.98); /* Putih bersih agar teks terbaca */
    border-radius: 20px; 
    box-shadow: 0 20px 50px rgba(0,0,0,0.3); /* Shadow dalam agar elegan */
}
/* --- 1. UTILITY & HEADER --- */
.m-utility-nav { background: #fff; border-bottom: 1px solid var(--border); font-size: 11px; padding: 10px 40px; }
.m-utility-nav__inner { max-width: 1400px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }

.m-header { 
    height: 80px; 
    background: #fff; 
    border-bottom: 1px solid var(--border); 
    /* Ganti sticky ke fixed agar lebih pakem */
    position: fixed; 
    top: 0; 
    left: 0;
    width: 100%;
    z-index: 1000; 
    transition: 0.3s; 
}
.m-header__inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; padding: 0 40px; height: 100%; position: relative; }

/* LOGO FIX: Gambar + NILA (Hitam) + PRODUCTION (Merah) */
.m-header__logo { 
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 20px; 
    text-decoration: none; 
    color: var(--black); /* Warna untuk NILA */
    line-height: 1;
    flex-shrink: 0; /* Mencegah logo tertekuk */
}

.main-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.m-header__logo span { 
    color: var(--red); /* Warna untuk PRODUCTION */
    margin-left: 5px;
}

/* --- 1. NAVIGATION (POSISI TEKS DINAIKKAN) --- */
.m-main-nav { 
    flex: 1; 
    height: 100%; 
}

.m-main-nav ul { 
    display: flex; 
    list-style: none; 
    justify-content: flex-end; 
    height: 100%; 
}

.nav-item { 
    position: static; 
    height: 100%; 
    display: flex; 
    /* Menjaga area deteksi tetap penuh setinggi header */
    align-items: stretch; 
}

.m-main-nav a { 
    text-decoration: none; 
    color: #000; 
    font-weight: 700; 
    font-size: 10px; 
    padding: 0 12px; 
    letter-spacing: 1px; 
    transition: 0.3s; 
    height: 100%; 
    
    display: flex; 
    /* UBAH KE flex-start: Agar teks naik ke atas */
    align-items: flex-start; 
    /* ATUR JARAK: Sesuaikan angka 25px ini agar sejajar persis dengan logo Anda */
    padding-top: 25px; 
}

.m-main-nav a:hover { 
    color: var(--red); 
}

/* --- 2. MEGA DROPDOWN (POSISI DINAIKKAN) --- */
.mega-dropdown {
    position: absolute;
    /* UBAH DISINI: Dari 79px menjadi lebih kecil (misal 65px atau 70px) 
       agar mepet dengan posisi teks yang sudah naik */
    top: 65px; 
    
    left: 50%;
    transform: translateX(-50%); 
    
    width: 95%;
    max-width: 750px; 
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--border);
    /* Pakai border penuh jika posisi dropdown sudah tidak menyentuh garis bawah header */
    border-radius: 12px; 
    
    padding: 20px 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 9999;
    pointer-events: none;
}

/* Munculkan dengan posisi tetap stabil */
.nav-item:hover .mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

/* --- STYLING KOLOM TETAP SAMA --- */
.mega-col h4 { 
    font-size: 11px;
    margin-bottom: 12px; 
    color: var(--red); 
    border-bottom: 1px solid #f0f0f0; 
    padding-bottom: 5px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
}

.mega-col a { 
    display: flex !important; 
    align-items: center;
    font-size: 11px !important; 
    font-weight: 600 !important; 
    padding: 6px 0 !important;
    color: #555 !important; 
    height: auto !important; 
    text-decoration: none;
    transition: 0.2s ease;
}

.mega-col a:hover { 
    color: var(--red) !important; 
    transform: translateX(5px);
}

/* --- 3. HERO --- */
.m-hero { 
    width: 100%;
    aspect-ratio: 16 / 9; 
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), 
                url('assets/images/header-nila.png') bottom center / cover no-repeat; 
    display: flex; 
    align-items: flex-start; 
    justify-content: center; 
    color: #fff; 
    text-align: center;
    
}
.m-hero h1 { font-family: 'Fredoka', sans-serif; font-size: clamp(32px, 5vw, 64px); text-shadow: 2px 2px 15px rgba(0,0,0,0.5); }
/* --- MINI FLOATING PROMO (STICKY) --- */
.m-mini-promo {
    position: fixed;
    bottom: 30px;
    right: 30px;
    
    /* KUNCI: Lebar mengikuti isi (gambar) */
    width: fit-content; 
    max-width: 300px; /* Batas maksimal agar tidak memenuhi layar */
    
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    z-index: 10001;
    overflow: hidden;
    transition: all 0.5s ease;
}

/* Gambar Promo Kecil */
.promo-card-inner img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}

.promo-info {
    padding: 15px;
    background: #fff;
}

.promo-info h4 {
    font-size: 13px;
    margin-bottom: 5px;
    color: var(--red);
    text-transform: uppercase;
}

.promo-info p {
    font-size: 11px;
    color: #444;
    line-height: 1.4;
    margin-bottom: 10px;
}
.promo-slides {
    position: relative;
    /* KUNCI: Container slideshow mengikuti ukuran gambar pertama */
    width: 100%;
    display: flex;
}

.p-slide {
    /* Gambar akan mempertahankan rasio aslinya */
    width: 100%;
    height: auto; 
    display: none; /* Sembunyikan default */
}

.p-slide.active {
    display: block; /* Munculkan yang aktif */
    /* Animasi halus saat muncul */
    animation: fadeIn 0.5s;
}



.promo-info {
    padding: 15px;
    text-align: center;
}
/* Tombol kecil */
.btn-mini-promo {
    display: inline-block;
    background: var(--black);
    color: #fff;
    padding: 6px 12px;
    font-size: 10px;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
}

.btn-mini-promo:hover {
    background: var(--red);
}

/* Tombol Tutup */
.close-mini {
    position: absolute;
    top: 5px;
    right: 8px;
    background: rgba(255,255,255,0.8);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    z-index: 10;
}

/* Class untuk menghilangkan promo */
.m-mini-promo.closed {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}
/* --- FLOATING WA SISI KIRI (Wrapper) --- */
/* Container Utama */
.wa-wrapper-left {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 10005;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Pastikan pilar rata kiri */
}

/* Pilar Menu: Admin + Bantuan */
.wa-menu {
    display: none; /* Muncul saat diklik */
    flex-direction: column;
    gap: 0;                /* NEMPEL ANTAR ITEM */
    margin-bottom: 2px;    /* NEMPEL KE LINGKARAN WA */
    margin-left: 2px;      /* SEJAJAR DENGAN SISI KIRI LINGKARAN */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    width: 150px;          /* UKURAN LEBIH KECIL/MINI */
    animation: bounceIn 0.4s ease forwards;
}

/* Item Link Admin */
.wa-item {
    background: white;
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    font-size: 11px;
    font-weight: 700;
    border-left: 3px solid #25d366;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    transition: 0.2s;
}

.wa-item i { margin-right: 6px; color: #25d366; }

.wa-item:hover {
    background: #f9f9f9;
    color: #25d366;
}

/* Item Pesan Bantuan (Bagian bawah pilar) */
.wa-help-item {
    background: #25d366;
    color: white;
    padding: 8px 12px;
    font-size: 10px;
    font-weight: 600;
    border-left: 3px solid #128c7e;
    text-align: center;
}

/* Lingkaran WhatsApp Mini */
.wa-icon-circle {
    width: 50px;           /* UKURAN MINI */
    height: 50px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.5);
    cursor: pointer;
    animation: wa-glow 2s infinite;
}

.wa-icon-circle img {
    width: 28px;
    height: 28px;
}


/* --- 4. CONTENT GRID & CARDS (MODERN LIST STYLE) --- */

/* Kontainer Utama */
.l-main { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 40px 20px; 
}

/* Judul Section */
.m-heading { 
    font-family: 'Fredoka', sans-serif; 
    font-size: 28px; 
    text-align: center;
    max-width: fit-content;
    margin: 60px auto; /* Margin lebih besar agar pemisahan antar section jelas */
    padding: 15px 40px;
    
    /* Efek Gradasi Background */
    background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
    
    /* Border yang lebih menonjol dengan aksen warna */
    border: 2px solid #eee;
    border-bottom: 4px solid var(--red); /* Garis bawah lebih tebal sebagai penanda */
    
    border-radius: 50px; /* Bentuk kapsul sempurna */
    
    /* Bayangan yang lebih dalam (Glow & Depth) */
    box-shadow: 0 15px 35px rgba(0,0,0,0.1), 0 5px 15px rgba(208, 2, 27, 0.05);
    
    position: relative;
    z-index: 1;
}

/* Tambahan dekorasi titik di kiri dan kanan agar makin keren */
.m-heading::before,
.m-heading::after {
    content: "•";
    color: var(--red);
    font-size: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-55%);
}

.m-heading::before { left: 15px; }
.m-heading::after { right: 15px; }

.m-heading span { 
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m-section { 
    margin-bottom: 60px; 
    scroll-margin-top: 100px; 
}

/* Pengaturan Grid (3 Kolom di Laptop, 1 di HP) */
.m-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 15px 25px; /* Jarak antar baris dan antar kolom */
}

/* Kotak Kartu */
.m-card { 
    display: flex;           /* Gambar & Teks sejajar menyamping */
    align-items: center;     /* Rata tengah secara vertikal */
    justify-content: flex-start; 
    background: #fff; 
    border-radius: 10px; 
    padding: 10px;           /* Ruang dalam kartu */
    transition: all 0.3s ease;
    border: 1px solid transparent; /* Border halus saat tidak di-hover */
}

/* Efek saat kursor di atas kartu */
.m-card:hover { 
    background-color: #f8f9fa;
    transform: translateX(5px);
    border-color: #eee;
}

/* Gaya Gambar Kecil */
.m-card img {
    width: 65px;             /* Ukuran gambar kecil */
    height: 65px; 
    object-fit: cover; 
    border-radius: 8px;      /* Sudut tumpul kotak */
    margin: 0;               /* Memastikan tidak ada sisa margin yang menjauhkan teks */
    flex-shrink: 0;          /* Gambar tidak akan gepeng */
}

/* Area Teks di Sebelah Kanan */
.m-card-body {
    padding-left: 12px;      /* JARAK ANTAR GAMBAR & TEKS */
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Judul Paket */
.m-card-body h3 {
    font-size: 15px; 
    font-weight: 600;
    margin: 0;
    color: #333;
    line-height: 1.3;
}

/* Keterangan Tambahan */
.m-card-body p {
    font-size: 12px;
    color: #444;
    margin: 4px 0 0 0;
}

/* --- GAYA LIST KECIL DENGAN HARGA (RAPAT KIRI) --- */

.m-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); 
    gap: 20px; 
}

.m-card { 
    display: flex;          /* Gambar & Teks sejajar menyamping */
    align-items: flex-start; /* Teks mulai dari atas gambar */
    padding: 12px;
    background: #fff; 
    border-radius: 12px;
    border: 1px solid #eee; /* Garis tipis luar */
    transition: 0.3s;
    gap: 15px;              /* Jarak antara gambar dan teks */
}
/* KUNCI: Membuat link di dalam kartu menjadi Flexbox */
.m-card-link, .m-card:not(:has(a)) {
    display: flex;         /* Membuat gambar & teks bersampingan */
    align-items: center;   /* Rata tengah vertikal */
    padding: 10px;
    gap: 15px;             /* Jarak rapat antara gambar dan teks */
    text-decoration: none;
    color: inherit;
    width: 100%;
}
.m-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-color: var(--red);
}

.m-card img {
    width: 80px;            /* Ukuran kotak gambar */
    height: 80px; 
    object-fit: cover; 
    border-radius: 10px;    /* Sudut tumpul kotak */
    flex-shrink: 0;
}

.m-card-body { 
    padding: 0;             /* Reset padding agar menempel ke gambar */
    text-align: left;       /* KUNCI: Teks rapat kiri */
}

.m-card-body h3 { 
    font-size: 15px; 
    margin: 0 0 5px 0;      /* Jarak bawah judul */
    line-height: 1.4; 
    font-weight: 700;
    color: #333;
}

.m-card-body p { 
    font-size: 13px; 
    color: #444; 
    margin: 0;
    line-height: 1.3;
}

/* Label Harga yang menyesuaikan posisi list */
.price-tag { 
    color: var(--red); 
    font-weight: 700; 
    display: inline-block;  /* Agar tidak memakan satu baris penuh */
    margin-top: 8px; 
    font-size: 14px; 
    padding: 2px 8px;
    background: rgba(255, 0, 0, 0.05); /* Background tipis agar harga menonjol */
    border-radius: 4px;
}
/* --- SECTION TENTANG KAMI (HYBRID LIGHT & NEON) --- */
.tentang-kami {
    padding: 100px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    scroll-margin-top: 80px;
}

/* Background Ornament agar tidak flat */
.tentang-kami::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 77, 77, 0.05) 0%, transparent 70%);
    z-index: 1;
}

.kami-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Header Styling - Match with History Header */
.kami-header {
    text-align: center;
    margin-bottom: 60px;
}

.kami-header .sub-title {
    color: #ff4d4d;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}

.kami-header .kami-title {
    font-size: clamp(32px, 5vw, 45px);
    color: #1a1a1a;
    font-weight: 900;
    letter-spacing: -1px;
    margin-top: 0;
}

.kami-header .kami-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ff4d4d, #ff9999);
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(255, 77, 77, 0.3);
}

/* Content Grid */
.kami-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.kami-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

.kami-text p {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
    margin-bottom: 15px;
}

/* Feature Cards - Light Glassmorphism */
.kami-features {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-kami {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

.feature-kami:hover {
    background: #ffffff;
    border-color: #ff4d4d;
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(255, 77, 77, 0.1);
}

.feature-kami i {
    color: #27ae60;
    font-size: 22px;
    filter: drop-shadow(0 0 5px rgba(39, 174, 96, 0.3));
}

.feature-kami span strong {
    color: #ff4d4d;
}

/* Stats Box - Light Glassmorphism */
.kami-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 35px 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    transition: 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.stat-box:hover {
    background: #1a1a1a;
    border-color: #ff4d4d;
    transform: translateY(-8px);
}

.stat-box .stat-number {
    display: block;
    font-size: 38px;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #1a1a1a 20%, #ff4d4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: 0.4s;
}

.stat-box:hover .stat-number {
    background: linear-gradient(135deg, #ffffff 20%, #ff4d4d 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 12px rgba(255, 77, 77, 0.6));
}

.stat-box .stat-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: 0.4s;
}

.stat-box:hover .stat-label {
    color: #ccc;
}
/* --- FAQ HYBRID STYLE (ACCORDION) --- */
.faq-minimal {
    margin-top: 80px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.faq-minimal h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px; /* Dibatasi agar tidak terlalu lebar dan mata tidak lelah */
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: 0.3s all ease;
}

.faq-item:hover {
    border-color: #ff4d4d;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 77, 77, 0.05);
}

.faq-q {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-q strong {
    font-size: 16px;
    color: #333;
    font-weight: 700;
    line-height: 1.4;
}

/* Indikator Panah */
.faq-q::after {
    content: '\f078'; /* FontAwesome Chevron Down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 12px;
    color: #ff4d4d;
    transition: 0.3s;
}

.faq-item.active .faq-q::after {
    transform: rotate(180deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fdfdfd;
}

.faq-item.active .faq-a {
    max-height: 500px; /* Beri nilai besar agar teks tidak terpotong */
    border-top: 1px solid #f0f0f0;
}

.faq-a p {
    padding: 20px 25px;
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin: 0;
}
/* --- SECTION HISTORY HYBRID & NEON GLOW --- */
.history-kami{padding:80px 0;background:#0f0f0f;color:#ffffff;overflow:hidden;position:relative;}
.history-kami::before{content:'';position:absolute;top:-10%;left:-10%;width:40%;height:60%;background:radial-gradient(circle,rgba(255,77,77,0.1) 0%,transparent 70%);z-index:1;}
.history-container{max-width:1200px;margin:0 auto;padding:0 20px;position:relative;z-index:2;}
.history-header{text-align:center;margin-bottom:60px;}
.history-header .sub-title{color:#ff4d4d;font-weight:700;letter-spacing:4px;text-transform:uppercase;font-size:12px;text-shadow:0 0 10px rgba(255,77,77,0.5);}
.history-header .kami-title{font-size:clamp(32px,5vw,45px);color:#fff;font-weight:900;margin-top:10px;letter-spacing:-1px;}
.history-header .kami-title::after{content:'';display:block;width:80px;height:4px;background:linear-gradient(90deg,#ff4d4d,#ff9999);margin:20px auto;border-radius:10px;box-shadow:0 0 15px rgba(255,77,77,0.8);}

/* CONTENT GRID */
.history-content-grid{display:grid;grid-template-columns:1.2fr 0.8fr;gap:50px;align-items:center;}
.history-text h3{font-size:30px;margin-bottom:20px;color:#fff;font-weight:700;line-height:1.2;}
.history-text p{line-height:1.7;color:#ccc;margin-bottom:15px;font-size:16px;}

/* HYBRID FEATURE CARDS */
.history-features{margin-top:30px;display:flex;flex-direction:column;gap:15px;}
.feature-kami,.feature-history{display:flex;align-items:flex-start;gap:15px;padding:20px;background:rgba(255,255,255,0.03);backdrop-filter:blur(10px);border-radius:15px;border:1px solid rgba(255,255,255,0.1);transition:0.4s cubic-bezier(0.4,0,0.2,1);}
.feature-kami:hover,.feature-history:hover{background:rgba(255,255,255,0.07);border-color:#ff4d4d;transform:scale(1.02);box-shadow:0 0 20px rgba(255,77,77,0.2);}
.feature-kami i,.feature-history i{color:#00ff88;font-size:22px;filter:drop-shadow(0 0 5px rgba(0,255,136,0.6));}
.feature-kami span strong,.feature-history span strong{color:#ff4d4d;text-shadow:0 0 8px rgba(255,77,77,0.4);}

/* --- NEON STATS BOX (HYBRID OPTIMIZED) --- */
.history-stats-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:15px;}
.stat-box{background:rgba(30,30,30,0.4);backdrop-filter:blur(20px);-webkit-backdrop-filter:blur(20px);padding:35px 20px;border-radius:24px;text-align:center;border:1px solid rgba(255,255,255,0.1);position:relative;transition:0.5s cubic-bezier(0.2,1,0.3,1);overflow:hidden;}
.stat-box:hover{border-color:rgba(255,77,77,0.8);box-shadow:0 0 40px rgba(255,77,77,0.25),inset 0 0 20px rgba(255,77,77,0.1);transform:translateY(-8px);}

/* Perbaikan Gradasi Teks agar tidak problem */
.stat-number{display:block;font-size:38px;font-weight:900;margin-bottom:5px;letter-spacing:-1px;
    background:linear-gradient(135deg,#ffffff 20%,#ff4d4d 100%);
    -webkit-background-clip:text;
    background-clip:text;
    -webkit-text-fill-color:transparent;
    color:transparent; /* Fallback jika webkit-text-fill tidak jalan */
    filter:drop-shadow(0 0 12px rgba(255,77,77,0.4));}

.stat-label{font-size:10px;color:#999;text-transform:uppercase;letter-spacing:2px;font-weight:700;}

/* Efek Cahaya Tambahan di dalam Box (Glow Interior) */
.stat-box::after{content:'';position:absolute;top:-50%;left:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(255,77,77,0.05) 0%,transparent 70%);pointer-events:none;}

/* --- OUR TEAM STYLES --- */
.team-section {
    padding: 60px 0;
    background-color: #fff;
}

.team-container {
    max-width: 1100px; /* Sedikit lebih lebar dari detail-container agar tim terlihat banyak */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.team-title {
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: 2px;
}

.team-grid {
    display: grid;
    /* Membuat kolom otomatis: minimal 150px, maksimal mengisi ruang */
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 30px;
    justify-content: center;
}

.team-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.team-circle {
    width: 130px;  /* Ukuran lingkaran */
    height: 130px; /* Ukuran harus sama dengan width */
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 15px;
    border: 3px solid var(--red); /* Opsional: warna pinggiran seperti gambar contoh */
    transition: transform 0.3s ease;
}

.team-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Agar wajah tidak penyet */
}

.team-item:hover .team-circle {
    transform: scale(1.05); /* Efek zoom saat kursor di atas foto */
}

.team-info h4 {
    font-size: 16px;
    margin: 5px 0;
    color: #333;
}

.team-info p {
    font-size: 13px;
    color: #444;
}

/* SECTION UTAMA */
.why-nila-section {
    position: relative;
    padding-top: 60px;
    padding-bottom: 80px; /* Diubah dari absolute ke margin agar tidak menumpuk */
    background-color: transparent;
    z-index: 1;
}

.why-nila-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-nila-header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(20, 20, 20, 0.8) 100%);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #ffffff;
    text-align: center;
    padding: 40px 20px; 
    border-radius: 15px;
    max-width: 750px;
    margin: 0 auto 40px; /* Jarak bawah ke fitur */
    border: 2px solid var(--yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* KUNCI PERBAIKAN: FEATURES BOX */
.why-nila-features {
    display: flex;
    flex-wrap: wrap; /* Agar otomatis turun ke bawah di HP */
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    
    /* HAPUS POSITION ABSOLUTE */
    position: relative; 
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    z-index: 3;
}

.feature-item { 
    text-align: center; 
    flex: 1; 
    min-width: 250px; /* Supaya di HP tidak terlalu sempit */
    padding: 15px; 
}

/* Heading & Line Height */
.why-nila-header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 900;
    color: var(--yellow);
    line-height: 1.3; /* Dilonggarkan agar tidak menumpuk antar baris */
    margin-bottom: 25px; 
    text-shadow: 2px 2px 0px var(--red);
}


/* CTA BUTTON - KEMBALI KE STYLE ASLI ANDA */
.cta-button {
    display: inline-block;
    background: var(--yellow);
    color: #dacece;
    padding: 12px 30px; 
    border-radius: 8px;
    text-decoration: none;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    position: relative;
    z-index: 1000;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.cta-button:hover {
    background: #000000;
    color: var(--yellow);
    border: 3px solid var(--yellow); /* Sesuai kode Anda: 3px */
    transform: scale(1.1); /* Efek membesar saat hover */
    box-shadow: 0 0 30px rgba(253, 216, 53, 0.6); /* Efek Glow Kuning */
}

/* ANIMASI PULSE YELLOW - SAMA PERSIS KODE ANDA */
.cta-button.animate { 
    animation: pulse-yellow 2s infinite; 
}

/* ============================================================
   SECTION: FAQ (STABIL UNTUK HP)
   ============================================================ */
.faq-section {
    padding: 120px 0 80px; /* Diatur agar pas dengan tumpang tindih fitur */
    background-color: var(--grey);
    overflow: hidden;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.faq-image-content { flex: 1; position: relative; min-width: 300px; }
.faq-illustration { max-width: 100%; height: auto; display: block; }
.faq-text-content { flex: 1.5; }

.faq-text-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(26px, 4vw, 38px);
    margin-bottom: 30px;
    line-height: 1.2;
    color: #222;
}

.accordion { border-radius: 10px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.05); }
.accordion-item { border-bottom: 1px solid #eee; background: #fff; }

.accordion-header {
    background-color: white;
    color: #222;
    cursor: pointer;
    padding: 18px 25px;
    width: 100%;
    border: none;
    text-align: left;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.accordion-header::after { content: '\002B'; font-size: 20px; color: var(--red); }
.accordion-header.active::after { content: '\2212'; }

.accordion-content { padding: 0 25px; background-color: white; max-height: 0; overflow: hidden; transition: max-height 0.4s ease-out; }
.accordion-content p { padding: 15px 0; font-size: 14px; line-height: 1.7; color: #444; }
/* 1. Pengaturan Font & Body (Opsional jika belum ada) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;700;800&family=Inter:wght@400;500&display=swap');

/* 2. Wrapper Utama (Memastikan di Tengah Layar) */
.testimonial-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    background-color: #f8f9fa; /* Warna dasar halaman */
    min-height: 100vh; /* Agar tepat di tengah secara vertikal */
}

/* 3. Kartu Pembungkus (Desain 2030 - Ramping & Rapi) */
.testimonial-card-wrapper {
    background: #ffffff;
    width: 100%;
    max-width: 380px; /* Ukuran Ramping ala Smartphone */
    padding: 40px 24px;
    border-radius: 40px; /* Sudut sangat bulat (Trendy 2030) */
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.03), 
        0 40px 80px rgba(0, 0, 0, 0.05); /* Soft Deep Shadow */
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* 4. Header Judul */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.modern-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    color: #121212;
    margin: 0;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    margin-top: 8px;
    line-height: 1.4;
}

/* 5. Container Gulir (Viewport) */
.vertical-scroll-container {
    height: 480px; /* Tinggi "jendela" intip */
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Masking Fade Out di Atas & Bawah */
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

/* 6. Jalur Track Animasi */
.vertical-track {
    display: flex;
    flex-direction: column;
    gap: 18px; /* Jarak antar screenshot */
    animation: scrollContinuous 25s linear infinite;
}

/* Berhenti saat hover */
.vertical-track:hover {
    animation-play-state: paused;
}

/* 7. Styling Gambar Screenshot */
.ss-comment {
    width: 100%;
    height: auto;
    border-radius: 20px; /* Rounded corners pada gambar */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #f0f0f0;
}

.ss-comment:hover {
    transform: scale(1.03); /* Efek pop-up halus saat disentuh */
}



/* --- FOOTER LEBAR & TINGGI (PREMIUM WIDE) --- */
.m-footer{background:#1a1a1a;color:#ffffff;padding:60px 40px;border-top:4px solid var(--red);position:relative;width:100%;}
.f-container{max-width:1600px;margin:0 auto;display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr 1fr;gap:30px;align-items:start;}
.f-col .m-header__logo{color:#ffffff;font-size:22px;margin-bottom:20px;display:block;white-space:nowrap;font-weight:700;}
.f-about-text{color:#aaa;font-size:13px;line-height:1.8;margin-bottom:20px;max-width:300px;}

.f-col h4{font-size:14px;font-weight:700;margin-bottom:20px;color:#fff;text-transform:uppercase;letter-spacing:1.5px;position:relative;white-space:nowrap;}
.f-col h4::after{content:'';position:absolute;left:0;bottom:-8px;width:30px;height:2px;background:var(--red);}

.f-links{list-style:none;padding:0;margin:0;}
.f-links li{margin-bottom:12px;}
.f-links a{color:#ccc;text-decoration:none;font-size:13px;transition:0.3s;display:block;white-space:nowrap;}
.f-links a:hover{color:var(--red);padding-left:8px;}

.f-text{font-size:13px;color:#ccc;line-height:1.6;margin-bottom:10px;white-space:nowrap;}
.f-text i{color:var(--red);margin-right:10px;width:15px;}

.f-socials{display:flex;gap:12px;margin-top:20px;}
.f-socials a{width:40px;height:40px;background:rgba(255,255,255,0.05);color:#fff;display:flex;align-items:center;justify-content:center;border-radius:10px;transition:0.3s;border:1px solid rgba(255,255,255,0.1);}
.f-socials a:hover{background:var(--red);transform:translateY(-5px);}

.f-bottom{text-align:center;padding-top:30px;margin-top:50px;font-size:12px;color:#bbb;border-top:1px solid rgba(255,255,255,0.05);}

/* ============================================================
   ULTIMATE ULTRA-COMPACT RESPONSIVE (SUPER RAMPING)
   ============================================================ */

/* --- 1. TABLET & LAPTOP (MAX 1024PX) --- */
@media(max-width:1024px){
    .f-container { grid-template-columns: repeat(2, 1fr); gap:10px; padding:0 10px; }
    .history-content-grid, 
    .faq-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 10px !important;
    }
}

/* --- 2. HEADER & NAVIGASI (ULTRA MINI) --- */
@media (max-width: 992px) {
    .m-header {
        height: auto !important;
        min-height: 110px; 
    }

    .m-header__inner {
        flex-direction: column !important;
        height: auto !important;
        padding: 10px 0 0 0 !important;
        align-items: center;
    }

    .m-header__logo {
        margin-bottom: 5px;
        transform: scale(0.85);
    }

    .m-main-nav {
        display: block !important;
        width: 100%;
        background: #fdfdfd; 
        border-top: 1px solid #eee;
        overflow: hidden; 
    }

    .m-main-nav ul {
        display: flex !important; 
        flex-direction: row !important;
        justify-content: flex-start !important;
        overflow-x: auto !important; 
        white-space: nowrap !important; 
        padding: 12px 15px !important;
        gap: 5px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .m-main-nav ul::-webkit-scrollbar { display: none; }

    .nav-item {
        display: inline-block !important;
        flex: 0 0 auto; 
    }

    .m-main-nav a {
        padding: 5px 12px !important;
        font-size: 11px !important;
        letter-spacing: 0.5px;
        color: #333 !important;
        background: #f5f5f5; 
        border-radius: 20px;
        margin-right: 5px;
        align-items: center !important;
    }

    body { padding-top: 130px !important; }
    .mega-dropdown { display: none !important; }
}

/* --- 3. HANDPHONE (MAX 768PX) - SERBA KECIL & RAPI --- */
@media(max-width:768px){
    section { padding: 15px 0 !important; } 
    
    .m-heading { 
        width: 85% !important; 
        max-width: 280px !important;
        margin: 10px auto !important; 
        font-size: 11px !important; 
        padding: 5px 12px !important; 
        
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        
        /* SOLUSI SPASI: Memberi jarak antar teks & span */
        gap: 5px !important; 
        
        white-space: normal !important; 
        height: auto !important; 
    }

    .m-grid, .history-stats-grid, .kami-stats-grid { 
        grid-template-columns: repeat(2, 1fr) !important; 
        gap: 6px !important; 
    }
    .team-grid { grid-template-columns: repeat(4, 1fr) !important; gap: 5px; }

    .m-card { padding: 4px !important; gap: 6px !important; border-radius: 5px; }
    .m-card img { width: 40px !important; height: 40px !important; }
    .m-card-body h3 { font-size: 10px !important; line-height: 1.1; margin: 0; }
    .m-card-body p { display: none; } 
    .price-tag { font-size: 9px !important; padding: 0 4px !important; margin-top: 2px; }

    /* --- KAMI-CONTAINER (STYLE MATCHING WITH HISTORY) --- */
    .kami-container {
        display: flex !important;
        flex-direction: column !important;
        padding: 15px 10px !important; 
        gap: 12px !important;
        width: 100% !important;
        align-items: center !important;
        background: #ffffff;
    }

    .feature-kami { width: 100% !important; text-align: center !important; }
    .kami-title {
        font-size: 16px !important;
        font-weight: 800 !important;
        line-height: 1.2 !important;
        margin: 0 auto 6px !important;
    }
    .kami-description {
        font-size: 11px !important;
        line-height: 1.5 !important;
        color: #555;
        max-width: 90%;
        margin: 0 auto !important;
    }

    .kami-image, .kami-illustration, .history-image {
        width: 100% !important;
        max-width: 130px !important; 
        height: auto !important;
        margin: 5px auto !important;
        filter: drop-shadow(0 8px 15px rgba(0,0,0,0.06));
    }

    .kami-wrapper, .history-content-grid { margin: 0 !important; padding: 0 !important; }

    /* Why Nila & Features - Optimized to 2 Columns */
    .why-nila-header { padding: 10px !important; margin-bottom: 5px !important; }
    .why-nila-header h1 { font-size: 16px !important; line-height: 1.1; }
    .why-nila-features { 
        padding: 8px !important; 
        margin-top: 5px !important; 
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 6px !important;
    }
    .feature-item { padding: 5px !important; min-width: unset !important; text-align: center; }
    .feature-item h3 { font-size: 11px !important; }
    .feature-item i { font-size: 14px !important; }

    /* Stats & Team */
    .stat-box { padding: 8px !important; border-bottom-width: 2px !important; }
    .stat-number { font-size: 16px !important; font-weight: 800; }
    .stat-label { font-size: 7px !important; letter-spacing: 0px; }
    .team-circle { width: 45px !important; height: 45px !important; }
    .team-info h4 { font-size: 8px !important; }
    .team-info p { font-size: 7px !important; }

    /* FAQ Mini */
    .faq-section { padding: 15px 0 !important; }
    .accordion-header { font-size: 11px !important; padding: 8px 12px !important; }
    .accordion-content p { font-size: 10px !important; padding: 5px 0 !important; }
}

/* --- 4. MERAPATKAN GLOBAL (BODY & SECTION) --- */
body, .l-main { padding-bottom: 0 !important; margin-bottom: 0 !important; }

section, .m-section, .faq-section, .testimonial-section, .why-nila-section {
    padding-top: 10px !important; 
    padding-bottom: 10px !important;
    margin: 0 !important;
}

.m-heading, .section-header, .why-nila-header {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
    padding-top: 5px !important;
}

.faq-container { gap: 5px !important; padding-top: 0 !important; }
.faq-image-content, .history-image {
    width: 100% !important;
    max-width: 140px !important; 
    min-width: unset !important;
    margin: 0 auto !important;
}

.f-container, .faq-container, .testimonial-card-wrapper {
    margin-bottom: 0 !important;
    padding-bottom: 10px !important;
}
/* ==========================================================
   2. KHUSUS HP / MOBILE (Gunakan Kode ke-1 kamu di sini)
   Ukuran layar di bawah 768px akan otomatis pakai kode ini
   ========================================================== */
@media (max-width: 768px) {
    .m-mini-promo {
        bottom: 15px !important; 
        right: 15px !important;
        max-width: 160px !important; /* Disesuaikan agar tidak kekecilan di HP */
        border-radius: 8px !important;
    }

    .promo-card-inner img {
        height: 80px !important; /* Gambar diperpendek di HP */
    }

    .promo-info {
        padding: 8px !important;
    }

    .promo-info h4 {
        font-size: 10px !important;
    }

    .promo-info p {
    font-size: 8px !important; 
    line-height: 1.2 !important;
    margin-bottom: 6px !important;

    /* Gunakan kombinasi ini */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    
    /* Properti standar (membantu menghilangkan warning di beberapa linter) */
    line-clamp: 2; 
    
    overflow: hidden;
}

    .btn-mini-promo {
        padding: 4px 8px !important;
        font-size: 9px !important;
        width: 100%;
    }
}
/* --- 5. ANIMASI & TAMBAHAN (OPTIMIZED) --- */
@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes wa-glow {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); transform: scale(1); }
    50% { box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); transform: scale(1.03); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

@keyframes bounceIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-yellow {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(253, 216, 53, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(253, 216, 53, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(253, 216, 53, 0); }
}

@keyframes scrollContinuous {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

/* --- 6. FOOTER & HP SANGAT KECIL (MAX 480PX) --- */
@media(max-width:480px){
    .f-container { gap: 10px !important; }
    .f-col h4 { font-size: 10px !important; }
    .f-links a, .f-text, .f-about-text { font-size: 9px !important; }
    .m-footer { padding: 15px 10px !important; }
    .cta-button { padding: 5px 12px !important; font-size: 10px !important; }
    .testimonial-card-wrapper { padding: 15px 10px !important; max-width: 100%; }
    .modern-title { font-size: 16px !important; }
}

/* ANTI-OVERFLOW FIX */
html, body { overflow-x: hidden; width: 100%; position: relative; }