/* ==========================================================================
   1. IMPORT FONT & DESIGN VARIABLES (DEEP LUXURY MIDNIGHT OCEAN & AMBER GOLD)
   ========================================================================== */
/* Menggunakan sans-serif modern yang bersih, tebal, dan sangat mudah dibaca */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght=500;700;800&family=Inter:wght=400;500;600&display=swap');

:root {
    /* LATAR BELAKANG: Diubah ke rumpun deep luxury navy (Midnight Ocean) */
    --bg-terang-polos: #0D1F38;      /* Biru samudra malam yang pekat, elegan, dan kokoh */
    --bg-es-muda: #07111E;           /* Biru palung laut terdalam (hampir hitam) untuk kedalaman dimensi mewah */
    
    /* ELEMEN STRUKTUR & KONTRAST: Dibuat jernih dan menyala di atas background gelap */
    --biru-utama: #0088CC;           /* Biru laut jernih yang ditingkatkan kecerahannya agar stand-out */
    --biru-gelap: #FFFFFF;           /* KONTRAST MUTLAK: Teks utama disulap menjadi putih kristal */
    --biru-aksen: #94A9C4;           /* Biru abu-abu lembut untuk penyeimbang teks deskripsi */
    
    /* INJEKSI EMAS AMBER PREMIUM KHAS KOMBINASI 2 */
    --emas-amber: #E6A100;           /* Emas amber yang sangat menyala dan mahal di atas warna gelap */
    --emas-hover: #FFB300;           /* Emas yang sedikit lebih terang saat di-hover agar interaksinya hidup */
    
    --border-halus: rgba(0, 136, 204, 0.2); 
}

/* ==========================================================================
   2. GLOBAL RESET & BASE STYLES (MODERN CLEAN OVERHAUL)
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif; 
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-terang-polos);
    color: var(--biru-gelap);
    overflow-x: hidden;
    font-weight: 400; 
    font-size: 16px; 
    line-height: 1.6; 
    
    /* Gradasi gelap mengalir memberikan efek samudra dalam yang elegan */
    background-image: linear-gradient(135deg, var(--bg-terang-polos) 0%, var(--bg-es-muda) 100%);
    
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: saturate(115%) contrast(105%) brightness(90%); 
    border-radius: 16px; 
    border: 1px solid var(--border-halus);
}

/* Typography Global */
.section-title { 
    text-align: center; 
    margin-bottom: 60px; 
}

.section-title h2 { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 38px; 
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 12px; 
    color: var(--biru-gelap); /* Menjadi putih bersih */
}

.section-title p { 
    font-family: 'Inter', sans-serif;
    font-weight: 700; 
    color: var(--emas-amber); /* Sub-judul emas menyala kontras */
    font-size: 14px; 
    letter-spacing: 2px;
    text-transform: uppercase; 
}

/* Buttons Base (Ergonomic Soft Curves) */
.btn {
    padding: 14px 30px;
    border-radius: 8px; 
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    letter-spacing: 0.5px; 
}

/* Tombol Utama: Emas Amber Mengkilap Kontras Tinggi */
.btn-primary { 
    background-color: var(--emas-amber); 
    color: #07111E; /* Teks gelap di atas tombol terang agar tajam */
    border: 1px solid var(--emas-amber);
    box-shadow: 0 4px 20px rgba(230, 161, 0, 0.4);
}

.btn-primary:hover { 
    background-color: transparent; 
    color: var(--emas-hover); 
    border: 1px solid var(--emas-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 161, 0, 0.2);
}

/* Tombol Sekunder: Menggunakan Border Emas Kaca Transparan */
.btn-secondary { 
    border: 2px solid var(--emas-amber); 
    color: var(--emas-amber); 
    background-color: rgba(255, 255, 255, 0.05); 
    backdrop-filter: blur(5px);
}

.btn-secondary:hover { 
    background-color: var(--emas-amber); 
    color: #07111E; 
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(230, 161, 0, 0.4);
}

/* ==========================================================================
   3. NAVBAR COMPONENT (THE KINETIC LIQUID HEADER) - DESKTOP & TABLET DEFAULT
   ========================================================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%; 
    position: fixed;
    width: 100%;
    height: 80px;
    top: 0;
    left: 0;
    z-index: 1000;
    background: rgba(13, 31, 56, 0.4);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); 
    box-sizing: border-box;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    height: 65px;
    background: rgba(7, 17, 30, 0.85);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.navbar .logo {
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 24px;
    color: var(--biru-gelap);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -1px;
    transition: transform 0.3s ease;
}

.navbar .logo:hover {
    transform: scale(1.03);
}

.navbar .logo span { 
    color: var(--emas-amber); 
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* MENU UTAMA (Layout Horizontal Default) */
.nav-links { 
    display: flex; 
    flex-direction: row; 
    align-items: center;
    list-style: none; 
    height: 100%;
    gap: 6px; 
}

.nav-links li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-links li a {
    font-family: 'Inter', sans-serif; 
    font-weight: 600;
    color: var(--biru-aksen); 
    text-decoration: none;
    font-size: 14px; 
    padding: 10px 20px;
    position: relative;
    border-radius: 30px; 
    z-index: 1;
    white-space: nowrap; /* Mencegah teks menu patah menjadi 2 baris */
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.2s ease;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0) 70%);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transform: scale(0.65);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
}

.nav-links li a:hover::before,
.nav-links li a.active::before {
    opacity: 1;
    transform: scale(1);
}

.nav-links li a:hover,
.nav-links li a.active { 
    color: var(--emas-amber);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.nav-links li a:active {
    transform: scale(0.95);
}

.menu-toggle { 
    display: none; 
    color: var(--biru-gelap); 
    font-size: 22px; 
    cursor: pointer; 
    z-index: 1002; 
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);      
}

.menu-toggle:hover {
    transform: scale(1.1) rotate(90deg);
}


/* ==========================================================================
   3a. RESPONSIVE COMPRESSION (PENCEGAH MENU TERPOTONG DI LAYAR TANGGUNG)
   ========================================================================== */

