 
       :root {
    --primary: #800000;  /* Maroon Utama */
    --primary-light: #a52a2a; /* Maroon Terang untuk Hover */
    --dark: #0a0a0a;
    --white: #ffffff;
    --bg-light: #fdf2f2; /* Putih kemerahan sangat tipis untuk background */
}
        * { margin: 0; padding: 0; box-sizing: border-box; scroll-behavior: smooth; }
        body { font-family: 'Plus Jakarta Sans', sans-serif; background: var(--white); color: var(--dark); overflow-x: hidden; line-height: 1.6; }

       /* --- 2. HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 20px; left: 50%; transform: translateX(-50%);
    width: 90%; max-width: 1200px;
    padding: 12px 30px;
    display: flex; justify-content: space-between; align-items: center;
    z-index: 5000;
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(15px);
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

header.scrolled { top: 0; width: 100%; border-radius: 0; padding: 10px 8%; background: var(--white); border-bottom: 2px solid var(--primary); }
.logo img { height: 45px; width: auto; } 

.desktop-nav ul { display: flex; list-style: none; gap: 25px; align-items: center; margin: 0; padding: 0; }
.desktop-nav ul li { position: relative; }
.desktop-nav ul li a { color: var(--dark); text-decoration: none; font-size: 0.85rem; font-weight: 700; transition: 0.3s; }
.desktop-nav ul li a:hover { color: var(--primary); }

/* Dropdown Fix */
.dropdown {
    position: absolute; top: 100%; left: 0;
    background: var(--white); min-width: 200px; border-radius: 15px;
    padding: 12px 0; opacity: 0; visibility: hidden;
    transform: translateY(15px); transition: 0.3s;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 1px solid #eee; margin-top: 10px;
}
.desktop-nav ul li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a { padding: 10px 20px !important; display: block !important; color: var(--dark) !important; font-size: 0.8rem !important; }

.menu-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.menu-toggle span { width: 25px; height: 3px; background: var(--dark); border-radius: 10px; }

/* Mobile Overlay */
.mobile-overlay {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh;
    background: var(--white); z-index: 6000; padding: 80px 40px 40px;
    transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
    display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-overlay.active { right: 0; }
.mobile-overlay ul { list-style: none; padding: 0; margin: 0; }
.mobile-overlay ul li { margin-bottom: 20px; border-bottom: 1px solid #eee; padding-bottom: 10px; }
.mobile-overlay ul li a { font-size: 1.5rem; font-weight: 800; color: var(--dark); text-decoration: none; }
.close-mobile { position: absolute; top: 20px; right: 30px; font-size: 2.5rem; cursor: pointer; color: var(--dark); line-height: 1; }

/* --- INFO KONTAK DI MOBILE MENU --- */
.mobile-contact-info {
    margin-top: auto; /* Memaksa info turun ke bawah layar */
    padding-top: 30px;
    color: var(--dark);
}
.mobile-contact-info h5 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--primary); /* Menggunakan warna primary bawaan Anda */
}
.mobile-contact-info p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 10px;
}
.mobile-contact-info i {
    color: var(--primary);
    margin-right: 8px;
}

