/* ==========================================================================
   BARA PRODUCTION - STYLE.CSS
   ==========================================================================
   DAFTAR ISI:
   00. LOADING SCREEN (PRELOADER)
   01. GLOBAL & VARIABLES
   02. HEADER & NAVIGATION
   03. HERO SECTION (Beranda)
   04. GENERAL COMPONENTS (Titles, Wrapper, Buttons)
   05. SECTION: PORTOFOLIO PENCAPAIAN
   06. SECTION: FOTO PRODUK & FOTO MODEL & DRAMA (Slider & Pricelist)
   07. SECTION: SHORT MOVIE
   08. SECTION: CONTENT CREATOR (Carousel & Pricelist)
   09. SECTION: JASA EDITING FOTO & VIDEO (BARU)
   10. SECTION: SCRIPTWRITING & FOTO DOKUMENTASI
   11. SECTION VIDEO IKLAN & PROMOSI
   12. VIDEO DOKUMENTASI
   13. SECTION KONTAK 
   14. FOOTER
   ========================================================================== */

/* ==========================================================================
   00. LOADING SCREEN (PRELOADER)
   ========================================================================== */

body.no-scroll {
    overflow: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-hitam);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    
    /* Mencegah Lag saat animasi jalan */
    will-change: clip-path, opacity; 
    
    clip-path: circle(150% at 50% 50%);
    -webkit-clip-path: circle(150% at 50% 50%);
    
    transition: clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), 
                -webkit-clip-path 1s cubic-bezier(0.77, 0, 0.175, 1), 
                opacity 1s ease;
}
/* Saat class .hilang ditambahkan oleh JavaScript */
#preloader.hilang {
    /* Lingkaran menyusut jadi 0% (hilang di tengah) */
    clip-path: circle(0% at 50% 50%); 
    -webkit-clip-path: circle(0% at 50% 50%);
    opacity: 0;
    pointer-events: none;
}

/* --- ISI KONTEN LOADING --- */
.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-logo {
    font-size: 2.5rem;
    color: var(--text-light);
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
    animation: pulseLogo 1.5s infinite alternate;
}

.loader-logo span {
    color: var(--accent-yellow); 
}

/* Kotak & Garis loading berjalan */
.loading-bar-container {
    width: 250px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.loading-bar {
    width: 0%;
    height: 100%;
    /* INI BIANG KEROKNYA: Kita ganti jadi Kuning Bara agar senada dengan angkanya */
    background-color: var(--accent-yellow); 
    border-radius: 10px;
    transition: width 0.2s ease-out; 
}

/* Style untuk Angka Persentase yang baru */
.loading-number {
    color: var(--accent-yellow);
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.loading-text {
    color: #ccc;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: blinkText 1.5s infinite;
}
/* Style untuk Gambar Logo di Loading Screen */
.loading-image-logo {
    width: 120px; /* Atur seberapa besar gambar logonya di sini */
    height: auto;
    margin-bottom: 15px; /* Jarak antara gambar dengan tulisan BARA CREATION */
    
    /* Animasi efek detak jantung/glowing */
    animation: pulseImage 1.5s infinite alternate; 
}

/* Animasi khusus untuk gambar logo */
@keyframes pulseImage {
    0% { 
        transform: scale(0.9); 
        opacity: 0.8; 
    }
    100% { 
        transform: scale(1.05); 
        opacity: 1; 
        filter: drop-shadow(0 0 15px rgba(255, 176, 0, 0.6)); /* Glowing warna kuning */
    }
}
/* --- EFEK KEDIP & JALAN --- */
@keyframes pulseLogo {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; text-shadow: 0 0 15px rgba(255, 176, 0, 0.4); }
}

@keyframes fillBar {
    0% { width: 0%; }
    50% { width: 70%; }
    100% { width: 100%; }
}

@keyframes blinkText {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
/* ==========================================================================
   01. GLOBAL & VARIABLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    -webkit-tap-highlight-color: transparent; /* ← tambahkan ini */
    outline: none; /* ← tambahkan ini */
}

:root {
    --bg-hitam: #050505;    
    --bg-abu: #222222;       
    --accent-yellow: #FFB000;
    --text-light: #ffffff;
}

body {
    background-color: var(--bg-abu);
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================================================
   02. HEADER & NAVIGATION
   ========================================================================== */

html {
    scroll-behavior: smooth; /* Biar meluncur halus */
}

/* Biar pas berhenti, judul section gak nempel banget ke atas (ketutup header) */
section {
    scroll-margin-top: 80px; /* Sesuaikan dengan tinggi header Mbak */
}
header {
    background-color: var(--bg-hitam);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.btn-back {
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.btn-back:hover { color: var(--accent-yellow); }

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover { color: var(--accent-yellow); }

/* Header Responsif HP */
/* ==========================================================================
   TOMBOL HAMBURGER ANIMASI CSS (Sembunyi di Laptop)
   ========================================================================== */
.mobile-menu-btn {
    display: none; 
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 22px; /* Tinggi tombol */
    position: relative;
    z-index: 1100; /* Biar tombol tetap di atas saat menu turun */
    padding: 0;
}

/* 3 Garis Hamburger */
.mobile-menu-btn .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    position: absolute;
    left: 0;
    transition: all 0.4s ease-in-out; /* 💡 KUNCI ANIMASI MULUS */
}

/* Posisi Awal Garis (Atas, Tengah, Bawah) */
.mobile-menu-btn .bar:nth-child(1) { top: 0; }
.mobile-menu-btn .bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-btn .bar:nth-child(3) { bottom: 0; }

/* 💡 ANIMASI JADI HURUF 'X' SAAT DIKLIK (.active) */
.mobile-menu-btn.active .bar:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    background-color: var(--accent-yellow); /* Nyala kuning saat jadi X */
}
.mobile-menu-btn.active .bar:nth-child(2) {
    opacity: 0; /* Garis tengah menghilang */
    transform: translateX(-20px); /* Geser dikit sebelum hilang */
}
.mobile-menu-btn.active .bar:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
    background-color: var(--accent-yellow);
}

/* ==========================================================================
   RESPONSIF HP: HEADER (SEJAJAR & DROPDOWN)
   ========================================================================== */
/* ==========================================================================
   RESPONSIF HP: HEADER NEMPEL & MENU SIDEBAR KANAN
   ========================================================================== */
@media (max-width: 768px) {
    header { 
        padding: 15px 5%; 
        display: flex;
        flex-direction: row; 
        justify-content: space-between; 
        align-items: center;
        
        /* 💡 FIX 1: Balikin jadi STICKY biar selalu nempel di atas pas discroll */
        position: sticky; 
        top: 0;
        z-index: 1000;
        background-color: var(--bg-hitam); /* Pastikan solid biar konten bawah gak nembus */
    }
    
    .btn-back { 
        font-size: 0.85rem; 
        width: auto; 
    }
    
    /* Tombol Garis 3 / X */
    .mobile-menu-btn { 
        display: block; 
        z-index: 1100; /* KUNCI: Harus lebih tinggi dari menu biar tombol X tetap bisa diklik */
        position: relative;
    }

    /* 💡 FIX 2: SULAP JADI MENU SAMPING (SIDEBAR) */
    nav#main-nav {
        position: fixed; /* Mengambang terlepas dari halaman */
        top: 0;
        right: -100%; /* Sembunyi jauh di luar layar sebelah kanan */
        width: 250px; /* Lebar menu sampingnya */
        height: 100vh; /* Tinggi full mentok atas-bawah */
        background-color: #111111; /* Warna latar gelap elegan */
        border-left: 1px solid rgba(255, 255, 255, 0.05);
        
        /* Matikan sistem max-height yang lama */
        max-height: none; 
        overflow-y: auto;
        
        /* Animasi meluncur mulus dari kanan ke kiri */
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -15px 0 30px rgba(0,0,0,0.8);
        z-index: 1050; /* Posisi di bawah tombol X */
        
        padding-top: 80px; /* Kasih ruang kosong di atas biar gak ketutupan tombol X */
    }

    /* Saat tombol diklik, tarik menu ke dalam layar */
    nav#main-nav.active { 
        right: 0; 
    }

    nav#main-nav ul { 
        display: flex; 
        flex-direction: column;
        padding: 0 20px;
        gap: 10px;
        text-align: left; /* Rata kiri biar rapi ala sidebar */
    }
    
    /* Desain teks menu di dalam sidebar */
    nav#main-nav ul li a {
        display: block;
        padding: 15px 10px;
        font-size: 1.1rem;
        font-weight: 700;
        background: transparent;
        border: none;
        border-bottom: 1px dashed rgba(255,255,255,0.1);
        border-radius: 0;
        color: var(--text-light);
        transition: color 0.3s, padding-left 0.3s;
    }

    /* Efek pas menu disentuh */
    nav#main-nav ul li a:hover {
        background-color: transparent;
        color: var(--accent-yellow);
        padding-left: 20px; /* Teksnya geser dikit ke kanan pas disentuh, cakep! */
    }
}
/* ==========================================================================
   03. HERO SECTION (BERANDA)
   ========================================================================== */
.hero {
    background-color: var(--bg-hitam);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative; 
    overflow: hidden;
}

.hero-bg-animate {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1; 
}

.hero-bg-animate img {
    width: 100%; height: 100%;
    object-fit: cover; 
    object-position: center 30%; 
    opacity: 0.6; 
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.hero-logo {
    max-width: 300px;
    width: 100%;      
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.5)); 
}

.hero p {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-yellow);
    max-width: 600px;
    margin: 15px auto 1px auto; 
    text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
}

.hero-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    max-width: 900px;
    margin-top: 20px;
}

.hero-service-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 12px 20px;
    border-radius: 8px;
    color: var(--text-light);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-service-btn i {
    font-size: 1.2rem;
    color: var(--accent-yellow);
    transition: color 0.3s ease;
}

.hero-service-btn span {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-service-btn:hover {
    background-color: var(--accent-yellow);
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 176, 0, 0.4);
    border-color: var(--accent-yellow);
}

