:root {
    --primary-bg: #fff;
    --text-main: #1e1b4b;
    --text-muted: #64748b;
    --pink-accent: #f472b6;
    --font-inter: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    background: var(--primary-bg);
    color: var(--text-main);
    font-family: var(--font-inter);
    overflow-x: hidden;
}

/* --- NAVBAR FIX --- */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 8%;
    z-index: 2000;
    backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar .logo { height: 28px; z-index: 2100; }

.nav-menu { display: flex; align-items: center; gap: 30px; }

.nav-menu a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.nav-cta {
    background: var(--text-main);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 100px;
}

/* --- MOBILE NAVBAR --- */
.menu-toggle { display: none; flex-direction: column; gap: 6px; cursor: pointer; z-index: 2100; }
.menu-toggle .bar { width: 25px; height: 2px; background: var(--text-main); transition: 0.3s; }

@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    .nav-menu {
        position: fixed;
        top: 0; right: -100%;
        width: 100%; height: 100vh;
        background: #ffffff;
        flex-direction: column;
        justify-content: center;
        transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 2050; /* Di bawah toggle, di atas hero */
    }
    .nav-menu.active { right: 0; }
    .nav-menu a { font-size: 1.5rem; }
    
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* --- PINK MESH BACKGROUND --- */
.hero {
    height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center; position: relative; overflow: hidden;
}

.mesh-gradient {
    position: fixed; /* Tetap di layar meski di-scroll */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: -1; /* Di belakang semua konten */
    pointer-events: none; /* Supaya tidak menghalangi klik pada tombol */
}

.blob { position: absolute; border-radius: 50%; animation: move 15s infinite alternate; }
.one { width: 400px; height: 400px; background: #fdf2f8; top: -10%; left: 10%; }
.two { width: 500px; height: 500px; background: #fae8ff; bottom: -5%; right: 10%; animation-duration: 20s; }
.three { width: 350px; height: 350px; background: #fce7f3; top: 30%; right: 20%; animation-duration: 12s; }

@keyframes move {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 100px) scale(1.1); }
}

/* --- TYPOGRAPHY --- */
.hero-content { position: relative; z-index: 2; padding: 0 20px; }
.welcome { font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.75rem; color: var(--pink-accent); margin-bottom: 15px; }
.hero-content h1 { font-size: clamp(2.2rem, 8vw, 4rem); font-weight: 800; line-height: 1.1; letter-spacing: -2px; margin-bottom: 20px; }
.description { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 35px; }
#event-text { color: var(--pink-accent); font-weight: 700; border-bottom: 2px solid #fbcfe8; }

/* --- BUTTONS --- */
.btn-group { display: flex; gap: 15px; justify-content: center; }
.btn { padding: 15px 32px; border-radius: 100px; text-decoration: none; font-weight: 600; transition: 0.3s; }
.btn-primary { background: var(--text-main); color: white; }
.btn-secondary { border: 1px solid rgba(0,0,0,0.1); color: var(--text-main); }
.btn:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

@media (max-width: 480px) {
    .btn-group { flex-direction: column; width: 100%; align-items: center; }
    .btn { width: 80%; }
}

.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); opacity: 0.5; }
.mouse { width: 20px; height: 35px; border: 2px solid var(--text-main); border-radius: 20px; position: relative; }
.mouse::before { content: ""; width: 3px; height: 6px; background: var(--text-main); position: absolute; top: 6px; left: 50%; transform: translateX(-50%); border-radius: 2px; animation: scroll 2s infinite; }
@keyframes scroll { 0% { opacity: 1; top: 6px; } 100% { opacity: 0; top: 15px; } }

/* --- POPULAR SECTION --- */
.vr-popular-section {
    padding: 100px 8%;
    background: #ffffff;
    position: relative;
}

.vr-popular-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 50px;
}

.vr-popular-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: lowercase;
    letter-spacing: -2px;
    color: var(--text-main);
}

.vr-popular-header span {
    font-size: 1.2rem;
    color: var(--pink-accent);
    font-weight: 500;
    font-style: italic;
}

/* --- CATALOG GRID --- */
.vr-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.vr-catalog-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #f8fafc;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    aspect-ratio: 4/5; /* Membuat ukuran seragam & elegan */
}

.vr-catalog-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Efek Hover Web3 Premium */
.vr-catalog-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(30, 27, 75, 0.1);
}

