/*
  Copyright (c) 2019 yakangcoder
  All rights reserved. Unauthorized copying or distribution is prohibited.
*/

/* ========================
   yakangcoder - Base Reset
   ======================== */

/* ========================
   Reset & Base Styles
   ======================== */

html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: #222;
  box-sizing: border-box;
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
}

/* ========================
   Hilangkan scroll bar horizontal di seluruh halaman
   ======================== */
html,
body {
  overflow-x: hidden;
}

/* ========================
   Heading font Inter Bold
   ======================== */
h1,
h2,
h3,
h4,
h5,
h6,
.section-card h3,
#main-title,
.visi-misi h2,
.tagline-title,
.footer-brand span,
.footer-cv-jaya span,
.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ========================
   Body text font Inter Regular
   ======================== */
body,
p,
li,
a,
span,
.visi-misi-content,
.section-card p,
.footer,
.footer p,
.footer li,
.footer-brand p,
.footer-cv-jaya p,
.footer-nav a,
.footer-contact ul li {
  font-family: "Inter", Arial, sans-serif;
  font-weight: 400;
}

/* ========================
   Navbar Styles
   ======================== */

/* ========================
   Sembunyikan logo navbar saat layar <= 100px
   ======================== */
@media (max-width: 100px) {
  .navbar-left .brand {
    display: none !important;
  }
}
.navbar {
  background: #99cc33;
  color: #fff;
  padding: 0.8rem 2rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 100;
}
.navbar-left {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.navbar-left .brand {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  pointer-events: auto;
}
.navbar-left .brand img {
  display: block;
  max-height: 64px;
  max-width: 180px;
  width: auto;
  height: auto;
  margin: 0;
  transition: max-height 0.2s, height 0.2s;
}
.navbar-right {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex: 0 0 auto;
}

/* ========================
   Navbar Links
   ======================== */
.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.7rem 1.1rem;
  border-radius: 5px;
  transition: background 0.2s;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: #7fa528;
}

/* ========================
   Hamburger Menu Styles
   ======================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 120;
  transition: background 0.2s;
}
.hamburger:focus {
  outline: 2px solid #99cc33;
  outline-offset: 2px;
}
.hamburger .bar {
  width: 26px;
  height: 3.5px;
  background: #fff;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.hamburger.open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================
   Responsive: show hamburger on mobile
   ======================== */
@media (max-width: 900px) {
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
}

/* ========================
   Ensure hamburger is always above overlay
   ======================== */
.hamburger {
  position: relative;
  z-index: 2100;
}

/* ========================
   Responsive: hide navbar links on mobile
   ======================== */
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .navbar {
    padding: 0.5rem 0.4rem;
  }
}
@media (max-width: 600px) {
  .hamburger {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }
  .hamburger .bar {
    width: 22px;
    height: 3.5px;
    margin: 4px 0;
  }
}
@media (max-width: 352px), (max-width: 320px) {
  .hamburger {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }
  .hamburger .bar {
    width: 18px;
    height: 3px;
    margin: 3px 0;
  }
}

/* ========================
   Responsive Navbar & Logo
   ======================== */
