:root{--brand:#14a44d;--dark:#0b6b36;--accent:#06c167;--muted:#6b7280;--radius:12px}
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{font-family:Inter,system-ui,Arial,sans-serif;background:#f3fbf6;color:#05301a;line-height:1.6}
a{color:inherit;text-decoration:none}
.header{background:linear-gradient(90deg,var(--brand),#16b74b);padding:12px 18px;color:white;position:sticky;top:0;z-index:999}
.header .wrap{max-width:1200px;margin:0 auto;display:flex;align-items:center;justify-content:space-between;gap:12px}
.brand{display:flex;align-items:center;gap:12px}
.brand img{height:52px;border-radius:8px;background:white;padding:6px}
.brand .title{font-weight:800;letter-spacing:1px}
.nav a{margin-left:14px;color:rgba(255,255,255,0.95);font-weight:600}
.hotline{background:rgba(255,255,255,0.08);padding:6px 10px;border-radius:8px;font-weight:700}

.container{max-width:1100px;margin:20px auto;padding:0 16px}
.hero{display:flex;gap:18px;align-items:center;background:linear-gradient(180deg,#ffffff,#f0fff4);padding:18px;border-radius:12px}
.hero .left{flex:1}
.hero h1{font-size:22px;color:var(--dark)}
.hero p{color:var(--muted)}
.hero .cta{display:inline-block;margin-top:12px;background:var(--dark);color:white;padding:10px 14px;border-radius:10px;font-weight:800}
.hero img{width:45%;border-radius:12px;object-fit:cover;box-shadow:0 12px 30px rgba(6,80,34,0.08)}

/* slider */
.slider{position:relative;overflow:hidden;border-radius:12px}
.slides{display:flex;transition:transform .6s ease}
.slide{min-width:100%;height:320px;display:flex;align-items:center;justify-content:center;background:#000}
.slide img{width:100%;height:320px;object-fit:cover}
.slider .dots{position:absolute;left:50%;transform:translateX(-50%);bottom:10px;display:flex;gap:8px}
.slider .dot{width:10px;height:10px;border-radius:50%;background:rgba(255,255,255,0.6);cursor:pointer}
.slider .dot.active{background:var(--accent)}

/* cards */
.cards{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:14px;margin-top:14px}
.card{background:white;padding:12px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.06);transition:transform .2s}
.card:hover{transform:translateY(-6px)}
.card img{width:100%;height:140px;object-fit:cover;border-radius:8px}
.card h3{margin:8px 0}
.price{color:var(--dark);font-weight:800;margin-top:8px}

/* tables */
.table{background:white;padding:14px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.06)}
.table table{width:100%;border-collapse:collapse}
.table th,.table td{padding:10px;border:1px solid #eef7ee;text-align:center}
.table th{background:#f7fff7;color:var(--muted)}

/* form */
.form{background:white;padding:14px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.06)}
.form label{display:block;margin-top:8px;color:var(--muted);font-weight:700}
.form input,.form select{width:100%;padding:10px;margin-top:6px;border-radius:8px;border:1px solid #e6f3ea}
.form .btn{display:inline-block;margin-top:12px;background:var(--brand);color:white;padding:10px 14px;border-radius:10px;font-weight:800}

/* footer */
.footer{margin-top:24px;padding:18px;background:linear-gradient(90deg,var(--dark),#0b6b36);color:white;border-radius:8px;text-align:center}

/* floating whatsapp */
.fab{position:fixed;right:18px;bottom:18px;z-index:2000;display:flex;flex-direction:column;gap:10px}
.fab a{width:56px;height:56px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:linear-gradient(180deg,#25D366,#128C7E);color:white;box-shadow:0 8px 30px rgba(18,140,126,0.18);font-weight:800}

/* testimoni */
.testi{display:flex;gap:12px;align-items:center}
.testi .box{background:white;padding:12px;border-radius:12px;box-shadow:0 10px 30px rgba(0,0,0,0.06);width:100%}

/* animations */
.fade-up{opacity:0;transform:translateY(18px);transition:all .6s cubic-bezier(.2,.9,.2,1)}
.fade-up.show{opacity:1;transform:none}

/* responsive */
@media(max-width:900px){.hero{flex-direction:column} .hero img{width:100%} .nav{display:none} .slides .slide{height:220px}}