.hero-service-btn:hover i { color: #111; }

.gradient-transition {
    height: 100px;
    background: linear-gradient(to bottom, var(--bg-hitam) 0%, var(--bg-abu) 100%);
    margin-top: -1px;
}

/* Hero Responsif HP */
@media (max-width: 768px) {
    .hero { height: auto; min-height: 100vh; padding: 120px 20px 60px 20px; }
    .hero-logo { max-width: 180px; margin-bottom: 10px; }
    .hero p { font-size: 0.95rem; margin: 10px auto 20px auto; }
    .hero-services-grid { gap: 5px; }
    .hero-service-btn {
        padding: 6px 10px;
        gap: 5px;
        flex-direction: row; 
        width: auto;
    }
    .hero-service-btn i { font-size: 0.9rem; width: auto; }
    .hero-service-btn span { font-size: 0.65rem; }
}

/* ==========================================================================
   04. GENERAL COMPONENTS
   ========================================================================== */
.btn {
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    display: inline-block;
    color: #111;
    background-color: var(--accent-yellow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 5px 15px rgba(255, 176, 0, 0.4);
}

.content-wrapper {
    background-color: var(--bg-abu);
    position: relative;
    overflow: hidden;
}

.content-wrapper section {
    position: relative;
    z-index: 10; 
    padding: 80px 5%;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--accent-yellow);
    margin-bottom: 40px;
}

.bg-icon {
    position: absolute;
    color: #ffffff;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
    transition: top 8s ease-in-out, left 8s ease-in-out, transform 8s linear;
}

/* ==========================================================================
   05. SECTION: PORTOFOLIO PENCAPAIAN
   ========================================================================== */
.dummy-box-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-center {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px; 
}

.dummy-box {
    background-color: #333333;
    padding: 30px 30px 60px 30px;
    border-radius: 10px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    border-top: 3px solid var(--accent-yellow);
    text-decoration: none;
    display: block;        
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer; 
}

.dummy-box:hover {
    transform: translateY(-15px);
    border-color: var(--accent-yellow);
    box-shadow: 0 15px 30px rgba(255, 176, 0, 0.3);
}

.dummy-box h3 { 
    margin-bottom: 5px;
    font-size: 1.6rem;   
    color: #ffffff;     
    font-weight: 800;   
}

.dummy-box p { 
    color: #aaaaaa; 
    font-size: 0.75rem;  
    line-height: 1.2;
}

.box-image {
    width: 100%;
    height: 450px; 
    object-fit: cover; 
    object-position: top center; 
    border-radius: 8px; 
    margin-bottom: 20px; 
    box-shadow: 0 4px 8px rgba(0,0,0,0.5);
}

.dummy-box:hover .box-image {
    filter: brightness(1.1) contrast(1.1); 
    transform: scale(1.02); 
    transition: all 0.3s ease;
}

@media (min-width: 769px) {
    .highlight-center .dummy-box:nth-child(2) {
        transform: scale(1.15);
        z-index: 5;
        box-shadow: 0 10px 25px rgba(255, 176, 0, 0.2);
        border-top: 4px solid var(--accent-yellow);
    }
    .highlight-center .dummy-box:nth-child(2):hover {
        transform: scale(1.15) translateY(-10px); 
        box-shadow: 0 20px 40px rgba(255, 176, 0, 0.4);
    }
    .highlight-center .dummy-box:nth-child(2) p {
        font-size: 0.8rem;   
    }
}

/* Portofolio Responsif HP */
@media (max-width: 768px) {
    .content-wrapper section { padding: 30px 10px; } 
    .section-title { font-size: 1.5rem; margin-bottom: 20px; }
    .dummy-box-container {
        flex-direction: row; 
        flex-wrap: nowrap;
        gap: 5px;            
        overflow: visible;   
        padding: 20px 0;     
    }
    .dummy-box {
        flex: 1;             
        min-width: 0;        
        padding: 10px 5px 15px 5px; 
        margin: 0;
        border-radius: 6px;  
    }
    .box-image {
        height: auto; 
        object-fit: contain; 
        margin-bottom: 15px; 
        display: block; 
    }
    .dummy-box h3 { font-size: 0.65rem; margin-bottom: 2px; }
    .dummy-box p { font-size: 0.45rem; line-height: 1.2; }

    .highlight-center .dummy-box:nth-child(2) {
        transform: scale(1.15); 
        z-index: 5;
        border-top: 2px solid var(--accent-yellow);
        box-shadow: 0 5px 15px rgba(255, 176, 0, 0.4);
    }
    .highlight-center .dummy-box:nth-child(2) h3 { font-size: 0.75rem; }
    .highlight-center .dummy-box:nth-child(2) p { font-size: 0.5rem; }
}

/* ==========================================================================
   06. SECTION: FOTO PRODUK & POTO MODEL & DRAMA
   ========================================================================== */
.product-layout-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.product-slider-col { flex: 1.2; max-width: 600px; }
.product-price-col { flex: 0.8; max-width: 400px; }

/* Slider Styling */
.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.slider-center-column {
    display: flex;
    flex-direction: column;
    width: 320px;
    z-index: 2;
}

.slider-view { width: 100%; overflow: visible; }

.slider-track {
    display: flex;
    align-items: center;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1); 
    will-change: transform; 
}

.slider-slide {
    flex: 0 0 100%; 
    width: 100%;
    padding: 0 10px; 
    opacity: 0.3; 
    transform: scale(0.75); 
    transition: all 0.5s ease; 
    pointer-events: none; 
}

.slider-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto; 
    z-index: 5;
}

.slider-slide img {
    width: 100%;
    height: auto; 
    object-fit: fill; 
    display: block; 
    border-radius: 12px; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

/* Card Pricelist Foto Produk */
.pricelist-card {
    background-color: #111111; 
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.pricelist-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 4px;
    background: var(--accent-yellow);
}

.pricelist-card h4 {
    color: var(--accent-yellow);
    font-size: 1.4rem;
    margin-bottom: 25px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.pricelist-content p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.pricelist-content strong {
    color: #ffffff; 
    font-size: 1.05rem;
    display: inline-block;
    margin-bottom: 5px;
}

.btn-pesan {
    display: block;
    text-align: center;
    margin-top: 25px;
    padding: 12px;
    width: 100%;
}

/* Tombol Slider Foto Produk */
.slider-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    width: 60px; 
    height: auto;
    padding: 0;
    position: absolute; 
    z-index: 10; 
    display: flex;
    align-items: center;
    justify-content: center;
    scale: 1;
    transition: scale 0.3s ease, filter 0.3s ease;
}

.slider-btn img { width: 100%; height: auto; }
.slider-btn:hover {
    scale: 1.2; 
    filter: drop-shadow(0 0 15px var(--accent-yellow)) !important; 
}

.prev-btn { left: 6%; animation: nudgeLeft 1.5s infinite ease-in-out; } 
.prev-btn img { transform: scaleX(-1); }
.next-btn { right: 6%; animation: nudgeRight 1.5s infinite ease-in-out; }

@keyframes nudgeLeft {
    0%, 100% { translate: 0 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.8)); }
    50% { translate: -8px 0; filter: drop-shadow(0 0 10px rgba(255, 176, 0, 0.5)); }
}

@keyframes nudgeRight {
    0%, 100% { translate: 0 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.8)); }
    50% { translate: 8px 0; filter: drop-shadow(0 0 10px rgba(255, 176, 0, 0.5)); }
}

/* ==================================
   STYLING KHUSUS KOTAK INFO SERIES
   ================================== */
.info-series-card {
    margin-top: 10px; /* Jarak antara poster dan kotak info di Desktop */
    padding: 20px 25px; /* Sedikit lebih tipis dari kotak harga */
}

.info-series-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
    padding-bottom: 10px;
}

/* RESPONSIVE HP: BIKIN KOTAK INFO SERIES LEBIH KECIL */
@media (max-width: 768px) {
    .info-series-card {
        padding: 15px !important; /* Padding dikecilkan */
        margin-top: 0px; 
    }
    
    .info-series-card h4 {
        font-size: 1rem !important; /* Judul "INFO SERIES" dikecilkan */
        margin-bottom: 8px !important;
        padding-bottom: 8px !important;
    }
    
    .info-series-card h5#seriesTitleDisplay {
        font-size: 1rem !important; /* Judul Film dikecilkan */
        margin-bottom: 8px !important;
    }
    
    /* Tombol Episode dirapatkan dan dikecilkan di HP */
    .episode-selector {
        gap: 6px;
    }
    
    .ep-btn {
        padding: 5px 12px;
        font-size: 0.75rem;
    }
}

/*TOMBOL PILIH EPISODE (SECTION SERIES)*/
.episode-selector {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    overflow-x: auto; 
    padding-bottom: 5px;
}

.episode-selector::-webkit-scrollbar { height: 4px; }
.episode-selector::-webkit-scrollbar-thumb { background: rgba(255, 176, 0, 0.5); border-radius: 10px; }

.ep-btn {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    padding: 6px 15px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap; /* Teks gak turun ke bawah */
}

.ep-btn:hover {
    background: rgba(255, 176, 0, 0.2);
    border-color: var(--accent-yellow);
}

.ep-btn.active {
    background: var(--accent-yellow);
    color: #000;
    font-weight: 900;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 10px rgba(255, 176, 0, 0.4);
}

.split-box-layout {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.split-box-layout .pricelist-card {
    padding: 25px 30px;
}

.model-pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Membagi jadi 2 kolom */
    gap: 15px; /* Jarak antar kotak */
    margin-bottom: 20px;
}

.model-price-box {
    background-color: #111111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.model-price-box:hover {
    transform: translateY(-3px);
    border-color: var(--accent-yellow); /* Menyala kuning saat kursor diarahkan */
}

/* Kunci agar Kotak 1 memakan full 2 kolom di atas */
.model-price-box.box-full {
    grid-column: 1 / span 2;
}

.model-price-box h5 {
    color: #ffffff;
    font-size: 0.8rem;
    margin-bottom: 5px;
    line-height: 1.3;
}

.model-price-box .price {
    color: var(--accent-yellow);
    font-size: 1.2rem;
    font-weight: 900;
    display: block;
}

.model-price-box .note {
    color: #aaaaaa;
    font-size: 0.65rem;
    font-style: italic;
    margin-top: 3px;
}