@media (max-width: 1100px) {
  .navbar {
    padding: 0.7rem 1.2rem;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .nav-links li a {
    font-size: 1rem;
    padding: 0.6rem 0.9rem;
  }
}
@media (max-width: 900px) {
  .navbar {
    padding: 0.6rem 0.7rem;
  }
  .nav-links {
    gap: 0.8rem;
  }
  .nav-links li a {
    font-size: 0.97rem;
    padding: 0.5rem 0.7rem;
  }
}
@media (max-width: 768px) {
  .nav-links {
    display: none !important;
  }
  .hamburger {
    display: flex;
  }
  .navbar {
    padding: 0.5rem 0.4rem;
  }
}
@media (max-width: 600px) {
  .navbar {
    padding: 0.3rem 0.1rem;
  }
  /* ========================
     Tetap tampilkan logo, jangan di-hide
     ======================== */
  .navbar-left .brand img {
    max-height: 80px;
    max-width: 150px;
  }
  .hamburger {
    width: 38px;
    height: 38px;
    min-width: 38px;
    min-height: 38px;
  }
  .hamburger .bar {
    width: 22px;
    height: 3.5px;
    margin: 4px 0;
  }
}
@media (max-width: 352px), (max-width: 320px) {
  .navbar {
    padding: 0.12rem 0.01rem;
    flex-direction: row;
    min-width: 0;
  }
  .navbar-left .brand img {
    max-height: 80px;
    max-width: 150px;
  }
  .hamburger {
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
  }
  .hamburger .bar {
    width: 18px;
    height: 3px;
    margin: 3px 0;
  }
}

/* ========================
   Mobile Hamburger Overlay Menu
   ======================== */
.mobile-hamburger-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 80vw;
  height: 100vh;
  background: #99cc33;
  color: #fff;
  z-index: 2001;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.77, 0, 0.18, 1);
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-hamburger-overlay.open {
  transform: translateX(0);
  display: flex;
}
.mobile-hamburger-close {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  background: transparent;
  border: none;
  position: absolute;
  top: 18px;
  right: 24px;
  cursor: pointer;
  z-index: 10;
  padding: 0;
  line-height: 1;
}
.mobile-hamburger-nav {
  margin-top: 70px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2rem;
  padding: 0 2.5rem 0 0;
}
.mobile-hamburger-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.35rem;
  font-weight: bold;
  text-align: right;
  width: 100%;
  transition: color 0.2s;
}
.mobile-hamburger-nav a:hover {
  color: #222;
}

/* ========================
   Container Styles
   ======================== */
.container {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 700px) {
  .container {
    padding: 0 0.5rem;
    max-width: 99vw;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 0.2rem;
    max-width: 100vw;
  }
}

/* ========================
   Produk Card Styles
   ======================== */
.products {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  justify-content: center;
}
.product-card {
  flex: 1 1 250px;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 1.5rem;
  background: #fafafa;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card img {
  width: 100%;
  max-width: 220px;
  display: block;
  margin: 0 auto 1rem auto;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(153, 204, 51, 0.08);
  background: #fff;
  object-fit: cover;
}
.product-card h3 {
  color: #99cc33;
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.25rem;
  text-align: center;
}
.product-card p {
  color: #444;
  font-size: 1rem;
  text-align: center;
  margin: 0;
}
@media (max-width: 900px) {
  .products {
    gap: 1.2rem;
  }
  .product-card {
    max-width: 100%;
    padding: 1rem;
  }
}
@media (max-width: 600px) {
  .products {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.2rem;
  }
  .product-card img {
    max-width: 100%;
    height: auto;
  }
  .product-card {
    padding: 0.7rem;
  }
}

/* ========================
   fixed Contact Buttons
   ======================== */
.fixed-buttons {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}
.fixed-buttons a {
  display: flex;
  align-items: center;
  background: #99cc33;
  color: #fff;
  text-decoration: none;
  padding: 0.7rem;
  border-radius: 50px;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: background 0.2s;
  gap: 0.6em;
}
.fixed-buttons a:hover {
  background: #7fa528;
}
.fixed-buttons svg {
  margin-right: 0;
}

/* ========================
   hero
   ======================== */
.hero-slider {
  width: 100vw;
  margin: 0 auto 2rem auto;
  aspect-ratio: 3 / 1;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(153, 204, 51, 0.07);
}

.hero-static {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.25);
  z-index: 1;
}

.hero-caption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 2rem 2.5rem;
  text-align: center;
  max-width: 90%;
  z-index: 2;
}

.hero-caption h2 {
  margin: 0 0 0.5rem 0;
  font-size: 2.5rem;
  line-height: 1.2;
}

.hero-caption p {
  margin: 0;
  font-size: 1.2rem;
}

/* ========================
   Responsive Styles tablet and mobile
   ======================== */
@media (max-width: 768px) {
  .hero-caption {
    padding: 1.5rem 1.2rem;
  }
  .hero-caption h2 {
    font-size: 2rem;
  }
  .hero-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-caption {
    padding: 1rem 0.8rem;
  }
  .hero-caption h2 {
    font-size: 1.5rem;
  }
  .hero-caption p {
    font-size: 0.95rem;
  }
}

/* ========================
   Typing Text Animation
   ======================== */
#typing-text::after {
  content: "|";
  animation: blink 1s infinite;
  color: #fff;
  margin-left: 5px;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* ========================
   Company Profile Image
   ======================== */