/* --- 3. SHIMMER BUTTON --- */
@keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
.btn-shimmer {
    position: relative; overflow: hidden; background: var(--primary); color: #fff !important;
    padding: 14px 30px; border-radius: 50px; text-decoration: none; font-weight: 700; display: inline-block;
}
.btn-shimmer::after {
    content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

/* =========================================
   KODE PENYELAMAT MODE HP (MEDIA QUERIES)
   Ini yang akan memisahkan desain Laptop & HP
   ========================================= */
@media (max-width: 991px) {
    /* 1. Sembunyikan menu desktop */
    .desktop-nav {
        display: none !important; 
    }
    
    /* 2. Munculkan Hamburger */
    .menu-toggle {
        display: flex !important; 
    }

    /* 3. Sesuaikan Navbar Pil agar tidak mentok di layar kecil */
    header {
        width: 95%;
        padding: 12px 20px;
    }

    .logo img {
        height: 35px; /* Sedikit dikecilkan di HP agar proporsional */
    }
}

        /* --- 4. HERO SECTION --- */
        .hero-split {
            position: relative; min-height: 100vh; display: flex; align-items: center;
            padding: 100px 8%; background: #000; overflow: hidden;
        }
        .hero-video-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; object-fit: cover; opacity: 0.4; }
        .hero-overlay { position: absolute; inset: 0; background: linear-gradient(rgba(0,0,0,0.8), rgba(230,30,42,0.1)); z-index: 2; }
        .hero-content { position: relative; z-index: 3; display: flex; align-items: center; width: 100%; gap: 50px; }
        .hero-left { flex: 1; color: #fff; }
        .hero-left h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
        .typewriter { color: var(--primary); border-right: 3px solid #fff; padding-right: 10px; }
        .hero-right { flex: 1.2; }
        .video-card { background: rgba(255,255,255,0.05); backdrop-filter: blur(10px); padding: 12px; border-radius: 30px; border: 1px solid var(--primary); margin-bottom: 20px; }
        .video-card iframe { width: 100%; aspect-ratio: 16/9; border-radius: 20px; border: none; }

     

   /* =========================================
   COMPACT SERVICES (FIXED & SOLID LAYOUT)
========================================= */
.compact-services {
    padding: 100px 0 60px;
    background-color: #f9f9f9; /* Memberikan warna alas agar tidak "ngegantung" dengan section lain */
    overflow: hidden;
    border-top: 1px solid #eeeeee; /* Garis pemisah halus */
    border-bottom: 1px solid #eeeeee;
}

/* --- HEADER LAYANAN --- */
.services-header {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.services-header h2 span {
    color: var(--primary);
}

.services-header p {
    color: #666666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Membatasi lebar area Swiper agar kartu proporsional di PC */
.serviceSwiper {
    max-width: 1050px; 
    margin: 0 auto;
}

/* --- KARTU LAYANAN MINI --- */
.service-mini-card {
    position: relative;
    border-radius: 24px; /* Sudut sedikit lebih membulat agar modern */
    overflow: hidden;
    aspect-ratio: 1 / 1; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); /* Shadow dibuat lebih lebar dan halus */
    cursor: pointer;
    background-color: var(--white);
    border: 1px solid #ffffff; /* Membingkai tepi kartu */
}

.service-mini-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Efek Lapisan Gradient Bawah yang Lebih Solid */
.service-mini-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 50%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.mini-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 25px; /* Ruang bernapas teks diperbesar */
    color: var(--white);
    font-size: 1.4rem; 
    font-weight: 800;
    text-align: center;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease, color 0.4s ease;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Teks lebih tebal terbaca */
}

/* Interaksi Hover */
.service-mini-card:hover img {
    transform: scale(1.08);
}

.service-mini-card:hover .mini-label {
    transform: translateY(0);
    color: #ffd1d1; /* Aksen warna merah muda saat disorot */
}

/* --- KUSTOMISASI TITIK SWIPER (PAGINATION) --- */
.compact-services .swiper-pagination {
    position: relative;
    margin-top: 40px;
}

.compact-services .swiper-pagination-bullet {
    background-color: #bbbbbb;
    width: 10px;
    height: 10px;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.compact-services .swiper-pagination-bullet-active {
    background-color: var(--primary);
    width: 30px;
    border-radius: 10px;
    opacity: 1;
}

/* Responsive untuk HP */
@media (max-width: 768px) {
    .compact-services {
        padding: 80px 0 40px;
    }
    .services-header h2 {
        font-size: 2.2rem;
    }
    .services-header p {
        font-size: 0.95rem;
    }
    .mini-label {
        font-size: 1.2rem;
        padding: 25px 15px;
    }
}
/* --- KUSTOMISASI TITIK SWIPER (PAGINATION) --- */
.compact-services .swiper-pagination {
    position: relative;
    margin-top: 30px;
}

.compact-services .swiper-pagination-bullet {
    background-color: #cccccc;
    width: 10px;
    height: 10px;
    opacity: 1;
    transition: all 0.3s ease;
}

.compact-services .swiper-pagination-bullet-active {
    background-color: var(--primary);
    width: 25px;
    border-radius: 10px;
}

/* Responsive untuk HP */
@media (max-width: 768px) {
    .compact-services {
        padding: 80px 0 40px;
    }
    .compact-services h2 {
        font-size: 2.2rem;
    }
}     

/* =========================================
   PORTFOLIO SECTION (DARK CAROUSEL)
========================================= */
.section-portfolio-dark {
    background-color: #050505; /* Warna latar sangat gelap (hitam pekat) */
    padding: 100px 5%;
    color: #ffffff;
}

.portfolio-dark-container {
    max-width: 1250px;
    margin: 0 auto;
}

.portfolio-dark-header p {
    text-align: center;
    font-size: 1.5rem;
    margin-bottom: 60px;
    font-weight: 500;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

/* --- KARTU PORTOFOLIO --- */
.portfolio-dark-card {
    background-color: #121212; /* Abu-abu sangat gelap untuk kontras kartu */
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Bagian Gambar Atas */
.portfolio-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #000;
}

.portfolio-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Label Teks di Atas Gambar */
.portfolio-img-labels {
    position: absolute;
    top: 25px;
    left: 25px;
    z-index: 2;
}

.title-label {
    font-weight: 800;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 6px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
    line-height: 1.2;
}

.loc-label {
    background-color: #f39c12; /* Warna oranye seperti di gambar */
    color: #000000;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    display: inline-block;
}

/* Bagian Bawah Kartu (Teks & Tombol) */
.portfolio-card-content {
    padding: 50px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.portfolio-card-content h3 {
    font-size: 1.3rem;
    font-weight: 400; /* Font tipis elegan */
    margin-bottom: 40px;
    color: #ffffff;
}

/* Tombol Read More */
.btn-read-more {
    background-color: #ffffff;
    color: #000000;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background-color: #dddddd;
    transform: translateY(-3px);
}
.portfolio-dark-header h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px; /* Jarak antara judul dan paragraf */
}

/* Sedikit penyesuaian untuk HP agar judul tidak kebesaran */
@media (max-width: 768px) {
    .portfolio-dark-header h2 {
        font-size: 2.2rem;
    }
}
/* --- KUSTOMISASI PANAH NAVIGASI SWIPER --- */
.custom-nav-btn {
    background-color: #ffffff;
    color: #000000 !important;
    width: 45px !important;
    height: 45px !important;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.custom-nav-btn::after {
    font-size: 1.2rem !important;
    font-weight: 900;
}

/* Menggeser panah sedikit ke dalam */
.swiper-button-prev.custom-nav-btn { left: 10px; }
.swiper-button-next.custom-nav-btn { right: 10px; }

/* Kustomisasi Titik Bawah */
.custom-pagination {
    position: relative;
    margin-top: 50px;
}
.custom-pagination .swiper-pagination-bullet {
    background-color: #555555;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
}
.custom-pagination .swiper-pagination-bullet-active {
    background-color: #ffffff;
}

/* Responsive untuk HP */
@media (max-width: 768px) {
    .portfolio-dark-header p {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }
    .portfolio-card-content {
        padding: 30px 20px;
    }
    .portfolio-img-labels {
        top: 15px; left: 15px;
    }
}

      /* --- SECTION STATS (PARALLAX & GLASSMORPHISM) --- */
.section-stats { 
    position: relative; 
    padding: 120px 8%; 
    /* Gambar Event Mewah dari Unsplash */
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?q=80&w=1920&auto=format&fit=crop'); 
    /* Kunci Parallax */
    background-attachment: fixed; 
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat;
    text-align: center; 
}

/* Overlay Hitam Transparan */
.stats-overlay { 
    position: absolute; 
    inset: 0; 
    background: rgba(10, 10, 10, 0.85); /* Cukup gelap agar kaca glassmorphism terlihat jelas */
    z-index: 1; 
}

.container-stats { 
    position: relative; 
    z-index: 2; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    max-width: 1200px; 
    margin: 0 auto; 
}

/* Efek Kaca (Glassmorphism) yang lebih Corporate */
.stat-item { 
    background: rgba(255, 255, 255, 0.05); /* Sedikit lebih transparan */
    backdrop-filter: blur(12px); 
    -webkit-backdrop-filter: blur(12px);
    padding: 50px 30px; 
    border-radius: 16px; /* Dibuat 16px agar lurus dan selaras dengan section sebelumnya */
    border: 1px solid rgba(255, 255, 255, 0.1); 
    color: #fff; 
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(128, 0, 0, 0.5); /* Aksen garis maroon saat dihover */
}

.stat-item i { 
    font-size: 3rem; 
    color: var(--primary, #800000); 
    margin-bottom: 20px; 
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: #ffffff;
}

.stat-item p {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #cccccc;
    margin: 0;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
    .section-stats {
        padding: 80px 5%;
        background-attachment: scroll; /* Opsional: Matikan parallax di HP jika ingin performa lebih ringan */
    }
    
    .stat-item h2 {
        font-size: 2.8rem;
    }
}

      /* =========================================
   FAQ SECTION (ACCORDION)
========================================= */
.section-faq {
    padding: 100px 8%;
    background-color: #fbfbfb; /* Latar abu-abu sangat muda agar kartu putih menonjol */
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.faq-header h2 span {
    color: var(--primary);
}

.faq-header p {
    color: #666666;
    font-size: 1.1rem;
}

/* --- DAFTAR FAQ --- */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px; /* Jarak antar pertanyaan */
}

.faq-item {
    background-color: var(--white);
    border: 1px solid #eeeeee;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
    overflow: hidden; /* Sembunyikan jawaban sebelum diklik */
    cursor: pointer;
    transition: all 0.4s ease;
}

/* Efek Hover saat Kursor Mendekat */
.faq-item:hover {
    border-color: #dddddd;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
}

/* Efek saat Pertanyaan Diklik (Aktif) */
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(128, 0, 0, 0.08); /* Bayangan merah maroon tipis */
}

/* --- BARIS PERTANYAAN --- */
.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-item.active .faq-question {
    color: var(--primary); /* Teks berubah menjadi primary color saat aktif */
}

/* Ikon Plus di Sebelah Kanan */
.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    font-size: 0.9rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    flex-shrink: 0;
}

/* Ikon Berputar menjadi "X" saat aktif */
.faq-item.active .faq-icon {
    background-color: var(--primary);
    color: var(--white);
    transform: rotate(135deg); /* Memutar ikon Plus menjadi ikon X (silang) */
}

/* --- BARIS JAWABAN (ANIMASI SLIDE DOWN) --- */
.faq-answer {
    max-height: 0; /* Awalnya tinggi diset 0 */
    overflow: hidden;
    transition: max-height 0.4s ease-in-out; /* Animasi meluncur */
}

.faq-item.active .faq-answer {
    max-height: 300px; /* Tinggi maksimal saat terbuka (bisa disesuaikan jika teks panjang) */
}

.faq-answer-inner {
    padding: 0 30px 30px 30px; /* Bawah ditarik 30px */
    color: #666666;
    line-height: 1.7;
    font-size: 0.95rem;
    border-top: 1px dashed transparent; 
}

.faq-item.active .faq-answer-inner {
    border-top-color: #eeeeee; /* Garis putus-putus muncul membatasi pertanyaan & jawaban */
    padding-top: 20px;
    margin-top: -5px;
}

/* --- RESPONSIVE UNTUK HP --- */
@media (max-width: 768px) {
    .section-faq {
        padding: 80px 20px;
    }
    .faq-header h2 {
        font-size: 2.2rem;
    }
    .faq-question {
        padding: 20px;
        font-size: 1.05rem;
        gap: 15px; /* Memberi jarak jika teks bertumpuk dengan ikon */
    }
    .faq-answer-inner {
        padding: 0 20px 20px 20px;
    }
    .faq-icon {
        width: 35px;
        height: 35px;
    }
}

       /* --- 10. UPGRADED CTA SECTION --- */
.section-cta {
    position: relative;
    padding: 120px 8%;
    /* Gradasi Maroon Deep ke Hitam */
    background: linear-gradient(135deg, #0a0a0a 0%, #4a0000 50%, #0a0a0a 100%);
    text-align: center;
    color: #fff;
    overflow: hidden;
    border-top: 4px solid var(--primary);
}

/* Dekorasi Cahaya di Latar Belakang */
.cta-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center, rgba(128, 0, 0, 0.3) 0%, transparent 70%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.tagline-cta {
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 4px;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 20px;
}

.section-cta h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.section-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
    line-height: 1.8;
}

/* Grouping Buttons */
.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Button Outline Style */
.btn-outline {
    padding: 14px 35px;
    border-radius: 50px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: var(--primary);
    transform: translateY(-5px);
}

/* Shimmer Button Adjustment */
.btn-shimmer i {
    margin-right: 10px;
    font-size: 1.2rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-cta {
        padding: 80px 5%;
    }
    .cta-btns {
        flex-direction: column;
    }
    .btn-shimmer, .btn-outline {
        width: 100%;
    }
}


/* =========================================
   CINEMATIC FOOTER
========================================= */
.footer-cinematic {
    position: relative;
    /* Ganti URL di bawah ini dengan foto panggung/event Anda sendiri */
    background-image: url('https://images.unsplash.com/photo-1511578314322-379afb476865?q=80&w=1920&auto=format&fit=crop'); 
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Opsi tambahan untuk efek parallax pada background */
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Lapisan hitam transparan agar teks terbaca */
.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
}

.footer-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 5% 20px; /* Jarak atas 80px, bawah 20px */
}

/* --- GRID LAYOUT --- */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr; /* Kolom 1 lebih lebar seperti di gambar */
    gap: 40px;
    margin-bottom: 60px;
}

/* --- KOLOM 1: LOGO & LOKASI --- */
.footer-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.branch-info {
    margin-bottom: 25px;
}

.branch-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary, #f39c12); /* Menggunakan warna primary, fallback ke oranye */
    margin-bottom: 10px;
}

.branch-header h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
}

