/* ===== VARIABLES & CONSISTENT SIZING ===== */
:root {
  /* Base Spacing Unit */
  --space-unit: 1rem;
  
  /* Spacing Scale */
  --space-xxs: calc(0.25 * var(--space-unit));
  --space-xs:  calc(0.5 * var(--space-unit));
  --space-sm:  calc(0.75 * var(--space-unit));
  --space-md:  calc(1.25 * var(--space-unit));
  --space-lg:  calc(2 * var(--space-unit));
  --space-xl:  calc(3.25 * var(--space-unit));
  --space-xxl: calc(5.25 * var(--space-unit));
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Container Widths */
  --container-sm: 100%;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1200px;
  
  /* Consistent Element Sizes */
  --header-height: 80px;
  --footer-height: 60px;
  --button-height: 48px;
  --input-height: 48px;
  --card-min-height: 300px;
  --card-max-width: 360px;
  
  /* Z-index management */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-offcanvas: 1050;
  --z-modal: 1060;
  --z-popover: 1070;
  --z-tooltip: 1080;
}

/* Consistent Container */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* Consistent Spacing Utilities */
.mx-auto { margin-left: auto; margin-right: auto; }

/* Margin and Padding Utilities */
.m-0 { margin: 0; }
.m-1 { margin: var(--space-xs); }
.m-2 { margin: var(--space-sm); }
.m-3 { margin: var(--space-unit); }
.m-4 { margin: var(--space-md); }
.m-5 { margin: var(--space-lg); }

.p-0 { padding: 0; }
.p-1 { padding: var(--space-xs); }
.p-2 { padding: var(--space-sm); }
.p-3 { padding: var(--space-unit); }
.p-4 { padding: var(--space-md); }
.p-5 { padding: var(--space-lg); }

/* Consistent Card Styling */
.card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: white;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Consistent Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--button-height);
  padding: 0 var(--space-md);
  border-radius: var(--radius-md);
  font-weight: 500;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

/* Consistent Images */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive Typography */
html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

/* Consistent Section Spacing */
section {
  padding: var(--space-xl) 0;
}

/* Navbar Height Consistency */
.navbar {
  height: var(--header-height);
}

.nav-container {
  height: 100%;
  max-width: var(--container-xl);
}

/* Consistent Form Elements */
input,
select,
textarea {
  height: var(--input-height);
  padding: 0 var(--space-sm);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  width: 100%;
  transition: border-color 0.2s ease;
}

textarea {
  min-height: 120px;
  padding: var(--space-sm);
  resize: vertical;
}

/* Reset dan Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1E5631;
    background: #FFFFFF;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: transparent;
    backdrop-filter: blur(10px);
}

.navbar.scrolled {
    background-color: #FFFFFF;
    box-shadow: 0 2px 20px rgba(30, 86, 49, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: #1E5631;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-link {
    text-decoration: none;
    color: #1E5631;
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #6B9E42;
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #6B9E42;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.hero-content {
    z-index: 2;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    overflow-x: hidden;            /* no horizontal scroll by default */
    -webkit-overflow-scrolling: touch;
    font-size: 1rem;
}

.hero-buttons .btn {
    white-space: nowrap;
    flex: 0 0 auto;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: #1E5631;
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: #6B9E42;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
}

.hero-graphic {
    position: relative;
    z-index: 1;
}

.leaves-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Product Carousel Section */
.carousel-section {
    padding: 80px 0;
    position: relative;
}

.carousel-header {
    text-align: center;
    margin-bottom: 50px;
}