.company-profile-img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin: 2rem 0;
  display: inline-block;
}

/* ========================
   Section Styles
   ======================== */
section {
  margin-bottom: 2.5rem;
}
section h2 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #000000;
  text-align: center;
}
section h2 span {
  vertical-align: middle;
}
.section-icon {
  vertical-align: middle;
  margin-right: 8px;
}
section h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: #fff4f4;
}
section p {
  color: #fffefe;
  font-size: 1rem;
}
.section-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.section-card {
  flex: 1 1 220px;
  max-width: 300px;
  text-align: center;
  background: #3e5214;
  border-radius: 10px;
  padding: 1.5rem 1rem 1.2rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 1rem;
  transition: box-shadow 0.2s;
}
.section-card:hover {
  box-shadow: 0 4px 16px rgba(153, 204, 51, 0.12);
}
.section-card-icon {
  margin-bottom: 1rem;
}
.section-card-icon svg {
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 700px) {
  .section-cards {
    flex-direction: column;
    gap: 1.2rem;
  }
  .section-card {
    max-width: 100%;
  }
}

/* ========================
   Our Team Section
   ======================== */
.our-team {
  margin-bottom: 2.5rem;
}
.our-team .section-cards {
  justify-content: center;
  gap: 2rem;
}
.our-team .section-card {
  max-width: 300px;
  background: #3e5214;
  border-radius: 10px;
  padding: 1.5rem 1rem 1.2rem 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  margin-bottom: 1rem;
  text-align: center;
  transition: box-shadow 0.2s;
}
.our-team .section-card:hover {
  box-shadow: 0 4px 16px rgba(153, 204, 51, 0.12);
}
.our-team .section-card-icon img {
  border-radius: 50%;
  margin-bottom: 1rem;
  width: 64px;
  height: 64px;
  object-fit: cover;
  background: #eaf7d2;
  box-shadow: 0 2px 8px rgba(153, 204, 51, 0.08);
}
.our-team .section-card h3 {
  margin-bottom: 0.3rem;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
}
.our-team .section-card p {
  color: #fff;
  font-size: 1rem;
  margin: 0;
  font-weight: 500;
}
@media (max-width: 700px) {
  .our-team .section-cards {
    flex-direction: column;
    gap: 1.2rem;
  }
  .our-team .section-card {
    max-width: 100%;
  }
}

/* ========================
   Contact Section
   ======================== */
.contact-link {
  color: #99cc33;
  text-decoration: none;
  font-weight: bold;
}
.contact-link:hover {
  text-decoration: underline;
}

/* ========================
   Main Desc Styles Company Profile
   ======================== */
#main-desc {
  margin: 2.2rem auto 2.5rem auto;
  padding: 1.7rem 2.2rem 1.5rem 2.2rem;
  background: linear-gradient(120deg, #f8fff3 60%, rgb(169, 255, 10) 100%);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(153, 204, 51, 0.1), 0 2px 8px rgba(0, 0, 0, 0.04);
  color: #333;
  font-size: 1.13rem;
  line-height: 1.7;
  max-width: 700px;
  text-align: center;
  opacity: 0.85;
  border: 1.5px solid #a9ff0b;
  letter-spacing: 0.01em;
  font-weight: 500;
}
@media (max-width: 900px) {
  #main-desc {
    padding: 1.2rem 1rem 1.1rem 1rem;
    font-size: 1.01rem;
    max-width: 99vw;
  }
}
@media (max-width: 600px) {
  #main-desc {
    padding: 0.7rem 0.3rem 0.7rem 0.3rem;
    font-size: 0.97rem;
    border-radius: 10px;
  }
}

/* ========================
   Company Profile Title Style
   ======================== */
#main-title {
  font-size: 3.2rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: #99cc33;
  text-align: center;
  margin: 0 0 1.5rem 0;
  font-family: "Rubik", Arial, Helvetica, sans-serif;
  user-select: none;
  line-height: 1.1;
  text-shadow: 0 2px 12px #eaf7d2, 0 1px 0 #fff, 0 0px 2px #99cc33;
}
@media (max-width: 900px) {
  #main-title {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 600px) {
  #main-title {
    font-size: 1.25rem;
    margin-bottom: 0.7rem;
    letter-spacing: 0.06em;
  }
}

