:root {
    /* Premium Identity Colors */
    --primary-green: #0e6612;
    --primary-green-dark: #07470a;
    --primary-green-light: #168a1a;
    --accent-gold: #d4af37;
    --accent-gold-light: #f5cf53;
    
    /* Soft UI Backgrounds */
    --bg-body: #f7f9f8;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.3);
    
    /* Elegant Typography */
    --text-main: #1e293b;
    --text-muted: #475569;
    --text-light: #f8fafc;
    
    /* Fluid Typography via clamp() */
    --fs-h1: clamp(2.2rem, 5vw + 1rem, 3.8rem);
    --fs-h2: clamp(1.8rem, 4vw + 0.5rem, 2.8rem);
    --fs-h3: clamp(1.3rem, 2.5vw + 0.3rem, 1.8rem);
    --fs-p: clamp(0.95rem, 1.5vw + 0.2rem, 1.1rem);
    
    /* Layout & Structure */
    --container-max: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows - Premium Depth */
    --shadow-soft: 0 4px 20px rgba(14, 102, 18, 0.04);
    --shadow-card: 0 10px 40px rgba(14, 102, 18, 0.08);
    --shadow-hover: 0 20px 50px rgba(14, 102, 18, 0.15);
    --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.3);
    --shadow-inner: inset 0 2px 4px rgba(255,255,255,0.5);
    
    /* Animations */
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

body, html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-body);
    color: var(--text-main);
    line-height: 1.7;
    font-size: var(--fs-p);
    -webkit-font-smoothing: antialiased;
    
    /* Minimalist Islamic Geometric Pattern (Subtle) */
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30 30 0zm0 15L15 30l15 15 15-15L30 15z' fill='%230e6612' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    background-attachment: fixed;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 5%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.text-center { text-align: center; }

h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--primary-green-dark);
}

/* --- Top Header --- */
.top-header {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
    padding: 15px 0;
    position: relative;
    z-index: 50;
    transition: all var(--transition-smooth);
}

.top-header img.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1));
}

.logo-fallback {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
}

/* --- Dynamic Sticky Navbar (Glassmorphism) --- */
.navbar {
    background-color: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid rgba(0,0,0,0.02);
}

.navbar.scrolled {
    background-color: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--glass-border);
    padding: 5px 0;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    transition: height var(--transition-smooth);
}

.navbar.scrolled .nav-container {
    height: 64px;
}

.mobile-logo-link {
    display: none;
}

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

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-item > a {
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: all var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item > a:hover, .nav-item.active > a {
    color: var(--primary-green);
    background-color: rgba(14, 102, 18, 0.05);
}

.chevron {
    font-size: 0.6em;
    transition: transform var(--transition-spring);
    color: var(--text-muted);
}

.nav-item:hover .chevron {
    transform: rotate(180deg);
    color: var(--primary-green);
}

/* --- Dropdown Glassmorphism --- */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(20px) scale(0.95);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 240px;
    box-shadow: var(--shadow-card);
    border-radius: var(--radius-md);
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-spring);
    border: 1px solid var(--glass-border);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.dropdown-menu li a {
    display: block;
    padding: 12px 18px;
    font-size: 0.95rem;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: rgba(14, 102, 18, 0.08);
    color: var(--primary-green);
    transform: translateX(6px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--primary-green);
    cursor: pointer;
    padding: 10px;
    position: absolute;
    right: 20px;
    z-index: 101;
    transition: transform var(--transition-smooth);
}

/* --- Hero Section & Slider --- */
.hero-section {
    padding: 20px 0 60px;
    position: relative;
}

.slider-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    aspect-ratio: 21 / 9;
    background-color: var(--primary-green-dark);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide.active {
    opacity: 1;
    visibility: visible;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.slide.active img {
    transform: scale(1);
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(7, 71, 10, 0.8) 0%, rgba(0,0,0,0) 60%);
    pointer-events: none;
    z-index: 2;
}

