
/* --------------------------
   1. Variabel warna & reset
   -------------------------- */
:root {
  /* Warna utama */
  --green-polije: #103727;   /* hijau utama */
  --green-darker: #082017;  /* hijau lebih gelap */
  --green-light: #1a523b;
  --orange-cta: #C25D3C;    /* aksen oranye */
  --white: #ffffff;
  --cream-bg: #f5f3ec;

  /* Teks */
  --text-dark: #263225;
  --text-muted: #e0e0e0;
  --text-gray: #666;
}

/* Reset dasar */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--cream-bg);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* Override container Bootstrap agar sesuai lebar desain */
.container {
  width: 90% !important;
  max-width: 1200px !important;
  margin: 0 auto;
  padding: 0; /* reset padding Bootstrap */
}

/* Utilitas teks */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
}

.text-center { text-align: center; }
.section-padding { padding: 80px 0; }


/* =========================================
   2. Header (Top bar + Navbar)
   - Penjelasan singkat di setiap blok
   ========================================= */

/* Header wrapper untuk sticky header + bayangan lembut */
.header-wrapper {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* -- Top bar: info kontak & sosial (atas) -- */
.top-bar {
  background-color: var(--green-darker);
  color: rgba(255, 255, 255, 0.8);
  padding: 8px 0;
  font-size: 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-contact {
  display: flex;
  gap: 20px;
}

.top-contact span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-contact i {
  color: var(--orange-cta);
}

.top-socials {
  display: flex;
  gap: 15px;
}

.top-socials a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  text-decoration: none;
}

.top-socials a:hover {
  color: var(--orange-cta);
}

/* -- Navbar utama (integrasi Bootstrap) -- */
.navbar {
  background-color: var(--green-polije) !important;
  padding: 15px 0;
  transition: 0.3s;
}

/* Tombol hamburger: gaya putih + fokus oranye */
.navbar-toggler {
  border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(194, 93, 60, 0.5);
}

/* Custom icon hamburger (garis putih) */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Logo area */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 48px;
  width: auto;
  transition: 0.3s;
}

/* Nama brand (dengan teks kecil di bawah jika perlu) */
.brand {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: var(--white);
  line-height: 1.2;
  text-align: left;
}

.brand span {
  font-weight: 300;
  font-size: 0.8rem;
  display: block;
  opacity: 0.8;
}

/* Daftar link navigasi */
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  margin: 0;
  padding: 0;
}

/* Gaya link menu */
.nav-links > li > a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  padding: 5px 0;
  display: block;
}

/* Garis bawah animasi pada hover/active */
.nav-links > li > a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--orange-cta);
  transition: width 0.3s;
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
  width: 100%;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--white);
}

/* -- Dropdown kustom (hindari bentrok dengan Bootstrap) -- */
.nav-item-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.dropbtn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.dropbtn i {
  font-size: 0.7rem;
  margin-left: 5px;
  color: var(--orange-cta);
  transition: 0.3s;
}

.nav-item-dropdown:hover .dropbtn i {
  transform: rotate(180deg);
}

/* Konten dropdown (desktop) */
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: -15px;
  background-color: var(--green-polije);
  min-width: 200px;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 999;
  border-radius: 8px;
  padding: 10px 0;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ruang transparan untuk memberi jarak (visual) */
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  width: 100%;
  height: 20px;
  background: transparent;
}

/* Tampilkan dropdown pada hover di layar besar */
@media (min-width: 992px) {
  .nav-item-dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUpSmall 0.3s ease;
  }
}

.dropdown-content a {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 12px 25px;
  text-decoration: none;
  display: block;
  font-size: 0.9rem;
  transition: 0.3s;
  border-left: 3px solid transparent;
}

.dropdown-content a:hover {
  color: var(--orange-cta) !important;
  background-color: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--orange-cta);
}

/* Tombol profil bulat */
.user-btn {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  flex-shrink: 0;
  text-decoration: none;
}

.user-btn:hover {
  background: var(--orange-cta);
  border-color: var(--orange-cta);
  transform: scale(1.05);
}

.user-btn i { color: var(--white); font-size: 16px; }