.branch-header i {
    font-size: 1.2rem;
}

.branch-info p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #dddddd;
    margin: 0;
    padding-left: 25px; /* Sejajar dengan teks judul, melewati ikon */
}

/* --- JUDUL KOLOM LAINNYA --- */
.col-title {
    color: var(--primary, #f39c12);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

/* --- DAFTAR LINK & KONTAK --- */
.footer-links, .footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li, .footer-contact-list li {
    margin-bottom: 15px;
}

.footer-links a, .footer-contact-list a {
    color: #dddddd;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a:hover, .footer-contact-list a:hover {
    color: #ffffff;
}

.footer-contact-list i {
    font-size: 1.1rem;
    width: 20px; /* Menyamakan lebar ikon agar teks rata rapi */
    text-align: center;
}

/* --- COPYRIGHT BAWAH --- */
.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Garis pembatas tipis */
}

.footer-bottom p {
    font-size: 0.85rem;
    color: #aaaaaa;
    font-weight: 600;
    letter-spacing: 1px;
    margin: 0;
}

/* --- RESPONSIVE LAYOUT --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr); /* Menjadi 2 baris x 2 kolom di tablet */
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Menjadi 1 kolom memanjang di HP */
        gap: 50px;
    }
    .footer-container {
        padding-top: 60px;
    }
}
     

/* --- SECTION ABOUT (DESKTOP) --- */
.section-about {
    padding: 120px 8%;
    background-color: var(--bg-light);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    width: 100%;
}

/* --- GAMBAR & FRAME ELEGAN --- */
.about-img-wrapper {
    flex: 1;
    position: relative;
    max-width: 550px;
    z-index: 1;
}

.about-img {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    /* Soft shadow untuk menggantikan flat block shadow */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.about-img-wrapper:hover .about-img img {
    transform: scale(1.03); /* Zoom in halus saat di-hover */
}

/* Frame garis maroon di belakang gambar (Modern Corporate Style) */
.img-frame {
    position: absolute;
    top: 30px;
    left: -30px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 16px;
    z-index: 1;
    transition: all 0.5s ease;
}

.about-img-wrapper:hover .img-frame {
    top: 20px;
    left: -20px;
}

/* --- KONTEN TEKS --- */
.about-text {
    flex: 1.2;
    z-index: 2;
}

/* Tagline dengan garis aksen */
.tagline-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.tagline {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.85rem;
    text-transform: uppercase;
}

.tagline-line {
    height: 2px;
    width: 50px;
    background-color: var(--primary);
}

.about-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 25px;
}

.about-text h2 span {
    color: var(--primary); /* Memberikan aksen warna pada kata terakhir */
}

.about-desc p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-desc p:last-child {
    margin-bottom: 0;
}

/* --- TOMBOL PREMIUM --- */
.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px; /* Lebih kotak agar terkesan formal/korporat dibanding bulat 50px */
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 35px;
    border: 1px solid var(--dark);
    transition: all 0.4s ease;
    overflow: hidden;
}

.btn-premium svg {
    transition: transform 0.4s ease;
}

.btn-premium:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.25);
    transform: translateY(-3px);
}

.btn-premium:hover svg {
    transform: translateX(5px); /* Panah bergeser ke kanan */
}