/* 💻 KOMPRESI LAYAR LAPTOP KECIL (Batas 1025px - 1200px) */
@media screen and (max-width: 1200px) and (min-width: 1025px) {
    .navbar {
        padding: 0 4%; /* Mempersempit margin tepi halaman */
    }
    .nav-links {
        gap: 2px; /* Merapatkan jarak antar tombol kapsul */
    }
    .nav-links li a {
        font-size: 13px; /* Mengecilkan teks sedikit */
        padding: 8px 14px; 
    }
}

/* 📑 KOMPRESI LAYAR TABLET / IPAD HORIZONTAL (Batas 651px - 1024px) */
@media screen and (max-width: 1024px) and (min-width: 651px) {
    .navbar {
        padding: 0 3%; 
    }
    .navbar .logo {
        font-size: 21px; /* Mengecilkan logo agar memberikan ruang untuk menu */
    }
    .nav-links {
        gap: 0px; 
    }
    .nav-links li a {
        font-size: 12.5px; /* Batas ukuran teks paling aman */
        padding: 6px 10px; /* Padding minimal agar menu Ulasan tetap muat di baris yang sama */
    }
}


/* ==========================================================================
   3b. INTERAKSI LAYAR KHUSUS HP/MOBILE (DOCK SIDEBAR OVERLAY)
   ========================================================================== */
@media screen and (max-width: 650px) {
    .menu-toggle { 
        display: block; /* Hamburger hanya muncul di bawah 650px */
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0; 
        left: auto;
        width: 280px; /* Laci menu tidak memenuhi seluruh lebar layar HP */
        height: 100vh; 
        background: rgba(13, 31, 56, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid rgba(255, 255, 255, 0.08);
        
        display: flex;
        flex-direction: column; 
        justify-content: center;
        align-items: flex-start; 
        padding: 0 40px;
        gap: 30px; 
        box-sizing: border-box;
        
        /* Mekanisme Animasi */
        clip-path: circle(0% at 100% 0%); 
        opacity: 0;
        pointer-events: none;
        transition: clip-path 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
        z-index: 1001;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
        clip-path: circle(150% at 100% 0%);
    }

    /* ANIMASI STAGGERED ELEMEN MENU HP */
    .nav-links li {
        width: 100%;
        height: auto;
        display: block;
        opacity: 0;
        filter: blur(5px);
        transform: translateX(30px); 
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), 
                    filter 0.5s ease;
    }

    .nav-links.active li {
        opacity: 1;
        filter: blur(0);
        transform: translateX(0);
    }
    
    .nav-links.active li:nth-child(1) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.22s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.29s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.36s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.43s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.50s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.57s; }

    .nav-links li a {
        font-size: 18px; 
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 700;
        letter-spacing: 0.5px;
        padding: 10px 0;
        display: inline-block;
        text-align: left;
        width: 100%;
    }

    .nav-links li a::before {
        display: none; 
    }
    
    .nav-links li a:hover {
        color: var(--emas-amber);
        transform: translateX(5px); 
    }
}

/* ==========================================================================
   4. HERO SECTION (FRESH WATER & STEAM INTENSITY)
   ========================================================================== */
.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    position: relative;
    transition: background-image 1s ease-in-out; 
}

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

.hero-content {
    position: relative;
    max-width: 680px;
    z-index: 3;
}

/* Tagline Ditegaskan Dengan Bingkai Emas di Atas Gelap */
.tagline {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1.5px; 
    font-size: 12px;
    color: var(--emas-amber); 
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 6px 14px;
    border: 2px solid var(--emas-amber); 
    background: rgba(230, 161, 0, 0.08);
    border-radius: 6px;
}

.hero-content h1 {
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin: 10px 0 20px 0;
    color: var(--biru-gelap);
}

.hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: var(--biru-aksen); 
    line-height: 1.6;
    margin-bottom: 35px;
}

/* Bilah Indikator Slide */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 5;
}

.dot {
    position: relative;
    width: 30px; 
    height: 3px; 
    background: rgba(255, 255, 255, 0.2); 
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot.active {
    background: var(--emas-amber); 
    width: 55px; 
}

/* ==========================================================================
   5. ABOUT SECTION (SOAP BUBBLE & HYGIENIC SOP GRID)
   ========================================================================== */
.about-section {
    padding: 100px 8%; 
    background-color: var(--bg-es-muda); 
    overflow: hidden;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px; 
    align-items: center;
}

/* --- TRANSFORMASI GELEMBUNG SABUN CAIR (IMAGE BOX) --- */
.about-image-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    perspective: 1000px;
}

.about-image-box img {
    width: 440px;
    height: 440px; 
    object-fit: cover;
    border-radius: 52% 48% 50% 50% / 48% 53% 47% 52%; 
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.2); 
    border: 2px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 1;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), border-radius 0.6s ease, box-shadow 0.6s ease;
}

.about-image-box::before {
    content: '';
    position: absolute;
    width: 440px;
    height: 440px;
    border-radius: 52% 48% 50% 50% / 48% 53% 47% 52%;
    z-index: 2;
    pointer-events: none;
    background: 
        linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 40%),
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 50%),
        radial-gradient(circle at 70% 80%, rgba(230, 161, 0, 0.1) 0%, rgba(255, 255, 255, 0) 40%);
    box-shadow: inset 0 10px 20px rgba(255,255,255,0.3), inset 0 -10px 20px rgba(7,17,30,0.5);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- INTERAKSI HOVER GELEMBUNG --- */
.about-image-box:hover img,
.about-image-box:hover::before {
    border-radius: 48% 52% 46% 54% / 51% 46% 54% 49%;
    transform: translateY(-8px) scale(1.02); 
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5), inset 0 0 40px rgba(255, 255, 255, 0.4);
}

/* Efek Kinetik Menekan Gelembung Fisik */
.about-image-box.is-pressed img,
.about-image-box.is-pressed::before {
    transform: translateY(-22px) scale(1.04); 
    border-radius: 50% 50% 50% 50%; 
    transition: transform 0.15s ease-out; 
}

