:root {
    --primary-dark: #064E3B;
    --primary-gold: #D4AF37;
    --primary-gold-light: #F3E5AB;
    --accent-green-soft: #D1FAE5;
    --text-dark: #111827;
    --text-soft: #4B5563;
    --bg-soft-green: #f0fdf4;
    --bg-soft-gold: #fdfaf0;
    --bg-dark-section: #053e2f;
    --bg-white: #ffffff;
    --text-white: #ffffff;
    --luxury-white: #FCFDFF;
    --glass: rgba(255, 255, 255, 0.85);
    --shadow-luxury: 0 25px 50px -12px rgba(6, 78, 59, 0.12);
    --transition-premium: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --border-radius-lux: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--luxury-white);
    color: var(--text-dark);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* Luxury Reveal & Keyframes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-premium);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@keyframes pulse-gold {
    0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7), 0 0 10px rgba(212, 175, 55, 0.5); }
    70% { box-shadow: 0 0 0 20px rgba(212, 175, 55, 0), 0 0 20px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0), 0 0 0px rgba(212, 175, 55, 0); }
}

@keyframes shimmer-gold {
    0% { transform: translateX(-150%) skewX(-25deg); }
    100% { transform: translateX(150%) skewX(-25deg); }
}

@keyframes luxury-glow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3)) brightness(1); }
    50% { filter: drop-shadow(0 0 50px rgba(212, 175, 55, 0.7)) brightness(1.2); }
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.bg-soft-green { background-color: var(--bg-soft-green); }
.bg-white { background-color: #ffffff; }

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

/* Navigation */
header {
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    background: var(--glass);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-premium);
}

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

.logo-icon {
    background: linear-gradient(145deg, var(--primary-dark), #065F46);
    width: 48px;
    height: 48px;
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(11,43,79,0.2);
    overflow: hidden;
}

.logo-icon i {
    font-size: 1.8rem;
    color: var(--primary-gold);
}

.logo-text {
    font-weight: 800;
    font-size: 1.6rem;
    background: linear-gradient(125deg, var(--primary-dark), #059669, var(--primary-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.logo-tag {
    font-size: 0.7rem;
    font-weight: 600;
    background: var(--primary-gold);
    color: var(--primary-dark);
    padding: 2px 10px;
    border-radius: 40px;
    margin-left: 8px;
    vertical-align: middle;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.2s;
    position: relative;
}

.nav-links a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.25s ease;
}

.nav-links a:hover:after { width: 100%; }
.nav-links a:hover { color: var(--primary-dark); }

.menu-toggle {
    display: none;
    font-size: 1.6rem;
    color: var(--primary-dark);
    cursor: pointer;
}

/* Hero Section */
.hero {
    padding: 80px 8% 50px;
    background: radial-gradient(circle at 70% 30%, var(--bg-soft-green) 0%, var(--luxury-white) 100%);
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    min-height: 90vh;
}

.hero-content { 
    flex: 1.2; 
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 100%;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    animation: luxury-glow 3s infinite ease-in-out;
}

.hero-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-gold);
    font-weight: 700;
    padding: 8px 24px;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    color: var(--primary-dark);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero h1 span {
    color: var(--primary-gold);
    background: linear-gradient(135deg, #D4AF37 0%, #F3E5AB 50%, #D4AF37 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 10px 20px rgba(212, 175, 55, 0.1);
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-soft);
    margin-bottom: 45px;
    max-width: 600px;
    line-height: 1.8;
    font-weight: 400;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), #0a7056);
    background-size: 200% auto;
    color: white;
    padding: 18px 42px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition-premium);
    box-shadow: 0 15px 35px rgba(6, 78, 59, 0.2);
    border: none;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 25px 45px rgba(6, 78, 59, 0.3);
}
.btn-outline-gold {
    background: transparent;
    border: 1.5px solid var(--primary-gold);
    color: var(--primary-dark);
    padding: 12px 32px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.2s;
}
.btn-outline-gold:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
}

.hero-image {
    flex: 1.2;
    text-align: right;
    animation: zoomIn 1.5s ease-out;
}
.hero-image img {
    max-width: 640px;
    width: 100%;
    filter: drop-shadow(0 30px 60px rgba(6, 78, 59, 0.2));
    border-radius: 40px;
    transition: var(--transition-premium);
}
.hero-image img:hover { 
    transform: translateY(-15px) scale(1.03); 
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 50px;
}
.section-header .subtitle {
    color: var(--primary-gold);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 16px;
}
.section-header p {
    color: #5a6e82;
    font-size: 1rem;
}

/* Cards */
.service-grid, .steps-grid, .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 20px;
}
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}
@media (max-width: 1200px) {
    .package-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .package-grid { grid-template-columns: 1fr; }
}
.service-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-lux);
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    transition: var(--transition-premium);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.15);
    border-color: var(--primary-gold);
}

