/* Reset & Global */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2ECC71; /* Hijau segar */
  --secondary-color: #ffffff;
  --text-color: #333;
  --dark-green: #00756f;
  --light-gray: #f9f9f9;
  --border-color: #ddd;
}

body {
  background: var(--secondary-color);
  color: var(--text-color);
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

a {
    text-decoration: none;
    color: inherit; 
}


.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: var(--secondary-color);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-left .logo img {
  height: 60px; 
}

.logo-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2em;
  color: #3A9A5C;
  margin: 0;
  font-weight: bold;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Navbar (Desktop) */
.navbar {
  display: flex;
}

.main-menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
}

.main-menu li {
  position: relative;
  list-style-type: none;
}

.navbar ul li a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  padding: 8px 14px;
  display: inline-block;
  transition: 0.3s;
}

.navbar ul li a:hover,
.navbar ul li a.active {
  background-color: var(--primary-color);
  color: var(--secondary-color);
  border-radius: 5px;
}

/* Dropdown (Desktop) */
.submenu {
  display: none;
  position: absolute;
  left: 0;
  background-color: var(--secondary-color);
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  z-index: 1000;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  padding: 0;
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  list-style: none;
}

.has-submenu:hover .submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.submenu a {
  display: block;
  padding: 10px 16px;
  color: var(--text-color);
  text-decoration: none;
  font-size: 0.95em;
  white-space: nowrap;
}

.submenu a:hover {
  background-color: #f0f0f0;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
  padding: 10px;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background: var(--primary-color);
  border-radius: 2px;
  display: block;
  transition: all 0.3s ease;
}

.logo-right img {
    height: 50px; 
}