/* --- BADGE HIGIENIS --- */
.about-experience-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 25px;
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 4px 10px rgba(255, 255, 255, 0.4);
    z-index: 3;
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.about-image-box:hover .about-experience-badge {
    transform: translateY(-15px) rotate(5deg);
    border-radius: 50% 50% 50% 50%;
    border-color: var(--emas-amber);
    box-shadow: 0 20px 40px rgba(230, 161, 0, 0.2);
}

.about-experience-badge h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--emas-amber); 
    line-height: 1;
    text-shadow: 0 2px 10px rgba(230, 161, 0, 0.3);
}

.about-experience-badge p {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: var(--biru-gelap);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

/* ==========================================================================
   KINETIC SCATTERED TEXT (EFEK GELEMBUNG BERTEBARAN)
   ========================================================================== */
.about-text-box {
    position: relative;
}
.about-tagline, .about-text-box h2, .about-lead, .about-desc, .about-features .feature-item {
    transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.about-grid:not(.texts-locked) .about-tagline { 
    /* Terlempar jauh ke atas kiri, mengecil, dan miring drastis */
    transform: translate(-45px, -35px) rotate(-6deg) scale(0.9); 
}
.about-grid:not(.texts-locked) .about-text-box h2 { 
    /* Terbanting ke kanan atas, membesar mengintimidasi, dan berputar berlawanan */
    transform: translate(55px, -45px) rotate(4.5deg) scale(1.06); 
}

.about-grid:not(.texts-locked) .about-lead { 
    /* Terlempar miring ke kiri bawah menjauhi judul */
    transform: translate(-60px, 30px) rotate(-3deg); 
}

.about-grid:not(.texts-locked) .about-desc { 
    /* Meluncur jatuh ke kanan bawah dengan rotasi ekstrem */
    transform: translate(65px, 50px) rotate(5deg) scale(0.95); 
}

.about-grid:not(.texts-locked) .about-features .feature-item:nth-child(1) { 
    /* Fitur pertama terlempar ke kiri bawah menjauh dari pasangannya */
    transform: translate(-50px, 65px) rotate(-4deg) scale(0.88); 
}

.about-grid:not(.texts-locked) .about-features .feature-item:nth-child(2) { 
    /* Fitur kedua mencuat jauh ke kanan bawah terpisah total */
    transform: translate(70px, 80px) rotate(6deg) scale(0.85); 
}
/* --- KONDISI DIKUNCI / DIKLIK: Teks ditarik kembali ke posisi semula (Rapi) --- */
.about-grid.texts-locked .about-tagline,
.about-grid.texts-locked .about-text-box h2,
.about-grid.texts-locked .about-lead,
.about-grid.texts-locked .about-desc,
.about-grid.texts-locked .about-features .feature-item {
    transform: translate(0, 0) rotate(0deg) scale(1) !important;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- SISA STYLING TEKS ASLI --- */
.about-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px; 
    color: var(--emas-amber); 
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.about-tagline::before { content: ''; width: 24px; height: 3px; background-color: var(--emas-amber); }
.about-text-box h2 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 36px; font-weight: 800; line-height: 1.25; color: var(--biru-gelap); margin-bottom: 20px; }
.about-lead { font-size: 18px; font-weight: 600; color: var(--biru-utama); line-height: 1.5; margin-bottom: 20px; }
.about-desc { font-size: 15px; color: var(--biru-aksen); line-height: 1.7; margin-bottom: 30px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 25px; }
.feature-item { display: flex; gap: 15px; align-items: flex-start; }
.feature-item i { font-size: 20px; color: var(--emas-amber); background: rgba(230, 161, 0, 0.12); padding: 12px; border-radius: 12px; border: 1px solid rgba(230, 161, 0, 0.2); }
.feature-item h4 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 15px; font-weight: 700; color: var(--biru-gelap); margin-bottom: 4px; }
.feature-item p { font-size: 13px; color: var(--biru-aksen); line-height: 1.5; }

/* --- OPTIMASI RESPONSIVE --- */
@media (max-width: 992px) {
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-image-box img, .about-image-box::before { width: 340px; height: 340px; }
    .about-features { grid-template-columns: 1fr; }
    /* Nonaktifkan efek tebar di mobile demi kejelasan UX */
    .about-grid:not(.texts-locked) * { transform: none !important; }
}
/* ==========================================================================
   6. SERVICES SECTION (THE BLUEPRINT CATALOG & INTERACTIVE EXHIBITION)
   ========================================================================== */
.services-section {
    padding: 140px 8%; 
    background-color: var(--bg-terang-polos); 
    position: relative;
    overflow: hidden;
}

.services-container {
    max-width: 1200px; 
    margin: 0 auto;
}

/* --- KOTAK PENGANTAR (ELEGANT LONG-TEXT LAYOUT) --- */
.services-content-box {
    background-color: var(--bg-es-muda); 
    padding: 60px 80px; /* Padding samping diperlebar untuk kesan premium */
    border-radius: 24px; 
    border: 1px solid var(--border-halus);
    border-top: 4px solid var(--emas-amber); 
    margin-bottom: 80px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    
    /* Mengubah susunan menjadi satu kolom teks panjang mengalir ke bawah */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 25px; /* Jarak konisten antar elemen teks */
}

/* Judul Utama Atas */
.services-content-box .about-text-box h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 42px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--biru-gelap);
    margin-bottom: 0;
    max-width: 800px; /* Menjaga teks tidak terlalu melebar ke samping */
}

/* Deskripsi Teks Panjang di Bawahnya */
.service-intro {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--biru-aksen);
    line-height: 1.8;
    max-width: 750px; /* Lebih ramping dari judul agar proporsi piramida terbalik */
    margin: 0 auto;
}

/* --- DAFTAR LAYANAN (3-COLUMN ARCHITECTURAL GRID) --- */
.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px;
    margin-bottom: 90px;
}