/* Kotak Info Fasilitas & Tambahan di Bawahnya */
.model-global-info {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border-left: 3px solid var(--accent-yellow); /* Garis aksen kuning di kiri */
    font-size: 0.8rem;
    color: #dddddd;
    line-height: 1.5;
}
/* ==================================
   PENGATURAN KHUSUS FOTO MODEL
   ================================== */
#foto-model .model-gallery-wrapper {
    padding: 0;
    margin: 0 auto;
    max-width: 350px;
}

#foto-model .model-carousel-view {
    border-radius: 0;
}

#foto-model .model-slide-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

#foto-model .model-btn-prev {
    left: -60px;
    z-index: 20;
}

#foto-model .model-btn-next {
    right: -60px;
    z-index: 20;
}

#foto-model .model-price-title {
    color: var(--accent-yellow);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
}

#foto-model .price-small-note {
    font-size: 0.7rem;
    color: #aaaaaa;
}

#foto-model .mb-10 {
    margin-bottom: 10px;
}

#foto-model .mt-20 {
    margin-top: 20px;
}
@media (max-width: 768px) {
    .product-layout-grid {
        flex-direction: column; 
        gap: 10px;
        padding: 0 3%;
    }
    .product-slider-col, .product-price-col {
        max-width: 100%; width: 100%;
    }
    .pricelist-card { padding: 25px 20px; }
    .pricelist-card h4 { font-size: 1.2rem; margin-bottom: 15px; }
    .pricelist-content p { font-size: 0.85rem; }

    .slider-wrapper { 
        justify-content: space-between; 
        padding: 30px 20px; 
        -webkit-mask-image: none; 
        mask-image: none;
    }
    .slider-center-column { 
        width: 230px; 
        margin: 0 auto; 
        z-index: 5;
        overflow: visible;
    } 
    .slider-slide { padding: 0 5px; } 

    .slider-btn { 
        position: static; 
        width: 50px; height: 50px; 
        background-color: transparent; 
    }
    .slider-btn img { filter: drop-shadow(0 2px 4px rgba(0,0,0,0.8)); }

    .model-price-box h5 { font-size: 0.75rem; }
    .model-price-box .price { font-size: 1rem; }
    .model-pricing-grid { gap: 10px; }
    .model-price-box { padding: 12px 10px; }

    /* ======================================================== */
    /* RESPONSIVE HP: FOTO MODEL (Tetap 2x2, Ukuran Mengecil)   */
    /* ======================================================== */
    #foto-model .ig-gallery-wrapper {
        max-width: 390px !important; /* KUNCI: Kandang foto dikecilkan agar muat di HP */
    }
    
    #foto-model .ig-slide-group {
        grid-template-columns: repeat(2, 1fr) !important; /* KUNCI: Paksa jadi 2 kolom di HP */
        gap: 5px !important; /* Jarak antar foto dirapatkan sedikit */
    }

    #foto-model .ig-btn {
        width: 60px !important; /* Tombol panah ikut mengecil proporsional */
    }

    #foto-model .ig-prev-btn {
        left: -60px !important; /* Jarak tombol ditarik agak ke dalam biar tidak nabrak pinggir layar */
    }

    #foto-model .ig-next-btn {
        right: -60px !important;
    }
}
/* ==========================================================================
   07. SECTION: SHORT MOVIE - PREMIUM FULL EDITION
   ========================================================================== */
.short-movie-section {
    padding: 100px 0;
    background-color: transparent;
}

/* 💡 KUNCI 1: GRID UNTUK POSTER (KIRI) DAN VIDEO (KANAN) */
.short-movie-layout {
    display: grid;
    /* 💡 Lebar poster dinaikkan dari 280px jadi 340px biar lebih mantap */
    grid-template-columns: 340px 1fr; 
    gap: 20px 35px; 
    
    /* 💡 KUNCI UTAMA: Ubah 'start' jadi 'stretch' biar tingginya ditarik sama rata! */
    align-items: stretch; 
    
    margin-bottom: 60px;
    max-width: 950px; 
    margin-left: auto;
    margin-right: auto;
}
/* 💡 SIHIR CSS: Buka "Bungkus" HTML biar isinya bisa dipindah-pindah */
.poster-column {
    display: contents; 
}

/* 💡 POSISI KIRI: POSTER */
.poster-wrapper {
    grid-column: 1 / 2; 
    grid-row: 1 / 3; 
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.4s ease;
    
    /* 💡 KUNCI KEDUA: Paksa kotak pembungkusnya memanjang full sampai bawah */
    height: 100%; 
}
.poster-wrapper:hover { transform: translateY(-5px); }
.poster-image { width: 100%; height: auto; display: block; }

/* 💡 POSISI KANAN ATAS: VIDEO */
.content-column {
    grid-column: 2 / 3; /* Taruh di kolom 2 (Kanan) */
    grid-row: 1 / 2; /* Taruh di baris 1 (Atas) */
}

/* --- VIDEO PLAYER WRAPPER --- */
.video-player-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* Ratio 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 176, 0, 0.3);
}
.youtube-iframe-player { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; pointer-events: none; }
.video-click-area { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 10; }

/* 💡 POSISI KANAN BAWAH: TEKS INFO (Persis di bawah video) */
.movie-info-box {
    grid-column: 2 / 3; /* Taruh di kolom 2 (Kanan) */
    grid-row: 2 / 3; /* Taruh di baris 2 (Bawahnya video) */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    padding: 20px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}
.movie-title { color: var(--accent-yellow); font-size: 1.4rem; font-weight: 900; margin-bottom: 8px; }
.movie-desc-short { color: #ccc; font-size: 0.95rem; line-height: 1.5; margin: 0; }

.sm-pricing-section {
    width: 100%;
    margin-top: -30px;
    padding-top: 50px;
}

.short-movie-pricing-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

/* --- KARTU EMAS FULL (Identik Infografis) --- */
.sm-price-card {
    /* Gradasi Emas Mewah */
    background: linear-gradient(135deg, #555555 0%, #2e2e2e 25%, #2b2b2b 50%, #1f1e1e 75%, #333333 100%);
    border: 1px solid #b8860b;
    border-radius: 15px;
    padding: 40px 20px 25px 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.4), inset 0 0 10px rgba(255,255,255,0.4);
    transition: all 0.4s ease;
    overflow: visible; /* Biar badge pita gak kepotong */
}

.sm-price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.6);
}

/* Efek kartu tengah tetap menonjol */
.sm-price-card.highlight {
    transform: scale(1.05);
    z-index: 5;
    border: 2px solid #fff;
}

/* --- HEADER & HARGA (Warna Putih/Gelap High Contrast) --- */
.sm-card-header {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.sm-card-header h4 {
    font-size: 1.1rem;
    color: #000; /* Judul Paket Hitam biar tegas di atas emas */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.sm-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff; /* Angka Putih */
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1;
}

.sm-price span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #eee;
}

.sm-duration {
    font-size: 0.85rem;
    color: #333;
    font-weight: 700;
    margin-top: 5px;
    background: rgba(255,255,255,0.3);
    display: inline-block;
    padding: 2px 10px;
    border-radius: 20px;
}

/* --- FITUR LIST (Ikon Merah Maroon) --- */
.sm-features { list-style: none; padding: 0; margin: 0; flex-grow: 1; }

.sm-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: #d9ff00; /* Teks Hitam */
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

/* Ikon Ceklist dkk jadi Merah (Biar kontras sama Emas) */
.sm-features li i { 
    color: #ffff00; 
    margin-top: 3px;
    font-size: 0.9rem;
    width: 18px;
    text-align: center;
}

/* --- SUB-LIST ALAT (GRID 2 KOLOM) --- */
.sm-sub-list {
    column-count: 2;
    column-gap: 10px;
    margin-top: 8px;
    padding-left: 0;
    list-style: none;   
    counter-reset: item-counter;
}

.sm-sub-list li {
    display: flex;
    font-size: 0.75rem !important;
    color: #b7a819 !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    break-inside: avoid;
}

.sm-sub-list li::before {
    counter-increment: item-counter;
    content: counter(item-counter) ".";
    font-weight: 900;
    margin-right: 4px;
    color: #b7a819; /* Angka List Merah */
}

/* --- BADGE PITA MERAH (Red Velvet) --- */
.pkg-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to bottom, #b30000, #800000);
    color: #ffd700;
    padding: 6px 20px;
    border-radius: 5px;
    font-weight: 900;
    font-size: 0.75rem;
    letter-spacing: 1px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    border: 1px solid #ffd700;
    white-space: nowrap;
    z-index: 10;
}

/* Bonus Item Glowing Merah */
.bonus-item {
    margin-top: 15px !important;
    padding: 8px !important;
    background: rgba(146, 179, 0, 0.1);
    border-radius: 8px;
    border: 1px dashed #ddff00 !important;
    color: #fff700 !important;
    font-weight: 900 !important;
    text-transform: uppercase;
    text-align: center;
}

/* --- TOMBOL PESAN (Hitam Kuning Glow) --- */
.global-btn-order {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #111;
    color: #ffd700;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
    border: none;
}