/* ========================
   Kategori tombol style
   ======================== */
.product-categories .category-btn {
  background: #fff;
  color: #222;
  border: none;
  padding: 0.38rem 1.15rem;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgba(153, 204, 51, 0.1);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  min-width: 70px;
}
.product-categories .category-btn.active {
  background: #99cc33;
  color: #fff;
  box-shadow: 0 4px 16px rgba(153, 204, 51, 0.18);
}
.product-categories .category-btn:not(.active):hover {
  box-shadow: 0 4px 16px rgba(153, 204, 51, 0.18);
  color: #99cc33;
}
@media (max-width: 600px) {
  .product-categories .category-btn {
    padding: 0.28rem 0.85rem;
    font-size: 0.98rem;
    min-width: 54px;
  }
}
.product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}
.product-categories .category-btn img {
  width: 18px;
  height: 18px;
  margin-right: 0.4rem;
  vertical-align: middle;
  transition: opacity 0.2s;
}
.product-categories .category-btn:hover img {
  opacity: 0.8;
}
.product-categories .category-btn.active img {
  opacity: 1;
}
.product-categories .category-btn span {
  display: inline-block;
  vertical-align: middle;
}

/* ========================
   Visi Misi Section
   ======================== */
.visi-misi {
  background: linear-gradient(120deg, #f8fff3 60%, rgb(169, 255, 10) 100%);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(153, 204, 51, 0.1), 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 2.2rem 2rem 2rem 2rem;
  max-width: 700px;
  margin: 2.5rem auto 2rem auto;
  text-align: center;
  border: 2.5px solid #b1ff15;
}
.visi-misi-tab {
  padding: 0.5em 2em;
  border-radius: 4px;
  border: none;
  background: #e0e0e0;
  color: #333;
  font-weight: 600;
  cursor: pointer;
  font-size: 1.08rem;
  margin: 0 0.2em;
  transition: background 0.18s, color 0.18s;
  outline: none;
}
.visi-misi-tab.active {
  background: #99cc33;
  color: #fff;
}
.visi-misi-content {
  margin-top: 1.5rem;
  display: none;
}
.visi-misi-content[style*="display: block"] {
  display: block;
}
.visi-misi h2 {
  color: #99cc33;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin-top: 0;
  letter-spacing: 0.01em;
}
.visi-misi p {
  color: #444;
  font-size: 1.08rem;
  margin-bottom: 1.7rem;
  margin-top: 0;
  line-height: 1.7;
  font-weight: 500;
}
@media (max-width: 900px) {
  .visi-misi {
    padding: 1.2rem 1rem 1.1rem 1rem;
    font-size: 1.01rem;
    max-width: 99vw;
  }
  .visi-misi h2 {
    font-size: 1.25rem;
  }
  .visi-misi p {
    font-size: 0.97rem;
  }
  .visi-misi-tab {
    font-size: 0.97rem;
    padding: 0.4em 1.2em;
  }
}
@media (max-width: 600px) {
  .visi-misi {
    padding: 0.7rem 0.3rem 0.7rem 0.3rem;
    border-radius: 10px;
  }
  .visi-misi h2 {
    font-size: 1.08rem;
  }
  .visi-misi p {
    font-size: 0.93rem;
  }
  .visi-misi-tab {
    font-size: 0.93rem;
    padding: 0.3em 0.8em;
  }
}

/* ========================
   Tagline Section Style
   ======================== */
.tag-line {
  text-align: center;
  margin-bottom: 2.5rem;
  margin-top: 0;
  background: linear-gradient(120deg, #3e5214 60%, #5bb309 100%);
  border-radius: 16px;
  box-shadow: 0 4px 18px rgba(153, 204, 51, 0.1), 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 2.2rem 2rem 2rem 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border: 1.5px solid #eaf7d2;
}
#tag-line {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff6f6;
  letter-spacing: 0.04em;
  font-family: "Rubik", Arial, Helvetica, sans-serif;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin-bottom: 2rem;
  margin-top: 0;
  background: none;
  border: none;
  padding: 0;
  text-align: center;
}
.tagline-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 0.5em;
}
#tag-line svg {
  display: inline-block;
  vertical-align: middle;
  animation: tagline-spin 2.2s linear infinite;
  width: 48px;
  height: 48px;
}
@keyframes tagline-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.tagline-title {
  display: block;
  font-size: 1.1rem;
  color: #fff6f6;
  font-weight: 600;
  margin-bottom: 0.2em;
}
@media (max-width: 600px) {
  .tag-line {
    padding: 1.1rem 0.5rem 1.1rem 0.5rem;
    border-radius: 10px;
    max-width: 99vw;
  }
  #tag-line {
    font-size: 1.1rem;
    gap: 0.3em;
    margin-bottom: 1.2rem;
  }
  #tag-line svg {
    width: 28px;
    height: 28px;
  }
}