.service-list li {
    display: flex;
    flex-direction: column; 
    align-items: flex-start;
    gap: 20px;
    padding: 35px;
    background: rgba(13, 31, 56, 0.5); 
    border: 1px solid var(--border-halus);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-list li:hover {
    transform: translateY(-5px);
    border-color: var(--emas-amber);
    background: rgba(13, 31, 56, 0.8);
    box-shadow: 0 15px 35px rgba(230, 161, 0, 0.1);
}

.service-list li i {
    font-size: 24px;
    color: var(--emas-amber); 
    background: rgba(230, 161, 0, 0.1); 
    padding: 12px; 
    border-radius: 12px;
    border: 1px solid rgba(230, 161, 0, 0.2);
    transition: all 0.4s ease;
}

.service-list li:hover i {
    transform: scale(1.1);
    color: var(--emas-hover);
    background: rgba(230, 161, 0, 0.2);
}

.service-list h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--biru-gelap); 
    margin-bottom: 5px;
    letter-spacing: -0.3px;
}

.service-list p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--biru-aksen);
    line-height: 1.6;
}

/* --- GALERI KARTU (TRANSFORMASI GELEMBUNG BULAT FLUID) --- */
.services-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px; 
    justify-items: center; 
}

.gallery-card {
    position: relative;
    width: 360px;  
    height: 360px; 
    border-radius: 52% 48% 50% 50% / 48% 53% 47% 52%; 
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), border-radius 0.6s ease, box-shadow 0.6s ease;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(110%) brightness(85%);
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), filter 0.6s ease;
}

.gallery-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 50%);
}

.gallery-overlay-text {
    position: absolute;
    bottom: 0; 
    left: 0; 
    width: 100%;
    height: 100%; 
    padding: 40px 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center; 
    text-align: center;
    background: linear-gradient(0deg, 
        rgba(7, 17, 30, 0.95) 0%, 
        rgba(13, 31, 56, 0.7) 60%, 
        rgba(13, 31, 56, 0) 100%);
    color: var(--biru-gelap);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    z-index: 3;
    transform: translateY(40px); 
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s ease;
}

.gallery-overlay-text::before {
    display: none;
}

/* --- TRIGGER HOVER: GAMBAR MENJADI BULAT SEMPURNA --- */
.gallery-card:hover {
    border-radius: 50%; 
    transform: translateY(-8px) scale(1.02);
    border-color: var(--emas-amber);
    box-shadow: 0 30px 50px rgba(230, 161, 0, 0.15);
}

.gallery-card:hover img { 
    transform: scale(1.08); 
    filter: saturate(120%) brightness(95%);
}

.gallery-card:hover .gallery-overlay-text {
    transform: translateY(0);
    color: var(--emas-amber);
}

/* --- OPTIMASI RESPONSIVE BREAKPOINT --- */
@media (max-width: 1200px) {
    .gallery-card {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    /* Penyesuaian Kotak Pengantar di Layar Mobile/Tablet */
    .services-content-box {
        padding: 40px 30px;
        gap: 20px; /* Gap vertikal yang seimbang saat mobile */
    }
    
    .services-content-box .about-text-box h2 {
        font-size: 32px;
    }

    .service-intro {
        font-size: 15px;
        line-height: 1.7;
    }
    
    .service-list {
        grid-template-columns: 1fr; 
        gap: 25px;
    }

    .services-gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 30px;
    }
    
    .gallery-card {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 650px) {
    .services-gallery-grid {
        grid-template-columns: 1fr; 
    }
    
    .gallery-card {
        width: 320px;
        height: 320px;
    }
}

/* ==========================================================================
   7. PRODUCTS SECTION (KINETIC DISCLOSURE LAYOUT - ULTRA MODERN)
   ========================================================================== */
.products { 
    padding: 120px 8%; 
    background-color: var(--bg-es-muda); 
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background-color: rgba(13, 31, 56, 0.4); 
    border: 1px solid var(--border-halus);
    border-radius: 24px; 
    overflow: hidden;
    position: relative;
    
    /* Mengunci tinggi kartu agar konisten saat terjadi mekanika internal */
    height: 480px; 
    display: flex;
    flex-direction: column;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

/* --- BRAKET FRAME GAMBAR UTAMA --- */
.img-container { 
    position: relative; 
    overflow: hidden; 
    width: 100%;
    /* Default: Gambar menguasai hampir seluruh badan kartu saat diam */
    height: 100%; 
    border-radius: 0px;
    transition: height 0.6s cubic-bezier(0.25, 1, 0.3, 1),
                border-radius 0.6s cubic-bezier(0.25, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 1;
}

.product-card img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    filter: saturate(105%) brightness(90%);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1);
}

.badge {
    position: absolute; 
    top: 20px; 
    left: 20px;
    background: var(--emas-amber); 
    padding: 6px 14px; 
    font-size: 11px; 
    font-weight: 700;
    text-transform: uppercase; 
    border-radius: 6px; 
    z-index: 3; 
    color: #07111E;
    letter-spacing: 1px;
}

/* --- KINETIC TEXT BLOCK CONTAINER --- */
.card-body { 
    padding: 30px;
    background: rgba(13, 31, 56, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-halus);
    
    /* Mekanisme Kinetik: Sembunyikan blok teks penuh di bawah batas kartu */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px; /* Tinggi ruang informasi */
    transform: translateY(100%); /* Terlempar ke bawah di luar pandangan */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.3, 1);
    z-index: 2;
    
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Mengatur Konten di dalam Card Body */
.card-info-top h3 { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 20px; 
    margin-bottom: 6px; 
    font-weight: 700; 
    color: var(--biru-gelap);
}

.card-info-top p { 
    font-family: 'Inter', sans-serif;
    color: var(--biru-aksen); 
    font-size: 13px; 
    line-height: 1.5; 
    margin-bottom: 0;
    /* Batasi teks agar tidak merusak layout */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* --- EDIT / PERBARUI BAGIAN FOOTER & TOMBOL AKSI BERIKUT --- */
.card-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08); 
    padding-top: 15px;
    display: flex; 
    justify-content: space-between; /* Memisahkan harga di kiri dan tombol di kanan */
    align-items: center;
    width: 100%;
}

.price { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 20px; 
    font-weight: 800; 
    color: var(--emas-amber); 
}