.global-btn-order:hover {
    background: #383838;
    color: #111;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}


.movie-mute-btn {
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* Biar pas ganti warna/ikon gak kaget */
    backdrop-filter: blur(5px);
    z-index: 20;
}

.movie-mute-btn:hover {
    transform: scale(1.1);
    border-color: var(--accent-yellow);
}
/* --- RESPONSIVE HP: PAKSA 3 KOLOM SEJAJAR --- */
@media (max-width: 768px) {
    .short-movie-layout {
        grid-template-columns: 1fr; /* Jadi 1 kolom full */
        gap: 20px;
    }
    .poster-wrapper {
        grid-column: 1 / 2;
        grid-row: 1 / 2; /* Poster paling atas */
        width: 65%; /* Poster dikecilkan di layar HP */
        margin: 0 auto; /* Posisi di tengah */
    }
    .content-column {
        grid-column: 1 / 2;
        grid-row: 2 / 3; /* Video di tengah */
    }
    .movie-info-box {
        grid-column: 1 / 2;
        grid-row: 3 / 4; /* Teks paling bawah */
        text-align: center;
    }

    .short-movie-layout { 
        grid-template-columns: 1fr; 
        gap: 20px; 
    }
    
    .poster-column { 
        max-width: 250px; 
        margin: 0 auto; 
    }

    /* 💡 KUNCI 1: Paksa 3 kolom berjejer */
    .short-movie-pricing-row {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 5px !important; /* Jarak antar kotak mepet banget biar muat */
        padding: 0 5px;
    }

    /* 💡 KUNCI 2: Kecilin padding dalam kotak */
    .sm-price-card {
        padding: 15px 5px 10px 5px !important;
        border-radius: 8px;
    }

    .sm-price-card.highlight { transform: scale(1); }

    /* 💡 KUNCI 3: Kecilin semua ukuran teks (Mikro Mode) */
    .sm-card-header {
        margin-bottom: 10px;
        padding-bottom: 8px;
    }

    .sm-card-header h4 {
        font-size: 0.55rem !important; /* Judul paket jadi kecil banget */
        letter-spacing: 0;
    }

    .sm-price {
        font-size: 1.1rem !important; /* Angka harga dikecilkan */
    }

    .sm-price span {
        font-size: 0.5rem !important;
    }

    .sm-duration {
        font-size: 0.45rem !important;
        padding: 1px 5px;
    }

    /* List Fitur */
    .sm-features li {
        font-size: 0.45rem !important; /* Teks fitur jadi mikro */
        gap: 4px;
        margin-bottom: 5px;
        line-height: 1.1;
    }

    .sm-features li i {
        font-size: 0.5rem !important; /* Ikon ceklist kecil */
        width: 10px;
    }

    /* 💡 KUNCI 4: Alat shooting jadi 1 kolom saja per kotak */
    .sm-sub-list {
        column-count: 1 !important; 
        margin-top: 5px;
    }

    .sm-sub-list li {
        font-size: 0.45rem !important;
    }

    /* Badge & Bonus */
    .pkg-badge {
        font-size: 0.4rem !important;
        padding: 3px 8px;
        top: -10px;
    }

    .bonus-item {
        margin-top: 8px !important;
        padding: 4px !important;
        font-size: 0.45rem !important;
    }

/* --- TOMBOL PESAN HP (TETAP PENDEK & DI TENGAH) --- */
    .global-btn-order { 
        width: auto !important; /* 💡 KUNCI: Biar gak melar selebar layar */
        padding: 10px 25px !important; /* Dikecilkan dikit tapi tetep enak di-tap */
        font-size: 0.75rem !important; 
        display: inline-flex !important; /* Membungkus isi tombol saja */
        margin: 0 auto; /* Tetap berada di tengah */
        gap: 8px !important;
    }

    .global-btn-order i {
        font-size: 1rem !important; /* Ikon WA-nya ikutan nge-kecil biar seragam */
    }
}

/* ==========================================================================
   08. SECTION: CONTENT CREATOR (Carousel & Pricelist)
   ========================================================================== */
#content-creator {
    background-color: transparent; 
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

/* Instruksi Slide */
.cc-slide-instruction {
    text-align: center;
    color: #ffffff;            
    font-size: 1rem;      
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -40px;        
    margin-bottom: -15px;    
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Area Carousel HP */
.cc-carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1000px; 
    margin: 0 auto;
    padding: 60px 0;
    overflow: visible; /* Biar ngintip */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.cc-carousel-center {
    width: 100%; 
    max-width: 900px; 
    display: flex;
    flex-direction: column;
    z-index: 2;
    overflow: visible !important; 
}

.cc-carousel-track {
    display: flex;
    align-items: center;
    will-change: transform;
}

.cc-carousel-slide {
    flex: 0 0 300px; 
    width: 300px;
    height: 600px; 
    padding: 0 10px; 
    box-sizing: border-box;
    opacity: 0.35; 
    transform: scale(0.82); 
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none; 
}

.cc-carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
    z-index: 5;
}

/* Bingkai HP */
.css-iphone-mockup.silver-edition {
    position: relative;
    width: 100%; 
    height: 100%; 
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #cccccc 100%);
    border: 2px solid #b3b3b3; 
    border-radius: 35px; 
    box-shadow: inset 0 0 5px rgba(255,255,255,0.8), 0 0 0 1px #888; 
    display: flex;
    flex-direction: column; 
    overflow: hidden; 
}

.iphone-bezel-top {
    height: 50px; width: 100%;
    display: flex; justify-content: center; align-items: center;
    gap: 15px; background-color: transparent;
}

.camera-dot {
    width: 10px; height: 10px;
    background-color: #222; border-radius: 50%;
    box-shadow: inset 0 0 3px #000;
}

.speaker-grill {
    width: 50px; height: 6px;
    background-color: #222; border-radius: 10px;
    box-shadow: inset 0 0 3px #000;
}

.iphone-display {
    flex: 1; width: 100%;
    display: flex; flex-direction: column;
    background-color: #000; 
    overflow: hidden; position: relative;
}

.iphone-bezel-bottom {
    height: 70px; width: 100%;
    display: flex; justify-content: center; align-items: center;
    background-color: transparent;
}

.home-button {
    width: 45px; height: 45px;
    border-radius: 50%; border: 2px solid #999;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), inset 0 -2px 4px rgba(0,0,0,0.1);
}

/* Video HP */
.video-click-area {
    flex: 1; display: flex; justify-content: center; align-items: center;
    width: 100%; height: 100%; cursor: pointer; 
}


.cc-carousel-slide video { 
    width: 100%; height: 100%;
    object-fit: cover !important; 
    background-color: #000; display: block; pointer-events: none; 
}
video::-webkit-media-controls { display: none !important; }

/* Logo & Interaksi di Layar HP */
.video-client-logo {
    position: absolute; top: 15px; left: 15px; width: 70px; height: auto;
    z-index: 20; pointer-events: none; 
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.5)); opacity: 0.9;
    transition: transform 0.3s ease;
}

.cc-carousel-slide.active .video-client-logo { transform: scale(1.1); opacity: 1; }

.engagement-stats {
    position: absolute; bottom: 30px; right: 15px; 
    display: flex; flex-direction: column; gap: 15px;    
    z-index: 15; pointer-events: none; 
}

.stat-item { display: flex; flex-direction: column; align-items: center; gap: 6px; }

.icon-circle {
    width: 40px; height: 40px; background-color: rgba(30, 30, 30, 0.6); 
    backdrop-filter: blur(3px); border-radius: 50%; 
    display: flex; justify-content: center; align-items: center;
    color: #ffffff; font-size: 1.1rem; transition: all 0.3s ease;
}

.stat-item span {
    color: #ffffff; font-size: 0.7rem; font-weight: 800; font-family: sans-serif;
    letter-spacing: 0.5px; text-shadow: 1px 1px 3px rgba(0,0,0,0.9), -1px -1px 3px rgba(0,0,0,0.5); 
}

.mute-btn {
    position: absolute; bottom: 30px; left: 15px; 
    width: 40px; height: 40px; border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.6); backdrop-filter: blur(3px); border: none;
    color: #ffffff; font-size: 1.1rem; cursor: pointer; z-index: 20; 
    transition: all 0.3s ease; display: flex; justify-content: center; align-items: center;
}
.mute-btn:hover { background-color: var(--accent-yellow); color: #111; transform: scale(1.1); }

/* ==========================================================================
   Tombol Geser Carousel HP (Disesuaikan Gaya Instagram Gallery)
   ========================================================================== */
#content-creator .slider-btn {
    background: transparent; 
    border: none; 
    cursor: pointer;
    width: 65px; 
    height: auto;
    padding: 0;
    position: absolute; 
    top: 50%; 
    transform: translateY(-50%); /* Menjaga posisi persis di tengah vertikal */
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: scale 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.7)); 
}

#content-creator .slider-btn img {
    width: 100%;
    height: auto;
    display: block;
}

/* Animasi & Hover Tombol (Scale dipindah ke img agar tidak konflik dengan animasi gerak) */
#content-creator .slider-btn img {
    transition: transform 0.3s ease;
}
#content-creator .slider-btn:hover img {
    transform: scale(1.2); 
}
#content-creator .slider-btn:hover {
    filter: drop-shadow(0 0 15px var(--accent-yellow)); 
}

/* Posisi Kiri (Di-flip gambarnya & Animasi jalan terus meski di-hover) */
#content-creator .prev-btn {
    left: 3%; 
    animation: nudgeLeftHP 1.5s infinite ease-in-out; 
} 
#content-creator .prev-btn img {
    transform: scaleX(-1); /* Balik gambar panah agar hadap kiri */
}
#content-creator .prev-btn:hover img {
    transform: scaleX(-1) scale(1.2); /* Membesar sambil tetap dibalik */
}

/* Posisi Kanan */
#content-creator .next-btn {
    right: 3%; 
    animation: nudgeRightHP 1.5s infinite ease-in-out; 
}

/* Animasi Khusus untuk Carousel HP agar translateY(-50%) tidak hilang */
@keyframes nudgeLeftHP {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(-8px); }
}

@keyframes nudgeRightHP {
    0%, 100% { transform: translateY(-50%) translateX(0); }
    50% { transform: translateY(-50%) translateX(8px); }
}
/* Judul Video Statik di Bawah */
.cc-dynamic-caption {
    text-align: center;
    color: var(--accent-yellow); 
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: -20px; 
    margin-bottom: 50px; 
    transition: opacity 0.3s ease;
}

/* Background Glow */
.cc-bg-glow-spot { display: none; }

/* ==========================================================================
   GALLERY FEED INSTAGRAM (CONTENT CREATOR) - SLIDER 8 FOTO PER SLIDE
   ========================================================================== */
.ig-gallery-wrapper {
    max-width: 800px;
    margin: 60px auto 80px auto;
    padding: 0 20px;
    position: relative; /* Kunci untuk tombol melayang */
}

.ig-gallery-title {
    text-align: center;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 35px; 
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.ig-gallery-title i {
    color: #E1306C;
    margin-right: 8px;
}

.ig-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
}

.ig-carousel-view {
    width: 100%;
    overflow: hidden; 
    border-radius: 12px;
}

.ig-carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}