/* --- RESPONSIVE STYLE (TABLET & HP) --- */
@media (max-width: 991px) {
    .section-about {
        padding: 80px 5%;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .about-img-wrapper {
        margin: 0 auto;
        max-width: 80%; /* Agar ada ruang untuk efek frame di tablet */
    }

    .img-frame {
        /* Sesuaikan posisi frame agar tidak terpotong di layar kecil */
        top: 20px;
        left: 20px; 
    }

    .about-img-wrapper:hover .img-frame {
        top: 15px;
        left: 15px;
    }

    .tagline-wrapper {
        justify-content: center;
    }

    .about-text h2 {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .section-about {
        padding: 60px 20px;
    }

    .about-img-wrapper {
        max-width: 90%;
    }

    .img-frame {
        top: 15px;
        left: 15px;
    }

    .about-text h2 {
        font-size: 1.9rem;
    }

    .about-desc p {
        font-size: 1rem;
    }

    .btn-premium {
        width: 100%;
        justify-content: center;
    }
}
 /* --- SIDE QUICK ACCESS: KODE FINAL ANTI-GAGAL --- */
.side-quick-access {
    position: fixed !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 9999 !important; /* Paling atas agar tidak tertutup konten */
    display: flex !important;
    flex-direction: column !important;
    gap: 2px !important;
}

.quick-tab {
    display: flex !important;
    align-items: center !important;
    background: #000000 !important; /* Dasar Hitam */
    text-decoration: none !important;
    width: 50px; 
    height: 160px;
    transition: 0.4s ease;
    border-right: 3px solid #800000; /* Garis Maroon */
    writing-mode: vertical-rl !important;
    transform: rotate(180deg) !important;
    padding: 15px 0 !important;
    box-shadow: 5px 0 15px rgba(0,0,0,0.5);
}

.tab-icon {
    transform: rotate(180deg) !important;
    font-size: 20px !important;
    margin-bottom: 12px !important;
    color: #ffffff !important; /* Ikon Putih */
}

.tab-text {
    font-size: 0.75rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    white-space: nowrap !important;
    color: #ffffff !important; /* Tulisannya Putih */
    opacity: 1 !important;    /* Paksa Muncul */
    display: block !important; /* Paksa Muncul */
}

/* Hover: Berubah jadi Maroon */
.quick-tab:hover {
    width: 65px;
    background: #800000 !important;
}

/* --- PERBAIKAN KHUSUS MODE HP (TETAP MUNCUL & PUTIH) --- */
@media (max-width: 768px) {
    .side-quick-access {
        top: 30% !important; /* Posisi di layar HP */
        transform: none !important;
        gap: 8px !important;
    }

    .quick-tab {
        width: auto !important; /* Ikuti panjang teks */
        height: 45px !important; /* Ramping di HP */
        padding: 0 20px !important;
        writing-mode: horizontal-tb !important; /* Teks Mendatar */
        transform: none !important;
        border-radius: 0 50px 50px 0 !important;
        border-right: none !important;
        border-left: 5px solid #800000 !important; /* Garis Maroon di kiri */
        justify-content: flex-start !important;
        background: #000000 !important; /* Latar belakang hitam pekat */
    }

    .tab-icon {
        transform: none !important;
        margin-bottom: 0 !important;
        margin-right: 12px !important;
        font-size: 16px !important;
        color: #ffffff !important;
    }

    .tab-text {
        font-size: 0.75rem !important;
        color: #ffffff !important;
        display: block !important; /* Memastikan teks tampil di HP */
    }

    /* Pembeda Warna Background di HP */
    .wedding-tab { background: #800000 !important; } /* Wedding Maroon */
    .event-tab { background: #1a1a1a !important; }   /* Event Hitam */
}

/* --- SECTION HOW WE WORK (UPDATE 6 CARDS) --- */
.section-work {
    padding: 120px 8%;
    background-color: var(--bg-light, #ffffff);
    display: flex;
    justify-content: center;
}

.work-container {
    max-width: 1200px; /* Menjaga ukuran ideal untuk 3 kolom */
    width: 100%;
}

/* --- HEADER --- */
.work-header {
    text-align: center;
    margin-bottom: 70px;
}

/* Memastikan tagline berada di tengah */
.tagline-center {
    justify-content: center;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.work-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark, #0a0a0a);
    line-height: 1.2;
    margin-bottom: 15px;
}

.work-header h2 span {
    color: var(--primary, #800000);
}

.work-header p {
    color: var(--text-muted, #555555);
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* --- GRID SYSTEM (Kunci 3 Kolom untuk Desktop) --- */
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Pasti 3 kolom berdampingan */
    gap: 30px;
}

/* --- PREMIUM CARDS --- */
.work-card {
    position: relative;
    padding: 40px 30px; /* Padding sedikit dikurangi agar proporsional di 3 kolom */
    background: #121212;
    border-radius: 16px;
    border: 1px solid #2a2a2a;
    text-align: left;
    overflow: hidden;
    transition: all 0.5s ease;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

/* Background Number - Efek Outline Modern */
.work-num {
    position: absolute;
    top: -15px;
    right: 15px;
    font-size: 6.5rem; /* Ukuran disesuaikan */
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(128, 0, 0, 0.15);
    z-index: -1;
    transition: all 0.5s ease;
}

/* Wrapper Ikon */
.work-icon-box {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(128, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.work-icon-box i {
    font-size: 1.6rem;
    color: var(--primary, #800000);
    transition: all 0.4s ease;
}

/* Typography di dalam Card */
.work-card h3 {
    font-size: 1.3rem; /* Sedikit dikecilkan agar rapi di kolom yang lebih sempit */
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.work-card p {
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin: 0;
}

/* --- EFEK HOVER KARTU --- */
.work-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary, #800000);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.15);
}

.work-card:hover .work-num {
    -webkit-text-stroke: 1px rgba(128, 0, 0, 0.4);
    transform: scale(1.05);
}

.work-card:hover .work-icon-box {
    background: var(--primary, #800000);
}

.work-card:hover .work-icon-box i {
    color: #ffffff;
    transform: scale(1.1);
}

/* --- RESPONSIVE MOBILE & TABLET --- */

/* Untuk Tablet dan Laptop Kecil (Ubah jadi 2 Kolom) */
@media (max-width: 1024px) {
    .work-grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 991px) {
    .section-work {
        padding: 90px 5%;
    }
    
    .work-header h2 {
        font-size: 2.5rem;
    }
}

/* Untuk HP (Ubah jadi 1 Kolom) */
@media (max-width: 768px) {
    .section-work {
        padding: 70px 20px;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .work-header h2 {
        font-size: 2rem;
    }

    .work-card {
        padding: 35px 25px;
    }

    .work-num {
        font-size: 5.5rem;
        top: -10px;
    }
}

/* --- SECTION WHY PRO MANAGEMENT --- */
.section-why {
    padding: 100px 8% !important;
    background: #050505 !important; /* Hitam sangat pekat */
    color: #ffffff !important;
}

.why-header {
    text-align: center !important;
    margin-bottom: 60px !important;
}

.why-header h2 {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.why-header h2 span {
    color: #800000 !important; /* Maroon */
}

.why-header p {
    color: #888 !important;
    max-width: 800px !important;
    margin: 20px auto 0 !important;
    line-height: 1.8 !important;
    font-size: 1.1rem !important;
}

/* Grid Layout */
.why-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)) !important;
    gap: 25px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Kartu Fitur */
.why-card {
    background: #0a0a0a !important;
    padding: 45px 35px !important;
    border-radius: 20px !important;
    border: 1px solid #1a1a1a !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    position: relative !important;
    overflow: hidden !important;
}

.why-card i {
    font-size: 2.5rem !important;
    color: #800000 !important; /* Icon Maroon */
    margin-bottom: 25px !important;
    display: block !important;
}

.why-card h3 {
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
}

.why-card p {
    color: #777 !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
}

/* Hover Effect: Glow & Border */
.why-card:hover {
    transform: translateY(-10px) !important;
    background: #0f0f0f !important;
    border-color: #800000 !important;
    box-shadow: 0 10px 30px rgba(128, 0, 0, 0.2) !important;
}

.why-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: #800000;
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left;
}

.why-card:hover::before {
    transform: scaleX(1);
}

/* Responsive */
@media (max-width: 768px) {
    .section-why { padding: 80px 5% !important; }
    .why-header h2 { font-size: 2rem !important; }
    .why-grid { grid-template-columns: 1fr !important; }
}


/* --- SECTION TESTIMONIAL SLIDER (FINAL VERSION) --- */
.section-testi {
    padding: 100px 8% !important;
    background: linear-gradient(135deg, #4a0000 0%, #800000 50%, #2a0000 100%) !important;
    color: #ffffff !important;
    overflow: hidden !important;
    position: relative !important;
}

/* Dekorasi Radial untuk Kedalaman Visual */
.section-testi::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2) 0%, transparent 80%);
    pointer-events: none;
}

.testi-header { 
    text-align: center !important; 
    margin-bottom: 60px !important;
    position: relative;
    z-index: 2;
}

.testi-header h2 span { 
    color: #ffffff !important; 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* Container Utama Testimoni */
.testi-container {
    display: flex !important;
    align-items: stretch !important; /* Memastikan foto dan teks sama tinggi di desktop */
    background: #ffffff !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    max-width: 1000px !important;
    margin: 0 auto !important;
    color: #333333 !important;
    min-height: 480px !important;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4) !important;
    position: relative;
    z-index: 2;
}

/* Box Foto */
.testi-img-box {
    flex: 1 !important;
    min-width: 40% !important;
}

.testi-img-box img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* Box Konten Teks */
.testi-content-box {
    flex: 1.5 !important;
    padding: 50px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.testi-quote {
    font-size: 1.1rem !important;
    line-height: 1.8 !important;
    color: #555555 !important;
    margin-bottom: 30px !important;
}

.testi-quote strong { color: #800000 !important; }
.testi-quote span { 
    color: #0a0a0a !important; 
    font-weight: 800 !important; 
    display: block !important; 
    margin: 15px 0 !important;
    font-size: 1.2rem !important;
    line-height: 1.3 !important;
}

.testi-author h4 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #0a0a0a !important;
    margin-bottom: 5px !important;
}

.testi-author p {
    color: #888888 !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

/* Indikator Slider (Pagination) */
.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5) !important;
    width: 10px !important;
    height: 10px !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active { 
    background: #ffffff !important; 
    width: 30px !important;
    border-radius: 10px !important;
}

/* --- OPTIMASI RESPONSIF (MODE HP) --- */
@media (max-width: 991px) {
    .section-testi {
        padding: 80px 5% !important;
    }

    .testi-container {
        flex-direction: column !important;
        min-height: auto !important;
    }

    .testi-img-box {
        width: 100% !important;
        height: 380px !important; /* Foto di atas saat di HP */
    }

    .testi-content-box {
        padding: 40px 30px !important;
        text-align: center !important;
    }

    .testi-quote {
        font-size: 1rem !important;
    }

    .testi-header h2 {
        font-size: 2rem !important;
    }
}

@media (max-width: 480px) {
    .testi-img-box {
        height: 320px !important;
    }

    .testi-content-box {
        padding: 30px 20px !important;
    }

    .testi-quote span {
        font-size: 1.1rem !important;
    }
}

/* =========================================
   PREMIUM VISION & MISSION SECTION
   ========================================= */
.section-visimisi-premium {
    padding: 120px 8%;
    background: #0a0a0a; /* Background hitam pekat premium */
    color: #ffffff;
    position: relative;
    border-top: 1px solid #1a1a1a;
}

.visimisi-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Visi Misi */
.visimisi-header {
    text-align: center;
    margin-bottom: 70px;
}

.title-light {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #ffffff;
    margin-top: 10px;
}

.title-light span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary);
}

/* Layout Grid Lurus & Simetris */
.visimisi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

/* Base Card Style */
.vimi-card {
    background: #111111;
    border: 1px solid #222222;
    border-radius: 24px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.vimi-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.15); /* Efek glow maroon */
}

.vimi-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 25px;
    opacity: 0.9;
}

.vimi-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
}

/* --- Spesifik untuk Visi --- */
.visi-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    line-height: 1.8;
    color: #dddddd;
    flex-grow: 1; /* Memastikan card tetap simetris tingginya */
}

.visi-quote strong {
    color: var(--primary);
    font-weight: 700;
}

.visi-motto {
    margin-top: 35px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 14px 28px;
    background: rgba(128, 0, 0, 0.1);
    border: 1px solid rgba(128, 0, 0, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
}

/* --- Spesifik untuk Misi --- */
.misi-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.misi-list-premium li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: #1a1a1a;
    padding: 20px 25px;
    border-radius: 16px;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.misi-list-premium li:hover {
    background: #222222;
    border-color: #333333;
    transform: translateX(10px); /* Efek geser kanan saat dihover */
}

/* Penomoran yang lebih rapi (menggantikan icon checklist) */
.misi-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    min-width: 35px;
}

.misi-list-premium p {
    color: #bbbbbb;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* --- Responsif Mobile --- */
@media (max-width: 991px) {
    .visimisi-grid { 
        grid-template-columns: 1fr; 
        gap: 30px;
    }
    .vimi-card { 
        padding: 40px 30px; 
    }
    .visi-quote { 
        font-size: 1.2rem; 
    }
}

/* --- AMANKAN BOX-SIZING KHUSUS SECTION NEWS --- */
.section-news,
.section-news *,
.section-news *::before,
.section-news *::after {
    box-sizing: border-box !important;
}

/* --- BASE STYLE DESKTOP --- */
.section-news {
    padding: 120px 8%;
    background-color: #f9f9f9; 
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.news-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

/* --- HEADER --- */
.news-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.news-tagline-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.news-tagline {
    color: #800000; /* Maroon */
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.news-tagline-line {
    height: 1.5px;
    width: 40px;
    background-color: #800000;
}

.news-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.news-header h2 span {
    color: #800000;
}

.news-header p {
    color: #555555;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* --- GRID SYSTEM (3 KOLOM DESKTOP) --- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
    width: 100%;
}

/* --- KARTU BERITA --- */
.news-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eeeeee;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.12);
}

/* Gambar */
.news-img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
    display: block;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.news-card:hover .news-img {
    transform: scale(1.08);
}

/* Label Kategori */
.news-category {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: #800000;
    color: #ffffff;
    padding: 6px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

/* Konten Teks di Dalam Kartu */
.news-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
    width: 100%;
}

.news-meta {
    font-size: 0.9rem;
    color: #888888;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-content h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0a0a0a;
    margin: 0 0 15px 0;
    line-height: 1.4;
    transition: color 0.3s;
}

.news-card:hover .news-content h3 {
    color: #800000;
}

.news-content p {
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
    margin: 0 0 25px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tombol Baca Selengkapnya */
.news-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.news-btn:hover {
    color: #800000;
}

.news-btn:hover i {
    transform: translateX(5px);
}

/* --- BUTTON LIHAT SEMUA --- */
.news-footer {
    text-align: center;
    width: 100%;
}

.news-btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #0a0a0a;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 20px;
    border: 1px solid #0a0a0a;
    transition: all 0.4s ease;
}

.news-btn-premium svg {
    transition: transform 0.4s ease;
}

.news-btn-premium:hover {
    background: #800000;
    border-color: #800000;
    box-shadow: 0 10px 25px rgba(128, 0, 0, 0.25);
    transform: translateY(-3px);
}

.news-btn-premium:hover svg {
    transform: translateX(5px);
}


/* --- RESPONSIVE RESPONSIVE BREAKPOINTS (PENGUNCI MODE HP & TABLET) --- */

/* Mode Tablet (Maksimal 1024px) -> Menjadi 2 Kolom */
@media (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
    
    .news-header h2 {
        font-size: 2.6rem;
    }
}

/* Mode Handphone (Maksimal 768px) -> Menjadi 1 Kolom Mutlak & Aman Sisi Layar */
@media (max-width: 768px) {
    .section-news {
        padding: 60px 20px !important; /* Memberi ruang 20px di kiri kanan layar HP */
    }

    .news-container {
        width: 100% !important;
    }
    
    .news-header {
        margin-bottom: 40px !important;
    }

    .news-header h2 {
        font-size: 2rem !important; /* Mencegah judul terlalu besar di HP */
    }

    .news-header p {
        font-size: 1rem !important;
    }

    .news-grid {
        grid-template-columns: 1fr !important; /* Dipaksa 1 kolom tegak lurus */
        gap: 25px !important;
    }

    .news-card {
        border-radius: 12px !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.07) !important;
    }

    .news-img-wrapper {
        height: 210px !important; /* Menyesuaikan proporsi tinggi gambar di HP */
    }

    .news-content {
        padding: 25px 20px !important; /* Memastikan isi kartu tidak nempel ke pinggir kotak */
    }

    .news-content h3 {
        font-size: 1.25rem !important;
    }
    
    .news-btn-premium {
        width: 100% !important; /* Tombol bawah otomatis selebar HP agar mudah diklik */
        justify-content: center;
    }
}

/* =========================================
   HERO SECTION 1 (KHUSUS HALAMAN LAYANAN)
========================================= */
.hero1 {
    position: relative; 
    height: 100vh; 
    min-height: 600px;
    display: flex; 
    align-items: center;
    justify-content: center; 
    text-align: center; 
    color: var(--white); 
    overflow: hidden;
}

/* Video Background */
.hero1 .hero-video { 
    position: absolute; 
    inset: 0; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    z-index: 1; 
}

/* Overlay Hitam Transparan */
.hero1 .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.7); /* Tingkat kegelapan 70% */
    z-index: 2;
}

/* Kontainer Teks */
.hero1 .hero-content { 
    position: relative; 
    z-index: 10; 
    padding: 0 8%; 
    max-width: 900px;
    width: 100%;
    display: flex; 
    flex-direction: column; /* Memaksa teks berbaris lurus dari atas ke bawah */
    align-items: center; 
    text-align: center; 
    margin: 0 auto;
}

.hero1 .hero-tagline {
    color: var(--bg-light); 
    font-weight: 700; 
    letter-spacing: 3px; 
    font-size: 0.95rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
    width: 100%;
}

.hero1 h1 { 
    font-size: clamp(2.5rem, 6vw, 4.5rem); 
    font-weight: 800; 
    margin-bottom: 25px; 
    line-height: 1.15; 
    width: 100%;
}

/* Efek Ketik Maroon */
.hero1 .typewriter-text { 
    color: var(--primary); 
    text-shadow: 0 2px 10px rgba(0,0,0,0.3); 
}

/* Kursor Berkedip */
.hero1 .typing-cursor {
    color: var(--primary);
    font-weight: 800;
    animation: blinkCursorHero1 0.8s step-end infinite;
}

@keyframes blinkCursorHero1 {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}

.hero1 p {
    font-size: 1.15rem;
    color: #e0e0e0;
    max-width: 650px;
    margin: 0 auto;
    font-weight: 400;
    width: 100%;
}

/* --- Responsif khusus Hero1 --- */
@media (max-width: 768px) {
    .hero1 h1 { 
        font-size: 2.5rem; 
    }
    .hero1 p { 
        font-size: 1rem; 
    }
}

/* =========================================
   WHY CHOOSE US SECTION (KHUSUS HALAMAN EO)
========================================= */
.eo-why-section {
    padding: 120px 8%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.eo-why-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    max-width: 1200px;
    width: 100%;
}

/* --- BAGIAN GAMBAR & BADGE --- */
.eo-why-img-wrapper {
    flex: 1;
    position: relative;
    max-width: 500px;
}

.eo-why-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: block;
}

.eo-experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(128, 0, 0, 0.3);
    text-align: center;
    border: 3px solid var(--white);
    z-index: 2;
}

