/* --- 1. RESET, VARIABLES & BASE --- */
:root { 
    --bg-dark: #0f1113; 
    --card-dark: #1b1d20; 
    --accent-blue: #0ea5e9; 
    --accent-purple: #a855f7;
    --accent-green: #22c55e;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
}

body { 
    background-color: var(--bg-dark); 
    font-family: 'Inter', sans-serif; 
    color: var(--text-main); 
    margin: 0; 
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* --- 2. NAVIGATION --- */
:root {
    --gold: #d4a373;
    --bg-dark: #1a1a1a;
    --bg-black: #0c0c0c;
    --text-muted: #888888;
    --border-line: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
}

/* --- Baris Atas (Logo Kecil & Grup Kanan) --- */
.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-line);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo img {
    height: 30px; /* Ukuran logo sudah dikecilkan */
    width: auto;
    border-radius: 4px;
    transition: 0.3s ease;
}

.logo-text {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.3px;
}

.nav-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* --- Pencarian --- */
.search-wrapper {
    position: relative;
}

.search-wrapper input {
    background: #252525;
    border: 1px solid var(--border-line);
    padding: 8px 15px 8px 35px;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    width: 200px;
    transition: 0.3s;
}

.search-wrapper input:focus {
    width: 240px;
    border-color: var(--gold);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-muted);
}

.social-divider {
    width: 1px;
    height: 20px;
    background: var(--border-line);
}

/* --- Sosmed Berwarna saat Hover --- */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: var(--text-muted);
    font-size: 19px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}

.social-icon.wa:hover {
    color: #25D366; /* Warna Hijau WA */
    transform: translateY(-3px) scale(1.15);
    filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.4));
}

.social-icon.ig:hover {
    color: #E4405F; /* Warna Instagram */
    transform: translateY(-3px) scale(1.15);
    filter: drop-shadow(0 0 8px rgba(228, 64, 95, 0.4));
}

/* --- Baris Bawah (Menu Rapat di Tengah) --- */
.nav-bottom {
    background-color: var(--bg-black);
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px; /* Jarak dibuat rapat */
}

.menu-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    transition: 0.3s;
}

/* Animasi Bouncy & Glow */
.menu-link span {
    font-size: 17px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-link:hover {
    color: #fff;
    text-shadow: 0 0 10px var(--gold);
}

.menu-link:hover span {
    transform: translateY(-5px);
}

/* Highlight Menu Jual HP */
.highlight {
    color: var(#fff) !important;
}

/* Garis Bawah Navigasi */
.menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: 0.3s ease;
    transform: translateX(-50%);
}

.menu-link:hover::after {
    width: 100%;
}
.header-sticky {
    position: sticky; /* Kunci posisi */
    top: 0;           /* Tempel di paling atas layar */
    z-index: 1000;    /* Pastikan tidak tertutup konten lain */
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Efek bayangan agar lebih elegan */
}

/* Pastikan logo tidak terlalu besar seperti permintaan sebelumnya */
.nav-logo img {
    height: 30px; 
    width: auto;
}

/* Jarak menu dibuat rapat sesuai permintaan sebelumnya */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; 
}
/* --- 3. HERO VIDEO SECTION --- */
.hero-banner {
    position: relative;
    width: 100%;
    height: 75vh;
    overflow: hidden;
    background: #000;
}

.hero-banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 1;
}

@media (max-width: 1024px) {
    .hero-banner {
        height: auto;
        aspect-ratio: 16 / 9;
        min-height: 520px;
    }
}

@media (max-width: 400px) {
    .hero-banner {
        min-height: 560px;
    }
}

.video-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
}

.hero-subtitle {
    color: #ccc;
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.btn-hero {
    padding: 12px 30px;
    background: var(--accent-blue);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-hero:hover {
    background: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(14, 165, 233, 0.3);
}

.text-blue { color: var(--accent-blue); }

/* --- 4. GLOBAL COMPONENTS (TITLES) --- */
.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var();
    margin: 15px auto 0;
    border-radius: 10px;
}

/* --- 5. PROMO SLIDER SECTION --- */
/* --- 1. Ganti Background Utama --- */
body {
    background-color: #0a0a0a; /* Hitam yang lebih pekat dan elegan */
}

/* --- 1b. Section & container promo: ditulis manual, GAK gantung Tailwind CDN --- */
.promo-section {
    background-color: #0a0a0a;
    padding-top: 32px;
    padding-bottom: 40px;
}

.promo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}