.ig-slide-group {
    flex: 0 0 100%; 
    width: 100%;
    display: grid;
    /* KUNCI: Bikin 4 kolom ke samping. Kalau ada 8 foto, otomatis jadi 4 atas 4 bawah */
    grid-template-columns: repeat(4, 1fr); 
    gap: 15px;
    align-items: start; /* Gambar nggak ditarik melar ke bawah */
}

/* ================================== */
/* BINGKAI FOTO - TANPA SISA HITAM    */
/* ================================== */
.ig-photo-box {
    background-color: transparent; 
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.05);
}

.ig-photo-box img {
    width: 100%;
    height: auto; /* Gambar tidak kepotong */
    display: block;
    transition: transform 0.4s ease;
}

.ig-photo-box:hover img {
    transform: scale(1.05);
}

/* ================================== */
/* TOMBOL GESER CUSTOM (PAKE GAMBAR)  */
/* ================================== */
.ig-btn {
    background: transparent; 
    border: none; 
    cursor: pointer;
    width: 65px; 
    height: auto;
    padding: 0;
    position: absolute; 
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: scale 0.3s ease, filter 0.3s ease;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.7)); 
}

.ig-btn img {
    width: 100%;
    height: auto;
    display: block;
}

.ig-btn:hover {
    scale: 1.2; 
    filter: drop-shadow(0 0 15px var(--accent-yellow)) !important; 
}

.ig-prev-btn {
    left: -70px; 
    animation: nudgeLeft 1.5s infinite ease-in-out; 
} 
.ig-prev-btn img {
    transform: scaleX(-1); /* Panah hadap kiri */
}

.ig-next-btn {
    right: -70px; 
    animation: nudgeRight 1.5s infinite ease-in-out; 
}

/* Menyesuaikan jarak pricelist di bawahnya agar tidak bertabrakan */
#content-creator .cc-horizontal-row {
    margin-top: 30px;
}


/* -------------------------------------
   PRICING LIST KONTEN KREATOR
   ------------------------------------- */
.cc-horizontal-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    padding: 20px 2%;
    max-width: 1400px;
    margin: 0 auto;
    overflow-x: visible;
}

.cc-box-slim {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px 15px;
    flex: 1;
    min-width: 200px; 
    max-width: 240px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.cc-box-slim:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-yellow);
}

.cc-box-slim.featured {
    border: 1.5px solid var(--accent-yellow);
    background: rgba(255, 176, 0, 0.03);
    scale: 1.05;
}

