* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* HEADER (DESKTOP) */

header {
  padding: 1rem 5%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 9999;
  background: #ffffff;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover {
  color: #6bb832;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: #6bb832;
}

.logo-icon {
  width: 250px;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden; /* penting agar gambar tidak keluar */
  -webkit-user-drag: none;
  pointer-events: none;
  user-select: none;
}

.logo-icon img {
  width: 200%;
  height: 200%;
  /* gambar mengecil sesuai wadah */
}

.language-selector {
  padding: 0.5rem 1rem;
  border: 2px solid #6bb832;
  border-radius: 5px;
  background: white;
  color: #6bb832;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}

.language-selector:hover {
  background: #6bb832;
  color: white;
}

/* Default (3 garis) */
.hamburger span {
  width: 30px;
  height: 3px;
  background: #6bb832;
  border-radius: 2px;
  transition: 0.3s ease;
}

.hamburger-wrapper,
.hamburger-text {
  display: none;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e8f5e0 0%, #f0f9eb 100%);
  padding: 4rem 5%;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 2.5rem;
  color: #2d5016;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.brand-highlight {
  color: #6bb832;
  font-weight: bold;
}

.hero-description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.app-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.app-button {
  display: inline-block;
  transition: transform 0.3s;
}

.app-button img {
  height: 50px;
  cursor: pointer;
}

.app-button,
.app-button img {
  -webkit-user-drag: none;
  user-select: none;
}

.app-button:hover {
  transform: translateY(-5px);
}

/* Phone Illustration */
aside.hero-phone {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-mockup {
  width: 100%;
  max-width: 400px;
  animation: floatPhone 3s ease-in-out infinite;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

@keyframes floatPhone {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* FEATURES SECTION */

.features {
  padding: 4rem 5%;
  /* Background pattern sayuran (tanpa orang) */
  background-color: #ff9a4a;
  background-image: url("../img/vegetable-pattern.png"); /* Pattern sayuran saja */
  background-size: auto;
  background-repeat: repeat;
  background-position: center;
  min-height: auto;
  overflow: hidden;
}

/* Wrapper - 2 Column Layout dengan Flexbox */
.features-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* KIRI - Gambar Ilustrasi (aside dengan img) */
.features-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-image img {
  width: 100%;
  max-width: 800px;
  height: auto;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
  transform: scale(1.5);
}

.features-image:hover {
  transform: translateY(-8px);
}

/* KANAN - Konten Teks & Cards */
.features-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end; /* Rata kanan */
}

/* SUBTITLE - Hi Mommy */
.section-subtitle {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background-color: #e74c3c;
  padding: 12px 24px;
  border-radius: 30px;
  display: inline-block;
}

/* TITLE - Yang Mereka Sukai */
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #2d5016;
  background-color: #7ed957;
  padding: 14px 28px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 1rem;
  text-align: right;
}

/* BRAND TITLE */
.brand-title {
  color: #6bb832;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

/* GRID - Feature Cards */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 480px;
}

/* CARD */
.feature-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(135deg, #f0f9eb 0%, #e8f5e0 100%);
  padding: 1.1rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateX(-8px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* ICON */
.feature-icon {
  width: 26px;
  height: 26px;
  object-fit: contain;
  flex-shrink: 0;
  -webkit-user-drag: none;
  user-select: none;
}

/* TEXT */
.feature-text {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.5;
  font-weight: 500;
}

/* RESPONSIVE - TABLET (768px - 1024px) */

@media (max-width: 1024px) {
  header {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 1rem 3%;
    background: #ffffff;
  }

  .logo-icon {
    width: 90px;
    height: 90px;
  }

  nav ul {
    gap: 2.5rem;
  }
  .features {
    padding: 3rem 4%;
  }

  .features-wrapper {
    gap: 2rem;
  }

  .features-image img {
    max-width: 400px;
  }

  .section-title {
    font-size: 1.9rem;
    padding: 12px 22px;
  }

  .features-grid {
    max-width: 420px;
  }

  .feature-card {
    padding: 1rem 1.3rem;
  }

  .feature-text {
    font-size: 0.95rem;
  }
}

/* Responsif tablet ukuran medium   */
@media (max-width: 900px) {
  nav ul {
    gap: 2rem;
  }
}

/* === GALAXY TAB 7 / TABLET 800px === */
@media (max-width: 850px) and (min-width: 700px) {
  header {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 1rem 3%;
    background: #ffffff;
  }

  /* Logo dikecilkan */
  .logo-icon img {
    width: 80px;
    height: auto;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-right: 2rem; /* ⭐ JARAK antara logo dan Home */
  }

  /* Nav menu lebih lega */
  nav ul {
    display: flex;
    gap: 1.8rem; /* jarak antar menu */
    align-items: center;
    white-space: nowrap; /* ⛔ mencegah kata turun baris */
  }

  nav ul li a {
    font-size: 1.05rem;
  }

  /* Biar menu tidak wrap */
  #navMenu li {
    flex-shrink: 0;
  }
}

/* RESPONSIVE - SMALL TABLET (max 768px)
   Layout berubah: Gambar di ATAS, Konten di BAWAH */

@media (max-width: 768px) {
  .features {
    padding: 3rem 3%;
  }

  /* Ubah ke kolom vertikal */
  .features-wrapper {
    flex-direction: column;
    gap: 2.5rem;
  }

  /* Gambar sekarang di atas */
  .features-image {
    order: 1; /* Urutan pertama */
    width: 100%;
  }

  .features-image img {
    max-width: 350px;
    animation: none; /* Matikan animasi di mobile untuk performa */
  }

  /* Konten di bawah */
  .features-content {
    order: 2; /* Urutan kedua */
    align-items: center; /* Center di mobile */
    text-align: center;
    width: 100%;
  }

  .section-subtitle {
    font-size: 1.1rem;
    padding: 10px 20px;
  }

  .section-title {
    font-size: 1.6rem;
    padding: 12px 20px;
    text-align: center;
  }

  .brand-title {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }

  .features-grid {
    max-width: 100%;
    width: 100%;
    padding: 0 0.5rem;
  }

  .feature-card {
    padding: 1rem 1.2rem;
    border-radius: 25px;
    text-align: left;
  }

  .feature-card:hover {
    transform: translateY(-3px);
  }

  .feature-text {
    font-size: 0.95rem;
  }
}

/* RESPONSIVE - MOBILE (max 480px) */

.features {
  padding: 2rem 2%;
}

.features-wrapper {
  gap: 2rem;
}

.features-image img {
  max-width: 280px;
}

.section-subtitle {
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 25px;
}

.section-title {
  font-size: 1.35rem;
  padding: 10px 16px;
  border-radius: 10px;
}

.brand-title {
  font-size: 1rem;
  padding: 8px 14px;
  margin-bottom: 1.2rem;
}

.features-grid {
  gap: 0.8rem;
}

.feature-card {
  padding: 0.9rem 1rem;
  gap: 0.8rem;
  border-radius: 20px;
}

.feature-icon {
  width: 22px;
  height: 22px;
}

.feature-text {
  font-size: 0.88rem;
  line-height: 1.4;
}

/* RESPONSIVE - EXTRA SMALL (max 360px) */

@media (max-width: 360px) {
  .features {
    padding: 1.5rem 1.5%;
  }

  .features-image img {
    max-width: 240px;
  }

  .section-title {
    font-size: 1.2rem;
    padding: 8px 14px;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .brand-title {
    font-size: 0.9rem;
  }

  .feature-card {
    padding: 0.8rem 0.9rem;
  }

  .feature-text {
    font-size: 0.82rem;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
  }
}

/* Benefits Section */
.benefits {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #f0f9eb 0%, #e8f5e0 100%);
}

/* TITLE */
.section-utama {
  font-family: "Poppins", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #2d5016;
  text-align: left;
  margin-bottom: 2rem;
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.benefits-image {
  flex: 1;
}

.benefits-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  -webkit-user-drag: none;
  user-select: none;
}

.benefits-image:hover {
  transform: translateY(-5px);
}

.benefits-content {
  flex: 1;
}

.benefits-list {
  list-style: none;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.benefit-icon {
  color: #6bb832;
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 28px; /* FIX: lebar icon dibuat stabil */
  text-align: center;
}

/* Trust Section */
.trust {
  padding: 5rem 5%;
  background: white;
}

.trust-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.trust-content {
  font-family: "Montserrat", Arial, sans-serif;
  flex: 1;
}

.trust-schedule {
  margin-top: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.schedule-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  gap: 1.5rem;
}

.schedule-button {
  background: linear-gradient(135deg, #7ed957, #6bb832);
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  font-weight: 700; /* Lebih tebal */
  min-width: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s ease;
  font-size: 1.2rem; /* Ukuran lebih proporsional */
  text-align: center;
  font-family: "Montserrat", Arial, sans-serif;
  line-height: 1; /* Pastikan line-height konsisten */
  height: 60px; /* Tinggi tetap untuk konsistensi */
}

.schedule-button:hover {
  background: linear-gradient(
    135deg,
    #6bb832,
    #4a8d24
  ); /* lebih tua di hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.schedule-time {
  color: #444;
  font-size: 1.25rem; /* Lebih besar */
  font-weight: 600; /* Lebih tebal */
  margin-left: 1rem;
  display: inline-block;
  font-family: "Montserrat", Arial, sans-serif; /* supaya posisinya stabil */
}

.trust-image {
  flex: 1;
  transition: transform 0.3s;
}

.trust-image:hover {
  transform: translateY(-8px);
}

.trust-image img {
  width: 100%;
  max-width: 500px;
  -webkit-user-drag: none;
  user-select: none;
}

/* About Section */
.about {
  padding: 5rem 5%;
  background: linear-gradient(135deg, #e8f5e0 0%, #f0f9eb 100%);
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.about-logo {
  flex: 1;
  text-align: center;
  transition: transform 0.3s;
}

.about-logo img {
  width: 100%;
  height: 450px;
  max-width: 450px;
  -webkit-user-drag: none;
  user-select: none;
}

.about-logo:hover {
  transform: translateY(-8px);
}

.about-content {
  flex: 1.5;
}

.about-text {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.cta-button-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #6bb832;
  color: white;
  padding: 1rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: padding 0.3s ease, font-size 0.3s ease, background 0.3s ease,
    transform 0.3s ease, box-shadow 0.3s ease;
}

/* Ikon */
.cta-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  -webkit-user-drag: none;
  user-select: none;
}

.cta-button-wa,
.cta-button-wa img {
  -webkit-user-drag: none;
  user-select: none;
}

/* HOVER EFFECT — membesar & smooth */
.cta-button-wa:hover {
  background: #5aa028;
  padding: 1.15rem 2.3rem; /* sedikit lebih besar */
  font-size: 1.18rem; /* teks ikut membesar */
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(107, 184, 50, 0.35);
}

/* --- KEMITRAAN (SECTION) --- */
.partnership-section {
  padding: 5% 5%; /* Padding di semua sisi */
  background: #e9f5e3; /* Latar belakang hijau muda yang lembut */
}

.partnership-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.kemitraan-copy {
  flex: 2; /* Mengambil 2/3 ruang */
  min-width: 300px; /* Batas minimum agar tidak terlalu sempit */
}
.kemitraan-title {
  color: #2d5016; /* Hijau Tua */
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #6bb832; /* Garis pemisah */
  padding-bottom: 10px;
}

.kemitraan-copy p {
  line-height: 1.8;
  color: #444;
  margin-bottom: 1rem;
}

.kemitraan-image {
  flex: 1; /* Mengambil 1/3 ruang */
  display: flex;
  justify-content: flex-end;
}

/* Gambar di dalam aside harus responsif */
.kemitraan-image .image-responsive {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cta-icon-from {
  width: 22px;
  height: 22px;
  object-fit: contain;
}
.cta-button,
.cta-button img {
  -webkit-user-drag: none;
  user-select: none;
}

.cta-button {
  display: inline-block;
  background: #ffb800; /* Kuning (Warna Instan/Energi) */
  color: #2d5016;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  margin-top: 2rem;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #e6a700;
  padding: 1.15rem 2.3rem; /* sedikit lebih besar */
  font-size: 1.18rem; /* teks ikut membesar */
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(107, 184, 50, 0.35);
}

/* === FOOTER WRAPPER === */
footer.main-footer {
  position: relative;
  width: 100%;
  overflow-x: hidden; /* prevent horizontal scrollbar */
  background: #f8f8f8;
  padding: 3rem 0 0;
}

/* === FOOTER FLEX CONTENT === */
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%; /* internal padding only for content */
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem;
  z-index: 2;
}

/* === FOOTER COLUMNS === */
.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-column h3 {
  color: #2d5016;
  margin-bottom: 1.3rem;
  font-size: 1.2rem;
}

.footer-column ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-column li {
  margin-bottom: 0.8rem;
}

.footer-column a {
  color: #555;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #6bb832;
}

/* === LOGO === */
.logo {
  display: flex;
  align-items: center;
  font-size: 1.7rem;
  font-weight: bold;
  color: #2d5016;
}
.logo-icon {
  width: 55px;
  height: auto;
  margin-right: 8px;
}

/* === APP BUTTONS === */
.app-button-placeholder,
.app-button-placeholder img {
  height: 50px;
  -webkit-user-drag: none;
  user-select: none;
}

/* === SOCIAL ICONS === */
.social-icons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-icons a {
  font-size: 2rem;
  color: #2d5016;
  transition: 0.3s;
  -webkit-user-drag: none;
  user-select: none;
}
.social-icons a:hover {
  transform: scale(1.2);
  color: #6bb832;
}

/* FOOTER ILLUSTRATION — RESPONSIVE   */

.footer-illustration {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* push element to full-bleed left edge */
  margin-right: calc(50% - 50vw);
  overflow: hidden;
  position: relative;
  z-index: 1;
  /* optional background color behind image to avoid white flash */
  background-color: transparent;
}
.footer-illustration img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover; /* safety; image will fill width, height follows aspect */
  -webkit-user-drag: none;
  user-select: none;
}

/* DESKTOP / LARGE SCREEN FIX */
@media (min-width: 1200px) {
  .footer-illustration {
    max-height: 120vh;
  }

  .footer-illustration img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom center;
  }
}

/* Tablet / iPad */
@media (max-width: 1024px) {
  .footer-illustration img {
    max-height: 40vh;
    background-position: center bottom;
  }
}

/* Small tablet / large phones */
@media (max-width: 768px) {
  .footer-container {
    padding: 0 4%;
  } /* slightly smaller side padding on mobile */
  .footer-illustration img {
    max-height: 36vh;
    background-position: center bottom;
    background-size: cover;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .footer-illustration img {
    max-height: 30vh;
    background-position: center bottom;
    background-size: cover;
  }
}

/* COPYRIGHT: full-bleed green bar with no white gap */
.copyright {
  width: 100vw;
  margin-left: calc(50% - 50vw); /* make full-bleed */
  margin-right: calc(50% - 50vw);
  background: #6bb832;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  font-size: 0.95rem;
  z-index: 3;
  position: relative;
}

/* small adjustment so footer content stays readable on top of illustration */
.footer-container,
.copyright {
  position: relative;
}

/* Optional: if illustration visually overlaps .footer-container, add a solid top to container */
.footer-container {
  background: transparent;
}

/* Prevent double horizontal scroll on certain browsers */
html,
body {
  overflow-x: hidden;
}

/* -- tuning helpers (use if image still cropping important subject) -- */
/* shift the image focal point slightly up on narrow screens */

.copyright {
  width: 100vw;
  text-align: center;
  color: #fff;
  background: #6bb832;
  padding: 1.2rem 0;
  font-size: 0.95rem;
  margin: 0; /* HILANGKAN CELAH */
}

/* === MOBILE FIX === */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 2rem;
  }
}

/* HERO SECTION */
@media (max-width: 768px) {
  .hero {
    padding: 3rem 4%;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .app-buttons {
    justify-content: center;
  }

  .phone-mockup {
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .app-button img {
    height: 40px;
  }

  .phone-mockup {
    max-width: 220px;
  }
}

/* BENEFITS SECTION */
@media (max-width: 834px) {
  .benefits-container {
    flex-direction: column; /* Gambar pindah ke atas */
    text-align: center; /* Title & list rapi di tengah */
    gap: 2rem;
  }

  .benefits-image img {
    max-width: 380px; /* biar tidak terlalu besar */
    margin: 0 auto;
  }

  .benefits-content {
    width: 90%;
    margin: 0 auto;
  }

  .benefits-list {
    padding: 0;
    margin: 0 auto;
    width: 100%;
  }

  .benefit-item {
    justify-content: flex-start !important;
    text-align: left !important; /* list sejajar tengah */
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .benefits {
    padding: 3rem 4%;
  }

  .benefits-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .section-utama {
    font-size: 2rem;
    text-align: center !important;
  }

  .benefits-image img {
    max-width: 350px;
  }

  .benefit-item {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .section-utama {
    font-size: 1.8rem; /* lebih kecil */
    text-align: center;
  }

  .benefits-image img {
    max-width: 300px;
  }

  .benefit-item {
    display: flex;
    justify-content: flex-start !important;
    text-align: left !important;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .benefits-list {
    text-align: left !important;
  }

  .benefit-icon {
    width: 24px; /* lebih kecil tapi masih fix */
    font-size: 1.2rem;
  }

  .benefits-list span {
    font-size: 0.95rem;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .section-utama {
    font-size: 1.6rem;
  }

  .benefits-image img {
    max-width: 280px;
  }

  .benefit-item {
    font-size: 0.9rem;
  }
}

/* TRUST SECTION */
@media (max-width: 768px) {
  .trust {
    padding: 3rem 4%;
  }

  .trust-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 2rem;
  }

  .trust-content .section-utama {
    text-align: center !important;
  }

  .trust-image img {
    max-width: 350px;
  }

  .schedule-item {
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .schedule-button {
    min-width: 120px;
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
    height: 50px;
  }

  .schedule-time {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .trust-image img {
    max-width: 280px;
  }

  .schedule-button {
    min-width: 100px;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    height: 45px;
  }

  .schedule-time {
    font-size: 1rem;
    margin-left: 0;
  }
}
/* === TABLET 700px – 1024px (iPad, Galaxy Tab, dll) === */
@media (max-width: 1024px) and (min-width: 700px) {
  /* KONFIGURASI FLEX — Gambar lebih besar */
  .about-container,
  .partnership-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem 3%;
  }

  /* PERBESAR KOLOM GAMBAR */
  .about-logo,
  .kemitraan-image {
    flex: 1.2; /* dulu 1 → sekarang 1.2 supaya lebih lebar */
  }

  /* PERKECIL KOLOM TEKS */
  .about-content,
  .kemitraan-copy {
    flex: 0.8; /* dulu 1 → jadi 0.8 supaya gambar lebih besar */
  }

  /* BESARKAN GAMBAR */
  .about-logo img {
    width: 100%;
    max-width: 650px !important;
  }

  .kemitraan-image img {
    width: 100%;
    max-width: 650px !important;
    border-radius: 15px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 3rem 4%;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .about-logo img {
    max-width: 300px;
    height: auto;
  }

  .about-content .section-utama {
    text-align: center !important;
  }

  .about-text {
    text-align: justify;
  }

  .cta-button-wa {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .about-logo img {
    max-width: 220px;
  }

  .about-text {
    font-size: 0.9rem;
  }

  .cta-button-wa {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }
}

/* PARTNERSHIP / KEMITRAAN SECTION */
@media (max-width: 768px) {
  .partnership-section {
    padding: 3rem 4%;
  }

  .partnership-content {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .kemitraan-title {
    font-size: 1.6rem;
  }

  .kemitraan-copy p {
    text-align: justify;
  }

  .kemitraan-image {
    justify-content: center;
  }

  .kemitraan-image .image-responsive {
    max-width: 350px;
  }
}

@media (max-width: 480px) {
  .kemitraan-title {
    font-size: 1.3rem;
  }

  .kemitraan-copy p {
    font-size: 0.9rem;
  }

  .kemitraan-image .image-responsive {
    max-width: 280px;
  }

  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* FOOTER */
@media (max-width: 1024px) {
  .footer-container {
    padding: 3rem 3% 3rem;
    gap: 2.5rem;
  }

  .footer-column {
    min-width: 45%;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 3rem 4%;
  }

  .footer-column ul,
  .footer-column a,
  .social-icons {
    justify-content: center;
  }

  .copyright {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 45px;
  }

  .copyright {
    padding: 1rem 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .logo-icon {
    width: 60px;
    height: 60px;
  }

  .logo span {
    font-size: 1rem;
  }
}

/* MOBILE NAVIGATION */

@media (max-width: 768px) {
  header {
    height: auto;
    padding: 0.7rem 4%;
    position: sticky;
    top: 0;
    background: white;
  }

  .logo-icon {
    width: 70px !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  /* Hide desktop menu */
  nav ul {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #ffffff;
    border-radius: 0 0 12px 12px;
    border: 1px solid #e0e0e0;
    border-top: none;
    padding: 1.2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;
    gap: 0.8rem;

    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease;
    z-index: 5000;
  }

  nav ul.active {
    max-height: 350px;
    opacity: 1;
  }

  nav ul li a {
    padding: 0.8rem 0;
    display: block;
    font-size: 1.15rem;
    text-align: center;
  }

  /* Tampilkan hamburger-wrapper */
  .hamburger-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border: 2px solid #6bb832;
    border-radius: 10px;
    cursor: pointer;
    background: white;
    width: fit-content;
    z-index: 10000;
  }

  .hamburger-text {
    font-size: 12px;
    font-weight: 700;
    color: #2d5016;
    display: block;
    margin-top: -3px;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 20px;
    width: 28px;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background: #6bb832;
    border-radius: 2px;
    transition: 0.35s ease;
  }

  /* X Animation */
  .hamburger.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }
}

/* Tambahkan ini di untuk firefox dan safari agar img tidakbisa di drag */
.app-button, 
.app-button img,
.cta-button-wa,
.cta-button-wa img,
.cta-button,
.cta-button img,
.phone-mockup,
.features-image img,
.benefits-image img,
.trust-image img,
.about-logo img,
.kemitraan-image img,
.footer-illustration img,
.logo-icon img {

  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -moz-user-select: none;
  user-select: none;
}

.app-button, 
.app-buttons,
.cta-button,
.cta-button-wa,
.social-icons,
.app-button img,
.cta-button img {
  -moz-user-select: none;
  -moz-user-drag: none;
  user-select: none;
  
}

img {
  -webkit-user-drag: none;  /* Chrome */
  -moz-user-select: none;   /* Firefox fix */
  -moz-user-drag: none;     /* Firefox fix */
  user-select: none;
}


a img {
  -moz-user-select: none;
  -moz-user-drag: none;
  user-select: none;
}