* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    background: linear-gradient(145deg, #e9f9ef 0%, #cfe9dc 100%);
    color: #1a2e24;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Dekorasi latar belakang (blur abstract) */
.bg-blob {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(80, 200, 120, 0.25) 0%, rgba(60, 160, 100, 0) 70%);
    border-radius: 50%;
    filter: blur(70px);
    z-index: -2;
    pointer-events: none;
}

.bg-blob-2 {
    position: fixed;
    bottom: -15%;
    left: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 130, 80, 0.2) 0%, rgba(20, 100, 60, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: -2;
    pointer-events: none;
}

/* navbar modern */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(16px);
    box-shadow: 0 8px 24px rgba(0, 32, 16, 0.08);
    z-index: 100;
    border-bottom: 1px solid rgba(70, 150, 100, 0.25);
}

.nav-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo i {
    font-size: 2rem;
    background: linear-gradient(135deg, #1f6e43, #2b8c5a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.05));
}

.nav-logo h2 {
    font-size: 1.65rem;
    font-weight: 700;
    background: linear-gradient(125deg, #166534, #2d8c5a);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.3px;
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.nav-item {
    text-decoration: none;
    font-weight: 600;
    padding: 0.55rem 1.2rem;
    border-radius: 40px;
    color: #1a3a2c;
    transition: all 0.25s ease;
    font-size: 0.95rem;
    background: transparent;
}

.nav-item:hover {
    background: rgba(50, 130, 85, 0.12);
    color: #0f462f;
    transform: translateY(-2px);
}

.nav-item.active {
    background: #1f6e43;
    color: white;
    box-shadow: 0 6px 12px -6px rgba(30, 110, 60, 0.4);
}

/* quick menu (mini-menu) gaya pill modern */
.top-mini-menu {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px auto 12px auto;
    max-width: 900px;
    padding: 0 1rem;
}

.mini-item {
    text-decoration: none;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
    padding: 8px 20px;
    border-radius: 60px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #1b4d3a;
    transition: 0.2s ease;
    border: 1px solid rgba(50, 130, 80, 0.3);
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.mini-item:hover {
    background: #2b8c5a;
    color: white;
    border-color: #2b8c5a;
    transform: translateY(-3px);
    box-shadow: 0 8px 16px -8px rgba(30, 90, 50, 0.4);
}

.mini-item.active-mini {
    background: #1f6e43;
    color: white;
    border-color: #1f6e43;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* main container */
.main-container {
    max-width: 1280px;
    margin: 20px auto 60px auto;
    padding: 0 1.8rem;
}

.section {
    width: 100%;
}

/* hero */
.hero-section {
    text-align: center;
    margin: 2rem 0 2.8rem 0;
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.gradient-text {
    background: linear-gradient(125deg, #146b3a, #34b07e, #1f844f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-sub {
    font-size: 1.2rem;
    color: #2c5542;
    max-width: 650px;
    margin: 0 auto;
    background: rgba(255,255,240,0.5);
    backdrop-filter: blur(4px);
    padding: 0.8rem 1.5rem;
    border-radius: 60px;
    font-weight: 500;
}

.wave-separator {
    height: 4px;
    background: linear-gradient(90deg, transparent, #50b882, #2b8c5a, #50b882, transparent);
    width: 70%;
    margin: 1rem auto 0.5rem auto;
    border-radius: 4px;
}

/* menu grid cards */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 28px;
    margin-top: 2rem;
}

.menu-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(2px);
    border-radius: 32px;
    padding: 2rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    border: 1px solid rgba(70, 160, 110, 0.3);
    box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.menu-card:hover {
    transform: translateY(-12px) scale(1.02);
    background: white;
    border-color: #48b27a;
    box-shadow: 0 32px 44px -20px rgba(30, 90, 55, 0.4);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(145deg, #238b57, #136e42);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    color: white;
    font-size: 2.4rem;
    box-shadow: 0 16px 24px -12px rgba(0, 80, 40, 0.3);
    transition: 0.2s;
}

.menu-card:hover .card-icon {
    transform: scale(0.96);
    background: linear-gradient(145deg, #2f9e68, #1b784a);
    box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.menu-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1d4435;
    margin-bottom: 0.5rem;
}

.menu-card p {
    color: #4a6b5c;
    font-weight: 500;
    font-size: 0.9rem;
}

.card-arrow {
    display: inline-block;
    margin-top: 1rem;
    color: #2b8c5a;
    opacity: 0;
    transform: translateX(-8px);
    transition: all 0.3s ease;
    font-size: 1rem;
}

.menu-card:hover .card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ripple effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(60, 160, 100, 0.5) 0%, rgba(60, 160, 100, 0.1) 70%);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

/* cta wrapper */
.cta-wrapper {
    display: flex;
    justify-content: center;
    margin: 3rem 0 2rem 0;
}

.cta-card {
    background: rgba(255, 255, 245, 0.7);
    backdrop-filter: blur(6px);
    border-radius: 48px;
    padding: 0.8rem 2rem;
    text-align: center;
    border: 1px solid #98d9b5;
    max-width: 550px;
}

.cta-card p {
    font-weight: 500;
    color: #1f543f;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cta-card p i {
    margin: 0 8px;
    color: #2e8b57;
}

.btn-explore {
    background: #1f6e43;
    border: none;
    color: white;
    padding: 12px 28px;
    border-radius: 40px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 6px 14px rgba(0,0,0,0.1);
    text-decoration: none;
}

.btn-explore:hover {
    background: #135a39;
    transform: scale(1.02);
    box-shadow: 0 12px 20px -8px rgba(30, 80, 50, 0.4);
}

/* stats section */
.stats-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 3rem 0 1rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
    border-radius: 60px;
}

.stat-item {
    text-align: center;
    padding: 0.5rem 1rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #1f6e43;
    letter-spacing: -0.5px;
}

.stat-label {
    font-size: 0.85rem;
    color: #2c5542;
    font-weight: 500;
    margin-top: 0.25rem;
}

/* footer */
.footer {
    background: rgba(20, 55, 40, 0.85);
    backdrop-filter: blur(10px);
    margin-top: 60px;
    padding: 2rem 1.5rem;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    color: #e2f0e9;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-links a {
    color: #c6ecd9;
    text-decoration: none;
    margin: 0 12px;
    transition: 0.2s;
}

.footer-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.8rem;
    opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 780px) {
    .nav-content {
        flex-direction: column;
        padding: 0.8rem 1.2rem;
    }
    .nav-menu {
        justify-content: center;
    }
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-sub {
        font-size: 1rem;
    }
    .menu-grid {
        gap: 20px;
    }
    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .menu-card h3 {
        font-size: 1.5rem;
    }
    .stats-section {
        gap: 1.5rem;
        border-radius: 40px;
    }
    .stat-number {
        font-size: 1.6rem;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-container {
        padding: 0 1.2rem;
    }
    .hero-title {
        font-size: 1.9rem;
    }
    .mini-item {
        padding: 6px 14px;
        font-size: 0.75rem;
    }
    .cta-card {
        padding: 0.8rem 1.2rem;
    }
    .btn-explore {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
}

/* Animasi tambahan */
@keyframes floatSoft {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-6px); }
}

.glow-card {
    transition: all 0.3s;
}