/* ========== style.css ========== */
/* File CSS terpisah untuk website perusahaan hydraulic */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.5;
    scroll-behavior: smooth;
    background-color: #f8fafc;
}

/* ----- NAVBAR STICKY & DESIGN ----- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 0.9rem 5%;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Logo + Nama Perusahaan dengan GAMBAR */
.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.logo-area:hover .logo-img {
    transform: scale(1.03);
}

.company-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.3px;
    background: linear-gradient(135deg, #0f3b5c, #1e6f5c);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: #1e2a3e;
    transition: 0.2s;
    position: relative;
    padding-bottom: 5px;
    display: inline-block;
}

.nav-link:hover {
    color: #1e6f5c;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2.5px;
    background: #1e6f5c;
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ===== DROPDOWN PRODUK MODERN ===== */
/* Dropdown container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Tombol dropdown */
.dropbtn {
    background-color: transparent;
    color: #1e2a3e; /* sesuaikan dengan warna teks navbar Anda */
    font-size: 16px;
    border: none;
    cursor: pointer;
    padding: 8px 12px;
    font-family: inherit;
}

.dropbtn:hover {
    color: #1e6f5c;
}

.dropdown-content {
    padding: 10px 16px;
    font-weight: bold;
    color: #1e6f5c;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
    letter-spacing: 0.5px;
}
/* Isi dropdown (sembunyi default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 220px;
    max-height: 400px;
    overflow-y: auto;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 5px;
}

/* Link dalam dropdown */
.dropdown-content a {
    color: #1e2a3e;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

/* Tampilkan dropdown saat hover pada container */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Scrollbar styling */
.dropdown-content::-webkit-scrollbar {
    width: 6px;
}
.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}
.dropdown-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

/* Mobile toggle */
.menu-toggle {
    display: none;
    font-size: 1.7rem;
    color: #0f3b5c;
    cursor: pointer;
}

/* ----- HERO SECTION (background gambar) ----- */
.hero {
    min-height: 100vh;
    background: linear-gradient(rgba(10, 30, 40, 0.65), rgba(5, 20, 28, 0.75)), 
                url('https://images.pexels.com/photos/279949/pexels-photo-279949.jpeg?auto=compress&cs=tinysrgb&w=1600') center center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1.5rem;
    margin-top: 0;
}

.hero-content {
    max-width: 850px;
    color: white;
    animation: fadeInUp 0.9s ease-out;
}

.hero-content h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
}

.btn-primary {
    background: #1e6f5c;
    color: whitesmoke;
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    background: whitesmoke;
    color: #1e6f5c;
    transform: translateY(-3px);
    box-shadow: 0 12px 22px rgba(0,0,0,0.2);
}

/* ----- ABOUT US SECTION (background gambar) ----- */
.about {
    position: relative;
    padding: 5rem 1.5rem;
    background: linear-gradient(rgba(248, 250, 252, 0.88), rgba(240, 246, 245, 0.9)), 
                url('https://images.pexels.com/photos/212286/pexels-photo-212286.jpeg?auto=compress&cs=tinysrgb&w=1600') center center/cover no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 3rem;
    backdrop-filter: blur(0px);
}

.about-text {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(2px);
    padding: 2rem 2rem;
    border-radius: 32px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

.about-text h2 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: #0f3b5c;
    border-left: 6px solid #1e6f5c;
    padding-left: 1rem;
}

.about-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #1e293b;
    line-height: 1.6;
}

.about-features {
    display: flex;
    gap: 1.5rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 500;
}

.feature i {
    color: #1e6f5c;
    font-size: 1.4rem;
}

.about-image {
    flex: 0.9;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 28px;
    box-shadow: 0 25px 40px -12px rgba(0,0,0,0.3);
    transition: 0.3s;
    border: 3px solid rgba(255,255,255,0.7);
}

/* temp section untuk produk & contact */
.temp-section {
    padding: 80px 1.5rem;
    text-align: center;
    background: #f1f5f9;
}