.hero-tagline {
    position: absolute;
    bottom: 12%;
    left: 8%;
    z-index: 10;
    color: var(--bg-white);
    transform: translateY(30px);
    opacity: 0;
    transition: all 1s ease-out 0.3s;
}

.slide.active ~ .hero-tagline {
    transform: translateY(0);
    opacity: 1;
}

.hero-tagline-label {
    display: inline-block;
    background: var(--accent-gold);
    color: var(--text-main);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tagline-title {
    font-size: var(--fs-h1);
    color: var(--bg-white);
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Slider Controls */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    width: 56px;
    height: 56px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    color: var(--primary-green-dark);
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-spring);
    opacity: 0;
    box-shadow: var(--shadow-soft);
}

.slider-wrapper:hover .slider-arrow {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.slider-arrow:hover {
    background: var(--bg-white);
    color: var(--primary-green);
    transform: translateY(-50%) scale(1.15);
    box-shadow: var(--shadow-hover);
}

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

.slider-dots {
    position: absolute;
    bottom: 30px;
    right: 8%;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 32px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: all var(--transition-smooth);
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.dot.active {
    background-color: var(--accent-gold);
    width: 48px;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* --- CTA Banner --- */
.cta-banner-section {
    padding: 40px 0;
    overflow: hidden;
}

.cta-banner-content {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: var(--radius-xl);
    padding: 60px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.cta-deco {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    pointer-events: none;
}

.cta-deco-1 { width: 300px; height: 300px; top: -100px; right: -50px; }
.cta-deco-2 { width: 150px; height: 150px; bottom: -50px; left: 10%; }
.cta-deco-3 { width: 200px; height: 200px; top: 20%; left: 40%; background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 70%); }

.cta-text {
    max-width: 60%;
    position: relative;
    z-index: 2;
}

.cta-eyebrow {
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 12px;
}

.cta-title {
    color: var(--bg-white);
    font-size: var(--fs-h2);
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-desc {
    color: var(--text-light);
    opacity: 0.9;
    font-size: 1.05rem;
}

.cta-actions {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Buttons with Magnetic/Hover Effects */
.cta-btn-gold, .cta-btn-outline {
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-spring);
    display: inline-block;
}

.cta-btn-gold {
    background: var(--accent-gold);
    color: var(--primary-green-dark);
    box-shadow: var(--shadow-gold);
}

.cta-btn-gold:hover {
    background: var(--accent-gold-light);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.4);
}

.cta-btn-outline {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--bg-white);
}

.cta-btn-outline:hover {
    background: var(--bg-white);
    color: var(--primary-green);
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

/* --- Values & Profile Section --- */
.values-profile-section {
    padding: 80px 0;
    background-color: transparent;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 50px 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255,255,255,0.8);
    transition: all var(--transition-spring);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.value-card::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(14,102,18,0.2), rgba(212,175,55,0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-hover);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 30px;
    background: linear-gradient(135deg, rgba(14,102,18,0.05), rgba(212,175,55,0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-spring);
    border: 1px solid rgba(14,102,18,0.1);
}

.value-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-green);
    border-color: var(--primary-green);
}

.icon-wrapper img, .icon-wrapper svg {
    width: 45px;
    height: 45px;
    transition: all var(--transition-smooth);
}

.value-card:hover .icon-wrapper svg,
.value-card:hover .icon-wrapper img {
    stroke: var(--bg-white) !important;
    fill: var(--bg-white) !important;
    filter: brightness(0) invert(1);
}

.value-title {
    font-size: var(--fs-h3);
    margin-bottom: 15px;
    color: var(--primary-green-dark);
}

.value-desc {
    color: var(--text-muted);
}

/* --- Scroll Reveal Classes (Intersection Observer) --- */
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Staggered Reveals for Grid Items */
.reveal-stagger-1 { transition-delay: 0.1s; }
.reveal-stagger-2 { transition-delay: 0.2s; }
.reveal-stagger-3 { transition-delay: 0.3s; }
.reveal-stagger-4 { transition-delay: 0.4s; }

/* ----------------------------------------------------- */

/* Enhanced Buttons Shine & Wipe Effect */
.cta-btn-gold, .cta-btn-outline, .btn-primary {
    position: relative;
    overflow: hidden;
    z-index: 1; /* Keep text above animation */
}

.cta-btn-gold::after, .cta-btn-outline::after, .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(110deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: all 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: -1;
}

.cta-btn-gold:hover::after, .cta-btn-outline:hover::after, .btn-primary:hover::after {
    left: 150%;
}


/* Generic Responsive adjustments to ensure things don't break */
@media (max-width: 992px) {
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-banner-content { flex-direction: column; text-align: center; gap: 30px; padding: 50px 20px; }
    .cta-text { max-width: 100%; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .mobile-logo-link { display: block; height: 40px; margin-right: auto; margin-left: 20px;}
    .mobile-logo-link img { max-height: 100%; }
    .top-header { display: none; }
}

@media (max-width: 768px) {
    .values-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-btn-gold, .cta-btn-outline { width: 100%; }
    .slider-wrapper { aspect-ratio: 16 / 9; }
    .hero-tagline { left: 4%; bottom: 8%; text-align: left; }
    .slider-arrow { display: none; }
}

/* --- Rest of Styles --- */
.profile-container { display: flex; align-items: center; gap: 60px; margin-top: 60px; padding: 40px; background: var(--glass-bg); border-radius: var(--radius-xl); box-shadow: var(--shadow-card); backdrop-filter: blur(10px); }
.profile-image-col { flex: 1; position: relative; }
.image-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-hover); }
.floating-badge { position: absolute; bottom: -20px; right: -20px; background: var(--accent-gold); padding: 20px; border-radius: 50%; box-shadow: var(--shadow-gold); text-align: center; color: var(--primary-green-dark); width: 120px; height: 120px; display: flex; flex-direction: column; justify-content: center; align-items: center; transform: rotate(10deg); transition: transform var(--transition-spring); }
.image-frame:hover .floating-badge { transform: rotate(0deg) scale(1.1); }
.badge-year { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.badge-text { font-size: 0.8rem; font-weight: 500; line-height: 1.2; }
.profile-text-col { flex: 1; }
.section-title { font-size: var(--fs-h2); color: var(--primary-green-dark); margin-bottom: 10px; }
.title-underline { width: 60px; height: 4px; background: var(--accent-gold); border-radius: 2px; margin-bottom: 25px; }
.profile-paragraph { margin-bottom: 15px; color: var(--text-muted); font-size: 1.05rem; }

.vmm-section { padding: 60px 0; }
.vmm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.vmm-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--bg-white); box-shadow: var(--shadow-card); transition: all var(--transition-spring); }
.vmm-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.vmm-img-wrapper img { width: 100%; height: 200px; object-fit: cover; transition: transform var(--transition-smooth); }
.vmm-card:hover .vmm-img-wrapper img { transform: scale(1.05); }
.vmm-content { padding: 30px; text-align: center; }
.vmm-title { font-size: var(--fs-h3); margin-bottom: 10px; }
.vmm-desc { color: var(--text-muted); }