.cc-top-badge {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.cc-top-badge.gold { color: var(--accent-yellow); font-weight: 800; }
.cc-top-badge.white { color: #fff; font-weight: 800; }

.cc-box-slim h4 {
    font-size: 0.8rem;
    color: #fff;
    font-weight: 800;
    margin-bottom: 12px;
}

.cc-pricing {
    display: flex;
    flex-direction: row;        /* Jadikan satu baris */
    align-items: baseline;      /* Sejajarkan bawah tulisan angka dan /bln */
    flex-wrap: wrap;            /* Kunci biar harga coret bisa di atas */
    justify-content: flex-start; /* KUNCI UTAMA: Tarik semua ke KIRI */
    margin-bottom: 15px;
    height: auto; 
}

.old-pr {
    width: 100%;                /* Paksa harga coret makan 1 baris penuh di atas */
    font-size: 0.65rem; 
    color: #ff0000;
    text-decoration: line-through;
    margin-bottom: 2px;
    text-align: left;           /* Pastikan teks rata kiri */
}

.new-pr {
    font-size: 2rem; 
    font-weight: 900;
    color: var(--accent-yellow);
    line-height: 1;
    margin-right: 5px;          /* Jarak antara harga dan /bln */
}

.cc-pricing small {
    font-size: 0.65rem;
    color: var(--accent-yellow);
    font-weight: normal;
}

.cc-divider-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
    margin: 15px 0;
}

.cc-details-area { flex-grow: 1; margin-top: 5px; }
.cc-short-desc { font-size: 0.65rem; color: #888; margin-bottom: 10px; line-height: 1.3; }

.cc-core-specs { list-style: none; margin: 15px 0; padding: 0; }
.cc-core-specs li {
    font-size: 0.7rem; color: #eee; margin-bottom: 5px;
    display: flex; gap: 8px; align-items: center;
}
.cc-core-specs li b { color: #fff; }
.cc-core-specs i {
    color: var(--accent-yellow); width: 15px;
    text-shadow: 0 0 5px rgba(255, 176, 0, 0.3);
}

.cc-fac-title { font-size: 0.6rem; font-weight: 800; color: #555; text-transform: uppercase; margin-top: 10px; margin-bottom: 5px; }

.cc-facilities-icons { list-style: none; margin: 0; padding: 0; }
.cc-facilities-icons li {
    font-size: 0.65rem; margin-bottom: 3px; line-height: 1.2;
    display: flex; gap: 8px; align-items: flex-start;
}
.cc-facilities-icons li.active { color: #ccc; }
.cc-facilities-icons li.active i { color: #00ff88; margin-top: 1px; }
.cc-facilities-icons li.locked { color: #444; }
.cc-facilities-icons li.locked i { color: #444; margin-top: 1px; }

.cc-btn-choose {
    margin-top: 20px; padding: 10px; font-size: 0.7rem; font-weight: 800;
    text-align: center; border-radius: 8px; background: #fff; color: #000;
    text-decoration: none; text-transform: uppercase; transition: 0.3s;
}
.price-card.featured .cc-btn-choose { background: var(--accent-yellow); }
.cc-btn-choose.outline { background: transparent; border: 1px solid #444; color: #fff; }
.cc-btn-choose:hover { filter: brightness(1.2); transform: scale(1.03); }



/* Responsif HP */
@media (max-width: 1200px) {
    /* Tarik tombol ke dalam sedikit kalau layar nanggung */
    .ig-prev-btn { left: 10px; }
    .ig-next-btn { right: 10px; }
}

/* ==========================================================================
   FIX FINAL: MODE SWIPE / GESER SAMPING + GARIS SLIDE (VERSI LEBIH KECIL)
   ========================================================================== */
@media (max-width: 768px) {
    /* 1. BUNGKUS UTAMA JADI BISA DIGESER (SWIPE) */
    .cc-horizontal-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important; 
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        gap: 12px !important; /* Jarak antar kotak didekatkan dikit */
        padding: 10px 15px 25px 15px !important; 
        justify-content: flex-start !important; 
        -webkit-overflow-scrolling: touch !important; 
    }

    /* GARIS SLIDE (SCROLLBAR) BAWAH */
    .cc-horizontal-row::-webkit-scrollbar {
        display: block !important; 
        height: 5px; /* Garisnya dibikin lebih tipis dikit */
    }

    .cc-horizontal-row::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1); 
        border-radius: 10px;
        margin: 0 40px; /* Jarak kiri-kanan dinaikkan biar garisnya lebih pendek */
    }

    .cc-horizontal-row::-webkit-scrollbar-thumb {
        background: var(--accent-yellow); 
        border-radius: 10px;
    }

    /* 2. KOTAK HARGA (Ukurannya Dikecilkan) */
    .cc-box-slim {
        flex: 0 0 78% !important; /* 💡 KUNCI: Lebar kotak dikurangi dari 85% jadi 78% */
        max-width: 280px !important; /* Batas maksimal diperkecil */
        scroll-snap-align: center !important; 
        
        padding: 20px 15px !important; /* 💡 KUNCI: Ruang dalam kotak dipersempit */
        border-radius: 12px !important;
        height: auto !important;
        
        display: flex !important;
        flex-direction: column !important;
        
        transform: none !important;
        margin: 0 !important;
        scale: 1 !important;
    }

    /* Kotak Custom/Nego disamakan ukurannya */
    .cc-box-slim:nth-child(5) {
        margin: 0 !important;
        width: 100% !important;
    }

    /* 3. TEKS DIKECILKAN DIKIT BIAR PROPORSIONAL SAMA KOTAK */
    .cc-top-badge { font-size: 0.55rem !important; margin-bottom: 6px !important; }
    .cc-box-slim h4 { font-size: 0.85rem !important; margin-bottom: 8px !important; white-space: normal !important; }
    
    .cc-pricing { display: flex !important; flex-wrap: wrap !important; margin-bottom: 10px !important; }
    .old-pr { font-size: 0.6rem !important; display: block !important; margin-bottom: 0 !important; width: 100% !important; }
    .new-pr { font-size: 1.35rem !important; line-height: 1 !important; margin-right: 5px !important;}
    
    .cc-short-desc { display: block !important; font-size: 0.65rem !important; line-height: 1.3 !important; margin-bottom: 12px !important; }
    
    /* List Fasilitas */
    .cc-core-specs li, .cc-facilities-icons li { 
        font-size: 0.65rem !important; /* Huruf fasilitas dikecilin dikit */
        margin-bottom: 5px !important; 
        gap: 6px !important; 
        align-items: flex-start !important;
        line-height: 1.25 !important;
    }
    
    .cc-core-specs i, .cc-facilities-icons i { margin-top: 2px !important; font-size: 0.65rem !important; }

    /* 4. TOMBOL PESAN */
    .cc-details-area { flex-grow: 1 !important; display: flex !important; flex-direction: column !important; }
    .cc-btn-choose { 
        margin-top: auto !important; 
        padding: 10px !important; /* Tombol dibikin lebih slim */
        font-size: 0.75rem !important; 
        border-radius: 8px !important; 
    }

/* ======================================================== */
    /* Responsif HP IG Gallery (FOTO MUNGIL 4 BERJEJER)         */
    /* ======================================================== */
    .ig-gallery-wrapper {
        padding: 0 50px !important; /* KUNCI: Menjepit dari kiri & kanan sejauh 50px biar foto mengecil */
    }

    .ig-slide-group {
        grid-template-columns: repeat(4, 1fr) !important; /* Tetap pertahankan 4 kolom */
        gap: 5px !important; /* Jarak antar foto dirapatkan */
    }
    
    .ig-carousel-container { 
        gap: 5px; 
    }
    
    /* Perkecil juga ukuran tombol panahnya biar seimbang */
    .ig-btn { 
        width: 45px !important; 
    }
    
    /* Taruh tombol panah mepet ke pinggir layar HP */
    .ig-prev-btn { left: -40px !important; }
    .ig-next-btn { right: -40px !important; }

    .cc-slide-instruction {
        margin-top: 0 !important;
        margin-bottom: 15px !important;
        font-size: 0.8rem !important;
    }

    #content-creator {
        padding: 50px 0 30px 0 !important;
    }
}

/* ==========================================================================
   09. SECTION JASA EDITING FOTO & VIDEO (BARU)
   ========================================================================== */
#jasa-editing {
    padding: 80px 5%;
    background-color: transparent;
}

/* Grid Dasar */
.editing-services-grid,
.editing-packages-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 40px;
}

/* ==========================================================================
   KOTAK BINGKAI BESAR UNTUK BARIS 2 (PAKET)
   ========================================================================== */
.packages-group-wrapper {
    /* KUNCI BARU: Gradasi kuning dari ujung kiri atas (tegas) ke kanan bawah (memudar) */
    background: linear-gradient(135deg, rgba(255, 174, 0, 0.36) 0%, rgba(94, 64, 0, 0.464) 100%); 
    
    /* Tambahan efek kaca biar makin premium saat ikon melayang lewat di belakangnya */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    /* Garis tepi super tipis biar bentuk kotaknya tetap tegas */
    border: 1px solid rgba(255, 176, 0, 0.15); 
    
    padding: 40px;
    border-radius: 20px;
    width: fit-content; 
    max-width: 100%;
    margin: 50px auto 0 auto; 
    box-sizing: border-box;
}

/* Tulisan "PAKET" di Dalam Kotak */
.package-group-title {
    position: static; /* Kembalikan ke posisi normal (di dalam kotak) */
    text-align: center; /* Rata tengah */
    transform: none;
    background-color: transparent; /* Hilangkan background teks */
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px; /* Jarak ke 3 kotak di bawahnya */
}

/* Pastikan margin bawah grid di dalam kotak kuning ini tidak dobel */
.packages-group-wrapper .editing-packages-grid {
    margin-bottom: 0; 
}
/* Gaya Kartu (Semua Sama, Tanpa Outline Permanen) */
.editing-card {
    flex: 1 1 300px;
    max-width: 320px;
    background: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent; /* Outline hanya muncul pas Hover */
}

.editing-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-yellow);
    box-shadow: 0 10px 25px rgba(255, 176, 0, 0.3);
}

/* Area Gambar - FOTO UTUH & LEBAR MENYESUAIKAN */
.editing-card .card-image-box {
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #000;
}

.editing-card .card-image-box img {
    width: 100%;
    height: auto;
    display: block; /* Anti garis hitam */
    object-fit: contain; /* Gambar utuh 100% */
}

/* Area Teks Rata Kiri */
/* 1. Pastikan kotak teks jadi flexbox dan mengisi seluruh ruang kosong */
.editing-card .card-text-box {
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* KUNCI 1: Paksa kotak ini merenggang sampai mentok bawah */
}

/* 2. Dorong tombolnya ke dasar kotak */
.editing-card .card-text-box .btn-pesan {
    margin-top: auto; /* KUNCI 2: Otomatis menekan tombol mentok ke garis bawah */
    /* width: 100%;  <-- Hapus tanda /* di samping kiri kanan ini kalau mau tombolnya panjang full */
}

.editing-card .card-text-box h3 {
    color: var(--accent-yellow);
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.editing-card .card-text-box p {
    color: #ccc;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 15px;
}
.btn-pesan {
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
}

.card-text-box .btn-pesan {
    margin-top: 0; /* Pastikan tombol tidak punya jarak tambahan di atasnya */
    /* Kalau masih kurang ke atas, Mbak bisa pakai angka minus, contoh: margin-top: -5px; */
}

.editing-sub-title {
    text-align: center;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.editing-sub-title i {
    margin-right: 10px;
}

.editing-sub-title span {
    color: var(--accent-yellow);
}

.editing-card .card-text-box h3 {
    text-transform: uppercase; /* Ini yang bikin hurufnya jadi BESAR SEMUA */
    letter-spacing: 1px; /* Tambahan jarak antar huruf sedikit biar makin elegan */
}
.price-highlight {
    color: #15ff00; /* Warna hijau menyala */
    font-size: 0.9rem; /* Ukuran teks dibesarkan */
    font-weight: 900; /* Ditebalkan maksimal */
    display: inline-block; /* Biar tetap sebaris dengan teks sebelahnya */
    margin-bottom: 5px; /* Jarak sedikit ke bawah */
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(21, 255, 0, 0.3); /* Sedikit efek glowing (opsional) */
}

/* ==========================================================================
   RESPONSIVE HP: JASA EDITING (PAKSA 3 KOLOM SUPER COMPACT)
   ========================================================================== */
@media (max-width: 768px) {
    .packages-group-wrapper { 
        padding: 25px 10px; 
    }
    
    .editing-sub-title {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    /* 1. Jarak antar kotak dirapatkan maksimal */
    .editing-services-grid,
    .editing-packages-grid {
        gap: 6px; 
    }

    /* 2. KUNCI: Paksa ukuran jadi ~31% agar muat 3 kotak berdampingan */
    .editing-card { 
        flex: 1 1 31%; 
        max-width: 32%; 
        border-radius: 10px; /* Ujung kotak sedikit dikurangi lengkungannya */
    }

    /* 3. Teks dan padding ditekan habis-habisan biar muat */
    .editing-card .card-text-box {
        padding: 8px 6px;
    }

    .editing-card .card-text-box h3 {
        font-size: 0.55rem; /* Judul super imut */
        margin-bottom: 4px;
        letter-spacing: 0;
    }

    .editing-card .card-text-box p {
        font-size: 0.5rem; /* Deskripsi sangat kecil */
        margin-bottom: 8px;
        line-height: 1.2;
    }

    .price-highlight {
        font-size: 0.6rem; /* Harga disesuaikan proporsinya */
        margin-bottom: 2px;
    }

    /* 4. Tombol dibikin super mini */
    .btn-pesan {
        padding: 5px 8px;
        font-size: 0.5rem;
        border-radius: 4px;
    }
    
    /* 5. Khusus untuk judul "PAKET" */
    .package-group-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
}

/* ==================================
   10. SECTION: SCRIPTWRITING & FOTO DOKUMENTASI
   ================================== */
.script-category-title {
    margin-bottom: 15px;
    color: var(--accent-yellow);
    font-size: 1.1rem;
}

.script-price-list {
    margin-bottom: 20px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.script-price-item {
    margin-bottom: 10px;
}

.script-note {
    color: #aaaaaa;
}

.script-price-amount {
    color: #15ff00; /* Warna Hijau seperti pesanan Mbak */
    font-weight: bold;
    font-size: 1.05rem;
}

.script-divider {
    border-top: 1px dashed rgba(255, 255, 255, 0.2);
    margin: 15px 0;
}

.script-fac-title {
    margin-bottom: 8px;
}

.script-facilities-list {
    font-size: 0.85rem;
    color: #cccccc;
    margin-bottom: 15px;
    line-height: 1.6;
}

.script-check-icon {
    color: var(--accent-yellow);
    width: 20px;
}

.script-btn {
    margin-top: 20px;
}


.single-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px;
}

.single-product-image {
    width: 100%;
    max-width: 490px; /* Ini KUNCINYA: Lebar maksimal foto dibatasi biar nggak raksasa */
    height: auto;
    display: block;
    border-radius: 15px; /* Bikin ujung foto jadi membulat/smooth */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6); /* Kasih efek bayangan elegan */
    border: 2px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.single-product-image:hover {
    transform: translateY(-10px); /* Efek sedikit melayang saat kursor di atas foto */
    border-color: var(--accent-yellow); /* Garis tepi menyala kuning saat dihover */
}

/* ==========================================================================
   DAFTAR FASILITAS FOTO (HILANGKAN TITIK PUTIH)
   ========================================================================== */
.foto-facilities-list {
    list-style: none !important; /* Ini mantra penghilang titik putih HTML */
    padding-left: 0 !important;
    margin-top: -5px;
    margin-bottom: 25px;
}

.foto-facilities-list li {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 6px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

/* ==========================================================================
   KOTAK ULTIMATE (LEVEL 4) - VERSI SUPER SLIM & MINIMALIS
   ========================================================================== */
.ultimate-package-box {
    background: linear-gradient(135deg, rgba(255, 204, 0, 0.05) 0%, rgba(20, 20, 20, 1) 100%);
    border: 1.5px solid var(--accent-yellow, #ffcc00);
    border-radius: 8px;
    
    /* 1. KECILIN LAGI UKURAN KOTAK 👇 */
    max-width: 490px; 
    width: 100%;       
    margin: 8px auto 0 auto; /* Jarak makin nempel ke foto */
    padding: 8px 12px;       /* Padding sangat tipis */
    
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    box-sizing: border-box; 
}

/* Garis aksen kuning kiri (dibikin makin tipis) */
.ultimate-package-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px; 
    background-color: var(--accent-yellow, #ffcc00);
}

/* 2. KECILIN LAGI TEKS & HARGA 👇 */
.ultimate-title {
    color: var(--accent-yellow, #ffcc00);
    font-size: 1rem; /* Makin kecil */
    font-weight: 800;
    margin: 0; 
    line-height: 1.2;
}

.ultimate-duration {
    color: #888;
    font-size: 0.7rem; 
    margin-bottom: 5px;
}

.ultimate-price {
    font-size: 1.15rem; /* Harga dibikin lebih ramping */
    font-weight: 900;
    color: #00e676; 
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.ultimate-price small {
    font-size: 0.7rem;
    color: #666;
}

/* 3. KECILIN LAGI LIST FASILITAS 👇 */
.ultimate-features {
    list-style: none !important; 
    padding: 0 !important;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr; /* TRIK: Dibagi 2 kolom biar gak manjang ke bawah */
    gap: 2px 10px;
}

.ultimate-features li {
    color: #bbb;
    font-size: 0.75rem; 
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap; /* Biar teks gak turun baris */
}

.ultimate-features li i {
    color: var(--accent-yellow, #ffcc00);
    font-size: 0.65rem; 
}
/* Container pembungkus kartu */
.foto-packages-container {
    display: flex;
    flex-direction: column;
    gap: 12px; /* Jarak antar kotak */
    margin-bottom: 15px;
}

/* Style Kotak Per Level */
.foto-package-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #444;
    border-radius: 10px;
    padding: 12px 15px;
    border-left: 4px solid var(--accent-yellow, #ffcc00);
}

.foto-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #555;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.foto-level-name {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    text-align: left;
}

.foto-level-name small {
    color: #aaa;
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
}

.foto-level-price {
    color: #00e676; /* Warna Hijau */
    font-size: 1.1rem;
    font-weight: 800;
}

/* Hilangkan titik putih fasilitas */
.foto-facilities-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.foto-facilities-list li {
    color: #ccc;
    font-size: 0.85rem;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.foto-facilities-list li i {
    color: var(--accent-yellow, #ffcc00);
    font-size: 0.8rem;
}
/* Biar di HP tetep rapi 1 kolom kalo layarnya sempit banget */
@media (max-width: 480px) {
    .ultimate-features {
        grid-template-columns: 1fr;
    }
}
/* RESPONSIVE HP: Biar di HP fotonya lebih pas lagi */
@media (max-width: 768px) {
    .single-product-image {
        max-width: 300px; /* Di HP ukurannya lebih dikecilkan lagi */
        margin: 0 auto;
    }
}

/* ==================================
   11. SECTION VIDEO IKLAN & PROMOSI
   ================================== */
/* 1. Kontainer Utama */
.iklan-carousel-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    max-width: 1100px; 
    margin: 0 auto;
    padding: 40px 0;
    overflow: hidden;
}

.iklan-carousel-center {
    width: 100%;
    max-width: 1100px; /* Lebarkan sedikit biar HP samping punya ruang */
    height: 650px !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible !important; /* KUNCI: Biar HP samping nggak hilang/terpotong */
}

/* Tambahkan ini juga biar kontainer luarnya nggak bikin scrollbar muncul */
.iklan-carousel-container {
    overflow: hidden; 
    padding: 60px 0;
}

/* 3. HP BERDIRI (SAMAKAN PERSIS DENGAN CC-CAROUSEL-SLIDE) */
#video-iklan .css-iphone-mockup.silver-edition {
    width: 300px !important;   /* UKURAN SAKTI CONTENT CREATOR */
    height: 600px !important;  /* UKURAN SAKTI CONTENT CREATOR */
    margin: 0 auto;
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #cccccc 100%) !important;
    border-radius: 35px !important;
    border: 2px solid #b3b3b3 !important;
    display: flex !important;
    flex-direction: column !important;
}

/* 4. HP MIRING (LANDSCAPE) - SUDAH DI-DIET-KAN BIAR RAMPING */
#video-iklan .css-iphone-landscape.silver-edition {
    width: 560px !important;  /* Dikecilkan biar nggak nutupin HP belakang */
    height: 280px !important; /* Disesuaikan biar proporsional 16:9 */
    margin: 0 auto;
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #cccccc 100%) !important;
    border-radius: 30px !important;
    border: 2px solid #b3b3b3 !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    padding: 8px 5px !important; /* Bezel luar ditipiskan */
}

/* Bezel Kiri Kanan HP Miring */
#video-iklan .iphone-bezel-left {
    width: 25px !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 15px !important;
}

#video-iklan .iphone-bezel-right {
    width: 35px !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

#video-iklan .iphone-bezel-right .home-button {
    width: 22px !important;
    height: 22px !important;
}

/* 5. Display Layar Dalam (Berdiri & Miring) */
#video-iklan .iphone-display {
    background: #000;
    overflow: hidden;
    flex: 1;
    position: relative;
    border-radius: 0; 
}

#video-iklan .iphone-display-landscape {
    background: #000;
    overflow: hidden;
    flex: 1;
    height: 95% !important; /* Bezel atas-bawah dibikin super tipis natural */
    position: relative;
    border-radius: 8px !important; /* Ujung layar dibikin agak tumpul elegan */
}

/* 6. Anti Celah Hitam YouTube */
#video-iklan iframe {
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1.05); /* Zoom tipis biar pas menutupi layar */
}

/* 7. Slide Logic (Diatur Penuh oleh JavaScript) */
.iklan-carousel-slide {
    position: absolute;
    top: 50%;
    left: 50%;
    /* Biarkan transform awal di tengah, sisanya JS yang mainkan */
    transform: translate(-50%, -50%); 
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}
/* ==========================================================================
   PERBAIKAN KAMERA & SPEAKER HP MIRING
   ========================================================================== */

/* Mengubah speaker memanjang ke atas-bawah (Vertikal) */
#video-iklan .css-iphone-landscape .speaker-grill {
    width: 6px !important;  /* Lebarnya ditipiskan */
    height: 45px !important; /* Tingginya dipanjangkan */
    background-color: #222 !important;
    border-radius: 10px !important;
    box-shadow: inset 0 0 3px #000 !important;
    margin: 0 !important;
}