/* ===== SUPPORTING SECTION ===== */
/* Supporting Components Section */
.supporting-section {
    padding: 5rem 5%;
    background: whitesmoke;
    position: relative;
    overflow: hidden;
}

.supporting-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(0, 168, 255, 0.03);
    border-radius: 50%;
    z-index: 0;
}

.supporting-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.supporting-header {
    text-align: center;
    margin-bottom: 3rem;
}

.supporting-subtitle {
    color: #1e6f5c;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.supporting-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e6f5c;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.supporting-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #1e6f5c;
}

.supporting-description {
    color: #1e6f5c;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* Slider Container */
.slider-container {
    position: relative;
    margin: 3rem 0;
}

.slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-slider {
    flex: 1;
    overflow: hidden;
    border-radius: 10px;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
}

/* Brand Items */
.brand-item {
    min-width: calc(25% - 15px); /* 4 items per slide */
    flex-shrink: 0;
}

.brand-logo {
    background: white;
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid white;
    transition: all 0.3s ease;
    height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.brand-img{
  width: 180px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1rem;
  transition: transform 0.3 ease;
}

.brand-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,168,255,0.15);
    border-color: #1e6f5c;
}

/* Slider Buttons */
.slider-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: white;
    border: 2px solid #1e6f5c;
    color: #1e6f5c;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #1e6f5c;
    color: white;
    transform: scale(1.1);
}

.slider-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    border-color: #1e6f5c;
    color: #ccc;
}

.slider-btn:disabled:hover {
    background: white;
    color: #ccc;
    transform: none;
}

/* Dots Indicator */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1e6f5c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1e6f5c;
    width: 30px;
    border-radius: 10px;
}

/*==== start our customer ==== */

/* Customers Section */
.customers-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
    padding: 60px 20px;
    font-family: 'Arial', sans-serif;
}

.customers-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.customers-title {
    font-size: 2.5rem;
    color: #1e6f5c;
    margin-bottom: 40px;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.customers-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #1e6f5c;
}

/* Slider */
.slider-container {
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 20px;
}

/* Customer Card */
.customer-card {
    min-width: calc(30% - 15px);
    background: white;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
}

.customer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}



/* Dot Indicators */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #1e6f5c;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1e6f5c;
    width: 30px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .customer-card {
        min-width: calc(100% - 20px);
    }
    
    .customers-title {
        font-size: 1.8rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .customer-card {
        min-width: calc(50% - 10px);
    }
}

/* ===== end our customer ==== */


/* ===== CONTACT SECTION ===== */


.main-footer {
    background: #1e6f5c;
    color: #fff;
    margin-top: 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}



.footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.footer-desc {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
}

/* Container untuk deretan logo sosial media */
.social-icons {
  display: flex;
  align-items: center;
  gap: 12px; /* Jarak antar logo */
  margin-top: 15px;
}

/* Styling tautan & gambar logo */
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: #ffffff; /* Latar belakang putih bulat agar logo lebih menonjol */
  border-radius: 50%;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Mengatur ukuran logo SVG di dalam lingkaran */
.social-icons a img {
  width: 26px;
  height: 26px;
  display: block;
}

.social-icons a svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* Efek saat logo di-hover kursor */
.social-icons a:hover {
  transform: translateY(-3px); /* Efek sedikit naik */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: white;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}


.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    font-size: 14px;
}

.footer-col ul li a:hover {
    color: white;
    padding-left: 5px;
}

.contact-list li {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 12px;
    line-height: 1.5;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-top: 15px;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: scale(1.02);
}

.wa-icon {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 12px;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center;
    }
    
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-links {
        justify-content: center;
    }
    
    .whatsapp-btn {
        justify-content: center;
    }
}

/* ===== end footer === */