/* --- Responsive Header (Mobile & Tablet) --- */
@media (max-width: 1024px) { 
    .header-container {
        padding: 10px 20px;
    }
    .logo-text h2 {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) { 
    .header-container {
        padding: 10px 15px; 
        display: flex; 
        align-items: center; 
    }

    .logo-text h2 {
        font-size: 1em; 
    }

    .logo-left .logo img {
        height: 50px;
    }

    .logo-right {
       display: block; 
        height: 40px;
        order: 2;
        margin-left: auto; 
        margin-right: 15px;
    }

    .logo-right img {
        height: 100%;
        max-width: 100%;
        object-fit: contain;
    }

    .hamburger {
        display: flex; 
        order: 3; 
        align-self: center;
    }

    .hamburger span {
        width: 25px;
    }

    .logo-left {
        order: 1;
    }

    /* Mobile Navigation Overlay */
    nav {
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s ease-in-out;
        display: flex;
        flex-direction: column;
        background: var(--secondary-color);
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        z-index: 1000;
        padding: 0 15px; 
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    nav.show { 
        max-height: 1000px; 
        padding-bottom: 10px;
    }

    .main-menu {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .main-menu li {
        padding: 1px 0;
        width: 100%;
        text-align: left;
        border-bottom: 0px solid #eee;
    }

    .main-menu li:last-child {
        border-bottom: none;
    }

    .navbar ul li a {
        color: var(--text-color);
        padding: 12px 0;
        width: 100%;
        text-align: left;
    }
    .navbar ul li a:hover,
    .navbar ul li a.active {
        background-color: #f0f0f0;
        color: var(--primary-color);
        border-radius: 0;
    }

    /* Submenu Mobile */
    .submenu {
        position: static; 
        transform: none;
        opacity: 1;
        pointer-events: auto;
        box-shadow: none;
        background-color: white;
        margin-top: 10px;
        border-radius: 0;
        padding-left: 15px;
    }
    .has-submenu .submenu {
        display: none;
    }
    .has-submenu.open .submenu {
        display: block;
    }
    .submenu a {
        color: var(--secondary-color);
        padding: 12px 20px;
        font-weight: 500;
        text-align: left;
    }
    .submenu a:hover {
        background-color: #005952;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 8px 10px;
    }
    .logo-left .logo img {
        height: 45px;
    }
    .logo-text h2 {
        font-size: 0.9em;
    }
    .hamburger {
        padding: 8px;
        gap: 4px;
    }
    .hamburger span {
        width: 22px;
    }
}


/* Profil Perusahaan */
.profil-perusahaan {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  padding: 40px 20px;
}

.profil-img {
  flex: 1 1 40%;
  max-width: 600px;
}

.profil-img img {
  width: 100%;
  border-radius: 8px;
}

.profil-perusahaan-text {
  flex: 1 1 50%;
  max-width: 600px;
  text-align: left;
}

.profil-perusahaan-text h2 {
  color: var(--dark-green);
  font-size: 1.8em;
  margin-bottom: 12px;
}

.profil-perusahaan-text p {
  margin-bottom: 20px;
  line-height: 1.7;
}

.profil-perusahaan-text a {
  color: var(--dark-green);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.profil-perusahaan-text a:hover {
  color: #004c44;
}

@media (max-width: 768px) {
  .profil-perusahaan {
    flex-direction: column;
    text-align: center;
    padding: 30px 15px; 
    gap: 25px;
  }

  .profil-perusahaan-text, .profil-img {
    max-width: 100%;
    flex: 1 1 auto;
  }
  .profil-perusahaan-text h2 {
      font-size: 1.5em;
  }
  .profil-perusahaan-text p {
      text-align: left;
      font-size: 0.95em;
  }
}

@media (max-width: 480px) {
    .profil-perusahaan {
        padding: 20px 10px;
    }
    .profil-perusahaan-text h2 {
        font-size: 1.3em;
    }
    .profil-perusahaan-text p {
        font-size: 0.9em;
    }
}


/* ===== VISI MISI VALUE ===== */
.vmv-section {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 40px; 
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  justify-items: center;
  text-align: justify; 
}

.vmv-section h3 {
  color: var(--dark-green);
  font-size: 2.5em; 
  font-weight: bold;
  text-align: center;
}

.vmv-section ul {
  padding-left: 20px;
}

.visi, .misi, .value {
  width: 100%;
}

/* ===== RESPONSIVE BREAKPOINTS (Visi Misi) ===== */
@media (max-width: 768px) {
    .vmv-section {
        padding: 20px 20px; 
        gap: 30px;
    }
    .vmv-section h3 {
        font-size: 2em;
    }
}

@media (max-width: 576px) {
  .vmv-section {
    display: block;
    padding: 20px 15px;
    text-align: left;
  }

  .visi, .misi, .value {
    width: 100%;
    margin-bottom: 24px;
  }

  .vmv-section h3 {
    text-align: center;
  }

  .value {
    margin-left: 0;
  }
}

/* ===== GARIS PEMISAH ===== */
.section-separator {
  border: none;
  border-top: 2px solid var(--border-color);
  margin: 40px auto;
  max-width: 95%;
}

/* ===== Swiper ===== */
.swiper { 
  width: 100%;
  max-width: 90%; 
  margin: 30px auto 20px auto;
  overflow: hidden;
  border-radius: 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05); 
}

.swiper-slide {
  text-align: center;
  font-size: 1em;
  background: var(--secondary-color);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  overflow: hidden;
}

.swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border-radius: 0px;
  box-shadow: none; 
}

/* Swiper Pagination */
.swiper-pagination-bullet {
  width: 16px;
  height: 4px;
  border-radius: 0;
  background-color: var(--text-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background-color: var(--dark-green);
}

/* Responsive Hero Swiper */
@media (max-width: 768px) {
  .swiper {
    max-width: 95%; 
    margin: 20px auto; 
  }
  .swiper-slide {
    font-size: 0.95em;
    max-height: 250px;
  }
  .swiper-slide img {
    max-height: 250px;
  }
}
@media (max-width: 480px) {
  .swiper-slide {
    max-height: 200px;
  }
  .swiper-slide img {
    max-height: 200px;
  }
}


/* Berita Grid */
.berita-grid {
  display: flex;
  flex-direction: column;
  gap: 50px;
  padding: 60px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.berita-item {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 2px solid #eee;
}

.berita-item:last-child {
  border-bottom: none;
}

.berita-item img {
  width: 250px;
  flex-shrink: 0;
  border-radius: 6px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.berita-item img:hover {
  transform: scale(1.02);
}

.berita-konten {
  flex: 1;
}

.berita-konten h3 {
  font-size: 22px;
  margin: 0;
}

.berita-konten h3 a {
  text-decoration: none;
  color: var(--dark-green);
  transition: 0.2s;
}

.berita-konten h3 a:hover {
  color: #023d3a;
}

.berita-konten h4 {
  font-size: 14px;
  color: #e67e22;
  margin: 10px 0 5px;
  letter-spacing: 1px;
}

.berita-konten p {
  color: #555;
  line-height: 1.6;
}


/* Halaman Detail Berita */
.berita-detail {
  max-width: 800px;
  margin: 60px auto;
  padding: 0 20px; 
  text-align: center;
}

.berita-detail h2 {
  font-size: 28px;
  color: var(--dark-green);
  margin-bottom: 20px;
}

.berita-detail img {
  display: block;
  margin: 0 auto 30px;
  max-width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.berita-detail p {
  text-align: justify;
  color: #444;
  line-height: 1.8;
  font-size: 17px;
  font-family: 'Segoe UI', sans-serif;
  padding-bottom: 10px;
}

/* Responsif Berita Grid & Detail */
@media (max-width: 768px) {
  .berita-grid {
    padding: 40px 15px 30px;
    gap: 30px;
  }
  .berita-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .berita-item img {
    width: 100%;
    max-width: 300px;
  }

  .berita-konten {
    margin-top: 10px;
  }

  .berita-konten h3 a {
    font-size: 1.2em;
  }

  .berita-detail {
    margin: 40px 15px;
    padding: 0;
  }

  .berita-detail h2 {
    font-size: 1.5em;
  }

  .berita-detail img {
    max-height: 250px;
    margin-bottom: 20px;
  }

  .berita-detail p {
    font-size: 0.95em;
    line-height: 1.6;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .berita-detail h2 {
    font-size: 1.3em;
  }
  .berita-detail p {
    font-size: 0.9em;
  }
}


/* === PRODUK UNGGULAN KHUSUS CAROUSEL === */
.produk-unggulan {
  overflow: hidden;
  padding: 40px 20px;
  text-align: center;
}

.produk-unggulan h2 {
  font-size: 1.6em;
  color: var(--dark-green);
  margin-bottom: 30px;
}

.produk-unggulan-slide h3 {
  font-size: 14px;
  font-weight: 600;
  color: #002f5e;
  text-decoration: none;
  margin-top: 10px;
  text-transform: uppercase;
}

.produk-unggulan-slide a {
  text-decoration: none;
  color: inherit;
}

.produk-unggulan-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.produk-unggulan-swiper {
  padding: 10px 0;
  max-width: 100%;
  overflow: hidden;
}

.produk-unggulan-slide {
  text-align: center;
  padding: 10px;
}

.produk-unggulan-slide img {
  width: 100%;
  height: 160px;
  object-fit: contain;
  margin-bottom: 8px;
}

.produk-unggulan-slide h4 {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
  color: #002f5e;
  margin-top: 0;
}


.produk-unggulan-wrapper .swiper-button-prev,
.produk-unggulan-wrapper .swiper-button-next {
  display: none; /* Swiper dihilangkan */
}

/* Produk Grid (Katalog Produk - Shop Page) */
.produk-list-container {
    display: flex;
    justify-content: center; 
    padding: 20px;
}

.hero {
  text-align: center;
  padding: 80px 20px;
  background-color: var(--light-gray);
  margin-bottom: 30px;
}

.hero h2 {
  font-size: 2.5em;
  color: var(--dark-green);
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1em;
  color: #555;
}

.produk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1200px; 
  width: 100%;
  margin: 0 auto;
}

.produk-item {
  background: var(--secondary-color);
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.produk-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.produk-item img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.produk-item:hover img {
  transform: scale(1.05);
}

.produk-item h3 {
  margin-top: 15px;
  color: var(--dark-green);
  font-size: 1.3em;
}
.produk-item p {
  font-size: 0.95em;
  color: #555;
  margin-top: 5px;
  margin-bottom: 15px;
}

/* Responsive Produk Grid */
@media (max-width: 768px) {
    .produk-list-container {
        padding: 15px;
    }
    .produk-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
        gap: 20px;
    }
    .hero {
        padding: 60px 15px;
    }
    .hero h2 {
        font-size: 2em;
    }
    .hero p {
        font-size: 1em;
    }
    .produk-item h3 {
        font-size: 1.2em;
    }
}
@media (max-width: 480px) {
    .produk-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .produk-list-container {
        padding: 10px;
    }
}


/* ===== Centang list (BOLEH DIHAPUS)===== */
.centang-list {
  list-style: none;
  padding-left: 0;
}

.centang-list li::before {
  content: "✔️";
  color: var(--primary-color);
  margin-right: 8px;
}

/* Tentang Kami Section */
.tentang-kami {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 20px;
  gap: 40px;
  background-color: var(--secondary-color);
}

.tentang-img {
  flex: 1 1 400px;
  max-width: 500px;
}

.tentang-img img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.tentang-teks {
  flex: 1 1 500px;
  max-width: 600px;
}

.tentang-teks h2 {
  font-size: 2.2em;
  color: #f0571a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.tentang-teks h2 span {
  display: block;
}

.tentang-teks p {
  font-size: 1em;
  color: #444;
  line-height: 1.7;
  margin-bottom: 18px;
}

/* Responsive Tentang Kami */
@media (max-width: 768px) {
  .tentang-kami {
    flex-direction: column;
    text-align: center;
    padding: 40px 15px;
    gap: 25px;
  }

  .tentang-teks, .tentang-img {
    flex: 1 1 auto;
    max-width: 100%;
  }

  .tentang-teks h2 {
    font-size: 1.8em;
  }
}
@media (max-width: 480px) {
    .tentang-teks h2 {
        font-size: 1.5em;
    }
    .tentang-teks p {
        font-size: 0.9em;
    }
}


/* ===== PRODUK DETAIL SECTION ===== */
.produk-detail-container {
  padding: 40px 20px;
  max-width: 1200px;
  margin: auto;
  background-color: var(--secondary-color);
}

.judul-kategori {
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 30px;
  text-align: center;
  text-transform: capitalize;
}

.produk-detail-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.produk-gambar {
  flex: 1 1 45%;
  max-width: 500px;
}

.produk-gambar img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.produk-info {
  flex: 1 1 50%;
}

.produk-info h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--dark-green);
}

.produk-deskripsi p,
.produk-deskripsi ul {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 16px;
}

.produk-deskripsi ul {
  padding-left: 20px;
}

.produk-deskripsi li {
  margin-bottom: 8px;
  list-style: disc;
}

/* ===== SEPARATOR ANTAR PRODUK ===== */
.separator {
  border: none;
  border-top: 1px solid #ccc;
  margin: 40px 0px;
}

/* ===== RESPONSIVE MOBILE (Produk Detail) ===== */
@media (max-width: 768px) {
  .produk-detail-container {
      padding: 20px 15px;
  }
  .produk-detail-wrapper {
    flex-direction: column;
    padding: 0; 
    gap: 25px; 
  }

  .produk-gambar, .produk-info {
    flex: 1 1 100%;
    width: 100%;
  }

  .produk-gambar img {
    max-height: 250px; 
    object-fit: contain;
    margin: 0 auto;
  }

  .produk-info h2 {
    font-size: 1.3em; 
    margin-top: 15px;
    text-align: center;
  }

  .produk-deskripsi {
    font-size: 0.9em;
    text-align: left;
  }

  .produk-deskripsi p,
  .produk-deskripsi ul {
    font-size: 0.9em;
    margin-bottom: 12px;
  }

  .produk-deskripsi ul {
    padding-left: 0;
  }

  .produk-deskripsi li {
    list-style-position: inside;
    text-align: left;
  }
}
@media (max-width: 480px) {
    .produk-info h2 {
        font-size: 1.2em;
    }
    .produk-deskripsi p,
    .produk-deskripsi ul {
        font-size: 0.85em;
    }
}


/* Button Styles */
.btn {
  display: inline-block;
  margin-top: 20px;
  background: #25D366; /* Warna WhatsApp */
  color: white;
  padding: 10px 20px;
  border: none; 
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
  cursor: pointer;
}
.btn:hover {
  background: #1ba851;
}

/* Footer */
.site-footer {
  background-color: #00796B;
  color: white;
  padding: 30px 20px;
  font-family: Arial, sans-serif;
  font-size: 13px;
  position: relative;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin: 5px 10px;
}

.footer-column h4 {
  font-weight: bold;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 14px;
}

.footer-column p {
  line-height: 1.4;
  margin-bottom: 3px;
}

.footer-column a {
  color: white;
  text-decoration: none;
  word-wrap: break-word;
}

.footer-column a:hover {
  text-decoration: underline;
}

/* Footer Kolom Kanan (Logo + Tagline + Copyright) */
.footer-right-section {
  flex: 1.2;
  min-width: 300px;
  margin: 5px 10px;
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.footer-logo-tagline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 15px;
  flex-wrap: nowrap;
}

.footer-separator {
  background-color: white;
  width: 1px;
  height: 35px;
  margin: 0;
}

.footer-logo {
  width: 70px;
  height: auto;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
  transition: transform 0.3s ease;
}

.footer-logo:hover {
  transform: scale(1.05);
}

.tagline {
  font-style: normal;
  font-size: 13px;
  font-weight: bold;
  max-width: 220px;
  text-align: left;
  line-height: 1.3;
}

.copyright {
  font-size: 12px;
  line-height: 1.4;
  margin-top: auto;
  text-align: right;
}

.copyright a {
    text-decoration: underline;
}


/* Responsive Footer */
@media (max-width: 768px) {
  .site-footer {
    padding: 25px 15px;
    font-size: 12px;
  }

  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-column {
    min-width: unset;
    width: 100%;
    margin-bottom: 15px;
    text-align: left;
  }
  .footer-column:last-of-type {
      margin-bottom: 0;
  }

  .footer-right-section {
    text-align: left;
    align-items: flex-start;
    min-width: unset;
    width: 100%;
  }

  .footer-logo-tagline {
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
  }

  .footer-separator {
    display: none;
  }

  .footer-logo {
    margin-bottom: 0px;
  }

  .tagline {
    text-align: left;
    max-width: 100%;
    font-size: 12px;
    margin-bottom: 0px;
  }

  .copyright {
    text-align: left;
    font-size: 11px;
    margin-top: 10px;
  }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 20px 10px;
    }
    .footer-column h4 {
        font-size: 13px;
    }
    .footer-column p {
        font-size: 11px;
    }
    .footer-logo {
        width: 60px;
    }
    .tagline {
        font-size: 11px;
    }
    .copyright {
        font-size: 10px;
    }
}


/* WhatsApp Floating Button */
.wa-floater {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 80px;
  right: 20px;
  z-index: 998;
}
.wa-floater img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}

/* Chatbot/FAQ Button */
.chat-toggle-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    transition: background-color 0.3s ease;
}
.chat-toggle-btn:hover {
    background-color: #28a745;
}

/* Chatbot/FAQ Panel */
#chatbot {
    position: fixed;
    bottom: 90px; 
    right: 20px;
    width: 320px;
    max-height: 400px;
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 997;
    display: none;
    flex-direction: column;
    overflow: hidden;
}