.eo-badge-number {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.eo-badge-number h3,
.eo-badge-number .plus-sign {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    color: var(--white);
    margin: 0;
}

.eo-experience-badge p {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.3;
}

/* --- BAGIAN KONTEN TEKS --- */
.eo-why-content {
    flex: 1.1;
}

.eo-why-content h2 {
    margin-bottom: 20px;
}

.eo-why-desc {
    color: #555555;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* --- DAFTAR KEUNGGULAN (LIST) --- */
.eo-why-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.eo-why-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.eo-why-item:hover {
    transform: translateX(10px);
}

.eo-why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: var(--bg-light);
    color: var(--primary);
    font-size: 1.5rem;
    border-radius: 12px;
    flex-shrink: 0; 
    transition: all 0.3s ease;
}

.eo-why-item:hover .eo-why-icon {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.2);
}

.eo-why-text h4 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.eo-why-text p {
    font-size: 0.95rem;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}
/* Container section */
.eo-why-section {
    padding: 100px 8%;
    background-color: var(--white);
    overflow: hidden; /* Penting agar elemen parallax tidak memicu scrollbar */
}

.eo-why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Wrapper Gambar & Badge */
.eo-why-img-wrapper {
    position: relative;
    will-change: transform; /* Memberitahu browser untuk mengoptimalkan gerakan */
}