/* animasi */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 920px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 80%;
        height: calc(100vh - 70px);
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.1);
        padding: 2rem 1rem;
        gap: 1.8rem;
        align-items: center;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: block;
    }

    /* Dropdown di mobile berubah jadi block & tidak hover */
    .dropdown {
        width: 100%;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #f9f9f9;
        box-shadow: none;
        margin-top: 0.8rem;
        display: none;
        border-radius: 20px;
        width: 100%;
    }
    
    .dropdown-menu.active-dropdown {
        display: block;
    }
    
    .dropdown-toggle .dropdown-icon {
        transition: 0.2s;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-container {
        flex-direction: column;
    }

    .company-name {
        font-size: 1.2rem;
    }
    
    .logo-img {
        height: 38px;
    }
}

@media (max-width: 550px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    .about-text h2 {
        font-size: 2rem;
    }
    .navbar {
        padding: 0.7rem 5%;
    }
}


/* ======== start acc ==== */
/* ===== PRODUCTS ACCUMULATORS SECTION - 3 CARDS ===== */
.products-acc-section {
    padding: 4rem 5%;
    background:#1e6f5c;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.products-acc-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.products-acc-header {
    margin-bottom: 3rem;
}

.products-acc-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: whitesmoke;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Products Grid - 3 Cards */
.products-acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

/* Product Card */
.product-acc-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.product-acc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,168,255,0.2);
    border-color: #1e6f5c;
}

/* Product Image - DIPERBESAR */
.product-acc-image {
    position: relative;
    height: 300px; /* Diperbesar dari 250px */
    overflow: hidden;
    background: #f5f5f5;
}

.product-acc-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mengubah dari cover ke contain agar gambar utuh */
    padding: 1rem; /* Memberi ruang di sekitar gambar */
    transition: transform 0.5s ease;
    background: white;
}

.product-acc-card:hover .product-acc-image img {
    transform: scale(1.05); /* Zoom 5% saat hover */
}