#chatbot.active {
    display: flex;
}

.chat-header {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 15px;
    font-size: 1.1em;
    font-weight: bold;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
}

.chat-body {
    padding: 15px;
    overflow-y: auto;
    flex-grow: 1; 
}

.chat-bot {
    background-color: #e0e0e0;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: left;
}

.chat-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.chat-buttons button {
    background-color: #f0f0f0;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: 0.95em;
}

.chat-buttons button:hover {
    background-color: #e5e5e5;
}

.chat-user {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 10px;
    text-align: right;
    align-self: flex-end;
}

/* Responsive Chatbot & WA Floater */
@media (max-width: 480px) {
    #chatbot {
        width: calc(100% - 30px);
        right: 15px;
        left: 15px;
        max-height: 70vh;
        bottom: 75px;
    }
    .chat-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
        right: 15px;
        bottom: 15px;
    }
    .wa-floater {
        width: 50px;
        height: 50px;
        bottom: 70px;
        right: 15px;
    }
}

/* ===== KONTAK ===== */
.kontak-section {
  padding: 40px 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.kontak-heading {
  font-size: 28px;
  margin-bottom: 25px;
  text-align: center;
  color: #333;
}

.kontak-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

/* INFO KONTAK */
.kontak-info {
  flex: 1 1 300px;
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.kontak-info a {
  color: #25d366;
  text-decoration: none;
}
.kontak-info a:hover {
  text-decoration: underline;
}

/* FORM KONTAK */
.formulir-kontak {
  flex: 1 1 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.formulir-kontak input,
.formulir-kontak textarea {
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
  width: 100%;
  box-sizing: border-box;
}

.formulir-kontak textarea {
  resize: vertical;
}

.formulir-kontak button {
  background-color: #25d366;
  color: white;
  border: none;
  padding: 14px;
  font-size: 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.formulir-kontak button:hover {
  background-color: #1eba5b;
}

/* MAPS */
.maps-container iframe {
  width: 100%;
  height: 350px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .kontak-wrapper {
    flex-direction: column;
  }

  .formulir-kontak button {
    width: 100%;
  }
}