@media (min-width: 768px) {
    .promo-section { padding-top: 80px; }
}

/* --- 2. Banner: tinggi dikunci pakai CSS aspect-ratio (BUKAN JS),
   jadi gak pernah gagal/kosong walau script telat load --- */
.promo-clean {
    width: 100%;
    aspect-ratio: 2 / 1; /* muat banner rasio apapun (16:9 s/d wide) tanpa JS */
    max-height: 500px;
    transition: transform 0.4s ease;
    position: relative;
    background: #000;
    /* Ditulis manual (gak andalin Tailwind CDN) biar sudut selalu rounded
       walau koneksi lambat & script Tailwind belum sempat jalan */
    border-radius: 1.5rem !important;
    overflow: hidden !important;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.promo-clean:hover {
    transform: scale(1.005); /* Efek zoom halus saat disentuh */
}

/* --- 3. Slide: gambar full ngisi kotak (cover), tanpa blur di sisi --- */
.promo-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.promo-slide-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* --- 4. Custom Navigasi (lebih premium: tombol bulat) --- */
.promo-clean .promo-nav {
    width: 42px;
    height: 42px;
    margin-top: -21px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: 0.3s ease;
}

.promo-clean .promo-nav:hover {
    background: rgba(234, 179, 8, 0.9);
    border-color: transparent;
}

.promo-clean .promo-nav:hover::after {
    color: #000 !important;
}

.promo-clean .promo-nav::after {
    font-size: 1rem !important;
    font-weight: bold;
    color: #facc15 !important;
}

/* --- 4b. Pagination khusus promo --- */
.promo-clean .promo-pagination {
    position: absolute;
    bottom: 16px !important;
    z-index: 5;
}

.promo-clean .promo-pagination .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.5;
    width: 8px;
    height: 8px;
}

.promo-clean .promo-pagination .swiper-pagination-bullet-active {
    background: #facc15;
    opacity: 1;
    width: 22px;
    border-radius: 5px;
}

@media (max-width: 640px) {
    .promo-clean .promo-nav {
        display: none; /* di HP cukup swipe + dots */
    }
}

/* --- 6. CATEGORY BANNER --- */
.category-banner {
    height: 380px;
    border-radius: 28px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-banner img { 
    position: absolute; 
    width: 100%; 
    height: 100%; 
    object-fit: cover; 
    opacity: 0.35; 
    transition: 0.6s;
    z-index: 1;
}

.category-banner:hover {
    border-color: rgba(255, 255, 255, 0.3);
}

.category-banner:hover img {
    transform: scale(1.1);
    opacity: 0.5;
}

.category-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* --- 7. TEAM SECTION (3D CAROUSEL) --- */
.team-section { 
    padding-top: 40px !important; 
    padding-bottom: 0 !important; 
}

.teamSwiper {
    padding-top: 20px !important;
    padding-bottom: 10px !important; 
    width: 100%;
}

.swiper-slide-team { 
    width: 300px !important; 
    height: 420px !important; 
    background: var(--card-dark); 
    border-radius: 30px; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.5s ease;
    filter: blur(2px) grayscale(0.9);
}

.swiper-slide-active {
    border-color: var(--accent-blue);
    box-shadow: 0 0 40px rgba(14, 165, 233, 0.15);
    filter: blur(0) grayscale(0);
    transform: scale(1.05);
}

.team-img { 
    width: 180px !important; 
    height: 180px !important; 
    border-radius: 25px; 
    object-fit: cover; 
    margin-bottom: 25px;
    border: 5px solid #25282c;
}

.team-name { 
    color: var(--accent-blue); 
    font-weight: 800; 
    font-size: 1.4rem; 
    margin-bottom: 5px; 
}

.team-role { 
    color: #777; 
    font-size: 0.8rem; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
}

.swiper-pagination {
    position: relative !important;
    bottom: 0px !important;
    margin-top: 0px !important;
}

/* --- 8. CUSTOMER SECTION --- */
.customerSwiper {
    width: 100%;
    height: 280px; 
    padding: 0 0 20px 0 !important; 
    margin-top: -20px !important; 
}

.customer-slide {
    width: 320px !important; 
    height: 240px !important; 
}

.customer-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* --- 9. FOOTER --- */
footer h3 {
    position: relative;
    padding-bottom: 10px;
}

footer h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 30px; height: 2px;
    background: var(--accent-blue);
}