.eo-why-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.eo-experience-badge {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.3);
    will-change: transform;
}

/* Responsif Mobile */
@media (max-width: 991px) {
    .eo-why-container { grid-template-columns: 1fr; gap: 50px; }
    .eo-experience-badge { right: 20px; bottom: -20px; }
}
/* =========================================
   RESPONSIVE LAYOUT (TABLET & HP)
========================================= */
@media (max-width: 991px) {
    .eo-why-container {
        flex-direction: column;
        gap: 80px;
        text-align: center;
    }

    .eo-why-img-wrapper {
        margin: 0 auto;
    }

    .eo-experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 20px;
    }

    .eo-badge-number h3,
    .eo-badge-number .plus-sign {
        font-size: 2.2rem;
    }
    
    .eo-why-item {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .eo-why-section {
        padding: 80px 20px;
    }

    .eo-experience-badge {
        right: 10px;
        padding: 15px;
    }

    .eo-badge-number h3,
    .eo-badge-number .plus-sign {
        font-size: 1.8rem;
    }

    .eo-experience-badge p {
        font-size: 0.8rem;
    }

    .eo-why-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .eo-why-text h4 {
        font-size: 1.15rem;
    }
}

/* =========================================
   CTA SECTION (KHUSUS HALAMAN EO)
========================================= */
.eo-section-padding {
    padding: 100px 8%;
    background-color: var(--white);
}

.eo-section-cta {
    background: linear-gradient(135deg, var(--primary) 0%, #4a0000 100%);
    padding: 80px 50px;
    border-radius: 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.15);
}

.eo-section-cta h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #ffffff;
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 35px;
}

/* Efek kursor mengetik */
.eo-typewriter-cta {
    color: var(--bg-light); /* Warna merah sangat muda agar kontras */
    border-right: 3px solid #ffffff;
    padding-right: 8px;
    animation: blinkCursorCTA 0.8s step-end infinite;
}

@keyframes blinkCursorCTA {
    from, to { border-color: transparent; }
    50% { border-color: #ffffff; }
}

/* Tombol Putih */
.eo-btn-cta {
    background: #ffffff;
    color: var(--primary);
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.eo-btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: #4a0000; /* Merah gelap saat di-hover */
}

/* --- RESPONSIVE UNTUK HP --- */
@media (max-width: 768px) {
    .eo-section-padding { padding: 80px 5%; }
    
    .eo-section-cta { 
        padding: 50px 25px; 
        border-radius: 30px; 
    }
    
    .eo-section-cta h2 { font-size: 2.2rem; }
    
    .eo-btn-cta {
        padding: 15px 35px;
        font-size: 1rem;
    }
}

/* =========================================
   PRICING SECTION (PROMO BULAN INI)
========================================= */
.section-pricing {
    padding: 100px 8%;
    background-color: var(--bg-light); /* Latar belakang pink pucat/abu lembut */
    text-align: center;
}

.pricing-header {
    margin-bottom: 60px;
}

.pricing-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 15px;
}