/* Wadah Rating (Bintang) dipindah ke bagian atas di bawah deskripsi jika ingin rapi */
.product-hover-overlay {
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-stars-overlay {
    color: var(--emas-amber);
    font-size: 11px;
    letter-spacing: 2px;
}

/* Tombol Aksi Belanja di Sebelah Kanan */
.btn-action-overlay {
    background: var(--emas-amber); 
    color: #07111E; 
    border: none;
    width: 46px; 
    height: 46px; 
    border-radius: 50%; /* Bulat sempurna */
    cursor: pointer; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 18px; /* Mengatur ukuran icon tas/keranjang belanja */
    
    /* Efek transisi mikro magnetik */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1), 
                background-color 0.3s ease, 
                box-shadow 0.4s ease;
}

/* Efek Hover Khusus untuk Tombol Belanja */
.btn-action-overlay:hover {
    background-color: #ffffff; /* Berubah jadi putih bersih saat didekati */
    color: #07111E;
    transform: scale(1.1) rotate(-5deg); /* Sedikit membal dan miring estetik */
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   7b. TRANSFORMATION LOGIC (PERUBAHAN STRUKTUR VISUAL UTAMA)
   ========================================================================== */

/* 💻 INTERAKSI DESKTOP (Mekanika Struktural) */
@media screen and (min-width: 1025px) {
    
    .product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }

    /* 1. Gambar menyusut dan membuat frame melengkung di atas */
    .product-card:hover .img-container {
        height: 280px; /* Menyusut dari 100% menjadi memberi ruang di bawah */
        border-radius: 16px;
        transform: scale(0.93); /* Efek membal masuk ke dalam frame */
    }

    .product-card:hover img {
        transform: scale(1.05);
    }

    /* 2. Blok teks ditarik paksa naik ke atas mengambil sisa ruang */
    .product-card:hover .card-body {
        transform: translateY(0);
    }
}

/* 📱 MODE TABLET & HANDPHONE (Touch-Ready Layout Stabil) */
@media screen and (max-width: 1024px) {
    .products {
        padding: 80px 6%; 
    }
    
    .product-card {
        height: auto; /* Biarkan mengalir normal tanpa batasan tinggi mekanik */
    }

    /* Matikan mekanika gerak, tampilkan semi-permanen agar user mobile tidak bingung */
    .img-container {
        height: 260px; 
        border-bottom: 1px solid var(--border-halus);
    }

    .card-body {
        position: relative;
        transform: translateY(0);
        height: auto;
        background: rgba(13, 31, 56, 0.2);
        padding: 24px;
        gap: 20px;
    }
    
    .card-footer {
        margin-top: 10px;
    }
}
/* ==========================================================================
   8. PORTFOLIO SECTION (CINEMATIC SHUTTER & SPATIAL EXPANSION)
   ========================================================================== */
.portfolio-section {
    padding: 140px 8%;
    background-color: var(--bg-terang-polos); 
}

.portfolio-container { 
    max-width: 1200px; 
    margin: 0 auto; 
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 40px; 
}

.portfolio-card {
    background: rgba(13, 31, 56, 0.2); 
    border: 1px solid var(--border-halus);
    border-radius: 20px; 
    overflow: hidden; /* Mengunci pergerakan mekanis internal */
    position: relative;
    display: flex;
    flex-direction: column;
    height: 480px; /* Mengunci tinggi seragam */
    transition: border-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}

/* Bingkai Gambar Portofolio */
.portfolio-img { 
    width: 100%;
    height: 75%; /* Menguasai sebagian besar area saat diam */
    overflow: hidden; 
    position: relative;
    border-radius: 0px;
    border: none;
    transition: height 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

/* Efek Lapisan Gradasi Statis Tanpa Merubah Warna */
.portfolio-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 17, 30, 0) 60%, rgba(7, 17, 30, 0.4) 100%);
    z-index: 2;
}

.portfolio-img img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.3, 1); 
}

/* Blok Informasi Mekanis (Kinetik Shutter Box) */
.portfolio-info { 
    padding: 30px; 
    background: var(--bg-es-muda);
    border: none;
    border-top: 1px solid var(--border-halus);
    border-radius: 0px;
    width: 100%;
    height: 25%; /* Porsi awal yang terlihat tipis */
    margin: 0; 
    position: relative;
    z-index: 3;
    box-shadow: none;
    
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: height 0.6s cubic-bezier(0.25, 1, 0.3, 1);
}

/* --- TRIGER HOVER DESKTOP: MEKANIKA PEMBELAHAN KARTU --- */
@media screen and (min-width: 1025px) {
    .portfolio-card:hover {
        border-color: var(--emas-amber);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        transform: translateY(-5px);
    }

    /* Gambar menyusut ke atas */
    .portfolio-card:hover .portfolio-img {
        height: 50%; 
    }

    .portfolio-card:hover .portfolio-img img {
        transform: scale(1.08);
    }

    /* Kotak informasi meluas ke atas mengambil alih sisa ruang */
    .portfolio-card:hover .portfolio-info {
        height: 50%;
    }
}

.portfolio-info span {
    font-family: 'Inter', sans-serif;
    font-size: 11px; 
    font-weight: 700;
    text-transform: uppercase; 
    letter-spacing: 2px;
    color: var(--emas-amber); 
    display: inline-block; 
    margin-bottom: 8px;
}

.portfolio-info h3 { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 18px; 
    color: var(--biru-gelap); 
    margin-bottom: 15px; 
    line-height: 1.4;
}

/* Tombol Detail Premium */
.btn-detail {
    background: transparent; 
    border: none; 
    color: var(--biru-aksen);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 12px; 
    cursor: pointer;
    display: inline-flex; 
    align-items: center; 
    gap: 8px; 
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0;
    margin-top: auto; /* Memaksa tombol selalu berada di paling bawah */
    width: fit-content;
    transition: color 0.3s ease;
}

.btn-detail i {
    font-size: 11px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.3, 1);
}

.btn-detail:hover { 
    color: var(--emas-amber); 
}

.btn-detail:hover i { 
    transform: translateX(6px); 
}