.service-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-gold);
    transform: scaleX(0);
    transition: var(--transition-premium);
    transform-origin: left;
}

.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.12);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.service-icon i {
    font-size: 2rem;
    color: var(--primary-gold);
}
.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}
.service-card p { color: #4a5a6e; font-size: 0.9rem; }

/* Paket Parsel */
.package-card {
    background: #ffffff;
    border-radius: var(--border-radius-lux);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
    transition: var(--transition-premium);
    border: 1px solid rgba(212, 175, 55, 0.05);
}

.package-card:hover {
    transform: translateY(-12px) scale(1.01);
    box-shadow: 0 50px 90px rgba(6, 78, 59, 0.12);
    border-color: var(--primary-gold);
}

.package-card.float {
    animation: float 4s ease-in-out infinite;
}
.package-img {
    background: var(--bg-soft-green);
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.package-img i {
    font-size: 4rem;
    color: var(--primary-gold);
}
.package-content {
    padding: 24px 24px 32px;
}
.package-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 12px 0;
}
.package-price span {
    font-size: 1rem;
    font-weight: 400;
    color: #7e8c9e;
}
.package-features {
    list-style: none;
    margin: 20px 0;
}
.package-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}
.package-features i {
    color: var(--primary-gold);
    font-size: 0.8rem;
}

/* Steps */
.step-card {
    text-align: center;
    background: white;
    padding: 32px 20px;
    border-radius: 32px;
    box-shadow: var(--shadow-sm);
}
.step-number {
    width: 56px;
    height: 56px;
    background: var(--primary-dark);
    color: var(--primary-gold);
    font-weight: 800;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 60px;
    margin: 0 auto 20px;
}

/* Testimoni */
.testimonial-card {
    background: white;
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border-left: 6px solid var(--primary-gold);
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
}
.testimonial-author {
    font-weight: 700;
    color: var(--primary-dark);
}

/* Galeri */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}
.gallery-item {
    background: var(--bg-soft-green);
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s;
}
.gallery-item i {
    font-size: 3.5rem;
    color: var(--primary-gold);
    opacity: 0.7;
}
.gallery-item:hover {
    transform: scale(1.02);
    background: #e9dfcd;
}

/* CTA */
.cta-section {
    background: linear-gradient(125deg, var(--primary-dark), #065F46);
    border-radius: 48px;
    padding: 60px 48px;
    text-align: center;
    color: white;
    margin: 40px auto;
}
.cta-section h3 {
    font-size: 2.3rem;
    margin-bottom: 16px;
}
.btn-wa {
    background: #25D366;
    color: white;
    padding: 14px 38px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: 0.2s;
}
.btn-wa:hover {
    background: #20b85f;
    transform: scale(1.02);
}

footer {
    padding: 60px 5% 40px;
    text-align: center;
    background-color: var(--primary-dark);
    color: #ffffff;
}


/* Mobile Sticky Nav */
.mobile-sticky-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-dark);
    display: none;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    box-shadow: 0 -5px 25px rgba(0,0,0,0.2);
    z-index: 1100;
}

.mobile-nav-item {
    text-decoration: none;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 500;
    transition: 0.2s;
    flex: 1;
    opacity: 0.8;
}

.mobile-nav-item i {
    font-size: 1.25rem;
}

.mobile-nav-item.active {
    color: var(--primary-gold);
    opacity: 1;
    font-weight: 700;
}

@keyframes blink-gold {
    0%, 100% { opacity: 1; filter: brightness(1); }
    50% { opacity: 0.8; filter: brightness(1.5); }
}

.mobile-nav-item .katalog-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    background: var(--primary-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -35px;
    border: 2px solid var(--primary-gold);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
    animation: pulse-gold 2s infinite, blink-gold 2s infinite ease-in-out;
    overflow: hidden; /* For shimmer effect */
}

.mobile-nav-item .katalog-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer-gold 2.5s infinite;
}

.mobile-nav-item .katalog-icon-wrapper img {
    width: 90%;
    height: 90%;
    object-fit: contain;
    position: relative;
    z-index: 1;
}

.mobile-nav-item:hover .katalog-icon-wrapper {
    transform: scale(1.1);
}

@media (max-width: 1200px) {
    .hero { gap: 40px; padding: 120px 5% 60px; }
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 992px) {
    .hero { 
        flex-direction: column-reverse; 
        text-align: center; 
        padding-top: 130px !important; 
        min-height: auto;
    }
    .hero-image { margin-bottom: 40px; margin-top: 20px; }
    .hero-image img { max-width: 400px; }
    .hero p { margin-left: auto; margin-right: auto; font-size: 1.1rem; }
    .nav-links { display: none; flex-direction: column; background: white; position: absolute; top: 75px; left: 0; width: 100%; padding: 20px; box-shadow: 0 20px 30px rgba(0,0,0,0.08); border-radius: 0 0 28px 28px; gap: 18px; text-align: center; }
    .menu-toggle { display: block; }
    .section-header h2 { font-size: 1.8rem; }
    .mobile-sticky-nav { display: flex; }
    body { padding-bottom: 70px; } /* Space for sticky nav */
}