.keunggulan-section { padding: 80px 0; background: linear-gradient(180deg, var(--bg-body), rgba(14,102,18,0.03)); }
.keunggulan-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.keunggulan-card { background: var(--bg-white); border-radius: var(--radius-md); padding: 30px 20px; text-align: center; box-shadow: var(--shadow-card); transition: var(--transition-spring); border-bottom: 4px solid transparent; }
.keunggulan-card:hover { transform: translateY(-8px); border-bottom-color: var(--accent-gold); box-shadow: var(--shadow-hover); }
.keunggulan-icon-wrap { width: 60px; height: 60px; margin: 0 auto 20px; background: rgba(14,102,18,0.1); border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--primary-green); transition: var(--transition-smooth); }
.keunggulan-card:hover .keunggulan-icon-wrap { background: var(--primary-green); color: var(--bg-white); transform: scale(1.1) rotate(5deg); }
.keunggulan-icon-wrap svg { width: 30px; height: 30px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: inherit; }
.keunggulan-title { font-size: 1.1rem; margin-bottom: 10px; color: var(--primary-green-dark); }
.keunggulan-desc { font-size: 0.9rem; color: var(--text-muted); }

.products-section { padding: 80px 0; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.product-card { background: var(--bg-white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition-spring); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); }
.product-img-wrapper img { width: 100%; height: auto; display: block; border-radius: var(--radius-lg) var(--radius-lg) 0 0; transition: transform var(--transition-smooth); }
.product-card:hover .product-img-wrapper img { transform: scale(1.00); }
.product-content { padding: 30px; display: flex; flex-direction: column; flex: 1; align-items: flex-start; }
.product-title { font-size: var(--fs-h3); margin-bottom: 15px; color: var(--primary-green-dark); }
.product-desc { color: var(--text-muted); margin-bottom: 25px; flex: 1; }
.btn-primary { display: inline-block; padding: 12px 24px; background: var(--primary-green); color: var(--bg-white); border-radius: 30px; font-weight: 600; transition: var(--transition-smooth); }
.btn-primary:hover { background: var(--primary-green-dark); box-shadow: 0 8px 20px rgba(14,102,18,0.3); transform: scale(1.05); }