/* --- 10. RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
    .swiper-slide-team { width: 280px !important; height: 400px !important; }
    .team-img { width: 150px !important; height: 150px !important; }
    .hero-title { font-size: 2.2rem; }
}

/* --- 11. HALAMAN JUAL --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;600;800&display=swap');

:root {
    --gold: linear-gradient(135deg, #fceabb 0%, #fccd4d 50%, #f8b500 100%);
    --dark-glass: rgba(15, 15, 15, 0.7);
}

body { 
    background-color: #030303; 
    color: white; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
    overflow-x: hidden;
}

/* Animated Background */
.bg-glow {
    position: fixed;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(250, 204, 21, 0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
    animation: move 20s infinite alternate;
}

@keyframes move {
    from { transform: translate(-10%, -10%); }
    to { transform: translate(20%, 20%); }
}

.luxury-card {
    background: var(--dark-glass);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.input-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.input-box:focus-within {
    border-color: #facc15;
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-2px);
}

.gold-text {
    background: var(--gold);
    -webkit-background-cliP: text;
    -webkit-text-fill-color: transparent;
}

.btn-premium {
    background: var(--gold);
    color: #000;
    font-weight: 800;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-premium:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 25px 50px rgba(250, 204, 21, 0.3);
}

/* Custom Dropdown Panah */
select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23facc15'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.5rem center;
    background-size: 1rem;
}
/* Memastikan semua link bisa diklik */
a {
    cursor: pointer !important;
    pointer-events: auto !important;
}

/* Memastikan banner tidak menutupi konten di dalamnya */
.category-banner {
    pointer-events: none; /* Banner induk jangan tangkap klik */
}

.category-banner .relative.z-10, 
.category-banner a {
    pointer-events: auto; /* Tapi konten & tombol di dalamnya HARUS tangkap klik */
}
#product-view {
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

#product-view.opacity-100 {
    transform: translateY(0);
}

#product-view.opacity-0 {
    transform: translateY(20px);
}

/* Styling tombol admin agar tidak merusak layout */
.btn-admin-nav {
    color: var(--text-muted); /* Menggunakan warna abu-abu muted Anda */
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
    margin-right: 5px; /* Memberi sedikit jarak ke kotak pencarian */
    display: flex;
    align-items: center;
}

.btn-admin-nav:hover {
    color: var(--gold); /* Berubah emas saat hover */
    transform: scale(1.1);
}

/* Memastikan kontainer kanan tetap rapi */
.nav-top-right {
    display: flex;
    align-items: center;
    gap: 15px; /* Jarak antar elemen tetap konsisten */
}

/* Memastikan pencarian tidak terdorong terlalu jauh */
.search-wrapper input {
    width: 180px; /* Lebar standar agar muat dengan tombol admin */
}
/* Styling Ikon Admin agar senada dengan Sosmed */
.admin-icon-link {
    color: var(--text-muted); /* Warna abu-abu standar navbar Anda */
    font-size: 19px; /* Ukuran sama dengan ikon sosial */
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Animasi bouncy yang sama[cite: 3] */
    text-decoration: none;
    display: flex;
    align-items: center;
}

.admin-icon-link:hover {
    color: var(--gold); /* Berubah emas saat hover agar terlihat premium[cite: 3] */
    transform: translateY(-3px) scale(1.15); /* Efek melayang yang sama dengan ikon sosmed[cite: 3] */
    filter: drop-shadow(0 0 8px rgba(212, 163, 115, 0.4));
}

/* Memastikan susunan kanan tetap sejajar lurus */
.nav-top-right {
    display: flex;
    align-items: center;
    gap: 20px; /* Jarak standar antar elemen kanan[cite: 3] */
}
/* Pastikan Baris Bawah tetap Center sempurna */
.nav-bottom {
    background-color: var(--bg-black);
    height: 55px;
    display: flex;
    justify-content: center; /* Menjaga menu tetap di tengah */
    align-items: center;
    width: 100%;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px; /* Jarak rapat sesuai permintaan awal */
    margin: 0 auto; /* Memastikan tidak terdorong ke samping */
}