/* Animasi kecil untuk dropdown */
@keyframes fadeInUpSmall {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Penyesuaian navbar pada layar kecil (override Bootstrap collapse) */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--green-polije);
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    width: 100%;
  }

  .nav-links > li { width: 100%; }

  .nav-links > li > a {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .user-btn {
    margin-top: 20px;
    margin-left: 0 !important;
  }

  .nav-item-dropdown {
    flex-direction: column;
    align-items: flex-start;
    height: auto;
  }

  .dropdown-content {
    position: static;
    display: none;
    box-shadow: none;
    padding-left: 20px;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    margin-top: 5px;
    width: 100%;
  }

  .dropdown-content::before { display: none; }

  /* Mobile: tampilkan dropdown saat parent di-hover/klik */
  .nav-item-dropdown:hover .dropdown-content { display: block; }

  /* Pastikan nav-right tampil saat collapse (Bootstrap mengatur visibility) */
  .nav-right { display: block !important; width: 100%; }
}


/* ================================
   3. Hero section
   - Judul besar + gambar
   ================================ */
.hero {
  background-color: var(--green-polije);
  padding: 80px 0 120px 0;
  min-height: 85vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Layer latar semi-transparan + gambar */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(16, 55, 39, 0.92), rgba(16, 55, 39, 0.85)),
    url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.hero-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  animation: fadeInLeft 1s ease;
}

.hero-text h1 {
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  font-weight: 300;
  border-left: 4px solid var(--orange-cta);
  padding-left: 20px;
}

/* Tombol CTA utama */
.btn-cta {
  display: inline-flex;
  align-items: center;
  background-color: var(--orange-cta);
  color: var(--white);
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(194, 93, 60, 0.4);
}

.btn-cta:hover {
  background-color: #a84d31;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(194, 93, 60, 0.5);
  color: white;
}

/* Dekor dot kecil di tombol/teks */
.dot {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  margin-left: 10px;
}

.hero-divider {
  border: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
  margin: 40px 0;
}

/* Fitur / box kecil di hero */
.features-box { display: flex; gap: 40px; }
.feature {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.feature i { font-size: 2rem; color: var(--white); margin-top: 5px; }
.feature h4 { font-size: 1rem; font-weight: 600; margin-bottom: 5px; color: var(--white); }
.feature small {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.4;
  display: block;
  max-width: 200px;
}

/* Garis vertikal dekoratif */
.vert-line { width: 1px; height: 50px; background: rgba(255, 255, 255, 0.2); }

/* Gambar hero di kanan */
.hero-img {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
  animation: fadeInRight 1s ease;
}

.hero-img img {
  width: 100%;
  max-width: 600px;
  border-radius: 30px;
  opacity: 0.9;
  box-shadow: -20px 20px 0 rgba(255, 255, 255, 0.1); /* efek bingkai */
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

/* Animasi untuk hero */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}


/* ================================
   4. Statistik singkat (cards)
   ================================ */
.stats-section {
  background-color: var(--white);
  padding: 60px 0;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  width: 90%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid { display: flex; justify-content: space-around; text-align: center; }

.stat-item h3 {
  font-size: 2.8rem;
  color: var(--green-polije);
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-item p {
  color: var(--text-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}


/* ================================
   5. About / preview
   ================================ */
.about-preview { padding: 120px 0; }

.about-grid { display: flex; align-items: center; gap: 80px; }

.about-img { position: relative; }
.about-img img { width: 100%; border-radius: 20px; }

/* Dekorasi garis oranye di belakang gambar */
.about-img::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--orange-cta);
  border-radius: 20px;
  z-index: -1;
}

.about-text .sub {
  color: var(--orange-cta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: block;
  font-size: 0.85rem;
}

.about-text h2 {
  font-size: 3rem;
  color: var(--green-polije);
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-text p {
  line-height: 1.9;
  color: var(--text-gray);
  margin-bottom: 35px;
  font-size: 1.05rem;
}

.btn-outline {
  padding: 14px 35px;
  border: 2px solid var(--green-polije);
  color: var(--green-polije);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--green-polije);
  color: var(--white);
}


/* ================================
   6. Products / grid produk
   ================================ */
.products-section {
  background-color: var(--white);
  padding: 100px 0;
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-header h2 {
  font-size: 2.8rem;
  color: var(--green-polije);
  margin-bottom: 15px;
}

.section-header p {
  color: var(--text-gray);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--cream-bg);
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.p-img {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.p-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.product-card:hover .p-img img { transform: scale(1.1); }

.p-info { padding: 25px; text-align: center; }

.p-cat {
  font-size: 0.75rem;
  color: var(--orange-cta);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.p-title {
  font-size: 1.2rem;
  margin: 8px 0;
  font-weight: 700;
  color: var(--text-dark);
}

.p-price {
  color: var(--green-polije);
  font-weight: 700;
  font-size: 1.1rem;
}


/* ================================
   7. News / artikel
   ================================ */
.news-section { padding: 100px 0; }

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.news-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.news-card:hover { transform: translateY(-5px); }

.n-img {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.n-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.news-card:hover .n-img img { transform: scale(1.05); }

.n-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--orange-cta);
  color: white;
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.n-info { padding: 30px; }

.n-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--green-polije);
  line-height: 1.4;
}

.n-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 25px;
}

.n-link {
  color: var(--green-polije);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--green-polije);
  padding-bottom: 2px;
  transition: 0.3s;
}

.n-link:hover {
  color: var(--orange-cta);
  border-color: var(--orange-cta);
}


/* ================================
   8. Testimoni
   ================================ */
.testi-section {
  background-color: var(--green-polije);
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  position: relative;
}

/* pola tekstur tipis */
.testi-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.05;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}

.testi-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 30px;
  border-radius: 20px;
  backdrop-filter: blur(5px);
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.3s;
}