/* Memastikan kamera bulat sempurna */
#video-iklan .css-iphone-landscape .camera-dot {
    width: 10px !important; 
    height: 10px !important;
    background-color: #222 !important; 
    border-radius: 50% !important;
    box-shadow: inset 0 0 3px #000 !important;
    margin: 0 !important;
}

/* Memastikan jarak antara kamera dan speaker pas berjejer */
#video-iklan .css-iphone-landscape .iphone-bezel-left {
    gap: 15px !important; 
    justify-content: center !important;
}
/* ==========================================================================
   HACK HILANGKAN UI YOUTUBE & TOMBOL MUTE KUSTOM
   ========================================================================== */

/* Matikan klik pada iframe agar UI Youtube tidak muncul/pause saat disentuh */
#video-iklan iframe {
    pointer-events: none !important; 
}

/* Desain Tombol Mute Kustom */
.mute-btn-iklan {
    position: absolute;
    bottom: 20px;
    left: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(3px);
    border: none;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: auto !important; /* Wajib auto biar tombolnya bisa diklik */
}

.mute-btn-iklan:hover {
    background-color: var(--accent-yellow, #ffcc00);
    color: #111;
    transform: scale(1.1);
}

/* ==========================================================================
   KOTAK HARGA & TOMBOL CTA (SECTION VIDEO IKLAN)
   ========================================================================== */
.iklan-pricing-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    padding-bottom: 60px;
    position: relative;
    z-index: 5;
    width: 100%;
}

/* Desain Kotak Harga (Diperlebar biar teks tidak sempit) */
.iklan-pricing-box {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 1px solid #444;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 500px; /* Lebih lebar sedikit */
    width: 90%;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; /* Jarak rapi antar elemen di dalam kotak */
}