.pricing-header p {
    color: #555;
    max-width: 650px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* --- GRID KARTU PRICING --- */
.pricing-grid {
    display: grid;
    /* Grid dinamis agar rapi (3 di atas, 2 di bawah untuk PC) */
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: var(--white);
    border-radius: 20px;
    border: 1px solid #eeeeee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    text-align: left;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 0, 0.12);
    border-color: var(--primary);
}

/* Kartu Best Seller */
.popular-card {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

.popular-card:hover {
    transform: scale(1.02) translateY(-10px);
}

.popular-badge {
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 8px 0;
    letter-spacing: 2px;
}

/* --- HEADER KARTU --- */
.pricing-card-header {
    padding: 30px 25px 20px;
    border-bottom: 1px solid #eeeeee;
}

.pricing-card-header h3 {
    font-size: 1.2rem;
    color: #555;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.pricing-card-header .price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

/* --- ISI KARTU (BISA DI-SCROLL) --- */
.pricing-card-body {
    padding: 25px;
    flex: 1;
    /* Kunci tinggi body kartu agar bisa di-scroll ke bawah */
    max-height: 400px; 
    overflow-y: auto;
}

/* Mempercantik Scrollbar Dalam Kartu */
.pricing-card-body::-webkit-scrollbar {
    width: 6px;
}
.pricing-card-body::-webkit-scrollbar-track {
    background: #f1f1f1; 
    border-radius: 10px;
}
.pricing-card-body::-webkit-scrollbar-thumb {
    background: #cccccc; 
    border-radius: 10px;
}
.pricing-card-body::-webkit-scrollbar-thumb:hover {
    background: var(--primary); 
}

/* --- KATEGORI DETAIL --- */
.pricing-category {
    margin-bottom: 20px;
}

.pricing-category h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #dddddd;
}

.pricing-category ul {
    list-style: none;
    padding: 0;
}

.pricing-category ul li {
    font-size: 0.85rem;
    color: #555555;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.pricing-category ul li i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 3px; /* Menyelaraskan ikon dengan teks */
}

/* Khusus Label Free */
.free-bonus h4 {
    color: var(--primary);
}

/* --- FOOTER KARTU (TOMBOL) --- */
.pricing-card-footer {
    padding: 25px;
    background-color: #fafafa;
    border-top: 1px solid #eeeeee;
    text-align: center;
}

.btn-pricing {
    display: block;
    width: 100%;
    padding: 15px 0;
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.pricing-card:hover .btn-pricing,
.popular-card .btn-pricing {
    background-color: var(--primary);
    color: var(--white);
}

.btn-pricing:hover {
    background-color: var(--primary-light) !important;
    border-color: var(--primary-light) !important;
    color: var(--white) !important;
}

/* --- RESPONSIVE UNTUK HP --- */
@media (max-width: 768px) {
    .section-pricing {
        padding: 80px 20px;
    }
    
    .pricing-header h2 {
        font-size: 2.2rem;
    }
    
    .popular-card {
        transform: scale(1); /* Matikan scale agak tidak melebar di HP */
    }
    
    .popular-card:hover {
        transform: translateY(-5px);
    }
    
    .pricing-card-body {
        max-height: 350px; /* Kurangi tinggi sedikit di HP */
    }
}

/* =========================================
   ADDITIONAL & INFORMATION SECTION
========================================= */
.section-additional {
    padding: 80px 8% 120px; /* Padding bawah lebih besar sebagai penutup */
    background-color: var(--white);
}

.additional-container {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Membagi layar jadi 2 kolom sama besar */
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* --- KOLOM KIRI (ADD-ONS TABLE) --- */
.addon-wrapper {
    background-color: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    border: 1px solid #eeeeee;
}

.addon-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.addon-header i {
    font-size: 1.8rem;
    color: var(--primary);
}

.addon-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.addon-desc {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
}

.addon-table {
    width: 100%;
    border-collapse: collapse;
}

.addon-table td {
    padding: 12px 0;
    border-bottom: 1px dashed #dddddd;
    font-size: 0.95rem;
    color: #444;
}

.addon-table tr:last-child td {
    border-bottom: none;
}

.addon-price {
    text-align: right;
    font-weight: 700;
    color: var(--dark);
}

.addon-footer-note {
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 700;
    font-style: italic;
    padding-top: 15px;
    border-top: 2px solid var(--bg-light);
}

/* --- KOLOM KANAN (INFORMATION BOX) --- */
.info-wrapper {
    display: flex;
    flex-direction: column;
}

.info-card {
    background-color: var(--bg-light); /* Menggunakan warna root pink muda */
    border-left: 6px solid var(--primary); /* Garis aksen penegas di kiri */
    padding: 40px;
    border-radius: 0 20px 20px 0;
    height: 100%;
}

.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.info-header i {
    font-size: 1.8rem;
    color: var(--primary);
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    margin-bottom: 18px;
    position: relative;
    padding-left: 25px;
}

/* Kustomisasi Bullet Point List Information */
.info-list li::before {
    content: "•";
    color: var(--primary);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.info-list li strong {
    color: var(--dark);
    font-weight: 800;
}

/* =========================================
   RESPONSIVE BREAKPOINTS
========================================= */
@media (max-width: 991px) {
    .additional-container {
        grid-template-columns: 1fr; /* Memaksa elemen turun ke bawah jika layar sempit */
        gap: 30px;
    }
    
    .info-card {
        border-radius: 20px; /* Merapikan kembali border-radius yang asalnya kotak di kiri */
        border-left: none;
        border-top: 6px solid var(--primary); /* Garis aksen pindah ke atas */
    }
}

@media (max-width: 768px) {
    .section-additional {
        padding: 60px 20px 80px;
    }
    
    .addon-wrapper, .info-card {
        padding: 25px;
    }
    
    .addon-header h3, .info-header h3 {
        font-size: 1.3rem;
    }
    
    .addon-table td {
        font-size: 0.85rem;
    }
    
    .info-list li {
        font-size: 0.85rem;
    }
}

/* =========================================
   SCROLL ANIMATIONS & PARALLAX
========================================= */

/* --- Status Awal (Elemen Sembunyi) --- */
.reveal-up {
    opacity: 0;
    transform: translateY(60px); /* Turun 60px */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px); /* Geser ke kiri */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px); /* Geser ke kanan */
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* --- Status Aktif (Memicu Animasi) --- */
.reveal-active {
    opacity: 1;
    transform: translate(0); /* Kembali ke posisi semula */
}

/* --- Pengaturan Jeda (Delay) --- 
   Gunakan ini jika ada beberapa elemen berjejer 
   agar munculnya bergantian (efek domino) */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }

/* --- Pengaturan Khusus Parallax Text --- */
.parallax-text {
    display: inline-block;
    will-change: transform; /* Optimasi browser agar gerakan mulus */
}

/* ========================================= */
/* HERO ABOUT US STYLES                      */
/* ========================================= */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Ganti URL di bawah dengan foto tim/kantor Pro Management Anda */
    background: url('https://images.unsplash.com/photo-1511556532299-8f662fc26c06?q=80&w=1920&auto=format&fit=crop') center/cover no-repeat;
    background-attachment: fixed; /* Efek Parallax sederhana */
    overflow: hidden;
}

/* Overlay gradasi agar teks terbaca jelas dan menyatu dengan background bawah */
.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), var(--dark));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    max-width: 1000px;
    margin-top: 50px; /* Memberi jarak agar tidak tertutup navbar yang fixed */
}

.about-hero-content .tagline {
    display: block;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Menggunakan Playfair Display agar terlihat elegan/premium */
.about-hero-content h1 span {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.hero-subtitle {
    color: #cccccc;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ========================================= */
/* HERO ABOUT US STYLES & TYPEWRITER         */
/* ========================================= */
.about-hero {
    position: relative;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* Ganti URL dengan foto tim atau event Pro Management */
    background: url('../images/business-goal/event.png') center/cover no-repeat;
    background-attachment: fixed;
    overflow: hidden;
}

.about-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), var(--dark));
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 8%;
    max-width: 1000px;
    margin-top: 50px;
}

.about-hero-content .tagline {
    display: block;
    color: var(--primary);
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.about-hero-content h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

/* --- Pengaturan Teks Mesin Tik --- */
#about-typewriter {
    color: var(--primary);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

#about-typewriter .txt {
    border-right: 3px solid var(--primary); /* Garis kursor */
    padding-right: 5px;
    animation: blink-caret 0.75s step-end infinite;
}

/* Animasi kursor berkedip */
@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary); }
}