.testi-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stars { color: #FFD700; margin-bottom: 20px; }

.quote {
  font-style: italic;
  font-size: 1rem;
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 25px;
  min-height: 80px;
}

.user-info { display: flex; align-items: center; gap: 15px; }

.user-info img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 2px solid var(--orange-cta);
}


/* ================================
   9. Footer
   ================================ */
footer {
  background-color: var(--green-darker);
  color: var(--white);
  padding: 80px 0 30px 0;
  position: relative;
  overflow: hidden;
}

/* tekstur lembut di footer */
footer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.03;
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

/* Kolom brand */
.f-logo-flex {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.f-logo-circle {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.f-logo-circle img { width: 40px; height: auto; }

.f-brand-name {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  color: var(--white);
}

.f-desc {
  font-size: 0.95rem;
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 30px;
}

.f-socials { display: flex; gap: 15px; }

.social-link {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-decoration: none;
  transition: 0.3s;
}

.social-link:hover {
  background: var(--orange-cta);
  border-color: var(--orange-cta);
  transform: translateY(-3px);
}

/* Kolom links */
.f-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.f-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--orange-cta);
}

.f-links ul { list-style: none; padding: 0; }
.f-links li { margin-bottom: 15px; }

.f-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
}

.f-links a:hover {
  color: var(--white);
  padding-left: 8px;
}

/* panah kecil muncul saat hover */
.f-links a::before {
  content: '\203A';
  margin-right: 8px;
  color: var(--orange-cta);
  opacity: 0;
  transition: 0.3s;
  transform: translateX(-5px);
}

.f-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

/* Kolom kontak */
.f-contact ul { list-style: none; padding: 0; }
.f-contact li { margin-bottom: 25px; }

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.contact-row:hover { color: var(--orange-cta); }

.contact-row i {
  font-size: 1.3rem;
  color: var(--orange-cta);
  margin-top: 3px;
}

.contact-text h5 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--white);
}

.contact-text span {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.5;
  display: block;
}

/* Newsletter */
.f-newsletter p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 25px;
  line-height: 1.6;
}

.newsletter-form { position: relative; }

.newsletter-form input {
  width: 100%;
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
  padding-right: 60px;
  font-family: 'Poppins', sans-serif;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.5); }
.newsletter-form input:focus {
  border-color: var(--orange-cta);
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  width: 40px;
  height: 40px;
  background: var(--orange-cta);
  border: none;
  border-radius: 50%;
  color: white;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-btn:hover { background: #a84d31; transform: rotate(15deg); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  font-size: 0.9rem;
  opacity: 0.6;
}


/* ================================
   10. Responsif (breakpoints)
   - Penyesuaian untuk tablet / mobile
   ================================ */
@media (max-width: 991px) {
  /* Hero: susun ulang kolom menjadi vertikal */
  .hero-inner { flex-direction: column; text-align: center; gap: 30px; }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-desc { border-left: none; padding: 0; }
  .features-box { flex-direction: column; align-items: center; text-align: left; }
  .vert-line { display: none; }

  /* Statistik dan About menjadi kolom tunggal */
  .stats-grid { flex-direction: column; gap: 40px; }
  .about-grid { flex-direction: column-reverse; gap: 40px; }

  /* Grid yang lebih rapat untuk device kecil */
  .product-grid, .news-grid, .testi-grid { grid-template-columns: 1fr; }

  /* Footer mobile */
  .footer-content { grid-template-columns: 1fr; gap: 50px; }
  .f-col { text-align: center; }
  .f-heading::after { left: 50%; transform: translateX(-50%); }
  .f-logo-flex { justify-content: center; }
  .f-socials { justify-content: center; }
  .contact-row { justify-content: center; text-align: center; }
  .f-links a { justify-content: center; }
}