.product-acc-brand {
    position: absolute;
    top: 1rem;
    right: 1rem; /* Pindah ke kanan */
    left: auto;
    background: #1e6f5c;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Product Content */
.product-acc-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-acc-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e6f5c  ;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-acc-desc {
    margin-bottom: 1.2rem;
}

.product-acc-desc p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Specifications */
.product-acc-specs {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #ddd;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-value {
    color: #1e6f5c;
    font-size: 0.95rem;
    font-weight: 600;
}


.read-more {
    display: inline-block;
    color: #1a3a6e;
    text-decoration: none;
     border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}



.read-more:hover {
    color: #1e6f5c;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .products-acc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .products-acc-main-title {
        font-size: 2.5rem;
    }
    
    .product-acc-image {
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .products-acc-section {
        padding: 3rem 5%;
    }
    
    .products-acc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .products-acc-main-title {
        font-size: 2.2rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .product-acc-image {
        height: 260px;
    }
    
    .product-acc-name {
        font-size: 1.3rem;
    }
    
    .weather-widget {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .products-acc-main-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        gap: 0.5rem;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        font-size: 0.8rem;
    }
    
    .product-acc-image {
        height: 220px;
    }
    
    .product-acc-content {
        padding: 1.5rem;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .product-acc-brand {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
    
    .weather-widget {
        padding: 0.6rem 1.2rem;
    }
    
    .weather-temp {
        font-size: 1rem;
    }
    
    .weather-desc {
        font-size: 0.8rem;
    }
}

/* Animation */
.product-acc-card {
    animation: fadeInUp 0.6s ease backwards;
}

.product-acc-card:nth-child(1) { animation-delay: 0.1s; }
.product-acc-card:nth-child(2) { animation-delay: 0.2s; }
.product-acc-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ====== end accumulator ===== */

/* ====== start hose ====== */
.products-acc-section {
    padding: 4rem 5%;
    background:#1e6f5c;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.products-acc-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

/* Header */
.products-acc-header {
    margin-bottom: 3rem;
}

.products-acc-main-title {
    font-size: 3rem;
    font-weight: 700;
    color: whitesmoke;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

/* Products Grid - 3 Cards */
.products-acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
}

/* Product Card */
.product-acc-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
}

.product-acc-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,168,255,0.2);
    border-color: #1e6f5c;
}

/* Product Image - DIPERBESAR */
.product-acc-image {
    position: relative;
    height: 300px; /* Diperbesar dari 250px */
    overflow: hidden;
    background: #f5f5f5;
}

.product-acc-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Mengubah dari cover ke contain agar gambar utuh */
    padding: 1rem; /* Memberi ruang di sekitar gambar */
    transition: transform 0.5s ease;
    background: white;
}

.product-acc-card:hover .product-acc-image img {
    transform: scale(1.05); /* Zoom 5% saat hover */
}

.product-acc-brand {
    position: absolute;
    top: 1rem;
    right: 1rem; /* Pindah ke kanan */
    left: auto;
    background: #1e6f5c;
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

/* Product Content */
.product-acc-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-acc-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e6f5c  ;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-acc-desc {
    margin-bottom: 1.2rem;
}

.product-acc-desc p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Specifications */
.product-acc-specs {
    background: #f8f9fa;
    padding: 1.2rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid #eee;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #ddd;
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: #555;
    font-size: 0.9rem;
    font-weight: 500;
}

.spec-value {
    color: #1e6f5c;
    font-size: 0.95rem;
    font-weight: 600;
}


.read-more {
    display: inline-block;
    color: #1a3a6e;
    text-decoration: none;
     border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: color 0.3s;
}



.read-more:hover {
    color: #1e6f5c;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .products-acc-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .products-acc-main-title {
        font-size: 2.5rem;
    }
    
    .product-acc-image {
        height: 280px;
    }
}

@media screen and (max-width: 768px) {
    .products-acc-section {
        padding: 3rem 5%;
    }
    
    .products-acc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .products-acc-main-title {
        font-size: 2.2rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    .product-acc-image {
        height: 260px;
    }
    
    .product-acc-name {
        font-size: 1.3rem;
    }
    
    .weather-widget {
        margin-top: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .products-acc-main-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        gap: 0.5rem;
    }
    
    .breadcrumb a,
    .breadcrumb span {
        font-size: 0.8rem;
    }
    
    .product-acc-image {
        height: 220px;
    }
    
    .product-acc-content {
        padding: 1.5rem;
    }
    
    .spec-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.3rem;
    }
    
    .product-acc-brand {
        font-size: 0.8rem;
        padding: 0.3rem 1rem;
    }
    
    .weather-widget {
        padding: 0.6rem 1.2rem;
    }
    
    .weather-temp {
        font-size: 1rem;
    }
    
    .weather-desc {
        font-size: 0.8rem;
    }
}

/* Animation */
.product-acc-card {
    animation: fadeInUp 0.6s ease backwards;
}

.product-acc-card:nth-child(1) { animation-delay: 0.1s; }
.product-acc-card:nth-child(2) { animation-delay: 0.2s; }
.product-acc-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* ====== end hose ====== */


/* Section Piston Pump - CSS */
.piston-section {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    border-radius: 24px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 32px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.piston-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.piston-text {
    flex: 1;
    min-width: 250px;
}

.piston-badge {
    font-size: 1rem;
    font-weight: 500;
    color: #1e2a3e;
    margin-bottom: 12px;
    letter-spacing: -0.2px;
}

.piston-title {
    font-size: 2rem;
    font-weight: 700;
    color: #0b2b3b;
    line-height: 1.3;
    margin-bottom: 28px;
}

.piston-title span {
    color: #1e6f5c;
}

.piston-btn {
    display: inline-block;
    background: #1e6f5c;
    color: white;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
    border: none;
    cursor: pointer;
}

.piston-btn:hover {
    background: #1e6f5c;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

.piston-visual {
    flex: 1;
    min-width: 280px;
    text-align: center;
    background: #f8fafd;
    border-radius: 28px;
    padding: 24px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.piston-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.piston-svg {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.1));
}

/* Bagian piston yang bergerak */
.moving-part {
    transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    transform-origin: center center;
}

.piston-label {
    font-weight: 700;
    font-size: 1.1rem;
    color: #0a2e42;
    margin-top: 18px;
    letter-spacing: -0.2px;
}

/* Responsive */
@media (max-width: 768px) {
    .piston-section {
        padding: 30px 20px;
    }
    
    .piston-container {
        flex-direction: column;
    }
    
    .piston-title {
        font-size: 1.7rem;
    }
    
    .piston-visual {
        width: 100%;
    }
}

/*  end Section Piston Pump - CSS */

/* Section Quality Stats - CSS */
.quality-section {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #1e6f5c;
    border-radius: 28px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 48px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quality-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.quality-header {
    flex: 1.2;
    min-width: 250px;
}

.quality-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.quality-description {
    font-size: 1rem;
    font-weight: 400;
    color: #cbdde9;
    line-height: 1.6;
    margin-bottom: 0;
}

.quality-stats {
    flex: 0.8;
    display: flex;
    justify-content: space-around;
    gap: 40px;
    min-width: 240px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 12px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.stat-value {
    display: inline-block;
}

.stat-symbol {
    font-size: 2.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: #e0eef9;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .quality-section {
        padding: 40px 24px;
    }
    
    .quality-container {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }
    
    .quality-title {
        font-size: 1.7rem;
    }
    
    .quality-description {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .stat-symbol {
        font-size: 2rem;
    }
}


/*  end Section Quality Stats - CSS */

/* Section Mission - CSS */
/* Section Mission - CSS (dengan badge di dalam gambar) */
.mission-section {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #ffffff;
    border-radius: 28px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 48px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.mission-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

/* Bagian Gambar - dengan posisi relative untuk badge */
.mission-image {
    flex: 1;
    min-width: 280px;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.15);
}

.mission-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

.mission-img:hover {
    transform: scale(1.02);
}

/* BADGE ANGKA 34+ DI DALAM GAMBAR */
.image-stat-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: #1e6f5c;
    backdrop-filter: blur(4px);
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.stat-number-big {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-plus {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffff;
}

.stat-label-big {
    font-size: 1rem;
    font-weight: 600;
    color: #ffff;
}

/* Bagian Konten */
.mission-content {
    flex: 1;
    min-width: 280px;
}

.mission-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0a2e42;
    line-height: 1.4;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
}

.mission-description {
    font-size: 1rem;
    font-weight: 400;
    color: #4a627a;
    line-height: 1.7;
    margin-bottom: 28px;
}

.mission-btn {
    display: inline-block;
    background:#1e6f5c;
    color: white;
    font-weight: 600;
    padding: 12px 32px;
    border-radius: 40px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 102, 204, 0.2);
}

.mission-btn:hover {
    background: white;
    color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Responsive */
@media (max-width: 900px) {
    .mission-section {
        padding: 40px 24px;
    }
    
    .mission-container {
        flex-direction: column;
    }
    
    .mission-title {
        font-size: 1.5rem;
    }
    
    .image-stat-badge {
        bottom: 16px;
        right: 16px;
        padding: 8px 16px;
    }
    
    .stat-number-big {
        font-size: 1.4rem;
    }
    
    .stat-plus {
        font-size: 1.1rem;
    }
    
    .stat-label-big {
        font-size: 0.85rem;
    }
}

/* section produk */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fc;
    color: #1a2a3a;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* Header Section */
.main-header {
    background: white;
    color: #1a2a3a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e6f5c;
}

.logo span {
    color: #1e6f5c;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    color: #1a2a3a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a.active{
    color: #1a2a3a;
}
.nav-menu a:hover
 {
    color: #1e6f5c;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #1e6f5c;
    font-weight: 600;
    display: block;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-top: 0.5rem;
    color: #1a2a3a;
}

/* ========= MARQUEE / CAROUSEL ANIMATION ========= */
.marquee-wrapper {
    overflow: hidden;
    margin-bottom: 3rem;
}

.marquee-row {
    display: flex;
    gap: 1.5rem;
    padding: 1rem 0;
    width: max-content;
}

/* Animasi bergerak ke kanan */
.row-right {
    animation: scrollRight 30s linear infinite;
}

/* Animasi bergerak ke kiri */
.row-left {
    animation: scrollLeft 30s linear infinite;
}

/* Hover pause */
.marquee-row:hover {
    animation-play-state: paused;
}

@keyframes scrollRight {
    0% {
        transform: translateX(-20%);
    }
    100% {
        transform: translateX(0%);
    }
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-20%);
    }
}

/* Card Style - FLEKSIBEL */
.brand-card, .product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-align: center;
    padding-bottom: 1rem;
    flex-shrink: 0;
    width: 200px;
    display: flex;
    flex-direction: column;
}

/* Card untuk Products sedikit lebih lebar */
.product-card {
    width: 240px;
}

.brand-card:hover, .product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.12);
}