.iklan-pricing-box:hover {
    transform: translateY(-5px); 
    border-color: var(--accent-yellow, #ffcc00);
}

.pricing-title {
    color: #aaa;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* List Paket Harga */
.pricing-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.pricing-tier-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 12px;
    border-left: 4px solid var(--accent-yellow, #ffcc00);
}

.tier-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.tier-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.tier-duration {
    color: #aaa;
    font-size: 0.85rem;
}

.tier-duration i {
    color: var(--accent-yellow, #ffcc00);
    margin-right: 5px;
}

/* HARGA: LEBIH BESAR & WARNA HIJAU */
.tier-price {
    color: #00e676; /* Warna Hijau Terang Khas Promo */
    font-size: 1.4rem; /* Diperbesar */
    font-weight: 900;
    white-space: nowrap;
    margin-left: 15px;
    text-shadow: 0 2px 10px rgba(0, 230, 118, 0.2);
}

/* Desain Tombol WhatsApp di dalam kotak */
.iklan-cta-btn {
    background: linear-gradient(135deg, var(--accent-yellow, #ffcc00) 0%, #e6b800 100%);
    color: #111;
    padding: 15px 0;
    width: 100%; /* Memanjang memenuhi kotak */
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(255, 204, 0, 0.3);
    transition: all 0.3s ease;
}

.iklan-cta-btn i {
    font-size: 1.3rem;
}

.iklan-cta-btn:hover {
    transform: scale(1.03); 
    box-shadow: 0 8px 25px rgba(255, 204, 0, 0.5);
    color: #000;
}

/* Responsif HP */
@media (max-width: 480px) {
    .pricing-tier-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .tier-price {
        margin-left: 0;
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   KOTAK HARGA (GRID 2x2) & TOMBOL CTA
   ========================================================================== */

/* 1. Desain Kotak Harga (Diperlebar agar muat 2 kolom) */
.iklan-pricing-box {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border: 1px solid #444;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 850px; /* KUNCI 1: Diperlebar dari 500px jadi 850px */
    width: 95%;
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px; 
}

.iklan-pricing-box:hover {
    transform: translateY(-5px); 
    border-color: var(--accent-yellow, #ffcc00);
}

.pricing-title {
    color: #aaa;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
}

/* 2. List Paket Harga (Sistem Grid 2x2) */
.pricing-tier-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: grid; /* KUNCI 2: Ubah dari flex menjadi grid */
    grid-template-columns: repeat(2, 1fr); /* KUNCI 3: Buat 2 kolom sama besar */
    gap: 15px; /* Jarak antar kotak paket */
}

/* Kotak masing-masing paket */
.pricing-tier-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 20px 15px; /* Padding sedikit diperbesar biar lega */
    border-radius: 12px;
    border-left: 4px solid var(--accent-yellow, #ffcc00);
    transition: background 0.3s ease;
}

.pricing-tier-list li:hover {
    background: rgba(255, 255, 255, 0.1); /* Efek nyala saat di-hover */
}

.tier-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    text-align: left;
}

.tier-name {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
}

.tier-duration {
    color: #aaa;
    font-size: 0.85rem;
}

.tier-duration i {
    color: var(--accent-yellow, #ffcc00);
    margin-right: 5px;
}

/* HARGA: LEBIH BESAR & WARNA HIJAU */
.tier-price {
    color: #00e676; 
    font-size: 1.4rem; 
    font-weight: 900;
    white-space: nowrap;
    margin-left: 15px;
    text-shadow: 0 2px 10px rgba(0, 230, 118, 0.2);
}

/* Responsif HP (Biar kalau dibuka di HP, balik lagi nyusun ke bawah 1 kolom) */
@media (max-width: 768px) {
    .pricing-tier-list {
        grid-template-columns: 1fr; /* Balik jadi 1 kolom di layar sempit */
    }
    .pricing-tier-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .tier-price {
        margin-left: 0;
        font-size: 1.3rem;
    }
}

/* 8. Responsif HP */
@media (max-width: 768px) {
    .iklan-carousel-center { height: 370px !important; }
    #video-iklan .css-iphone-mockup.silver-edition {
        width: 220px !important;
        height: 440px !important;
    }
    #video-iklan .css-iphone-landscape.silver-edition {
        width: 320px !important;
        height: 170px !important;
    }
}

/* ==========================================================================
   12. VIDEO DOKUMENTASI - VERSI PAS (NGGAK GEPENG/PANJANG)
   ========================================================================== */
/* Paksa iframe YT di dalam yt-player-doc tidak bisa diklik */
#yt-player-doc iframe {
    pointer-events: none !important;
}
.video-doc-hero {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

/* Ukuran Mockup Jumbo yang pas */
.jumbo-size {
    width: 100%;
    max-width: 700px; /* Saya turunkan sedikit biar gak kepanjangan */
    height: auto;
    /* KUNCI: Pakai 16/9 biar gak gepeng */
    aspect-ratio: 16 / 9.5; 
    position: relative;
    display: flex;
}

/* Pastikan area layar di dalamnya juga ngikutin */
.jumbo-size .iphone-display-landscape {
    flex: 1;
    background: #000;
    overflow: hidden;
    position: relative;
}

/* Paksa Iframe YouTube-nya penuh tapi tetep 16:9 */
.jumbo-size iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Container khusus Grid Video biar gak kepanjangan */
.video-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* JADI 2 KOLOM */
    gap: 12px;
    width: 100%;
}
/* Tombol Mute Khusus Video Dokumentasi */
.mute-btn-doc {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--accent-yellow, #ffcc00);
    border: 1px solid var(--accent-yellow, #ffcc00);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mute-btn-doc:hover {
    transform: scale(1.1);
    background: var(--accent-yellow, #ffcc00);
    color: #000;
}
/* Responsif: Kalo di HP balik lagi ke 1 kolom biar gak kekecilan */
@media (max-width: 600px) {
    .video-grid-container {
        grid-template-columns: 1fr;
    }
    
    .ultimate-package-box ul {
        grid-template-columns: 1fr !important;
    }
}

/* ==========================================================================
   13. SECTION KONTAK (MARI BEKERJA SAMA)
   ========================================================================== */
#kontak {
    padding: 80px 20px;
    background-color: transparent; /* Mengikuti background utama */
    text-align: center;
}

.kontak-konten {
    max-width: 800px;
    margin: 0 auto;
}

.kontak-konten p {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Container Tombol */
.kontak-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Biar otomatis turun di layar kecil */
}

/* Base Style Tombol Kontak */
.kontak-buttons .btn {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 15px 25px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 280px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.kontak-buttons .btn i {
    font-size: 2.2rem;
    margin-right: 15px;
}

.kontak-buttons .btn span {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.kontak-buttons .btn small {
    display: block;
    font-weight: 400;
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Tombol WhatsApp (Hijau) */
.btn-wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-wa:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
}

/* Tombol Email (Premium Dark/Yellow) */
.btn-email {
    background: linear-gradient(135deg, #333 0%, #111 100%);
    color: #fff;
    border: 1px solid #444;
}

.btn-email:hover {
    transform: translateY(-5px);
    border-color: var(--accent-yellow, #ffcc00);
    box-shadow: 0 15px 30px rgba(255, 204, 0, 0.2);
}

.btn-email i {
    color: var(--accent-yellow, #ffcc00);
}

/* Responsif HP */
/* Responsif HP */
@media (max-width: 600px) {
    #kontak {
        padding: 60px 10px; /* Kurangi padding kiri-kanan */
    }
    
    .kontak-konten p {
        font-size: 1rem;
    }

    /* 💡 KUNCI BIAR TETAP SAMPING-SAMPINGAN */
    .kontak-buttons {
        flex-wrap: nowrap; /* Jangan turun ke baris baru */
        gap: 10px; /* Jarak antar tombol didekatkan */
    }

    .kontak-buttons .btn {
        width: 50%; /* Masing-masing ambil setengah layar */
        min-width: unset;
        padding: 12px 10px; /* Kurangi area dalam tombol */
    }

    .kontak-buttons .btn i {
        font-size: 1.5rem; /* Kecilkan ikon */
        margin-right: 8px;
    }

    .kontak-buttons .btn span {
        font-size: 0.8rem; /* Kecilkan teks utama (WhatsApp/Email) */
    }

    .kontak-buttons .btn small {
        font-size: 0.6rem; /* Kecilkan detail (nomor/email) */
        /* Potong teks jika kepanjangan pakai titik-titik (...) */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* ==========================================================================
   14. FOOTER
   ========================================================================== */
    /* Pengaturan Container Utama Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 20px; /* Jarak antar kotak dikurangi sedikit agar pas */
    margin-bottom: 20px; 
    flex-wrap: wrap; /* Tombol otomatis turun ke bawah jika layar sempit */
}

        /* Pengaturan Kotak/Background Tombol Sosial Media */
.social-links a {
    display: flex;
    align-items: center; 
    gap: 12px; /* Jarak ikon ke teks */
    color: var(--text-light); 
    text-decoration: none;
            
            /* --- KODE BARU UNTUK KOTAK BG --- */
    background-color: #1a1a1a; /* Kotak background warna hitam pekat (gelap) */
    padding: 12px 25px; /* Jarak teks ke tepi kotak (atas-bawah, kiri-kanan) */
    border-radius: 50px; /* Siku-siku halus (sudut tumpul) */
    border: 1px solid rgba(255, 255, 255, 0.08); /* Border tipis halus */
    box-shadow: 0 4px 6px rgba(0,0,0,0.3); /* Efek bayangan kotak */
            /* -------------------------------- */

            /* Update Transisi agar halus saat di-hover */
    transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.social-links a i {
    font-size: 1.6rem; /* Ukuran ikon disesuaikan */
}

.social-links a span {
    font-size: 1rem;
    font-weight: 600;
}

        /* Efek saat Kursor Disentuh (Hover) */
.social-links a:hover {
    color: var(--accent-yellow); /* Teks jadi kuning */
    transform: translateY(-5px); /* Kotak melompat ke atas sedikit */
    background-color: #252525; /* Background kotak jadi agak terang */
    border-color: var(--accent-yellow); /* Border kotak ikut jadi kuning */
}

/* ==========================================================================
   PENYESUAIAN FOOTER SOSMED AGAR TETAP 1 BARIS DI HP (TEKS TETAP ADA)
   ========================================================================== */
@media (max-width: 768px) {
    .social-links {
        display: flex !important;
        flex-wrap: nowrap !important; /* 💡 KUNCI MUTLAK: Paksa 1 baris, pantang turun! */
        justify-content: center;
        gap: 4px !important; /* Jarak antar kotak super dirapatkan */
        padding: 0 5px;
        width: 100%;
        overflow: hidden; /* Jaga-jaga biar gak bikin layar bisa digeser ke samping */
    }

    .social-links a {
        padding: 6px 4px !important; /* Bantalan kotak dibikin sangat ramping */
        gap: 3px !important; /* Ikon dan teks mepet banget */
        flex: 1; /* Lebar layar dibagi rata berempat */
        justify-content: center;
        min-width: 0; /* 💡 KUNCI: Izinkan kotak mengecil melewati batas normalnya */
        border-radius: 8px !important; /* Lengkungan kotak disesuaikan ukurannya */
    }

    .social-links a i {
        font-size: 0.85rem !important; /* Ikon disusutkan jadi mini */
        margin: 0 !important;
    }

    .social-links a span {
        display: inline-block !important; /* Paksa teks tetap muncul (membatalkan kode hide sebelumnya) */
        font-size: 0.5rem !important; /* Teks dibikin ukuran "semut" biar muat */
        white-space: nowrap !important; /* Teks sama sekali tidak boleh turun baris */
        letter-spacing: -0.3px !important; /* Jarak antar huruf dirapatkan sedikit */
        overflow: hidden;
        text-overflow: clip; /* Kalau layar terlalu ekstrem sempitnya, teks kepotong natural, bukan titik-titik */
    }

    .social-links a:hover {
        transform: none !important; 
    }

    /* 💡 KUNCI: Gunakan efek :active (saat ditekan jari) untuk HP */
    .social-links a:active {
        transform: scale(0.92) !important; /* Tombol mengecil sedikit pas ditekan, ngasih kesan "membal" */
        background-color: var(--accent-yellow) !important; /* Latar langsung kuning */
        color: #111 !important; /* Teks/Ikon jadi hitam biar kontras */
        border-color: var(--accent-yellow) !important;
        transition: transform 0.1s ease !important; /* Transisi dipercepat biar responsif di jari */
    }

    /* ... kode social-links a:active yang tadi ... */
    .social-links a:active {
        transform: scale(0.92) !important; 
        background-color: var(--accent-yellow) !important; 
        color: #111 !important; 
        border-color: var(--accent-yellow) !important;
        transition: transform 0.1s ease !important; 
    }

    /* 💡 KECILKAN TULISAN COPYRIGHT DI HP */
    footer p {
        font-size: 0.65rem !important; 
        opacity: 0.8; 
        margin-top: 15px !important; 
        letter-spacing: 0.5px;
    }
} /* <--- Ini kurung tutupnya @media (max-width: 768px) */

footer {
    background-color: var(--bg-hitam);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}


/* ==========================================================================
   TAMBAHAN GLOBAL: JARAK ANTAR SECTION (RUANG NAPAS)
   ========================================================================== */
section {
    margin-bottom: 150px; /* Jarak luar antar section di Laptop (Sangat lega) */
}

/* Hilangkan jarak di section terakhir biar nggak dobel dengan jarak Footer */
section:last-of-type {
    margin-bottom: 0;
}

/* Responsif: Jarak di HP dikurangi sedikit biar scroll-nya nggak kejauhan */
@media (max-width: 768px) {
    section {
        margin-bottom: 100px; /* Jarak antar section di HP */
    }
}