.vr-catalog-item:hover img {
    transform: scale(1.08); /* Pergerakan gambar halus */
}


/* --- CATALOG FOOTER --- */
.vr-catalog-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 40px;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.vr-catalog-text {
    max-width: 500px;
}

.vr-catalog-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-main);
}

.vr-catalog-text p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 1rem;
}

/* Tombol Lihat Semua */
.vr-catalog-btn {
    display: inline-block;
    padding: 18px 35px;
    background: var(--text-main);
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    white-space: nowrap;
}

.vr-catalog-btn:hover {
    background: var(--pink-accent);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(244, 114, 182, 0.3);
}

/* --- RESPONSIVE POPULAR --- */
@media (max-width: 992px) {
    .vr-catalog-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .vr-popular-section {
        padding: 60px 6%;
    }
    
    .vr-popular-header h2 {
        font-size: 2.5rem;
    }

    .vr-catalog-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolom di tablet/mobile besar */
        gap: 15px;
    }
    
    .vr-catalog-item {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .vr-catalog-grid {
        grid-template-columns: 1fr; /* 1 kolom saja di HP kecil agar gambar besar */
    }
    
    .vr-catalog-btn {
        width: 100%;
        text-align: center;
    }
}

/* --- PROCESS SECTION --- */
.vr-process-section {
    padding: 120px 8%;
    background: transparent; /* UBAH JADI TRANSPARENT */
}

.vr-process-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.vr-process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.vr-process-step {
    padding: 40px;
    background: #f8fafc;
    border-radius: 32px;
    transition: 0.3s;
    border: 1px solid rgba(0,0,0,0.03);
}

.vr-process-step:hover {
    background: #fff;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.vr-process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Penomoran otomatis untuk step */
.vr-process-step { counter-increment: step-counter; }
.vr-process-step h4::before {
    content: "0" counter(step-counter);
    font-size: 0.8rem;
    color: var(--pink-accent);
    opacity: 0.6;
}

.vr-process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* --- DASHBOARD SECTION --- */
.vr-dashboard-section {
    padding: 100px 8%;
    background: transparent; /* HAPUS GRADIENT LAMA, JADI TRANSPARENT */
    position: relative;
    overflow: hidden;
}

.vr-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vr-dashboard-header {
    text-align: center;
    margin-bottom: 60px;
}

.vr-subtitle {
    color: var(--pink-accent);
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.vr-dashboard-header h2 {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
}

.vr-dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr; /* Gambar lebih besar dari teks */
    gap: 60px;
    align-items: center;
}

.vr-dashboard-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(30, 27, 75, 0.15);
    transition: transform 0.5s ease;
}

.vr-dashboard-image:hover img {
    transform: scale(1.02);
}

.vr-dashboard-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vr-info-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 10px;
}

.vr-info-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .vr-dashboard-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .vr-dashboard-info {
        text-align: left;
        max-width: 700px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .vr-process-section, .vr-dashboard-section {
        padding: 80px 6%;
    }
    
    .vr-process-grid {
        grid-template-columns: 1fr; /* Satu kolom di HP */
    }

    .vr-process-step {
        padding: 30px;
    }
}

/* --- DIGITAL GUESTBOOK SECTION --- */
.vr-guestbook-section {
    padding: 120px 8%;
    background: transparent; /* UBAH JADI TRANSPARENT */
    position: relative;
}

.vr-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vr-guestbook-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr; /* Info di kiri, gambar di kanan */
    gap: 80px;
    align-items: center;
}

/* --- INFO SIDE --- */
.vr-section-title {
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.vr-guestbook-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 40px;
}

.vr-gb-features {
    display: grid;
    gap: 30px;
}

.vr-gb-item {
    padding-left: 20px;
    border-left: 3px solid #fce7f3; /* Aksen pink muda */
    transition: 0.3s;
}

.vr-gb-item:hover {
    border-left: 3px solid var(--pink-accent);
}

.vr-gb-item h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 8px;
}

.vr-gb-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- IMAGE SIDE --- */
.vr-guestbook-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.vr-guestbook-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 30px;
    /* Shadow lembut namun luas agar terlihat sangat premium */
    box-shadow: 
        0 30px 60px rgba(0,0,0,0.08),
        0 10px 20px rgba(244, 114, 182, 0.05); 
    transition: transform 0.6s cubic-bezier(0.2, 1, 0.3, 1);
}