/* Gambar FLEKSIBEL - menyesuaikan ukuran logo */
.card-image {
    width: 100%;
    height: auto;
    min-height: 140px;
    max-height: 180px;
    object-fit: contain;
    background: #ffff;
    padding: 1rem;
}

/*.card-title {
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a2a3a;
    border-top: 1px solid #eef2f8;
    background: white;
}

/* Services Section - Static Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.2rem;
    margin-bottom: 4rem;
}

.service-card {
    background: white;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-left: 4px solid #1e6f5c;
    transition: all 0.3s;
}

.service-card:hover {
    background: #fff5f5;
    transform: translateX(6px);
}

/* Stats Banner */
.stats-banner {
    background: #1e6f5c;
    border-radius: 24px;
    padding: 3rem 2rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
    color: white;
    text-align: center;
}

.stat-item {
    flex: 1;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
}

.stat-label {
    font-size: 0.9rem;
    margin-top: 0.5rem;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Mission Section */
.mission-box {
    background: white;
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
}

.mission-box h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a2a3a;
}

.mission-box p {
    color: #4a5a6a;
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.client-count {
    display: inline-block;
    background: #1e6f5c;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 40px;
    font-weight: 600;
}

.client-count:hover {
    background: white;
    color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
}

/* Footer */
.footer {
    background: #1e6f5c;
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 2rem;
}



/* Responsive */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-menu {
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    .section-title {
        font-size: 1.6rem;
    }
    .stat-number {
        font-size: 2rem;
    }
    .brand-card {
        width: 160px;
    }
    .product-card {
        width: 200px;
    }
}
/* end section produk */


/*  section about */
/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e1e1e;
    line-height: 1.6;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title span {
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #e63946;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.section-title p {
    max-width: 700px;
    margin: 0 auto;
    color: #555;
}

/* ===== HEADER ===== */
.header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav ul {
    display: flex;
    gap: 32px;
}

.nav ul li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: #1a1a2e;
    transition: color 0.3s;
    padding: 6px 0;
    border-bottom: 3px solid transparent;
}

