 
       :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; }
        .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: 100px 40px;
            transition: 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        }
        .mobile-overlay.active { right: 0; }
        .mobile-overlay ul { list-style: none; }
        .mobile-overlay ul li { margin-bottom: 25px; 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: 30px; right: 30px; font-size: 2.5rem; cursor: pointer; }

        /* --- 3. SHIMMER BUTTON --- */
        @keyframes shimmer { 0% { transform: translateX(-100%); } 100% { transform: translateX(100%); } }
        .btn-shimmer {
            position: relative; overflow: hidden; background: var(--primary); color: #fff;
            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;
        }

        /* --- 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; }

     

        /* --- 6. SERVICES SLIDER --- */
        .compact-services { padding: 100px 8%; background: var(--bg-light); text-align: center; }
        .service-mini-card { position: relative; height: 380px; border-radius: 30px; overflow: hidden; box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
        .service-mini-card img { width: 100%; height: 100%; object-fit: cover; }
        .mini-label { position: absolute; bottom: 20px; left: 20px; right: 20px; background: var(--primary); padding: 15px; border-radius: 12px; color: #fff; font-weight: 800; text-transform: uppercase; }

       /* --- 7. PORTFOLIO FILTER --- */
.section-portfolio { padding: 100px 8%; background: #fff; }
.portfolio-filters { display: flex; justify-content: center; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }

.filter-btn { 
    padding: 10px 25px; 
    border: 1px solid #ddd; 
    border-radius: 50px; 
    font-weight: 700; 
    cursor: pointer; 
    transition: 0.3s; 
    background: transparent;
    color: var(--dark);
}

/* Warna Merah Maroon saat Aktif */
.filter-btn.active { 
    background: #800000 !important; 
    border-color: #800000 !important; 
    color: #fff !important; 
}

.portfolio-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 25px; }

/* Animasi untuk Filter */
.portfolio-item {
    transition: all 0.4s ease;
}

.portfolio-item.hide {
    display: none;
    opacity: 0;
    transform: scale(0.8);
}

.portfolio-item.show {
    display: block;
    animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.portfolio-inner { position: relative; height: 350px; border-radius: 20px; overflow: hidden; cursor: pointer; border: 1px solid #eee; }
.portfolio-inner img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s; }
.portfolio-hover { position: absolute; inset: 0; background: rgba(128, 0, 0, 0.85); display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; transition: 0.4s; color: #fff; }
.portfolio-inner:hover .portfolio-hover { opacity: 1; }

        /* --- 8. STATS (GLASSMORPHISM) --- */
        .section-stats { position: relative; padding: 100px 8%; background: url('https://twinswebid.com/demopromanagement/assets/images/about/yt.png') fixed center/cover; text-align: center; }
        .stats-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.75); }
        .container-stats { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; max-width: 1200px; margin: 0 auto; }
        .stat-item { background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(10px); padding: 40px; border-radius: 30px; border: 1px solid rgba(255,255,255,0.2); color: #fff; }
        .stat-item i { font-size: 2.5rem; color: var(--primary); margin-bottom: 15px; }

        /* --- 9. FAQ ACCORDION --- */
        .section-faq { padding: 100px 8%; background: #fff; }
        .faq-item { background: #f9f9f9; border-radius: 20px; margin-bottom: 15px; border: 1px solid #eee; overflow: hidden; cursor: pointer; }
        .faq-item.active { border-color: var(--primary); background: #fff; }
        .faq-question { padding: 25px 30px; display: flex; justify-content: space-between; font-weight: 700; align-items: center; }
        .faq-answer { max-height: 0; overflow: hidden; transition: 0.5s; padding: 0 30px; }
        .faq-item.active .faq-answer { max-height: 300px; padding-bottom: 30px; }

       /* --- 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%;
    }
}


/* --- 10. FOOTER STYLES --- */
.main-footer {
    background: #050505;
    color: #fff;
    padding: 80px 8% 30px;
    border-top: 1px solid #222;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1.5fr; /* Layout kolom ideal */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    height: 45px;
    margin-bottom: 25px;
}

.brand-info p {
    color: #888;
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--primary); /* Maroon */
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Navigasi */
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.9rem;
}
.footer-links li a:hover { color: var(--primary); padding-left: 5px; }

/* Kontak */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}
.contact-item i { color: var(--primary); margin-top: 5px; }
.contact-item p { color: #aaa; font-size: 0.9rem; }

/* Sosial Media */
.footer-socials { display: flex; gap: 15px; }
.footer-socials a {
    width: 35px; height: 35px;
    background: #111;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #222;
}
.footer-socials a:hover { background: var(--primary); transform: translateY(-3px); }

/* Map */
.footer-map iframe {
    filter: grayscale(100%) invert(90%) contrast(90%); /* Biar map terlihat gelap & mewah */
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #111;
}
.footer-bottom p { color: #444; font-size: 0.85rem; }

/* RESPONSIF */
@media (max-width: 991px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 500px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-socials, .contact-item { justify-content: center; }
    .main-footer { padding: 60px 20px 30px; }
}
        /* --- 11. SIDE UI & WA POPUP --- */
        .side-quick-access { position: fixed; left: 0; top: 50%; transform: translateY(-50%); z-index: 4000; display: flex; flex-direction: column; gap: 10px; }
        .quick-tab { background: #fff; display: flex; align-items: center; width: 55px; height: 55px; border-radius: 0 50px 50px 0; overflow: hidden; transition: 0.4s; text-decoration: none; border: 1px solid #eee; }
        .quick-tab:hover { width: 220px; color: #fff; }
        .wedding-tab:hover { background: #e91e63; }
        .event-tab:hover { background: #0d6efd; }
        .tab-icon { min-width: 55px; text-align: center; font-size: 20px; }
        .tab-text { white-space: nowrap; font-weight: 800; opacity: 0; transition: 0.3s; }
        .quick-tab:hover .tab-text { opacity: 1; }

        .wa-floating-btn { position: fixed; bottom: 30px; right: 30px; width: 65px; height: 65px; background: #25d366; color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 32px; z-index: 5000; cursor: pointer; box-shadow: 0 10px 25px rgba(0,0,0,0.3); }
        .wa-popup { position: fixed; bottom: 110px; right: 30px; width: 340px; background: #fff; border-radius: 20px; box-shadow: 0 15px 40px rgba(0,0,0,0.2); z-index: 5001; display: none; overflow: hidden; animation: slideUp 0.4s ease; }
        .wa-header { background: #075e54; color: #fff; padding: 20px; display: flex; align-items: center; gap: 15px; }

        @keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

        @media (max-width: 991px) {
            .desktop-nav { display: none; }
            .menu-toggle { display: flex; }
            .hero-content { flex-direction: column; text-align: center; }
        }
        

/* --- SECTION ABOUT (DESKTOP) --- */
.section-about {
    padding: 100px 8%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;
    background: #ffffff; /* Bisa diganti #000 jika ingin full gelap */
    overflow: hidden;
}

.about-img {
    flex: 1;
    position: relative;
    z-index: 1;
}

.about-img img {
    width: 100%;
    height: auto;
    border-radius: 40px;
    /* Efek bayangan maroon khas Pro Management */
    box-shadow: 25px 25px 0 #800000; 
    transition: transform 0.5s ease;
}

.about-img:hover img {
    transform: translate(-10px, -10px);
}

.about-text {
    flex: 1.2;
    z-index: 2;
}

.about-text .tagline {
    color: #800000 !important; /* Maroon */
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.about-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0a0a0a;
}

.about-text p {
    margin-top: 20px;
    color: #555;
    font-size: 1.1rem;
    max-width: 600px;
}

/* Tombol Baca Cerita Kami */
.about-text a {
    background: #0a0a0a;
    color: #fff;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 30px;
    border: 2px solid #800000;
    font-weight: 700;
    transition: 0.3s;
}

.about-text a:hover {
    background: #800000;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(128, 0, 0, 0.3);
}

/* --- RESPONSIVE STYLE (TABLET & HP) --- */
@media (max-width: 991px) {
    .section-about {
        flex-direction: column; /* Gambar di atas, teks di bawah */
        text-align: center;
        padding: 80px 5%;
        gap: 50px;
    }

    .about-img {
        max-width: 500px; /* Batasi lebar gambar di tablet agar tidak terlalu besar */
        margin: 0 auto;
    }

    .about-img img {
        box-shadow: 15px 15px 0 #800000; /* Perkecil bayangan di layar kecil */
    }

    .about-text h2 {
        font-size: 2.2rem;
    }

    .about-text p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .section-about {
        padding: 60px 20px;
    }

    .about-text h2 {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .about-img img {
        border-radius: 25px;
        box-shadow: 10px 10px 0 #800000;
    }

    .about-text a {
        padding: 12px 30px;
        width: 100%; /* Tombol jadi full lebar di HP agar mudah diklik */
    }
}
 /* --- 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 (PASTI BERHASIL) --- */
.section-work {
    padding: 100px 8% !important;
    background: #ffffff !important; /* Latar belakang putih bersih agar teks terbaca */
    text-align: center !important;
    display: block !important;
}

.work-header {
    margin-bottom: 60px !important;
}

.work-header h2 {
    font-size: 2.8rem !important;
    font-weight: 800 !important;
    color: #0a0a0a !important;
    line-height: 1.2 !important;
}

.work-header h2 span {
    color: #800000 !important; /* Warna Maroon */
}

.work-header p {
    color: #555 !important;
    max-width: 700px !important;
    margin: 20px auto 0 !important;
    font-size: 1.1rem !important;
}

/* Container Grid */
.work-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    gap: 30px !important;
    margin-top: 50px !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Kartu Proses */
.work-card {
    position: relative !important;
    padding: 50px 35px !important;
    background: #0a0a0a !important; /* Kartu Hitam */
    border-radius: 30px !important;
    color: #ffffff !important;
    transition: all 0.4s ease !important;
    border: 1px solid #222 !important;
    text-align: left !important;
    overflow: hidden !important;
}

/* Angka Besar di Background */
.work-num {
    position: absolute !important;
    top: -10px !important;
    right: 15px !important;
    font-size: 6rem !important;
    font-weight: 900 !important;
    color: rgba(128, 0, 0, 0.15) !important; /* Maroon Transparan */
    z-index: 1 !important;
}

.work-icon {
    position: relative !important;
    z-index: 2 !important;
    font-size: 2.8rem !important;
    color: #800000 !important; /* Icon Maroon */
    margin-bottom: 25px !important;
}

.work-card h3 {
    position: relative !important;
    z-index: 2 !important;
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
}

.work-card p {
    position: relative !important;
    z-index: 2 !important;
    font-size: 0.95rem !important;
    color: #cccccc !important;
    line-height: 1.7 !important;
}

/* Efek Hover */
.work-card:hover {
    transform: translateY(-10px) !important;
    border-color: #800000 !important;
    box-shadow: 0 15px 40px rgba(128, 0, 0, 0.3) !important;
}

.work-card:hover .work-num {
    color: rgba(128, 0, 0, 0.4) !important;
    top: 5px !important;
}

/* Responsif Mobile */
@media (max-width: 768px) {
    .section-work { padding: 60px 20px !important; }
    .work-header h2 { font-size: 2rem !important; }
    .work-card { padding: 40px 25px !important; }
    .work-grid { grid-template-columns: 1fr !important; }
}

/* --- 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; }
}

/* --- PORTFOLIO FILTER UPGRADE --- */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap; /* Agar tombol turun ke bawah jika layar HP sempit */
    padding: 0 5%;
}

.filter-btn {
    padding: 10px 22px;
    border: 1px solid #ddd;
    background: transparent;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
}

.filter-btn.active {
    background: #800000 !important; /* Maroon */
    border-color: #800000 !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(128, 0, 0, 0.3);
}

.filter-btn:hover {
    border-color: #800000;
    color: #800000;
}

/* Animasi Show/Hide */
.portfolio-item {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.portfolio-item.hide {
    display: none;
    opacity: 0;
}

.portfolio-item.show {
    display: block;
    animation: fadeInPortfolio 0.5s ease forwards;
}

@keyframes fadeInPortfolio {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- 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;
    }
}

/* --- SECTION VISION MISSION --- */
.section-visimisi {
    padding: 100px 8% !important;
    background: #0a0a0a !important; /* Hitam pekat */
    color: #ffffff !important;
}

.visimisi-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 80px !important;
    align-items: start !important;
}

/* Visi Styling */
.visi-box h2 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: #800000 !important; /* Maroon */
    margin-bottom: 25px !important;
}

.visi-text {
    font-size: 1.2rem !important;
    line-height: 1.8 !important;
    color: #eee !important;
    font-style: italic !important;
    margin-bottom: 30px !important;
}

.visi-motto {
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    font-size: 0.9rem !important;
}

.visi-motto i {
    color: #800000 !important;
    font-size: 1.5rem !important;
}

/* Misi Styling */
.misi-box h2 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    margin-bottom: 35px !important;
}

.misi-list {
    list-style: none !important;
}

.misi-list li {
    display: flex !important;
    gap: 20px !important;
    margin-bottom: 30px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    padding: 25px !important;
    border-radius: 20px !important;
    border-left: 4px solid #800000 !important;
    transition: 0.3s ease !important;
}

.misi-list li:hover {
    background: rgba(128, 0, 0, 0.1) !important;
    transform: translateX(10px) !important;
}

.misi-num {
    font-size: 1.5rem !important;
    font-weight: 800 !important;
    color: #800000 !important;
}

.misi-list p {
    font-size: 1rem !important;
    color: #ccc !important;
    line-height: 1.6 !important;
}

/* Responsive */
@media (max-width: 991px) {
    .visimisi-container {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 60px !important;
    }
    .misi-list li {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    .visi-motto {
        justify-content: center !important;
    }
}