@media (max-width: 640px) {
    .hero { padding-top: 100px !important; }
    .hero h1 { font-size: 2.2rem; letter-spacing: -1px; }
    .hero p { font-size: 1rem; margin-bottom: 30px; }
    .hero-badge { font-size: 0.75rem; padding: 6px 16px; margin-bottom: 20px; }
    .hero-image img { max-width: 280px; }
    .cta-section { padding: 40px 24px; }
}

/* Package Card Enhancements */
.package-harian {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin: 5px 0 15px;
}
.package-harian span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-soft);
}

.btn-detail-parcel {
    width: 100%;
    background: var(--primary-dark);
    border: 1.5px solid var(--primary-dark);
    color: white;
    padding: 10px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-premium);
}

.btn-detail-parcel:hover {
    background: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: linear-gradient(160deg, var(--bg-soft-green) 0%, #ffffff 100%);
    border: 2px solid var(--primary-gold-light);
    width: 90%;
    max-width: 550px;
    max-height: 85vh;
    border-radius: 32px;
    position: relative;
    overflow-y: auto;
    padding: 40px;
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 30px 60px rgba(6, 78, 59, 0.15);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.2s;
}

.modal-close:hover {
    background: var(--primary-gold);
    color: white;
}

.modal-header {
    text-align: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    margin-top: 10px;
}

.modal-body h4 {
    color: var(--primary-dark);
    font-size: 1rem;
    margin: 20px 0 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 5px;
}

.modal-body ul {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.modal-body ul li {
    font-size: 0.85rem;
    color: var(--text-soft);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-body ul li:before {
    content: '•';
    color: var(--primary-gold);
    font-weight: bold;
}

.modal-footer {
    margin-top: 30px;
    text-align: center;
}

.modal-footer .keterangan-box {
    background: var(--bg-soft-green);
    padding: 15px;
    border-radius: 16px;
    font-size: 0.8rem;
    margin-bottom: 25px;
    border: 1px dashed var(--primary-gold);
}


@media (max-width: 600px) {
    .modal-card { padding: 30px 20px; }
    .modal-body ul { grid-template-columns: 1fr; }
    .modal-banner { 
        width: 100% !important;
        margin: 9px auto 20px !important; 
        height: auto !important;
    }
}
/* ZIO Custom Catalog Style (from katalog.jpg) */
.katalog-zio-section {
    padding: 80px 5%;
    background-color: #fdfaf0;
    position: relative;
}

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

.item-card-zio {
    background: #fffefb;
    border: 2px solid #a67c52;
    border-radius: 40px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-premium);
    box-shadow: 0 15px 35px rgba(166, 124, 82, 0.1);
}

.item-card-zio:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(166, 124, 82, 0.2);
}

.item-card-zio .item-img-zio {
    background: white;
    border-radius: 25px;
    padding: 20px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.02);
}

.item-card-zio .item-img-zio img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-card-zio .item-footer-zio {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.item-card-zio .item-title-zio {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    max-width: 60%;
}

.item-card-zio .item-price-badge-zio {
    background: var(--primary-dark);
    color: white;
    padding: 12px 20px;
    border-radius: 45px 12px 45px 12px;
    border: 2px solid #d4af37;
    text-align: center;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.1;
    min-width: 140px;
    box-shadow: 0 8px 20px rgba(6, 78, 59, 0.25);
}

.item-card-zio .item-price-badge-zio span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .katalog-zio-grid {
        grid-template-columns: 1fr;
    }
    .item-card-zio {
        padding: 20px;
    }
    .item-card-zio .item-title-zio {
        font-size: 1.2rem;
    }
    .item-card-zio .item-price-badge-zio {
        font-size: 0.95rem;
        min-width: 120px;
    }
}

/* Kategori 4 Style */
.katalog-v4-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.item-card-v4 {
    background: #fffefb;
    border: 2px solid #a67c52;
    border-radius: 40px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-premium);
    box-shadow: 0 15px 35px rgba(166, 124, 82, 0.1);
}

.item-card-v4:hover {
    transform: translateY(-10px);
}

.item-card-v4 .v4-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 20px;
    text-align: center;
}

.item-card-v4 .v4-img-zio {
    background: white;
    border-radius: 25px;
    padding: 15px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.02);
}

