/* ================================================
   PUPUK ZEFA SEJAHTERA - ULTRA MOBILE FRIENDLY STYLES
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --green-50: #f0fdf4;
    --green-100: #dcfce7;
    --green-200: #bbf7d0;
    --green-600: #16a34a;
    --green-700: #15803d;
    --green-800: #14532d;
    --gold-500: #d97706;
    --gold-600: #b45309;
    --bg-main: #f8faf8;
    --bg-card: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 6px 18px rgba(22, 163, 74, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.06);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --transition: all 0.25s ease-out;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-primary);
    line-height: 1.5;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

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

h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; color: var(--text-primary); }

.gradient-text {
    background: linear-gradient(135deg, #15803d 0%, #16a34a 50%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-text { color: var(--gold-600); }

/* NAVBAR */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 10px 0; background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color); transition: var(--transition);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo-link { display: inline-flex; align-items: center; text-decoration: none; }
.nav-logo-img { height: 38px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a { color: var(--text-secondary); font-weight: 600; font-size: 0.9rem; }
.nav-links a:hover { color: var(--green-600); }
.nav-wa-btn {
    background: linear-gradient(135deg, #25D366, #128C7E); color: #fff !important;
    padding: 8px 16px; border-radius: 50px; font-weight: 700 !important; font-size: 0.85rem !important;
    display: flex; align-items: center; gap: 6px; box-shadow: 0 3px 12px rgba(37, 211, 102, 0.25);
}

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px;
    border-radius: var(--radius-md); font-family: 'Outfit', sans-serif; font-weight: 700;
    cursor: pointer; border: none; transition: var(--transition); text-align: center; font-size: 1rem;
}
.btn-wa {
    background: linear-gradient(135deg, #25D366, #128C7E); color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3); font-size: 1.05rem; padding: 14px 28px;
    border-radius: var(--radius-lg); width: 100%;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45); }
.btn-outline { background: #fff; color: var(--green-700); border: 2px solid var(--green-600); width: 100%; }
.btn-outline:hover { background: var(--green-50); }

/* HERO */
.hero { padding: 100px 0 40px; background: linear-gradient(180deg, #f0fdf4 0%, #f8faf8 100%); }
.hero-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 32px; align-items: center; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 6px; background: #dcfce7;
    border: 1px solid #bbf7d0; padding: 6px 14px; border-radius: 50px;
    font-size: 0.78rem; font-weight: 700; color: var(--green-800); margin-bottom: 14px;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--green-600); border-radius: 50%; }
.hero-title { font-size: clamp(1.8rem, 3.8vw, 3rem); font-weight: 900; margin-bottom: 8px; color: #0f172a; line-height: 1.2; }
.hero-subtitle { font-size: 0.98rem; color: var(--text-secondary); margin-bottom: 24px; line-height: 1.6; }
.hero-stats { display: flex; gap: 16px; margin-bottom: 24px; background: #fff; padding: 16px; border-radius: var(--radius-lg); border: 1px solid var(--border-color); justify-content: space-around; }
.hero-stat { text-align: center; }
.hero-stat .number { font-family: 'Outfit', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--green-700); line-height: 1.1; }
.hero-stat .label { font-size: 0.75rem; color: var(--text-muted); font-weight: 600; margin-top: 2px; }
.hero-stat-divider { width: 1px; background: var(--border-color); }
.hero-cta { display: flex; flex-direction: column; gap: 12px; }

.hero-card-preview {
    background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    padding: 20px; box-shadow: var(--shadow-md);
}

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 36px; }
.section-tag {
    display: inline-block; background: var(--green-100); color: var(--green-800);
    padding: 5px 14px; border-radius: 50px; font-size: 0.75rem; font-weight: 800;
    letter-spacing: 0.5px; text-transform: uppercase; margin-bottom: 10px;
}
.section-title { font-size: clamp(1.5rem, 3vw, 2.4rem); font-weight: 900; margin-bottom: 12px; line-height: 1.3; }
.section-desc { font-size: 0.92rem; color: var(--text-secondary); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* PRODUCT SECTION */
.products { padding: 50px 0; }
.product-card-large {
    background: #fff; border: 1px solid var(--border-color); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); margin-bottom: 36px; overflow: hidden;
}
.product-header-banner {
    background: linear-gradient(135deg, #15803d, #166534); color: #fff;
    padding: 20px; display: flex; flex-direction: column; gap: 8px;
}
.product-header-banner h3 { font-size: 1.4rem; color: #fff; font-weight: 900; line-height: 1.2; }
.product-header-banner .badge { align-self: flex-start; background: #fef08a; color: #854d0e; padding: 4px 12px; border-radius: 50px; font-weight: 800; font-size: 0.75rem; }

.product-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 20px; }

.detail-box { background: var(--bg-main); border: 1px solid var(--border-color); border-radius: var(--radius-md); padding: 16px; margin-bottom: 14px; }
.detail-box-title { font-size: 0.95rem; font-weight: 800; color: var(--green-800); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }

.spec-list { list-style: none; }
.spec-list li { padding: 6px 0; border-bottom: 1px dashed var(--border-color); font-size: 0.88rem; color: var(--text-secondary); display: flex; gap: 8px; line-height: 1.5; }
.spec-list li:last-child { border-bottom: none; }

.usage-step { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; }
.step-num { width: 24px; height: 24px; background: var(--green-600); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.75rem; flex-shrink: 0; }

.product-cta-bar {
    background: #f8faf8; border-top: 1px solid var(--border-color); padding: 16px 20px;
    display: flex; flex-direction: column; gap: 12px; text-align: center;
}

/* WHY US */
.why-us { padding: 50px 0; background: #fff; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.feature-card {
    background: var(--bg-main); border: 1px solid var(--border-color); border-radius: var(--radius-md);
    padding: 20px 16px; text-align: center;
}
.feature-icon { font-size: 1.8rem; margin-bottom: 10px; }
.feature-title { font-size: 1rem; font-weight: 800; margin-bottom: 6px; color: var(--text-primary); }
.feature-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.5; }

/* TESTIMONIALS */
.testimonials { padding: 50px 0; }
.testimonial-stars { color: #d97706; font-size: 1rem; margin-bottom: 8px; }

/* CTA BOX */
.cta-section { padding: 50px 0; }
.cta-box {
    background: linear-gradient(135deg, #15803d, #14532d); color: #fff;
    border-radius: var(--radius-lg); padding: 32px 16px; text-align: center;
}
.cta-title { font-size: clamp(1.4rem, 2.8vw, 2.2rem); font-weight: 900; color: #fff; margin-bottom: 12px; line-height: 1.3; }
.cta-desc { font-size: 0.92rem; color: #dcfce7; max-width: 500px; margin: 0 auto 24px; line-height: 1.6; }

/* FOOTER */
.footer { background: #0f172a; color: #94a3b8; padding: 40px 0 20px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 24px; margin-bottom: 32px; }
.footer-brand .logo-text { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; color: #4ade80; margin-bottom: 8px; }
.footer-heading { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.5px; text-transform: uppercase; color: #4ade80; margin-bottom: 12px; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a { color: #cbd5e1; font-size: 0.85rem; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 20px; text-align: center; font-size: 0.78rem; color: #64748b; }

/* FLOATING WA MOBILE BUTTON */
.floating-wa {
    position: fixed; bottom: 16px; right: 16px; z-index: 999;
    display: flex; align-items: center; gap: 8px; background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff; padding: 12px 18px; border-radius: 50px; font-weight: 800; font-size: 0.88rem;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ANIMATION */
.animate-on-scroll { opacity: 0; transform: translateY(16px); transition: opacity 0.4s ease, transform 0.4s ease; }
.animate-on-scroll.animated { opacity: 1; transform: translateY(0); }

/* TRANSISI ORGANIK STYLES */
.transisi-journey-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.transisi-arrow {
    text-align: center;
    font-size: 1.6rem;
    color: #16a34a;
    font-weight: 900;
    margin: -4px 0;
}

/* TRANSISI ORGANIK SECTION */
.section-transisi {
    padding: 50px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #fefce8 50%, #f0fdf4 100%);
    border-top: 1px solid #dcfce7;
    border-bottom: 1px solid #dcfce7;
}

/* TRANSISI STATS GRID — vertikal di mobile, horizontal di desktop */
.transisi-stats-grid {
    background: #fff;
    border: 1px solid #dcfce7;
    border-radius: 20px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(22, 163, 74, 0.07);
}
.stats-center-item { /* border hanya di desktop, hilang di mobile */ }

/* TESTIMONI PHOTO GRID — 1 kolom di mobile */
.testimoni-photo-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
}

/* ================================================
   RESPONSIVE BREAKPOINTS (DESKTOP & MOBILE)
   ================================================ */

@media (min-width: 768px) {
    .container { padding: 0 24px; }
    .hero { padding: 120px 0 60px; }
    .hero-content { grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
    .hero-cta { flex-direction: row; }
    .btn-wa, .btn-outline { width: auto; }
    .product-content-grid { grid-template-columns: 1fr 1fr; padding: 32px; gap: 32px; }
    .product-header-banner { padding: 28px 32px; flex-direction: row; }
    .product-cta-bar { flex-direction: row; text-align: left; padding: 20px 32px; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
    .cta-box { padding: 56px 40px; }
    .section-transisi { padding: 80px 0; }

    .transisi-journey-grid {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr;
        align-items: center;
        gap: 16px;
        margin-bottom: 48px;
    }
    .transisi-arrow { font-size: 2rem; margin: 0; }

    .transisi-stats-grid {
        flex-direction: row;
        padding: 36px 40px;
        gap: 32px;
    }
    .transisi-stats-grid > div { flex: 1; }
    .stats-center-item {
        border-left: 1px solid #e2e8f0;
        border-right: 1px solid #e2e8f0;
        padding: 0 24px;
    }

    .testimoni-photo-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .container { padding: 0 16px; }
    .nav-links { display: none; }
    .hero-content { grid-template-columns: 1fr; }
    .product-content-grid { grid-template-columns: 1fr; padding: 16px; }
    .features-grid { grid-template-columns: 1fr; }
    .product-img-box img { max-height: 280px; width: 100%; object-fit: contain; }
    .hero-stats { flex-direction: column; gap: 8px; }
    .hero-stat-divider { display: none; }
    .hero-cta { flex-direction: column; }
    .btn-wa, .btn-outline { width: 100%; justify-content: center; }
}

/* ================================================
   ADMIN PANEL & LOGIN STYLES (LIGHT MODE PREMIUM)
   ================================================ */

.admin-body {
    background-color: #f1f5f9;
    min-height: 100vh;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* LOGIN PAGE (LIGHT MODE) */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
    background: linear-gradient(135deg, #f0fdf4 0%, #e2e8f0 100%);
}

.login-card {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    border-radius: var(--radius-xl);
    padding: 40px 36px;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 40px -15px rgba(15, 23, 42, 0.1), 0 0 15px rgba(22, 163, 74, 0.08);
}

.login-card .logo {
    text-align: center;
    margin-bottom: 24px;
}

.login-card .brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #15803d;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.login-card .sub {
    font-size: 0.85rem;
    color: #64748b;
}

.login-card h2 {
    font-size: 1.4rem;
    color: #0f172a;
    margin-bottom: 6px;
    text-align: center;
}

.login-card p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    color: #475569;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: #ffffff;
    border: 1.5px solid #cbd5e1;
    border-radius: var(--radius-md);
    color: #0f172a;
    font-size: 0.95rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-input:focus {
    outline: none;
    border-color: #16a34a;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.15);
    background: #ffffff;
}

.form-input::placeholder {
    color: #94a3b8;
}

.btn-primary {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    padding: 14px 24px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #15803d, #14532d);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.35);
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.alert-error {
    background: #fef2f2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.alert-success {
    background: #f0fdf4;
    border: 1px solid #86efac;
    color: #166534;
}

/* ADMIN DASHBOARD LAYOUT (LIGHT MODE) */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background-color: #f8fafc;
}

.admin-sidebar {
    width: 260px;
    background: #ffffff;
    border-right: 1px solid #e2e8f0;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.admin-sidebar .brand {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    color: #15803d;
    margin-bottom: 2px;
}

.admin-sidebar .sub {
    font-size: 0.78rem;
    color: #64748b;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f1f5f9;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    color: #475569;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    margin-bottom: 6px;
    transition: var(--transition);
}

.admin-nav-item svg {
    width: 20px !important;
    height: 20px !important;
    flex-shrink: 0;
}

.admin-nav-item:hover {
    background: #f0fdf4;
    color: #15803d;
}

.admin-nav-item.active {
    background: linear-gradient(135deg, #16a34a, #15803d);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.2);
}

.admin-main {
    flex: 1;
    padding: 32px 40px;
    overflow-y: auto;
    background: #f8fafc;
}

.admin-header {
    margin-bottom: 28px;
}

.admin-header h1 {
    color: #0f172a;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.admin-header p {
    color: #64748b;
    font-size: 0.95rem;
}

/* STAT CARDS */
.admin-stat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 28px;
}

.admin-stat {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    transition: var(--transition);
}

.admin-stat:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: #cbd5e1;
}

.admin-stat .stat-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #15803d;
    line-height: 1;
    margin-bottom: 8px;
}

.admin-stat .stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #64748b;
}

/* CARDS & TABLES */
.admin-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.admin-card h3 {
    font-size: 1.2rem;
    color: #0f172a;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
}

.admin-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.78rem;
    font-weight: 800;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
}

.admin-table td {
    padding: 14px 16px;
    font-size: 0.9rem;
    color: #334155;
    border-bottom: 1px solid #f1f5f9;
}

.admin-table tr:hover td {
    background: #f8fafc;
}

/* BUTTON UTILITIES */
.btn-sm {
    padding: 6px 14px;
    font-size: 0.82rem;
    border-radius: var(--radius-sm);
}

.btn-outline {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
}

.btn-outline:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.badge-status {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    display: inline-block;
}

.badge-status.active {
    background: #dcfce7;
    color: #15803d;
}

.badge-status.inactive {
    background: #fee2e2;
    color: #991b1b;
}

@media (max-width: 991px) {
    .admin-layout {
        flex-direction: column;
    }
    .admin-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }
    .admin-main {
        padding: 20px 16px;
    }
}