.carousel-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.carousel-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.product-carousel-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.product-carousel {
    overflow: hidden;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    box-shadow: 0 15px 40px rgba(30, 86, 49, 0.15);
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    filter: brightness(0.9);
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, transparent 30%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.product-name-overlay {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    text-shadow: 0 4px 15px rgba(0,0,0,0.9);
    transform: translateY(20px);
    transition: all 0.4s ease;
    margin: 0;
    padding: 0 1rem;
    letter-spacing: 1px;
}

.carousel-slide:hover .carousel-img {
    transform: scale(1.08);
    filter: brightness(0.7);
}

.carousel-slide:hover .carousel-overlay {
    opacity: 1;
}

.carousel-slide:hover .product-name {
    transform: translateY(0);
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0 2rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(30, 86, 49, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: #1E5631;
    transform: scale(1.2);
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.2);
}

.indicator:hover {
    background-color: #6B9E42;
    transform: scale(1.1);
}

/* UMKM Section */
.umkm-section {
    padding: 120px 0;
    background-color: #F3FFF7;
  }
  
  .umkm-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
  }
  
  .umkm-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .umkm-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
  }
  
  .umkm-subtitle {
    margin-top: 1rem;
    font-size: 1rem;
    opacity: 0.85;
  }
  
  .umkm-icons {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    font-size: 1rem;
    margin: 14px 0 40px;
  }
  
  .umkm-icons img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.9;
  }
  
  @keyframes umkm-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }
  
  /* Only spin when auto-play is running */
  .umkm-section.playing .umkm-icons img {
    animation: umkm-spin 6s linear infinite;
  }
  
  /* Reduced motion preference */
  @media (prefers-reduced-motion: reduce) {
    .umkm-section.playing .umkm-icons img { animation: none; }
  }
  
  .umkm-carousel {
    overflow: hidden;
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  
  .umkm-track {
    display: flex;
    gap: 24px;
    will-change: transform;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .umkm-card {
    flex: 0 0 360px; /* default width, will adapt on smaller screens */
    background: #FFFFFF;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(30,86,49,0.12);
    scroll-snap-align: start;
  }

  .umkm-carousel::-webkit-scrollbar { height: 8px; }
  .umkm-carousel::-webkit-scrollbar-track { background: #eaf6ee; border-radius: 8px; }
  .umkm-carousel::-webkit-scrollbar-thumb { background: #9fd2ae; border-radius: 8px; }
  
  .umkm-image { height: 220px; overflow: hidden; }
  .umkm-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
  
  .umkm-content {
    background: #1E5631;
    color: #FFFFFF;
    padding: 18px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .umkm-name {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .umkm-desc {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.95;
  }
  
  .umkm-btn {
    align-self: flex-start;
    padding: 10px 16px;
    background: #EAF6EE;
    color: #1E5631;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
  }
  
  .umkm-btn:hover {
    background: #C8FADC;
  }

/* Tentang Kami Section */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1E5631 0%, #2d7a4a 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-content {
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.about-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6B9E42, #4A7C2E);
    border-radius: 20px 20px 0 0;
}

.about-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    background: rgba(255, 255, 255, 0.15);
}

.card-header {
    margin-bottom: 1.5rem;
    position: relative;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1rem;
    display: inline-block;
}

.title-line {
    height: 2px;
    background: linear-gradient(90deg, #6B9E42, transparent);
    width: 100%;
    border-radius: 1px;
}

.title-line.center-line {
    background: linear-gradient(90deg, transparent, #6B9E42, transparent);
    width: 100%;
}

.card-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.card-list li::before {
    content: '•';
    color: #6B9E42;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0;
}

.values-list li::before {
    display: none;
}

.emoji {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.mitra {
    text-align: center;
    padding: 50px 20px;
    background: #fff;
  }
  .mitra h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #2e5e36;
  }
  .mitra p {
    margin-bottom: 30px;
    color: #555;
  }
  
  /* Slider Style */
  .logo-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .slide-track {
    display: flex;
    width: calc(250px * 10); /* jumlah logo * lebar logo */
    animation: scroll 20s linear infinite;
  }
  .slide {
    width: 250px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slide img {
    width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
  }
  .slide img:hover {
    filter: grayscale(0%);
  }
  
  /* Animasi scroll */
  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

/* Products Section */
.products-section {
    padding: 120px 0;
    background-color: #f8f9fa;
    position: relative;
}

.products-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.products-header {
    text-align: center;
    margin-bottom: 60px;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* Filter Buttons */
.filter-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    border: 2px solid #1E5631;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background-color: #1E5631;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
}

.filter-btn.active {
    background-color: #1E5631;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.product-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 86, 49, 0.2);
}

.product-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-info {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.product-description {
    font-size: 1rem;
    color: #000;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.product-btn {
    width: 100%;
    padding: 12px 20px;
    background-color: #1E5631;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.product-btn:hover {
    background-color: #6B9E42;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 86, 49, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Solutions Section */
.solutions-section {
    padding: 120px 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.solutions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Header Section */
.solutions-header {
    text-align: center;
    margin-bottom: 80px;
}

.solutions-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.title-divider {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #6B9E42, #4A7C2E);
    margin: 1rem auto;
    border-radius: 2px;
}

.solutions-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Content Section */
.solutions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 80px;
}

.solutions-description {
    max-width: 600px;
}

.solutions-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.solutions-description em {
    font-style: italic;
    color: #6B9E42;
    font-weight: 600;
}

.solutions-list {
    list-style: none;
    padding: 0;
}

.solutions-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.6;
}

.solutions-list li::before {
    content: '✓';
    color: #6B9E42;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
}

/* Decorative Elements */
.solutions-decoration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decoration-flow {
    width: 100%;
    max-width: 400px;
    height: auto;
    opacity: 0.8;
    animation: float 8s ease-in-out infinite;
}

/* Advantages Section */
.advantages-section {
    margin-bottom: 80px;
}

.advantages-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.advantage-card {
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(30, 86, 49, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 86, 49, 0.2);
    border-color: #6B9E42;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #6B9E42, #4A7C2E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(107, 158, 66, 0.3);
}

.icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.advantage-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    margin: 0;
}

/* CTA Buttons */
.cta-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 60px;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 16px 32px;
    border: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 300px;
    justify-content: center;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn a{
    color: #FFFFFF;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.download-btn {
    background: linear-gradient(135deg, #1E5631, #6B9E42);
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(30, 86, 49, 0.3);
}

.download-btn a{
    color: #FFFFFF;
    text-decoration: none;
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 86, 49, 0.4);
}

.cta-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* Articles Section */
.articles-section {
    padding: 120px 0;
    background-color: #C8FADC;
    position: relative;
    overflow: hidden;
}

.articles-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.articles-header {
    text-align: center;
    margin-bottom: 80px;
}

.articles-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 60px;
}

.article-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 86, 49, 0.2);
}

.article-image {
    width: 100%;
    height: 200px;
    background: #333;
    overflow: hidden;
    position: relative;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-img {
    transform: scale(1.05);
}

.article-content {
    padding: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.article-category {
    font-size: 1rem;
    font-weight: 600;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.article-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* Hidden Articles */
.articles-grid.hidden {
    display: none;
}

/* View All Articles Button */
.view-all-container {
    text-align: center;
    margin-top: 2rem;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    background-color: #1E5631;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 86, 49, 0.2);
}

.view-all-btn:hover {
    background-color: #6B9E42;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 86, 49, 0.3);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.view-all-btn.expanded .btn-icon {
    transform: rotate(180deg);
}

/* Article Popup Modal */
.article-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.article-popup.active {
    display: flex;
}

.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.popup-content {
    position: relative;
    background-color: #FFFFFF;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.popup-close:hover {
    background-color: #FFFFFF;
    transform: scale(1.1);
}

.popup-hero {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.popup-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-body {
    padding: 2rem;
}

.popup-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.popup-category {
    font-size: 1rem;
    font-weight: 600;
    color: #FF6B35;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.popup-date {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

.popup-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.popup-content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
}

.popup-content-text p {
    margin-bottom: 1rem;
}

.popup-content-text p:last-child {
    margin-bottom: 0;
}

/* Articles Decoration */
.articles-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
}

.articles-decoration .bottom-deco {
    width: 300px;
    height: auto;
    opacity: 1;
    animation: float 12s ease-in-out infinite;
}

/* Contact Section */
.contact-section {
    background-color: #FFFFFF;
    position: relative;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0 60px;
    text-align: center;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background-color: #FFFFFF;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #1E5631;
    box-shadow: 0 0 0 3px rgba(30, 86, 49, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 15px 30px;
    background-color: #1E5631;
    color: #FFFFFF;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #6B9E42;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 86, 49, 0.3);
}

/* ===== FAQ Section ===== */
.faq-section {
    max-width: var(--container-lg);
    margin: 0 auto var(--space-xl);
    padding: 0 var(--space-md);
  }
  
  .faq-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: var(--space-lg);
    letter-spacing: 0.5px;
  }
  
  .faq-list {
    display: grid;
    gap: var(--space-md);
  }
  
  .faq-item {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    background: #FFFFFF;
    overflow: hidden;
  }
  
  .faq-item summary {
    padding: var(--space-md);
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    position: relative;
  }
  
  /* Remove default marker */
  .faq-item summary::-webkit-details-marker { display: none; }
  
  /* Add custom chevron */
  .faq-item summary::after {
    content: '';
    position: absolute;
    right: var(--space-md);
    top: 50%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #6B9E42;
    border-bottom: 2px solid #6B9E42;
    transform: translateY(-50%) rotate(-45deg);
    transition: transform 0.2s ease;
  }
  
  .faq-item[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
  }
  
  .faq-item p {
    padding: 0 var(--space-md) var(--space-md);
    color: #6B9E42;
    line-height: 1.7;
  }
  
  /* Hover/Focus states */
  .faq-item summary:hover {
    background: #f7fbf8;
  }

/* Decorative Divider */
.divider {
    text-align: center;
    padding: 40px 0;
}

.divider-img {
    width: 800px;
    height: auto;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #FFFFFF;
    border-top: 1px solid #E0E0E0;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 40px;
}

/* Footer Logo */
.footer-logo {
    display: flex;
    align-items: flex-start;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo-img {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

/* Footer Links */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1E5631;
    margin-bottom: 1.5rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.contact-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Footer Navigation */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-nav li a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav li a:hover {
    color: #1E5631;
}

/* Social Media */
.social-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #666;
}

.social-icon {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Copyright */
.copyright {
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    padding: 20px 0;
    width: 100%;
    margin: 0;
    position: relative;
}

.copyright p {
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

/* Additional Sections */
.section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.section:nth-child(even) {
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #FFFFFF;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1E5631;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: #f8f9fa;
        color: #6B9E42;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        overflow-x: visible;
        row-gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        flex: initial;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }

    /* Mobile adjustments for decorative images */
    .leaves-img {
        max-width: 300px;
        opacity: 0.7;
    }
    
    .decoration-flow {
        max-width: 250px;
        opacity: 0.6;
    }
    
    /* Adjust hero graphic positioning on mobile */
    .hero-graphic {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
    
    /* Adjust solutions decoration positioning on mobile */
    .solutions-decoration {
        margin: 2rem 0;
    }

    .carousel-title {
        font-size: 2rem;
    }
        
    .carousel-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }
        
    .product-carousel-container {
        padding: 0 1rem;
    }
        
    .carousel-slide {
        min-width: 50%;
        height: 300px;
        padding: 0.25rem;
    }
        
    .carousel-slide .carousel-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        border-radius: 15px;
    }
        
    .carousel-slide .carousel-overlay {
        border-radius: 15px;
    }

    .product-name-overlay {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 800;
    }
    
    .product-name-mobile {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
        
    .carousel-indicators {
        margin-top: 1rem;
    }
        
    .indicator {
        width: 10px;
        height: 10px;
    }

    .umkm-card { 
        flex-basis: 85%; 
    }
    
    /* About Section Responsive */
    .about-section {
        padding: 80px 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-card {
        padding: 1.5rem;
    }
    
    .card-title {
        font-size: 1.2rem;
    }
    
    .card-text {
        font-size: 1rem;
    }
    
    .card-list li {
        font-size: 1rem;
    }
    
    /* Products Section Responsive */
    .products-section {
        padding: 80px 0;
    }
    
    .products-title {
        font-size: 1.5rem;
    }
    
    .filter-container {
        gap: 1rem;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .products-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding: 0 1rem;
        margin: 0 -1rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .products-grid::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .product-card {
        flex: 0 0 280px;
        scroll-snap-align: start;
        margin-right: 0;
        /* Ensure the entire card is scrollable */
        pointer-events: auto;
        cursor: grab;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-name {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }
    
    /* Mobile carousel enhancements */
    .products-grid {
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-padding-left: 1rem;
        /* Ensure the entire grid area is scrollable */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .product-card {
        transition: transform 0.3s ease;
        will-change: transform;
        /* Ensure cards don't interfere with scrolling */
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
    }
    
    /* Ensure proper spacing for carousel */
    .products-container {
        overflow: hidden;
    }
    
    /* Touch-friendly product cards */
    .product-card {
        touch-action: pan-x pan-y pinch-zoom;
    }
    
    /* Ensure buttons don't interfere with scrolling */
    .product-card .product-btn {
        touch-action: manipulation;
        pointer-events: auto;
    }
    
    /* Improve filter button touch targets */
    .filter-btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    /* Solutions Section Responsive */
    .solutions-section {
        padding: 80px 0;
    }
    
    .solutions-title {
        font-size: 1.5rem;
    }
    
    .solutions-subtitle {
        font-size: 1.2rem;
    }
    
    .solutions-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .solutions-description p {
        font-size: 1rem;
    }
    
    .solutions-list li {
        font-size: 1rem;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 1.5rem;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
    }
    
    .icon-img {
        width: 35px;
        height: 35px;
    }
    
    .advantage-text {
        font-size: 1rem;
    }
    
    .cta-btn {
        min-width: 250px;
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Articles Section Responsive */
    .articles-section {
        padding: 80px 0;
    }
    
    .articles-title {
        font-size: 1.5rem;
    }
    
    .articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .article-image {
        height: 180px;
    }
    
    .article-content {
        padding: 1.2rem;
    }
    
    .article-description {
        font-size: 1rem;
    }
    
    .view-all-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .popup-content {
        max-width: 95%;
        margin: 1rem;
    }
    
    .popup-hero {
        height: 200px;
    }
    
    .popup-title {
        font-size: 1.5rem;
    }
    
    .popup-content-text {
        font-size: 1rem;
    }
    
    /* Contact Section Responsive */
    .contact-title {
        font-size: 1.5rem;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .faq-title { font-size: 1.5rem; }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .footer-logo-img {
        width: 100px;
        height: 100px;
    }
    
    .divider-img {
        width: 300px;
    }
    
    .copyright p {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title, .carousel-title, .umkm-title, .products-title, .about-title, .mitra-title, .solutions-title, .articles-title {
        font-size: 1.5rem;
    }
    .hero-description, .carousel-subtitle, .umkm-subtitle, .mitra-subtitle {
        font-size: 1rem;
    }
    
    .burger-menu {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #FFFFFF;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-item {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #f0f0f0;
    }
    .nav-item:last-child {
        border-bottom: none;
    }
    .nav-link {
        display: block;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
        font-weight: 600;
        color: #1E5631;
        transition: all 0.3s ease;
    }
    .nav-link:hover {
        background-color: #f8f9fa;
        color: #6B9E42;
    }
    
    .view-all-btn {
        padding: 10px 20px;
        font-size: 0.8rem;
    }
    
    .popup-content {
        max-width: 98%;
        margin: 0.5rem;
    }

    .hero-description {
        text-align: justify;
    }

     /* Further reduce decorative images for very small screens */
    .leaves-img {
        max-width: 200px;
        opacity: 0.6;
    }
    
    .decoration-flow {
        max-width: 180px;
        opacity: 0.5;
    }

    
    /* Small mobile carousel adjustments */
    .products-grid {
        gap: 1rem;
        padding: 0 0.5rem;
        margin: 0 -0.5rem;
    }
    
    .product-card {
        flex: 0 0 260px;
    }
    
    /* Product Carousel Mobile Responsive */
    .product-carousel-container {
        margin: 40px auto 0;
        padding: 0 1rem;
    }
    
    .carousel-slide {
        min-width: 50%;
        height: 150px;
    }
    
    .carousel-indicators {
        margin-top: 1rem;
        padding: 0 1rem;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
    
    .popup-hero {
        height: 150px;
    }
    
    .popup-title {
        font-size: 1.2rem;
    }
    
    .popup-content-text {
        font-size: 0.9rem;
    }
    
    .popup-body {
        padding: 1.5rem;
    }

    .footer-logo-img {
        width: 100px;
        height: 100px;
    }
}


@media (min-width: 768px) and (max-width: 1023px) {
  .umkm-card { flex-basis: calc((100% - 24px) / 2); }
}

@media (min-width: 1024px) {
  .umkm-card { flex-basis: calc((100% - 48px) / 3); }
}