.item-card-v4 .v4-img-zio img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.item-card-v4 .v4-footer {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.item-card-v4 .v4-price-btn {
    flex: 1.2;
    background: var(--primary-dark);
    color: white;
    padding: 12px 10px;
    border-radius: 40px 10px 40px 10px;
    border: 2px solid #d4af37;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.1;
    box-shadow: 0 5px 15px rgba(6, 78, 59, 0.2);
}

.item-card-v4 .v4-price-btn span {
    display: block;
    font-size: 0.7rem;
    font-weight: 400;
    opacity: 0.8;
}

.item-card-v4 .v4-detail-btn {
    flex: 0.8;
    background: white;
    color: var(--primary-dark);
    border: 2px solid var(--primary-dark);
    padding: 12px 10px;
    border-radius: 10px 40px 10px 40px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.item-card-v4 .v4-detail-btn:hover {
    background: var(--primary-dark);
    color: white;
}

@media (max-width: 768px) {
    .item-card-v4 {
        padding: 25px;
    }
    .item-card-v4 .v4-title {
        font-size: 1.3rem;
    }
    .item-card-v4 .v4-footer {
        flex-direction: column;
        gap: 10px;
    }
}

/* Kategori 5 Style */
.katalog-v5-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .katalog-v5-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
        margin-top: 30px;
    }
}

.item-card-v5 {
    background: #fffefb;
    border: 2px solid #a67c52;
    border-radius: 40px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-premium);
    box-shadow: 0 15px 35px rgba(166, 124, 82, 0.1);
}

.item-card-v5:hover {
    transform: translateY(-10px);
}

.item-card-v5 .v5-img-zio {
    background: white;
    border-radius: 25px;
    padding: 10px;
    height: 280px; /* Increased height for "maksimal" */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.item-card-v5 .v5-img-zio img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.item-card-v5 .v5-info-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 15px;
}

.item-card-v5 .v5-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1.1;
    max-width: 60%;
}

.item-card-v5 .v5-price-badge {
    background: var(--primary-dark);
    color: white;
    padding: 8px 12px;
    border-radius: 35px 8px 35px 8px;
    border: 2px solid #d4af37;
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    line-height: 1.1;
    min-width: 110px;
}

.item-card-v5 .v5-price-badge span {
    display: block;
    font-size: 0.65rem;
    font-weight: 400;
}

.item-card-v5 .v5-detail-btn {
    width: 100%;
    background: var(--primary-dark);
    color: white;
    padding: 10px;
    border-radius: 10px;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: auto;
    border: 1px solid var(--primary-dark);
}

.item-card-v5 .v5-detail-btn:hover {
    background: var(--primary-gold);
    color: var(--primary-dark);
    border-color: var(--primary-gold);
}

@media (max-width: 768px) {
    .katalog-v5-section {
        padding: 30px 10px !important;
        border-radius: 25px !important;
        margin-bottom: 30px !important;
    }
    .category-divider h2 {
        font-size: 1.5rem !important;
    }
    .category-divider p {
        font-size: 0.85rem !important;
    }
    .item-card-v5 {
        padding: 20px;
        border-radius: 30px;
        border-width: 2px;
    }
    .item-card-v5 .v5-img-zio {
        height: 240px;
        border-radius: 20px;
        margin-bottom: 15px;
        padding: 10px;
    }
    .item-card-v5 .v5-title {
        font-size: 1.1rem;
        max-width: 70%;
        margin-bottom: 0;
    }
    .item-card-v5 .v5-info-row {
        flex-direction: row;
        align-items: flex-end;
        gap: 10px;
        margin-bottom: 15px;
    }
    .item-card-v5 .v5-price-badge {
        width: auto;
        padding: 8px 12px;
        font-size: 0.9rem;
        border-radius: 35px 8px 35px 8px;
        min-width: 110px;
    }
    .item-card-v5 .v5-detail-btn {
        padding: 12px;
        font-size: 0.9rem;
        border-radius: 10px;
    }
}

/* Keunggulan Section */
.keunggulan-section {
    margin-top: 80px;
    padding: 80px 40px;
    border-radius: 50px;
    background: #d4e9df;
    color: var(--primary-dark);
    border: 1px solid rgba(6, 78, 59, 0.1);
    position: relative;
    overflow: hidden;
}



.keunggulan-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--primary-dark);
}

.keunggulan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.keunggulan-card {
    background: var(--primary-dark);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 30px;
    border-radius: 30px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.keunggulan-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-5px);
}

.keunggulan-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gold);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-dark);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.keunggulan-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--primary-gold);
    margin: 0;
}

.keunggulan-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

@media (max-width: 1200px) {
    .keunggulan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .keunggulan-section {
        padding: 60px 20px;
    }
    .keunggulan-title {
        font-size: 2rem;
    }
    .keunggulan-grid {
        grid-template-columns: 1fr;
    }
}