.hero-subtitle {
    color: #cccccc;
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* =========================================
   PREMIUM STORY SECTION (ABOUT US)
   ========================================= */
.section-story-premium {
    padding: 150px 8%;
    background: #fdfcfc;
    position: relative;
    overflow: hidden; /* Mencegah parallax melebar ke samping */
}

.story-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

/* Teks Dekoratif Vertikal */
.story-vertical-text {
    position: absolute;
    left: -80px;
    top: 40%;
    transform: translateY(-50%) rotate(-90deg);
    font-size: 12px;
    letter-spacing: 12px;
    color: #eaeaea;
    font-weight: 800;
    text-transform: uppercase;
    z-index: 0;
    will-change: transform;
}

.story-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

/* Visual Layering (Box & Gambar) */
.story-visual {
    position: relative;
    padding: 30px 0 0 30px; /* Memberi ruang untuk parallax box latar */
}

.visual-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 85%;
    height: 100%;
    background: var(--primary); /* Maroon */
    border-radius: 10px;
    z-index: 1;
    will-change: transform;
}

.visual-img {
    position: relative;
    width: 100%;
    border-radius: 10px;
    z-index: 2;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    will-change: transform;
}

/* Typography & Layout Teks */
.tagline-gold {
    display: inline-block;
    color: #9c6f2a; /* Gold/Bronze */
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    border-bottom: 2px solid #9c6f2a;
    padding-bottom: 5px;
}

.title-premium {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 30px;
}

.title-premium span {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: var(--primary);
}

.story-quote {
    font-size: 1.25rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #444;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.story-paragraph {
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
    font-size: 1.05rem;
    text-align: justify;
}

/* Button Premium Outline */
.btn-outline-premium {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 16px 40px;
    border: 2px solid var(--dark);
    color: var(--dark);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: all 0.4s ease;
}

.btn-outline-premium:hover {
    background: var(--dark);
    color: var(--white);
    transform: translateY(-5px);
}

/* Responsif Mobile */
@media (max-width: 991px) {
    .story-content-grid { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .story-vertical-text { display: none; }
    .story-visual { padding: 15px 0 0 15px; }
    .visual-bg { width: 95%; height: 95%; }
    .story-quote { border-left: none; padding-left: 0; font-size: 1.1rem; }
    .story-paragraph { text-align: center; }
}

/* =========================================
   PREMIUM OUR CLIENTS SECTION
   ========================================= */
.section-clients-premium {
    padding: 100px 0;
    background: #050505; /* Warna latar sangat gelap untuk kontras */
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden; /* Wajib agar logo yang keluar layar tidak merusak layout */
}

.clients-header {
    text-align: center;
    margin-bottom: 50px;
}

/* --- Pengaturan Wrapper Slider --- */
.clients-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    /* Memberikan efek pudar (fade) elegan di ujung kiri dan kanan layar */
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

/* --- Jalur Slider yang Bergerak --- */
.clients-track {
    display: flex;
    align-items: center;
    /* Lebar = (Lebar Kotak x Total Seluruh Kotak). Di sini: 250px x 10 kotak */
    width: calc(250px * 10); 
    animation: scrollClients 20s linear infinite; /* Kecepatan putar 20 detik */
}

/* Berhenti bergerak jika kursor diletakkan di area klien */
.clients-slider-wrapper:hover .clients-track {
    animation-play-state: paused;
}

/* --- Pengaturan Kotak Logo (Grid Lurus & Simetris) --- */
.client-logo-box {
    width: 250px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px;
    flex-shrink: 0;
    border-right: 1px solid #151515; /* Garis pemisah vertikal yang lurus */
}

.client-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* Efek visual awal: Logo langsung tampil berwarna tanpa filter grayscale */
    transition: transform 0.4s ease-in-out; 
}

/* Efek saat logo di-hover */
.client-logo-box:hover img {
    transform: scale(1.1); /* Hanya memberikan efek sedikit membesar */
}

/* --- Animasi Pergerakan (Keyframes) --- */
@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Menggeser persis 5 kotak (karena 5 logo asli + 5 duplikat) */
        transform: translateX(calc(-250px * 5));
    }
}

/* Responsif untuk Smartphone */
@media (max-width: 768px) {
    .client-logo-box {
        width: 180px; /* Diperkecil untuk layar HP */
        height: 100px;
    }
    .clients-track {
        width: calc(180px * 10);
    }
    @keyframes scrollClients {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-180px * 5)); }
    }
}

/* =========================================
   PREMIUM WHATSAPP WIDGET STYLES (RECODED)
   ========================================= */
.premium-wa-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99999 !important; /* Super prioritas lapisan teratas */
    font-family: 'Plus Jakarta Sans', 'Montserrat', sans-serif;
    pointer-events: none; /* Memastikan ruang kosong tidak menutupi klik area lain */
}

/* --- Tampilan Jendela Pop-up --- */
.wa-chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: auto; /* Mengaktifkan klik di dalam jendela */
}

.wa-chat-window.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Header Jendela --- */
.wa-header {
    background: #050505;
    color: #ffffff;
    padding: 20px;
    display: flex;
    align-items: center;
    position: relative;
}

.wa-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    background: #fff;
}

.wa-info h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
}

.wa-info p {
    margin: 3px 0 0 0;
    font-size: 11px;
    color: #b0b0b0;
}

.wa-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.3s;
}

.wa-close:hover {
    opacity: 1;
}

/* --- Area Isi Pesan --- */
.wa-body {
    background: #f5f5f5;
    padding: 20px;
    min-height: 120px;
}

.wa-message {
    background: #ffffff;
    padding: 12px 15px;
    border-radius: 0 10px 10px 10px;
    font-size: 13px;
    color: #333333;
    line-height: 1.6;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.wa-sender {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: #a8a8a8;
    margin-bottom: 5px;
}

.wa-time {
    display: block;
    text-align: right;
    font-size: 10px;
    color: #a8a8a8;
    margin-top: 5px;
}

/* --- Footer & Tombol API --- */
.wa-footer {
    padding: 15px 20px;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.wa-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #25D366;
    color: #ffffff;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.wa-btn:hover {
    background: #1EBE5A;
}

/* --- Tombol Mengambang Hijau --- */
.wa-toggle-btn {
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
    pointer-events: auto; /* Memastikan tombol mutlak bisa diklik */
}

.wa-toggle-btn:hover {
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .wa-chat-window {
        width: 280px;
    }
}
/* =========================================
   HERO SECTION & YOUTUBE RESPONSIVE
   ========================================= */

/* Pastikan hero-content membagi layar menjadi flexbox */
.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
    position: relative;
    z-index: 2; /* Memastikan di atas background video/overlay */
}

.hero-left, .hero-right {
    width: 50%; /* Membagi layar 50:50 di Laptop */
}

/* --- Trik Rahasia untuk YouTube (Iframe Responsif 16:9) --- */
.video-card {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* Rasio 16:9 (9 dibagi 16 = 0.5625) */
    height: 0;
    margin-bottom: 20px;
    border-radius: 12px; /* Membuat sudut video agak melengkung premium */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5); /* Efek bayangan mahal */
}

/* Memaksa iframe memenuhi ukuran wadahnya */
.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* =========================================
   MEDIA QUERY KHUSUS LAYAR HP & TABLET
   ========================================= */
@media (max-width: 991px) {
    /* 1. Ubah susunan dari menyamping menjadi atas-bawah */
    .hero-content {
        flex-direction: column;
        text-align: center; /* Teks rata tengah di HP agar lebih rapi */
        padding-top: 50px; /* Jarak dari navbar */
    }

    /* 2. Berikan lebar penuh (100%) untuk kiri dan kanan */
    .hero-left {
        width: 100%;
    }

    /* 3. PAKSA MUNCULKAN BAGIAN KANAN (Video YouTube) */
    .hero-right {
        width: 100%;
        display: block !important; /* Ini kode penyelamat agar tidak hilang */
        margin-top: 40px; /* Jarak antara tombol "Mulai Sekarang" dan video */
    }
}