/*/* ==========================================================================
   8b. SINKRONISASI POPUP MODAL (THE FLOATING BLUEPRINT GALLERY) - FIXED
   ========================================================================== */
#portfolioModal {
    position: fixed;
    top: 0; left: 0; 
    width: 100%; height: 100vh;
    background-color: rgba(7, 17, 30, 0.4); 
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    box-sizing: border-box;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.3, 1), 
                visibility 0.5s ease;
}

#portfolioModal.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Kotak Konten Utama */
#portfolioModal .modal-content {
    background-color: var(--bg-es-muda);
    width: 90%;
    max-width: 1000px; 
    height: 560px;     
    border-radius: 24px; 
    border: 1px solid var(--border-halus);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    position: relative;
    box-sizing: border-box; /* Memastikan border tidak menambah lebar elemen */
    
    transform: scale(0.9) translateY(20px);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#portfolioModal:not(.hidden) .modal-content {
    transform: scale(1) translateY(0);
}

/* Menggunakan Flexbox di Desktop untuk Menghindari Patahan Grid Android */
.modal-body-layout {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 100%; 
    box-sizing: border-box;
}

/* Bingkai Gambar Kiri */
.modal-img-box {
    width: 50%; /* Terkunci aman 50% tanpa terdorong */
    height: 100%;
    overflow: hidden;
    position: relative;
    background: #0d1f38;
    box-sizing: border-box;
}

.modal-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; /* Menghilangkan celah whitespace bawaan Android */
    transform: scale(1.15);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.3, 1) 0.1s;
}

#portfolioModal:not(.hidden) .modal-img-box img {
    transform: scale(1);
}

/* Kompartemen Informasi Kanan */
.modal-text-box {
    width: 50%; /* Pas mengambil sisa setengah ruang */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-es-muda);
    height: 100%;
    box-sizing: border-box;
}

#portfolioModal .modal-text-box h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--biru-gelap);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

#portfolioModal .modal-text-box p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--biru-aksen);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Tombol Close */
.modal-close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 12px;
    color: var(--biru-aksen);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-halus);
    padding: 8px 16px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close-btn::before {
    content: '✕ ';
    font-size: 10px;
}

.modal-close-btn:hover { 
    color: var(--emas-amber);
    border-color: var(--emas-amber);
    background: transparent;
    transform: translateY(-2px);
}


/* ==========================================================================
   8c. INTEGRATED RESPONSIVE LAYER OPTIMIZATION (CLEANED & UNIFIED)
   ========================================================================== */

   @media screen and (max-width: 576px) {
    /* Memaksa pembungkus grid menggunakan 1 kolom bersih */
    .portfolio-grid {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    /* Memaksa kartu portofolio presisi di tengah layar */
    .portfolio-card {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
        height: auto !important; /* Biarkan mengalir agar text tidak meluber */
        min-height: 380px !important;
    }

    /* Mengunci ukuran box info agar patuh pada lebar kartu */
    .portfolio-info {
        width: 100% !important;
        box-sizing: border-box !important;
        height: auto !important;
    }
}

@media (max-width: 992px) {
    /* Penyesuaian Grid Portfolio Utama */
    .portfolio-card {
        height: auto; 
    }

    .portfolio-img {
        height: 280px;
    }

    .portfolio-info {
        height: auto !important;
        padding: 25px;
    }

    /* Penyesuaian Modal Secara Vertikal (Aman untuk Semua Tipe HP Android) */
    #portfolioModal .modal-content {
        width: 88%;
        height: auto;
        max-height: 85vh;
        overflow-y: auto;
    }

    .modal-body-layout {
        flex-direction: column; /* Mengubah baris menjadi tumpukan vertikal */
    }

    .modal-img-box {
        width: 100%;
        height: 240px; /* Batas tinggi gambar di handphone */
    }
    
    .modal-img-box img {
        transform: scale(1) !important; /* Matikan efek zoom berat di HP */
    }

    .modal-text-box {
        width: 100%;
        padding: 35px 25px;
        justify-content: flex-start;
    }

    #portfolioModal .modal-text-box h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .modal-close-btn {
        top: 15px;
        right: 15px;
        background: var(--bg-es-muda);
        padding: 6px 12px;
        font-size: 11px;
    }
}
/* ==========================================================================
   9. WHY CHOOSE US & CONTACT LINE (SPLIT STUDIO OCEAN GLOW)
   ========================================================================== */

/* --- WHY CHOOSE US SECTION --- */
.why-choose-section {
    padding: 120px 8%; 
    background-color: var(--bg-es-muda);
    border-bottom: 1px solid var(--border-halus);
}