.info-section { padding: 60px 0 100px; }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.info-poster { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); transition: var(--transition-spring); }
.info-poster:hover { transform: translateY(-8px) scale(1.02); box-shadow: var(--shadow-hover); }

.site-footer { background: var(--primary-green-dark); color: var(--text-light); padding: 60px 0 20px; position: relative; overflow: hidden; }
.site-footer::before { content: ''; position: absolute; inset: 0; opacity: 0.05; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0l30 30-30 30L0 30 30 0zm0 15L15 30l15 15 15-15L30 15z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E"); }
.footer-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; position: relative; z-index: 2; margin-bottom: 40px; }
.footer-map-col { height: 300px; border-radius: var(--radius-md); overflow: hidden; border: 2px solid rgba(255,255,255,0.1); }
.footer-title { color: var(--accent-gold); font-size: var(--fs-h3); margin-bottom: 25px; }
.contact-list li { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; font-size: 1rem; opacity: 0.9; }
.contact-list svg { width: 24px; height: 24px; color: var(--accent-gold); flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; text-align: center; position: relative; z-index: 2; }
.visitor-counter-container { display: inline-block; background: rgba(0,0,0,0.2); padding: 15px 30px; border-radius: var(--radius-lg); backdrop-filter: blur(5px); }
.visitor-label { display: block; margin-bottom: 10px; font-size: 0.9rem; color: var(--accent-gold); text-transform: uppercase; letter-spacing: 1px; }
.visitor-counter-scripts { display: flex; flex-direction: column; align-items: center; gap: 5px; }
.visitor-counter-scripts a { color: var(--text-light); text-decoration: underline; font-size: 0.8rem; opacity: 0.5; }

@media (max-width: 992px) { 
    .profile-container { flex-direction: column; text-align: center; } 
    .title-underline { margin: 15px auto 25px; } 
    .vmm-grid, .products-grid, .info-grid { grid-template-columns: repeat(2, 1fr); } 
    .keunggulan-grid { grid-template-columns: repeat(2, 1fr); } 
    .footer-grid { grid-template-columns: 1fr; } 
}
@media (max-width: 768px) { 
    .vmm-grid, .products-grid, .info-grid, .keunggulan-grid { grid-template-columns: 1fr; } 
    .floating-badge { width: 80px; height: 80px; bottom: 10px; right: 10px; } 
    .badge-year { font-size: 1.2rem; } 
    .badge-text { font-size: 0.6rem; } 
}