.vr-guestbook-image:hover img {
    transform: translateY(-15px) rotate(2deg); /* Sedikit tilt biar dinamis */
}

/* Dekorasi Tambahan (Opsional: Lingkaran Soft di belakang gambar) */
.vr-guestbook-image::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, #fae8ff 0%, transparent 70%);
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .vr-guestbook-grid {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .vr-guestbook-grid {
        grid-template-columns: 1fr; /* Tumpuk ke bawah */
        text-align: center;
    }

    .vr-gb-item {
        border-left: none;
        border-top: 1px solid #f1f5f9;
        padding: 20px 0 0 0;
        text-align: left;
    }

    .vr-guestbook-image {
        order: -1; /* Gambar muncul di atas teks pada mobile */
        margin-bottom: 30px;
    }
    
    .vr-guestbook-image img {
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .vr-guestbook-section {
        padding: 80px 6%;
    }
    
    .vr-section-title {
        font-size: 1.8rem;
    }
}

.vr-price-tag {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vr-price-tag span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--pink-accent);
    background: #fdf2f8; /* Pink sangat muda untuk label */
    padding: 6px 14px;
    border-radius: 100px;
    letter-spacing: 0;
}

/* Penyesuaian responsif agar teks tidak bertabrakan di HP */
@media (max-width: 768px) {
    .vr-price-tag {
        justify-content: center;
        font-size: 1.2rem;
    }
    
    .vr-price-tag span {
        font-size: 0.8rem;
    }
}

/* --- UNIFIED MESH BACKGROUND FOR 3 SECTIONS --- */
.vr-special-features-background {
    position: relative;
    width: 100%;
    /* Gunakan background dasar putih bersih atau sangat muda */
    background: #ffffff; 
    overflow: hidden; /* Penting agar blob tidak keluar jalur */
    z-index: 1;
}

/* Membuat Blob Mewah & Halus */
.vr-special-features-background::before,
.vr-special-features-background::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px); /* Blur tinggi untuk kesan 'mesh' yang soft */
    opacity: 0.4; /* Atur transparansi sesuai selera */
    z-index: -1; /* Di belakang konten */
    pointer-events: none;
}

/* Blob 1: Di area atas-kiri (sekitar section Process) */
.vr-special-features-background::before {
    width: 600px;
    height: 600px;
    background: #fae8ff; /* Fuchsia sangat muda */
    top: -10%;
    left: -10%;
    animation: blobOne 20s infinite alternate ease-in-out;
}

/* Blob 2: Di area tengah-kanan (sekitar section Dashboard) */
.vr-special-features-background::after {
    width: 700px;
    height: 700px;
    background: #fce7f3; /* Pink sangat muda */
    top: 30%;
    right: -15%;
    animation: blobTwo 25s infinite alternate ease-in-out;
}

/* Menambahkan Blob 3 secara manual di dalam wrapper jika kurang penuh (opsional tapi disarankan) */
.vr-special-features-background .vr-guestbook-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: #fdf2f8; /* Pink yang lebih muda lagi */
    bottom: -10%;
    left: 20%;
    filter: blur(120px);
    opacity: 0.3;
    z-index: -1;
    pointer-events: none;
}

/* Animasi Halus agar Blob bergerak pelan */
@keyframes blobOne {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 80px) scale(1.1); }
}

@keyframes blobTwo {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, 50px) scale(1.05); }
}

/* --- Penyesuaian Responsif --- */
@media (max-width: 768px) {
    .vr-special-features-background::before,
    .vr-special-features-background::after {
        width: 300px;
        height: 300px;
        filter: blur(60px); /* Kurangi blur di HP agar tidak terlalu berat */
    }
}

/* --- CTA CONSULTATION SECTION --- */
.vr-cta-consultation {
    padding: 120px 8%;
    background: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vr-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.vr-cta-content .vr-section-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
}

.vr-cta-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 45px;
    opacity: 0.9;
}

/* --- BUTTON WHATSAPP PREMIUM --- */
.vr-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: var(--text-main); /* Mengikuti warna utama web */
    color: #ffffff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.vr-btn-outline i {
    font-size: 1.4rem;
    color: #25d366; /* Warna khas WA agar tetap dikenali */
    animation: pulse-wa 2s infinite; /* Animasi detak pada logo */
}

.vr-btn-outline:hover {
    transform: translateY(-10px) scale(1.02);
    background: var(--pink-accent); /* Berubah ke pink saat hover */
    box-shadow: 0 20px 40px rgba(244, 114, 182, 0.3);
    color: #fff;
}