/* ========================
   Responsive Footer
   ======================== */
@media (max-width: 900px) {
  .footer-top {
    padding: 24px 8px;
  }
  .footer .container {
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .footer-top {
    padding: 18px 2px;
  }
  .footer .container {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 99vw;
  }
  .footer-brand img {
    width: 110px;
  }
  .footer-cv-jaya span {
    font-size: 1em;
  }
}

/* ========================
   Responsive improvements for all devices
   ======================== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
  }
  .footer .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .navbar {
    padding: 0.7rem 0.5rem;
  }
  .nav-links {
    gap: 1rem;
  }
}
@media (max-width: 700px) {
  .container {
    padding: 0 0.5rem;
    max-width: 99vw;
  }
  .section-cards {
    flex-direction: column;
    gap: 1.2rem;
  }
  .section-card {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 0.2rem;
    max-width: 100vw;
  }
  .navbar {
    flex-wrap: wrap;
    padding: 0.5rem 0.2rem;
  }
  .navbar-center .brand img {
    max-height: 60px;
    max-width: 180px;
  }
  .products {
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.2rem;
  }
  .product-card img {
    max-width: 100%;
    height: auto;
  }
  .product-card {
    padding: 0.7rem;
  }
  .footer-top {
    padding: 18px 2px;
  }
  .footer .container {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 99vw;
  }
  .footer-brand img {
    width: 110px;
  }
  .footer-cv-jaya span {
    font-size: 1em;
  }
  .tag-line {
    padding: 1.1rem 0.5rem 1.1rem 0.5rem;
    border-radius: 10px;
    max-width: 99vw;
  }
  #tag-line {
    font-size: 1.1rem;
    gap: 0.3em;
    margin-bottom: 1.2rem;
  }
  #tag-line svg {
    width: 28px;
    height: 28px;
  }
}

/* ========================
   Responsive for extra small mobile devices (320px - 352px)
   ======================== */
@media (max-width: 352px) {
  html,
  body {
    font-size: 12px;
  }
  .container {
    padding: 0 0.01rem;
    max-width: 100vw;
  }
  .navbar {
    padding: 0.2rem 0.01rem;
    flex-wrap: wrap;
  }
  .navbar-center .brand img {
    max-height: 32px;
    max-width: 80vw;
  }
  .nav-links {
    gap: 0.2rem;
  }
  .hamburger {
    width: 28px;
    height: 28px;
  }
  .hamburger .bar {
    width: 18px;
    height: 2px;
    margin: 2px 0;
  }
  .mobile-hamburger-close {
    font-size: 1.5rem;
    top: 8px;
    right: 10px;
  }
  .mobile-hamburger-nav {
    margin-top: 40px;
    gap: 1rem;
    padding: 0 1rem 0 0;
  }
  .mobile-hamburger-nav a {
    font-size: 1rem;
  }
  .product-card {
    padding: 0.2rem;
    font-size: 0.9rem;
    max-width: 100vw;
  }
  .product-card img {
    max-width: 80vw;
    border-radius: 5px;
  }
  .products {
    gap: 0.2rem;
    margin-top: 0.2rem;
  }
  .tag-line {
    padding: 0.3rem 0.05rem 0.3rem 0.05rem;
    border-radius: 5px;
    max-width: 99vw;
    margin-bottom: 0.5rem;
  }
  #tag-line {
    font-size: 0.75rem;
    gap: 0.08em;
    margin-bottom: 0.4rem;
  }
  .tagline-icon-wrapper img,
  #tag-line svg {
    width: 14px !important;
    height: 14px !important;
  }
  .tagline-title {
    font-size: 0.75rem;
    margin-bottom: 0.05em;
  }
  .visi-misi {
    padding: 0.15rem 0.01rem 0.15rem 0.01rem;
    border-radius: 5px;
    font-size: 0.85rem;
    max-width: 99vw;
  }
  .visi-misi h2 {
    font-size: 0.7rem;
  }
  .visi-misi p {
    font-size: 0.75rem;
  }
  .visi-misi-tab {
    font-size: 0.75rem;
    padding: 0.08em 0.3em;
  }
  .section-cards {
    gap: 0.2rem;
  }
  .section-card {
    padding: 0.2rem 0.08rem 0.2rem 0.08rem;
    font-size: 0.85rem;
    max-width: 100vw;
  }
  .section-card-icon img,
  .section-card-icon svg {
    width: 14px !important;
    height: 14px !important;
  }
  .section-card h3 {
    font-size: 0.8rem;
  }
  .section-card p {
    font-size: 0.75rem;
  }
  .footer-top {
    padding: 4px 0.2px;
  }
  .footer .container {
    padding: 0 0.02rem;
    gap: 2px;
  }
  .footer-brand img {
    width: 38px;
  }
  .footer-cv-jaya span {
    font-size: 0.8em;
    margin-bottom: 0.2em;
  }
  .footer-brand p,
  .footer-cv-jaya p {
    font-size: 9px;
  }
  .footer-nav h4,
  .footer-contact h4,
  .footer-social h4 {
    font-size: 0.8em;
    margin-bottom: 4px;
  }
  .footer-nav a,
  .footer-contact ul li {
    font-size: 0.8em;
  }
  .footer-social .social-icons {
    gap: 3px;
    margin-top: 2px;
  }
  .footer-social a {
    width: 14px;
    height: 14px;
    font-size: 8px;
  }
  .footer-bottom {
    font-size: 8px;
    padding: 3px;
  }
  .fixed-buttons {
    right: 0.2rem;
    bottom: 0.2rem;
    gap: 0.2rem;
  }
  .fixed-buttons a {
    padding: 0.1rem;
    font-size: 0.7em;
  }
  .fixed-buttons img,
  .fixed-buttons svg {
    width: 12px !important;
    height: 12px !important;
  }
  #main-title {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.03em;
  }
  #main-desc {
    padding: 0.3rem 0.05rem 0.3rem 0.05rem;
    font-size: 0.8rem;
    border-radius: 5px;
    margin: 0.5rem auto 0.7rem auto;
  }
  .company-profile-img {
    margin: 0.5rem 0;
    border-radius: 5px;
  }
  .hero-slider {
    height: 60px;
    min-height: 40px;
    margin-bottom: 0.5rem;
  }
  .hero-caption {
    padding: 0.2rem 0.05rem;
    font-size: 0.7rem;
    border-radius: 5px;
  }
  .hero-caption h2 {
    font-size: 0.7rem;
  }
  .hero-caption p {
    font-size: 0.6rem;
  }
}

/* ========================
   FOOTER STYLES
   ======================== */

.footer {
  background-color: #4b6617;
  color: #fff;
  font-family: "Segoe UI", sans-serif;
  font-size: 14px;
}

.footer-top {
  padding: 40px 20px;
}

.footer .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer .container > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-brand p {
  max-width: 300px;
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-cv-jaya {
  padding-top: 24px;
  margin-bottom: 0;
  min-width: 220px;
}

.footer-cv-jaya span {
  font-weight: bold;
  color: #fff;
  font-size: 1.1em;
  letter-spacing: 0.02em;
  margin-bottom: 0.4em;
  display: block;
}

.footer-cv-jaya p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
}

.footer-nav ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-nav h4,
.footer-contact h4,
.footer-social h4 {
  font-weight: bold;
  margin-bottom: 12px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.footer-contact i {
  margin-right: 8px;
  color: #cde95a;
}

.footer-contact ul li {
  margin-bottom: 10px;
}

.footer-social {
  margin-bottom: 24px;
}

.footer-social .social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-social a {
  background-color: #99cc33;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #88b42d;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  background-color: #3a5114;
  font-size: 13px;
}