.why-choose-container {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-img-box {
    position: relative;
    width: 100%;
    height: 450px; 
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-halus);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.why-img-box img {
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-choose-container:hover .why-img-box img {
    transform: scale(1.05);
}

.why-text-box {
    max-width: 100%; 
}

.why-text-box h3 { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 36px; 
    font-weight: 800;
    color: var(--biru-gelap); 
    margin-bottom: 20px; 
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.why-text-box p { 
    font-family: 'Inter', sans-serif;
    font-size: 16px; 
    color: var(--biru-aksen); 
    line-height: 1.8; 
    margin-bottom: 35px;
}

/* Tombol Garis Linear Mewah */
.btn-video {
    background: transparent; 
    border: 2px solid var(--emas-amber); 
    color: var(--emas-amber);
    padding: 16px 35px; 
    border-radius: 8px; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    display: inline-flex; align-items: center; gap: 12px; 
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-video i { font-size: 14px; transition: transform 0.3s ease; }
.btn-video:hover { background-color: var(--emas-amber); color: #07111E; box-shadow: 0 4px 20px rgba(230, 161, 0, 0.4); }
.btn-video:hover i { transform: scale(1.2); }


/* --- CONTACT LINE COMPONENT --- */
.contact-line-section {
    padding: 120px 8%;
    background-color: var(--bg-es-muda);
}

.contact-line-container {
    max-width: 1200px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-line-img {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid var(--border-halus);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.contact-line-img img {
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-line-container:hover .contact-line-img img {
    transform: scale(1.05);
}

.contact-line-text {
    max-width: 100%;
}

.contact-line-text h3 { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 36px; 
    font-weight: 800;
    color: var(--biru-gelap); 
    margin-bottom: 20px; 
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.contact-line-text p { 
    font-family: 'Inter', sans-serif;
    font-size: 16px; 
    color: var(--biru-aksen); 
    line-height: 1.8; 
    margin-bottom: 35px;
}

/* Tombol WhatsApp Premium Berbingkai Emas Amber */
.btn-wa-line {
    background-color: transparent; 
    color: var(--emas-amber); 
    border: 2px solid var(--emas-amber);
    text-decoration: none;
    padding: 16px 35px; 
    border-radius: 8px; 
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex; align-items: center; gap: 12px; 
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-wa-line i { font-size: 16px; }
.btn-wa-line:hover { background-color: var(--emas-amber); color: #07111E; box-shadow: 0 4px 20px rgba(230, 161, 0, 0.4); }


/* ==========================================================================
   9b. RESPONSIVE LOGIC (SMARTPHONE & TABLET ADAPTATION)
   ========================================================================== */
@media screen and (max-width: 992px) {
    .why-choose-container, .contact-line-container {
        gap: 40px; 
    }
    
    .why-img-box, .contact-line-img {
        height: 360px; 
    }

    .why-text-box h3, .contact-line-text h3 { 
        font-size: 28px; 
    }
}

@media screen and (max-width: 768px) {
    .why-choose-section, .contact-line-section { 
        padding: 80px 5%; 
    }

    .why-choose-container, .contact-line-container {
        grid-template-columns: 1fr; 
        gap: 30px;
        text-align: center; 
    }

    .why-img-box, .contact-line-img {
        height: 280px; 
    }

    .btn-video, .btn-wa-line { 
        width: 100%; 
        justify-content: center; 
        box-sizing: border-box; 
    }
}

/* ==========================================================================
   10. TEAM SECTION (THE MODERN SOLID PREMIUM & SLIDING PANEL)
   ========================================================================== */
.team-section {
    padding: 140px 8%;
    background-color: var(--bg-terang-polos);
}

.team-container { 
    max-width: 1200px; 
    margin: 0 auto; 
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 45px; 
    margin-top: 60px;
}

.team-card {
    background-color: var(--bg-es-muda);
    border-radius: 20px; /* Sesuai struktur melengkung modern */
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-halus);
    height: 480px; 
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card:hover { 
    transform: translateY(-10px); 
    border-color: var(--emas-amber);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Bingkai Foto Profil Penuh */
.team-img-box { 
    width: 100%;
    height: 100%; 
    overflow: hidden; 
    position: relative;
}

/* Tirai Samudra Pasif */
.team-img-box::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(13, 31, 56, 0) 30%, rgba(7, 17, 30, 0.9) 100%);
    transition: all 0.5s ease;
}

.team-img-box img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1); 
}

.team-card:hover .team-img-box img { 
    transform: scale(1.08); 
}

/* WADAH INFORMASI SLIDING PANEL */
.team-info { 
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 30px 25px; 
    text-align: left; 
    background: linear-gradient(to top, rgba(7, 17, 30, 0.98) 85%, rgba(7, 17, 30, 0.85) 100%);
    border-top: 1px solid var(--border-halus);
    box-sizing: border-box;
    z-index: 2;
    transform: translateY(calc(100% - 95px)); 
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card:hover .team-info {
    transform: translateY(0);
}

.team-info h3 { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-size: 22px; 
    color: var(--biru-gelap); 
    font-weight: 700;
}

.team-position { 
    font-family: 'Inter', sans-serif;
    font-size: 12px; 
    text-transform: uppercase; 
    color: var(--emas-amber); 
    font-weight: 700; 
    margin: 4px 0 15px; 
    display: inline-block; 
    letter-spacing: 1.5px;
}

.team-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--biru-aksen);
    margin-top: 10px;
    margin-bottom: 15px;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* SOSIAL MEDIA */
.team-socials {
    display: flex;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--border-halus);
}
.team-socials a {
    color: var(--emas-amber); 
    background: transparent;
    width: 40px; 
    height: 40px; 
    border-radius: 50%; /* Bulat elegan kontemporer */
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 14px;
    border: 1px solid rgba(230, 161, 0, 0.3);
    transform: translateY(15px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-card:hover .team-socials a {
    opacity: 1;
    transform: translateY(0);
}
.team-card:hover .team-socials a:nth-child(1) { transition-delay: 0.15s; }
.team-card:hover .team-socials a:nth-child(2) { transition-delay: 0.20s; }
.team-card:hover .team-socials a:nth-child(3) { transition-delay: 0.25s; }

.team-socials a:hover { 
    background-color: var(--emas-amber); 
    color: #07111E; 
    border-color: var(--emas-amber);
    box-shadow: 0 0 10px var(--emas-amber);
}

/* ==========================================================================
   10b. RESPONSIVE LAYER SCREEN (CROSS-DEVICE OPTIMIZATION)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .team-section { padding: 100px 6%; }
    .team-grid { gap: 30px; }
}

@media screen and (max-width: 768px) {
    .team-section { padding: 80px 5%; }
    
    .team-card {
        height: auto; 
        display: flex;
        flex-direction: column;
    }

    .team-img-box {
        height: 340px; 
    }

    .team-info {
        position: relative;
        transform: none !important;
        background: var(--bg-es-muda);
        padding: 30px 25px;
    }

    .team-desc {
        transform: none !important;
    }

    .team-socials a {
        opacity: 1;
        transform: none !important;
    }
}
/* ==========================================================================
   11. REVIEWS SECTION (MODERN FIXED SLIDER SYSTEM)
   ========================================================================== */
:root {
    --cards-per-view: 2; /* Secara default di desktop menampilkan 2 kartu */
}

.review-section {
    padding: 140px 8%;
    background-color: var(--bg-terang-polos); /* Midnight Ocean */
    overflow: hidden; 
}

.review-container { 
    max-width: 1200px; 
    margin: 0 auto; 
}

.review-relative-box {
    position: relative;
    width: 100%;
    overflow: hidden; /* Memotong kartu yang berada di luar jendela pandang */
    padding: 20px 0;
}

/* Jendela utama pembungkus kartu */
.review-slider-wrapper {
    display: flex;
    flex-wrap: nowrap; /* Memaksa semua kartu berjejer ke kanan, tidak melipat ke bawah */
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%; /* Basis persentase merujuk ke lebar container ini */
    will-change: transform; 
}

.review-card {
    background-color: var(--bg-es-muda); /* Palung laut terdalam */
    padding: 45px; 
    border-radius: 16px; /* Sudut melengkung ergonomis modern */
    
    /* Ukuran kartu dihitung berdasarkan jumlah tampilan yang diinginkan */
    width: calc(100% / var(--cards-per-view)); 
    flex: 0 0 calc(100% / var(--cards-per-view)); 
    box-sizing: border-box;
    
    /* Gunakan border transparan & background-clip sebagai pengganti gap agar hitungan persen presisi */
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    background-clip: padding-box; 
    
    border-top: 1px solid var(--border-halus);
    border-bottom: 1px solid var(--border-halus);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.review-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: flex-start;
    margin-bottom: 25px; 
}

.reviewer-info h3 { 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    font-weight: 700;
    font-size: 22px; 
    color: var(--biru-gelap); /* Putih kristal */
}

.reviewer-info span { 
    font-family: 'Inter', sans-serif;
    font-size: 13px; 
    color: var(--biru-aksen); 
    display: block;
    margin-top: 4px;
    letter-spacing: 0.5px;
}

.review-stars i { 
    color: var(--emas-amber); /* Bintang menyala emas */
    font-size: 13px; 
    margin-left: 2px;
}

.review-text { 
    font-family: 'Inter', sans-serif;
    font-size: 15px; 
    color: var(--biru-gelap); 
    opacity: 0.85;
    line-height: 1.75; 
    font-style: italic; 
}

/* Navigasi Tombol Panah Kaca Gelap */
.review-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(13, 31, 56, 0.8); 
    border: 1px solid var(--border-halus);
    color: var(--emas-amber);
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Dibuat melingkar dinamis */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(5px);
}

.review-nav-btn:hover {
    background: var(--emas-amber);
    color: #07111E;
    border-color: var(--emas-amber);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 0 15px var(--emas-amber);
}

.review-btn-prev { left: -15px; }
.review-btn-next { right: -15px; }

.review-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.review-dots .dot {
    width: 10px;
    height: 6px;
    border-radius: 3px; 
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dots .dot.active {
    background: var(--emas-amber);
    width: 28px; 
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media screen and (max-width: 1024px) {
    .review-section { 
        padding: 100px 6%; 
    }
}

@media screen and (max-width: 768px) {
    :root {
        --cards-per-view: 1; 
    }
    .review-section { 
        padding: 80px 5%; 
    }
    .review-card { 
        padding: 35px; 
        border-left: 10px solid transparent; 
        border-right: 10px solid transparent; 
    }
    .review-btn-prev { left: 5px; }
    .review-btn-next { right: 5px; }
}

@media screen and (max-width: 600px) {
    .review-section { 
        padding: 60px 4%; 
    }
    .review-card { 
        padding: 25px; 
    }
    .reviewer-info h3 { 
        font-size: 20px; 
    }
}

@media screen and (max-width: 480px) {
    .review-section { 
        padding: 50px 10px; 
    }
    .review-card { 
        padding: 25px 15px; 
        border-left: 5px solid transparent; 
        border-right: 5px solid transparent; 
    }
    .review-header { 
        flex-direction: column; 
        gap: 8px; 
    }
    .review-text { 
        font-size: 14px; 
    }
    .review-nav-btn { 
        width: 38px; 
        height: 38px; 
    }
}

/* ==========================================================================
   12. FOOTER COMPONENT (PREMIUM LAUNDRY LUXURY EDITION)
   ========================================================================== */
.site-footer {
    background-color: var(--bg-es-muda); /* Palung samudra terdalam */
    padding: 80px 8% 30px;
    border-top: 1px solid var(--border-halus);
    color: var(--biru-gelap);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; 
    gap: 50px;
}

.footer-column h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--emas-amber); /* Judul kolom footer emas */
    margin-bottom: 25px;
    letter-spacing: -0.3px;
}

/* Identitas Brand di Footer */
.footer-brand h2 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--biru-gelap);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.footer-brand p {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--biru-aksen);
    max-width: 400px;
}

/* Menu Tautan Internal */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    font-family: 'Inter', sans-serif;
    color: var(--biru-aksen);
    text-decoration: none;
    font-size: 14.5px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--emas-amber);
    transform: translateX(4px); 
}

/* Info Kontak & Ikon Sosial */
.footer-contact p {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    color: var(--biru-aksen);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--emas-amber);
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    color: var(--emas-amber);
    background: rgba(230, 161, 0, 0.05);
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Bulat melingkar kontemporer */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border: 1px solid rgba(230, 161, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.footer-socials a:hover {
    background-color: var(--emas-amber);
    color: #07111E;
    border-color: var(--emas-amber);
    transform: translateY(-4px);
    box-shadow: 0 10px 15px rgba(230, 161, 0, 0.3);
}

/* Pembatas & Hak Cipta */
.footer-bottom {
    max-width: 1200px;
    margin: 60px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: var(--biru-aksen);
    opacity: 0.6;
}

/* --- RESPONSIVE FOOTER --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr; 
        gap: 40px;
    }
    .footer-brand {
        grid-column: span 2; 
    }
}

@media (max-width: 576px) {
    .site-footer {
        padding: 60px 6% 30px;
    }
    .footer-container {
        grid-template-columns: 1fr; 
        gap: 35px;
    }
    .footer-brand {
        grid-column: span 1;
    }
    .footer-column {
        text-align: center;
    }
    .footer-brand p {
        margin: 0 auto;
    }
    .footer-contact p {
        justify-content: center;
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-links ul li a:hover {
        transform: none; 
    }
}