.nav ul li a:hover,
.nav ul li a.active {
    color: #e63946;
    border-bottom-color: #e63946;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1a1a2e;
}

/* ===== HERO ===== */
.hero {
    color: #fff;
    padding: 80px 0 70px;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.hero p {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* ===== ABOUT INTRO ===== */
.about-intro {
    padding: 80px 0 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-text p {
    color: #444;
    margin-bottom: 16px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    display: block;
}

/* ===== VISI MISI ===== */
.visi-misi {
    padding: 60px 0 70px;
    background: #f8f9fc;
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.visi, .misi {
    background: #1e6f5c;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
    text-align: center;
    transition: transform 0.3s;
}

.visi:hover, .misi:hover {
    transform: translateY(-6px);
}

.icon-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #ffff;
    color: #1e6f5c;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.visi h3, .misi h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffff;
    margin-bottom: 12px;
}

.visi p, .misi p {
    color: #ffff;
    max-width: 400px;
    margin: 0 auto;
}

/* ===== PRODUCTS BANNER ===== */
.products-banner {
    background: #1a1a2e;
    color: #fff;
    padding: 50px 0;
    text-align: center;
}

.products-banner h2 {
    font-size: 1.8rem;
    font-weight: 700;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== BEST PRODUCTS ===== */
/*.best-products {
    padding: 80px 0 60px;
    background: #ffffff;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    background: #f8f9fc;
    padding: 30px 20px;
    border-radius: 16px;
    transition: transform 0.3s;
}

.stat-item:hover {
    transform: scale(1.02);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: #e63946;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-top: 6px;
}

/* ===== WHY CHOOSE US - HIJAU ===== */
.why-choose-green {
    padding: 80px 0 70px;
    background: #f0faf4; /* latar hijau sangat muda */
}

.container-green {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title-green {
    text-align: center;
    margin-bottom: 40px;
}

.section-title-green span {
    display: inline-block;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #1e6f5c; /* hijau tua */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.section-title-green h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f3b5c; /* hijau sangat tua */
    margin-bottom: 12px;
}

.features-grid-green {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-green {
    background: #ffffff;
    padding: 30px 20px 28px;
    border-radius: 16px;
    box-shadow: 0 6px 20px rgba(0, 80, 20, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-bottom: 4px solid #1e6f5c; /* garis hijau di bawah */
}

.feature-green:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 120, 30, 0.15);
}

.feature-icon-green {
    font-size: 2.4rem;
    color: #1e6f5c; /* hijau utama */
    margin-bottom: 16px;
    background: #e8f5e9; /* hijau sangat muda */
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    transition: background 0.3s;
}

.feature-green:hover .feature-icon-green {
    background: #1e6f5c;
    color: #ffffff;
}

.feature-green h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0d2b1a;
    margin-bottom: 10px;
}

.feature-green p {
    color: #3d5a4a;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .features-grid-green {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .features-grid-green {
        grid-template-columns: 1fr;
    }

    .section-title-green h2 {
        font-size: 1.6rem;
    }

    .why-choose-green {
        padding: 50px 0 40px;
    }
}

/* ===== LEGALITY ===== */
.legality {
    padding: 80px 0 70px;
    background: #ffffff;
}

.legality-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.legal-item {
    background: #f8f9fc;
    padding: 28px 20px;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s;
}

.section-title span {
    color: #1e6f5c;
}

.section-tile h2 {
    color: #0f3b5c;
}

.legal-item:hover {
    transform: translateY(-4px);
}

.legal-item i {
    font-size: 2.4rem;
    color: #1e6f5c;
    margin-bottom: 12px;
}

.legal-item h4 {
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.legal-item p {
    color: #555;
    font-size: 0.95rem;
}

/* ===== CTA ===== */
/*.cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
    padding: 70px 0 60px;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    max-width: 800px;
    margin: 0 auto 16px;
}

.cta-content p {
    max-width: 640px;
    margin: 0 auto 28px;
    opacity: 0.9;
}

.cta-clients {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.10);
    padding: 12px 30px;
    border-radius: 40px;
    font-size: 1.1rem;
}

.cta-clients .client-number {
    font-weight: 800;
    font-size: 1.8rem;
    color: #e63946;
    background: #fff;
    padding: 0 12px;
    border-radius: 30px;
    line-height: 1.4;
}

/* ===== FOOTER ===== */
/*.footer {
    background: #0f0f1a;
    color: #aaa;
    padding: 24px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-image {
        order: -1;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
    .legality-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 12px 30px rgba(0,0,0,0.08);
        padding: 20px 0;
    }
    .nav.active {
        display: block;
    }
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }
    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .legality-grid {
        grid-template-columns: 1fr 1fr;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .products-banner h2 {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .legality-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-number {
        font-size: 2.6rem;
    }
    .hero {
        padding: 50px 0;
    }
    .about-intro {
        padding: 50px 0 30px;
    }
}
/* end section produk */