/* Styling Ikon Admin (Tanpa merusak layout atas) */
.admin-icon-link {
    color: var(--text-muted);
    font-size: 18px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: 0.3s;
}

.admin-icon-link:hover {
    color: var(--gold); /* Efek emas saat hover */
    transform: scale(1.1);
}

.nav-top-right {
    display: flex;
    align-items: center;
    gap: 20px; /* Spasi antar elemen di baris atas[cite: 3] */
}
/* --- TAMBAHAN KONTEN HALAMAN TOKO --- */
.store-header {
    padding: 80px 0 40px;
    text-align: center;
}

.store-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.store-header h1 span {
    color: var(--gold);
}

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

.service-card {
    background: var(--card-dark);
    padding: 50px 30px;
    border-radius: 24px;
    border: 1px solid var(--border-line);
    text-align: center;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icon-box {
    font-size: 50px;
    color: var(--gold);
    margin-bottom: 20px;
}
/* ===================================================
   1. GLOBAL VARIABLES & BASE (SAMA DENGAN INDEX)
   =================================================== */
:root {
    --gold: #d4a373;
    --bg-dark: #1a1a1a;
    --bg-black: #0c0c0c;
    --card-dark: #1b1d20;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-line: rgba(255, 255, 255, 0.08);
    --accent-blue: #0ea5e9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #000;
    color: var(--text-main);
    overflow-x: hidden;
}

/* ===================================================
   2. NAVIGATION (SAMA PERSIS INDEX & GAMBAR 1)
   =================================================== */
.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background-color: var(--bg-dark);
    border-bottom: 1px solid var(--border-line);
}

.nav-logo img {
    height: 30px;
    width: auto;
    transition: 0.3s ease;
}

.nav-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search Bar */
.search-wrapper { position: relative; }
.search-wrapper input {
    background: #252525;
    border: 1px solid var(--border-line);
    padding: 8px 15px 8px 35px;
    border-radius: 6px;
    color: #fff;
    font-size: 13px;
    width: 200px;
    transition: 0.3s;
}
.search-wrapper input:focus { width: 240px; border-color: var(--gold); outline: none; }

