/* ================================================================
   HARDWARE & TOOLS — LANDING PAGE CSS v3
   Modern, cantik, tidak override .btn/.nav-link
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* { box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif !important; margin: 0; }

/* ---- NAVBAR ---- */
.navbar-landing { font-family: 'Poppins', sans-serif !important; }
.navbar .nav-link { font-weight: 500 !important; font-size: .9rem !important; transition: color .2s !important; }
.navbar-dark .nav-link:hover { color: #fbbf24 !important; }

/* ---- HERO SLIDER ---- */
.slider-item {
    min-height: 520px;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    display: flex !important;
    align-items: center !important;
    position: relative;
}
/* FIX tumpukan teks: hanya carousel-item.active yang visible */
.carousel-item { display: none !important; }
.carousel-item.active { display: flex !important; }
.carousel-caption {
    position: relative !important;
    left: auto !important; right: auto !important; bottom: auto !important;
    text-align: left !important;
    padding: 0 !important;
    max-width: 600px;
}
.carousel-caption h1 {
    font-size: 3rem !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
    margin-bottom: 16px !important;
    text-shadow: 0 2px 20px rgba(0,0,0,.5) !important;
}
.carousel-caption p {
    font-size: 1.05rem !important;
    font-weight: 400 !important;
    opacity: .9 !important;
    margin-bottom: 24px !important;
    text-shadow: 0 1px 8px rgba(0,0,0,.4) !important;
}
@media (max-width: 768px) {
    .slider-item { min-height: 320px; }
    .carousel-caption { text-align: center !important; }
    .carousel-caption h1 { font-size: 1.8rem !important; }
}

/* ---- STATS SECTION ---- */
.stats-section { background: #fff; padding: 60px 0; }
.stats-card {
    text-align: center;
    padding: 36px 20px;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,.07);
    transition: transform .3s, box-shadow .3s;
    border: 1px solid rgba(0,0,0,.04);
}
.stats-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0,0,0,.12); }
.stats-icon {
    width: 72px; height: 72px;
    border-radius: 20px !important;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.15);
}
.stats-icon.bg-warning { background: linear-gradient(135deg,#f59e0b,#b45309) !important; }
.stats-icon.bg-success { background: linear-gradient(135deg,#22c55e,#15803d) !important; }
.stats-icon.bg-info    { background: linear-gradient(135deg,#0ea5e9,#0369a1) !important; }
.stats-icon.bg-danger  { background: linear-gradient(135deg,#ef4444,#b91c1c) !important; }
.stats-number { font-size: 2.5rem; font-weight: 800; color: #0f172a; letter-spacing: -1px; }
.stats-label  { font-size: .875rem; font-weight: 500; color: #64748b; margin-top: 4px; }

/* ---- FEATURES SECTION ---- */
.features-section { background: #f8faff; padding: 80px 0; }
.feature-card {
    border-radius: 20px !important;
    border: 1px solid rgba(0,0,0,.05) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,.06) !important;
    transition: transform .3s, box-shadow .3s !important;
    padding: 32px 24px !important;
    background: #fff !important;
}
.feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(0,0,0,.12) !important;
}
.feature-icon-wrap {
    width: 64px; height: 64px;
    background: linear-gradient(135deg,#fef3c7,#fde68a);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.feature-icon-wrap i { font-size: 1.8rem; color: #b45309; }
.feature-title { font-size: 1rem; font-weight: 700; color: #0f172a; margin-bottom: 10px; }
.feature-desc  { font-size: .875rem; color: #64748b; line-height: 1.7; }

/* ---- SECTION TITLE ---- */
.section-title-wrap { text-align: center; margin-bottom: 50px; }
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg,#fef3c7,#fde68a);
    color: #b45309;
    font-size: .75rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.section-title { font-size: 2.2rem; font-weight: 800; color: #0f172a; margin-bottom: 12px; line-height: 1.2; }
.section-subtitle { font-size: 1rem; color: #64748b; max-width: 520px; margin: 0 auto; }

/* ---- PRODUCT CARD ---- */
.product-card {
    border-radius: 16px !important;
    border: 1px solid rgba(0,0,0,.06) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,.07) !important;
    transition: transform .3s, box-shadow .3s !important;
    overflow: hidden;
}
.product-card:hover { transform: translateY(-6px) !important; box-shadow: 0 18px 36px rgba(0,0,0,.12) !important; }

/* ---- CONTACT ICON ---- */
.contact-icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; border-radius: 12px;
}
.contact-icon.bg-warning { background: linear-gradient(135deg,#f59e0b,#b45309) !important; }

/* ---- FOOTER ---- */
footer a { transition: color .2s; text-decoration: none !important; }
footer .text-muted:hover { color: #fff !important; }
.footer-brand { font-size: 1.4rem; font-weight: 800; color: #fff; }

/* ---- SCROLL TO TOP (smooth anchor) ---- */
html { scroll-behavior: smooth; }