.vr-btn-outline:hover i {
    color: #fff; /* Logo jadi putih saat tombol jadi pink */
}

/* --- ANIMASI --- */
@keyframes pulse-wa {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Dekorasi Tambahan: Subtle Gradient di pojok */
.vr-cta-consultation::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #fce7f3 0%, transparent 70%);
    top: -150px;
    right: -150px;
    opacity: 0.5;
    z-index: 0;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .vr-cta-consultation {
        padding: 80px 6%;
    }

    .vr-cta-content .vr-section-title {
        font-size: 2rem;
    }

    .vr-btn-outline {
        width: 100%;
        justify-content: center;
        padding: 18px 25px;
    }
}

/* --- FAQ SECTION --- */
.vr-faq-section {
    padding: 120px 8%;
    background: linear-gradient(180deg, #ffffff 0%, #fcf8fa 100%);
    position: relative;
}

.vr-faq-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

.vr-faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* --- FAQ ITEM --- */
.vr-faq-item {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.vr-faq-item.active {
    border-color: var(--pink-accent);
    box-shadow: 0 20px 40px rgba(244, 114, 182, 0.08);
}

/* --- QUESTION BUTTON --- */
.vr-faq-question {
    width: 100%;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.vr-faq-question span:first-child {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    padding-right: 20px;
}

/* --- ICON ANIMATION --- */
.vr-faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--pink-accent);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff5f9;
}

.vr-faq-item.active .vr-faq-icon {
    transform: rotate(180deg);
    background: var(--pink-accent);
    color: #ffffff;
}

/* --- ANSWER BOX --- */
.vr-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
}

.vr-faq-item.active .vr-faq-answer {
    max-height: 500px; /* Nilai besar agar konten terlihat semua */
    padding-bottom: 25px;
}

.vr-faq-answer p {
    padding: 0 30px 10px 30px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .vr-faq-section {
        padding: 80px 6%;
    }

    .vr-faq-question {
        padding: 20px;
    }

    .vr-faq-question span:first-child {
        font-size: 1rem;
    }
}

/* --- FOOTER SECTION --- */
.vr-footer {
    padding: 80px 0 30px 0;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.vr-footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    padding: 0 8%;
}

.vr-footer-brand .logo-footer {
    height: 45px;
    margin-bottom: 20px;
}

.vr-footer-brand p {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 25px;
    max-width: 300px;
}

/* --- SOSIAL MEDIA ICON --- */
.vr-footer-social {
    display: flex;
    gap: 15px;
}

.vr-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.vr-footer-social a:hover {
    background: var(--pink-accent);
    color: #fff;
    transform: translateY(-5px);
}

/* --- FOOTER NAV --- */
.vr-footer-nav h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 25px;
}

.vr-footer-nav ul {
    list-style: none;
    padding: 0;
}

.vr-footer-nav ul li {
    margin-bottom: 12px;
}

.vr-footer-nav ul li a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.vr-footer-nav ul li a:hover {
    color: var(--pink-accent);
}

/* --- FOOTER BOTTOM --- */
.vr-footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #f1f5f9;
    padding-left: 8%;
    padding-right: 8%;
}

.vr-footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    opacity: 0.7;
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .vr-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .vr-footer-grid {
        grid-template-columns: 1fr; /* Tumpuk semua di mobile */
        text-align: center;
    }

    .vr-footer-brand p {
        margin: 0 auto 25px auto;
    }

    .vr-footer-social {
        justify-content: center;
        margin-bottom: 20px;
    }
    
    .vr-footer-nav h4 {
        margin-bottom: 15px;
    }
}

/* --- CONFIG & THEME --- */
:root {
    --vr-pink-soft: #fdf2f8;
    --vr-pink-accent: #be185d;
    --vr-text-dark: #1e293b;
    --vr-text-muted: #64748b;
    --vr-glass: rgba(255, 255, 255, 0.7);
}