/* Sosmed Bouncy */
.social-links { display: flex; gap: 15px; }
.social-icon {
    color: var(--text-muted);
    font-size: 19px;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
}
.social-icon.wa:hover { color: #25D366; filter: drop-shadow(0 0 8px rgba(37, 211, 102, 0.4)); }
.social-icon.ig:hover { color: #E4405F; filter: drop-shadow(0 0 8px rgba(228, 64, 95, 0.4)); }
.social-icon:hover { transform: translateY(-3px) scale(1.15); }

/* Menu Bawah */
.nav-bottom {
    background-color: var(--bg-black);
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.menu-link {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 7px;
    position: relative;
    transition: 0.3s;
}

.menu-link span {
    font-size: 17px;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-link:hover { color: #fff; text-shadow: 0 0 10px var(--gold); }
.menu-link:hover span { transform: translateY(-5px); }

/* ===================================================
   3. ISI HALAMAN TOKO (KONTEN TETAP GAYA KAMU)
   =================================================== */
.store-header {
    padding: 100px 0 40px;
    text-align: center;
}

.store-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
}

.store-header h1 span { color: var(--gold); }

.store-header p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    font-size: 14px;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.service-card {
    background: var(--card-dark);
    padding: 60px 40px;
    border-radius: 24px;
    border: 1px solid var(--border-line);
    text-align: center;
    text-decoration: none;
    color: var(--text-main);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 480px; 
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.icon-box {
    font-size: 60px;
    color: var(--gold);
    margin-bottom: 25px;
}

.service-card h3 { font-size: 1.6rem; font-weight: 700; margin-bottom: 15px; }

.service-card p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: auto;
    padding-bottom: 30px;
}

.badge-gold {
    background: rgba(212, 163, 115, 0.1);
    color: var(--gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Kenapa Rell Phone */
.why-section { padding: 80px 0; background-color: #000; }

.why-card {
    background: var(--card-dark);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    border: 1px solid var(--border-line);
    max-width: 1100px;
    margin: 0 auto;
}

.why-content h2 { font-size: 2.5rem; font-weight: 800; color: #fff; margin-bottom: 30px; }
.why-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; list-style: none; }
.why-icon { background: var(--gold); color: #000; padding: 5px; border-radius: 5px; font-size: 12px; min-width: 25px; text-align: center; }

.why-image img { max-width: 100%; height: auto; filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); }

/* ===================================================
   4. FOOTER (SAMA PERSIS DENGAN INDEX)
   =================================================== */
.main-footer {
    background-color: #000 !important;
    padding: 60px 0 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
}

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

footer h3 {
    position: relative;
    padding-bottom: 12px;
    font-size: 18px !important;
    font-weight: 700 !important;
    margin-bottom: 25px;
    color: #ffffff !important;
}

footer h3::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 35px; height: 2px;
    background: var(--accent-blue);
}

.brand-desc, .footer-links a, .address-text {
    color: #94a3b8 !important;
    font-size: 14px !important;
    line-height: 1.6;
}

.map-wrapper {
    height: 160px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 15px;
}

/* ===================================================
   5. RESPONSIVE MOBILE (FIX SESUAI GAMBAR 1)
   =================================================== */
@media (max-width: 768px) {
    /* Navbar HP Clean */
    .social-links, .social-divider { display: none !important; }
    .nav-top { padding: 10px 15px !important; display: flex !important; justify-content: space-between !important; }
    .nav-logo img { height: 26px !important; }
    
    .nav-top-right { flex: 1; justify-content: flex-end; gap: 15px !important; }
    .search-wrapper { flex: 1; max-width: 180px; }
    .search-wrapper input { 
        width: 100% !important; 
        background: rgba(255, 255, 255, 0.05) !important; 
        font-size: 13px !important; 
    }
    
    .nav-bottom { height: 45px !important; }
    .nav-links { gap: 14px !important; }
    .menu-link { font-size: 11px !important; padding: 0 !important; }

    /* Isi Toko Mobile */
    .store-header h1 { font-size: 2rem; }
    .grid-services { grid-template-columns: 1fr; }
    .why-card { flex-direction: column; padding: 40px 20px; text-align: center; }
    .why-image { order: -1; }

    /* Footer Mobile */
    .footer-container { grid-template-columns: 1fr !important; text-align: center !important; }
    footer h3::after { left: 50% !important; transform: translateX(-50%) !important; }
}
@media (max-width: 768px) {
    /* Mengecilkan judul utama */
    .hero-title, h1.text-3xl {
        font-size: 1.8rem !important; /* Ukuran lebih pas untuk HP */
        line-height: 1.2;
    }

    /* Mengecilkan tulisan RELL PHONE */
    h1 + p.text-xl {
        font-size: 1.2rem !important;
        margin-bottom: 10px;
    }

    /* Mengecilkan teks deskripsi */
    p.text-gray-400 {
        font-size: 0.9rem !important;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    /* Menyesuaikan ukuran tombol agar tidak terlalu lebar */
    .bg-yellow-400.px-10 {
        padding-left: 25px !important;
        padding-right: 25px !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        font-size: 0.9rem;
    }
}
/* Styling Tombol Login & Sign Up Premium */
.btn-custom {
  --primary-color: #fbbf24; /* Kuning Rell Phone */
  --secondary-color: #000;    /* Hitam */
  --hover-color: #ffffff;    /* Putih saat hover */
  --arrow-width: 10px;
  --arrow-stroke: 2px;
  
  box-sizing: border-box;
  border: 0;
  border-radius: 20px;
  color: var(--secondary-color);
  padding: 0.6em 1.4em;
  background: var(--primary-color);
  display: flex;
  transition: 0.3s all ease;
  align-items: center;
  gap: 0.6em;
  font-weight: bold;
  font-size: 13px;
  cursor: pointer;
  text-decoration: none; /* Karena ini nantinya tag <a> */
}

.btn-custom .arrow-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-custom .arrow {
  margin-top: 1px;
  width: var(--arrow-width);
  background: var(--secondary-color);
  height: var(--arrow-stroke);
  position: relative;
  transition: 0.2s;
}

.btn-custom .arrow::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  border: solid var(--secondary-color);
  border-width: 0 var(--arrow-stroke) var(--arrow-stroke) 0;
  display: inline-block;
  top: -3px;
  right: 3px;
  transition: 0.2s;
  padding: 3px;
  transform: rotate(-45deg);
}

.btn-custom:hover {
  background-color: var(--hover-color);
  color: var(--secondary-color);
}

.btn-custom:hover .arrow {
  background: var(--secondary-color);
}

.btn-custom:hover .arrow:before {
  right: 0;
  border-color: var(--secondary-color);
}
.btn-auth-single {
    --primary-color: #fbbf24; /* Kuning Rell Phone */
    --secondary-color: #000;
    --hover-color: #fff;
    --arrow-width: 10px;
    --arrow-stroke: 2px;
    
    border: 0;
    border-radius: 20px;
    color: var(--secondary-color);
    padding: 8px 16px; /* Padding lebih kecil agar pas di navbar */
    background: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
}
/* --- Tombol Login Minimalis (Pasti Rapi & Berwarna) --- */
.login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #3653f8; /* Warna Biru Utama */
    color: #ffffff !important; /* Paksa teks putih */
    padding: 8px 16px;
    border-radius: 50px; /* Kapsul */
    text-decoration: none !important;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.login-btn:hover {
    background-color: #2a41c2;
    transform: scale(1.05);
}

/* Responsif untuk HP */
@media screen and (max-width: 600px) {
    .login-btn {
        padding: 6px 12px;
        font-size: 12px;
        gap: 5px;
    }
    /* Sembunyikan teks kalau layar sangat sempit, sisakan ikon saja */
    /* .login-text { display: none; } */
}
/* Container Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

/* Tombol Ikon */
.nav-admin-btn {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 10px;
}

/* Konten Dropdown (Tersembunyi Awalnya) */
.nav-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #1b1d20;
    min-width: 120px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.5);
    border-radius: 10px;
    z-index: 1000;
    border: 1px solid #333;
}

/* Link di dalam Dropdown */
.nav-dropdown-content a {
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    transition: 0.3s;
}

.nav-dropdown-content a:hover {
    color: #fbbf24; /* Warna kuning senada dengan tema Anda */
    background-color: rgba(255, 255, 255, 0.05);
}

/* Class untuk muncul (ditambah via JS) */
.show-dropdown {
    display: block;
}
/* ── Avatar profil navbar ── */
.avatar-circle {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid #FACC15; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: .9rem; color: white;
    overflow: hidden;
}
.avatar-circle img { width: 100%; height: 100%; object-fit: cover; }

.dd-nama {
    padding: 10px 16px 8px; font-size: .78rem; color: #9ca3af;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.dd-nama strong { display: block; color: white; font-size: .88rem; }

.dd-divider { height: 1px; background: rgba(255,255,255,.08); margin: 4px 0; }

/* TAMBAHKAN INI AGAR DROPDOWN MUNCUL SAAT DI-HOVER */
.nav-dropdown:hover .nav-dropdown-content {
    display: block !important;
}
/* === MOBILE NAVBAR FIX === */
@media (max-width: 768px) {
    .nav-top {
        padding: 10px 16px;
    }

    .nav-top-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    /* Dropdown menu login di HP lebih rapi */
    .nav-dropdown-content {
        right: 0;
        left: auto;
        min-width: 140px;
    }

    /* Menu bawah scroll horizontal di HP */
    .nav-bottom {
        overflow-x: auto;
        scrollbar-width: none;
    }
    .nav-bottom::-webkit-scrollbar { display: none; }

    .nav-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 14px !important;
        padding: 6px 12px;
        white-space: nowrap;
    }

    .nav-links li a {
        padding: 0 !important;
    }
}
/* ===== TOMBOL CEK STATUS ===== */
.BtnStatus {
    position: relative;
    border: none;
    background-color: #1e1e1e;
    color: #fff;
    padding: 10px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    cursor: pointer;
    overflow: hidden;
  }
  .BtnStatus span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  .BtnStatus::before {
    content: "";
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    height: 100%;
    left: 0%;
    bottom: 0%;
    transform: translate(-100%, 100%);
    border-radius: inherit;
  }
  .BtnStatus svg {
    stroke: #aaaaaa;
    fill: none;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
  }
  .BtnStatus:hover::before {
    animation: shakeBackStatus 0.6s forwards;
  }
  .BtnStatus:hover svg {
    stroke: #000;
    fill: none;
    scale: 1.3;
  }
  .BtnStatus:active {
    box-shadow: none;
  }
  @keyframes shakeBackStatus {
    0%   { transform: translate(-100%, 100%); }
    50%  { transform: translate(20%, -20%); }
    100% { transform: translate(0%, 0%); }
  }