/* --- BACKGROUND MESH BLOB --- */
.vr-katalog-wrapper {
    position: relative;
    /* Menggunakan base warna putih susu agar tidak terlalu silau */
    background-color: #fafbfc; 
    background-image: 
        /* Warna Rose Water yang sangat pudar di pojok kiri atas */
        radial-gradient(at 0% 0%, rgba(253, 242, 248, 0.5) 0, transparent 40%), 
        /* Warna Mist Blue di tengah atas untuk kesan netral */
        radial-gradient(at 50% 0%, rgba(241, 245, 249, 0.6) 0, transparent 50%),
        /* Warna Soft Lavender di pojok kanan atas */
        radial-gradient(at 100% 0%, rgba(245, 243, 255, 0.5) 0, transparent 40%),
        /* Tambahan aksen di bawah agar transisinya halus */
        radial-gradient(at 50% 100%, rgba(255, 255, 255, 1) 0, transparent 50%);
    min-height: 100vh;
    overflow-x: hidden;
}
/* --- BREADCRUMB --- */
.verusa-breadcrumb {
    padding: 120px 8% 20px;
    font-size: 0.9rem;
}

.verusa-breadcrumb a {
    text-decoration: none;
    color: var(--vr-text-muted);
    transition: 0.3s;
}

.verusa-breadcrumb a:hover { color: var(--vr-pink-accent); }
.verusa-sep { margin: 0 10px; color: #cbd5e1; }
.verusa-current { color: var(--vr-pink-accent); font-weight: 600; }

/* --- TYPOGRAPHY --- */
.verusa-katalog-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: var(--vr-text-dark);
    margin-bottom: 50px;
    letter-spacing: -1px;
}

/* --- CATALOG GRID --- */
.verusa-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 40px;
    padding: 0 8% 60px;
}

/* --- ITEM CARD --- */
.verusa-catalog-item {
    background: var(--vr-glass);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.verusa-catalog-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(190, 24, 93, 0.1);
    border-color: rgba(190, 24, 93, 0.2);
}

/* IMAGE WRAPPER */
.verusa-catalog-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.verusa-catalog-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.verusa-catalog-item:hover img {
    transform: scale(1.1);
}

/* INFO CONTENT */
.verusa-catalog-info {
    padding: 25px;
    text-align: center;
}

.verusa-catalog-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--vr-text-dark);
    margin-bottom: 15px;
}

/* BUTTON VIEW */
.verusa-btn-view {
    display: inline-block;
    padding: 12px 28px;
    background: var(--vr-pink-accent);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(190, 24, 93, 0.3);
}

.verusa-btn-view:hover {
    background: #9d174d;
    box-shadow: 0 6px 20px rgba(190, 24, 93, 0.4);
    transform: scale(1.05);
}

/* --- LOAD MORE --- */
.verusa-load-more-container {
    text-align: center;
    padding-bottom: 80px;
}

.verusa-btn-outline {
    background: transparent;
    border: 2px solid var(--vr-pink-accent);
    color: var(--vr-pink-accent);
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.verusa-btn-outline:hover {
    background: var(--vr-pink-accent);
    color: white;
}

/* --- ANIMATION --- */
@keyframes verusaFadeIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .verusa-katalog-title { font-size: 2rem; }
    .verusa-catalog-grid { 
        grid-template-columns: 1fr; 
        padding: 0 5% 40px;
    }
    .verusa-breadcrumb { padding: 100px 5% 20px; }
}

/* --- TESTIMONIAL SECTION --- */
.vnew-testimonial-section {
    padding: 100px 8%;
    position: relative;
    z-index: 1;
}

.vnew-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vnew-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.vnew-badge {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    color: var(--pink-accent);
    display: inline-block;
    margin-bottom: 10px;
}

.vnew-title {
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: var(--text-main);
}

/* --- BENTO GRID LAYOUT --- */
.vnew-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}

/* --- CARD STYLE --- */
.vnew-card {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.vnew-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: var(--pink-accent);
}

.vnew-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.vnew-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    display: block;
}

.vnew-name::before {
    content: "— ";
    color: var(--pink-accent);
}

/* --- BENTO SPANNING --- */
.vnew-card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: rgba(255, 255, 255, 0.6);
}

.vnew-card-large .vnew-text {
    font-size: 1.2rem;
    color: var(--text-main);
}

.vnew-card-medium {
    grid-column: span 1;
}

/* --- RESPONSIVE FIX --- */
@media (max-width: 1024px) {
    .vnew-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vnew-testimonial-section {
        padding: 60px 5%;
    }
    
    .vnew-bento-grid {
        grid-template-columns: 1fr; /* Stacked on mobile */
    }

    .vnew-card-large {
        grid-column: span 1;
        grid-row: span 1;
    }

    .vnew-card {
        padding: 25px;
        border-radius: 24px;
    }
}