.poppins-font { font-family: "Poppins", sans-serif; }

/* ===================== ROOT & GLOBAL ===================== */
:root {
  --primary-color: #285e3f;
  --accent-green: #285e3f;
  --accent-light: #e8f5e9;
  --bg-gradient: linear-gradient(135deg, var(--accent-green) 0%, #1b3b27 100%);
  --font-family: "Poppins", sans-serif;
  --text-color: #333;
  --bg-color: #fff;
  --card-bg: #ffffff;
  --feature-bg: #fff;
  --white: #ffffff;
}

[data-theme="dark"],
.dark-mode {
  --text-color: #e0e0e0;
  --bg-color: #1a1a1a;
  --card-bg: #2d2d2d;
  --feature-bg: #2a3a2f;
}

body {
  margin: 0;
  font-family: var(--font-family);
  background: var(--bg-color);
  color: var(--text-color);
  padding-top: 76px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 0;
  background-color: var(--accent-green);
  margin-top: -76px;
  /* Negative margin to pull up behind navbar */
  padding-top: 76px;
  /* Add padding to prevent content from being hidden behind navbar */
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg,
      var(--accent-green) 20%,
      rgba(40, 94, 63, 0.8) 40%,
      rgba(40, 94, 63, 0.4) 50%,
      transparent 60%);
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}


.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white);
}

.hero-text p {
  font-size: 0.9rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-text a {
  color: #dcda3c;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

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

.cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:not(.outline) {
  background: var(--white);
  color: var(--accent-green);
}

.cta-btn.outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #1e472f;
  color: var(--white);
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 1;
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.wave .shape-fill {
  fill: var(--white);
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    min-height: 80vh;
  }

  .hero-content {
    padding: 4rem 0;
  }

  .hero-text {
    max-width: 100%;
    padding-right: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-bg-overlay {
    background: linear-gradient(90deg,
        var(--accent-green) 0%,
        rgba(40, 94, 63, 0.9) 25%,
        rgba(40, 94, 63, 0.6) 40%,
        transparent 70%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    text-align: center;
  }

  .hero-content {
    padding: 3rem 0;
    justify-content: flex-end;
  }

  .hero-text {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-bg-overlay {
    background: linear-gradient(180deg,
        rgba(40, 94, 63, 0.9) 0%,
        rgba(40, 94, 63, 0.7) 30%,
        rgba(40, 94, 63, 0.4) 60%,
        transparent 100%);
  }

  .hero-bg-image {
    object-position: 60% center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 250px;
    padding: 0.7rem 1.5rem;
  }
}

/* Business Section Styles */

/* ===================== BUSINESS SECTION ===================== */
.business-section {
  background-color: #ffffff;
  position: relative;
  padding: 5rem 0;
}

.section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-title span {
  color: #4caf50;
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: #c8e6c9;
  bottom: 8px;
  left: 0;
  z-index: -1;
  border-radius: 4px;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.business-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(40, 94, 63, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(40, 94, 63, 0.1);
  text-align: center;
  min-height: 100%;
}

.business-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(40, 94, 63, 0.15) !important;
}

.business-img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 250px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #2e7d32;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(40, 94, 63, 0.1);
  transition: all 0.3s ease;
}

.business-card:hover .business-img {
  transform: scale(1.1);
  background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
}

.business-card h3 {
  color: #285e3f;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.business-card h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #4caf50, #81c784);
  border-radius: 3px;
  transition: all 0.3s ease;
}

.business-card:hover h3::after {
  width: 70px;
}

.business-card p {
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.business-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: left;
}

.business-features li {
  padding: 0.4rem 0;
  color: #555;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.business-features li:hover {
  color: #285e3f;
  transform: translateX(5px);
}

.business-decoration {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(40, 94, 63, 0.05);
  z-index: 0;
  transition: all 0.3s ease;
}

.business-card:hover .business-decoration {
  transform: scale(1.2) rotate(15deg);
}

.section-subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.img-fluid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Decorative Elements */
.leaf-decor {
  font-size: 2rem;
  color: rgba(76, 175, 80, 0.3);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.leaf-bs-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.leaf-bs-2 {
  bottom: 15%;
  right: 8%;
  animation-delay: 2s;
  transform: rotate(45deg);
}

.circle-bs-1 {
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
  opacity: 0.5;
}

.circle-bs-2 {
  width: 180px;
  height: 180px;
  bottom: -60px;
  left: -60px;
  opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .business-card {
    padding: 2rem 1.5rem;
  }

  .business-img {
    width: 90%;
    height: 40%;
    font-size: 1.75rem;
  }

  .business-card h3 {
    font-size: 1.35rem;
  }

  .business-features li {
    font-size: 0.9rem;
  }
}

@media (max-width: 767.98px) {
  .business-section {
    padding: 2rem;
  }

  .business-card {
    margin-bottom: 1.5rem;
  }
}

.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

.dark-mode .hero-bg-overlay {
  background: linear-gradient(360deg,
      rgba(1, 51, 19, 0.9) 20%,
      rgba(40, 94, 63, 0.85) 40%,
      rgba(40, 94, 63, 0.4) 60%,
      transparent 80%);
}

.dark-mode .business-section {
  background-color: #1e1e1e;
}

.dark-mode .wave .shape-fill {
  fill: #1e1e1e;
}

.dark-mode .section-title {
  color: #81c784;
}

.dark-mode .section-title span {
  color: #a5d6a7;
}

.dark-mode .section-title span::after {
  background: #2e7d32;
}

.dark-mode .section-subtitle {
  color: #ffffff;
}

.dark-mode .business-card {
  background: #2d2d2d;
}

.dark-mode .business-img {
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
}

.dark-mode .business-card h3 {
  color: #a5d6a7;
}

.dark-mode .business-card p {
  color: #ffffff;
}

/* Root variables are defined at the top of the file */

/* Body styles consolidated above */

/* ===================== NAVBAR ===================== */
.navbar {
  background: #fff;
  box-shadow: 0 2px 8px rgba(40, 94, 63, 0.08);
  transition: all 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
}

.navbar-brand,
.nav-link,
.navbar-text {
  color: #285e3f !important;
  font-weight: 600;
  font-family: var(--font-family);
  transition: all 0.3s ease;
  position: relative;
}

.nav-link {
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #285e3f;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  border-radius: 2px;
}

.nav-link:hover::before,
.nav-link:focus::before {
  width: 70%;
  opacity: 1;
}

.nav-link:hover,
.nav-link:focus {
  color: #1e4a2e !important;
  transform: translateY(-2px) scale(1.05);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link.active {
  color: #1e4a2e !important;
  font-weight: 700;
  transform: translateY(-2px) scale(1.05);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-link.active::before {
  content: "" !important;
  position: absolute !important;
  width: 70% !important;
  height: 3px !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background-color: #1e4a2e !important;
  opacity: 1 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 1 !important;
}

.navbar-brand img {
  height: 40px;
  margin-right: 12px;
}

.toggle-theme {
  border: none;
  background: none;
  color: #285e3f;
  font-size: 1.2rem;
  margin-right: 16px;
  cursor: pointer;
}

.flag-icon {
  width: 24px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #eee;
  cursor: pointer;
  margin: 0 2px;
  opacity: 0.7;
  transition: all 0.2s ease;
}

.flag-icon:hover,
.flag-icon.active {
  opacity: 1;
  transform: scale(1.1);
}

.navbar.sticky-top {
  z-index: 1020;
}

body.dark-mode {
  --bg-color: #1a1a1a;
  --text-color: #f0f0f0;
}

body.dark-mode .navbar {
  background: #1a1a1a !important;
  border-bottom: 1px solid #333;
}

body.dark-mode .navbar-brand,
body.dark-mode .nav-link,
body.dark-mode .navbar-text {
  color: #fff !important;
}

body.dark-mode .nav-link.active {
  color: #e0e0e0 !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .nav-link.active::before {
  background-color: #e0e0e0 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

body.dark-mode .navbar-toggler {
  filter: invert(1);
}

body.dark-mode .nav-link::before {
  background-color: aquamarine;
}

.language-selector {
  display: flex;
  align-items: center;
  margin-left: 1rem;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    position: fixed;
    top: 66px;
    right: 0;
    width: 66.33%;
    height: calc(100vh - 66px);
    background-color: #fff;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    z-index: 1020;
    overflow-y: auto;
    display: block !important;
  }

  .navbar-collapse.show {
    transform: translateX(0);
    animation: slideInFromRight 0.3s ease-out forwards;
  }

  .navbar-nav {
    flex-direction: column;
    height: 100%;
  }

  .nav-item {
    margin-bottom: 0.5rem;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    margin: 0;
  }

  body.dark-mode .navbar-collapse {
    background-color: #1a1a1a;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  @media (max-width: 400px) {
    .navbar-collapse {
      width: 80%;
    }
  }
}

@keyframes slideInFromRight {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(0);
  }
}

[data-theme="dark"] {
  --text-color: #eee;
  --bg-color: #181818;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  padding: 0;
  background-color: var(--accent-green);
  margin-top: -76px;
  padding-top: 76px;
  box-sizing: border-box;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-green) 20%, rgba(40, 94, 63, 0.8) 35%, rgba(40, 94, 63, 0.4) 45%, transparent 70%);
  z-index: 1;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 80px 0;
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
  max-width: 600px;
  padding-right: 2rem;
  position: relative;
  z-index: 2;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--white);
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  opacity: 0.9;
}

.hero-text a {
  color: #dcda3c;
  text-decoration: none;
  font-size: 1.1rem;
}

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

.cta-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:not(.outline) {
  background: var(--white);
  color: var(--accent-green);
}

.cta-btn.outline {
  border: 2px solid var(--white);
  color: var(--white);
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #1e472f;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  z-index: 1;
}

.wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 100px;
}

.wave .shape-fill {
  fill: var(--white);
}

/* Tablet */
@media (max-width: 1024px) {
  .hero {
    min-height: calc(80vh + 76px);
  }

  .hero-content {
    padding: 4rem 0;
  }

  .hero-text {
    max-width: 100%;
    padding-right: 0;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .hero-bg-overlay {
    background: linear-gradient(90deg, var(--accent-green) 0%, rgba(40, 94, 63, 0.9) 25%, rgba(40, 94, 63, 0.6) 40%, transparent 70%);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    text-align: center;
  }

  .hero-content {
    padding: 3rem 0;
    justify-content: flex-end;
  }

  .hero-text {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-bg-overlay {
    background: linear-gradient(180deg, rgba(40, 94, 63, 0.9) 0%, rgba(40, 94, 63, 0.7) 30%, rgba(40, 94, 63, 0.4) 60%, transparent 100%);
  }

  .hero-bg-image {
    object-position: 60% center;
  }

/* ===================== TENTANG KAMI ===================== */
.tentang-section .section-header {
    justify-content: center;
    text-align: center;
  }

  .tentang-section .section-header .divider {
    margin-left: auto;
    margin-right: auto;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 250px;
    padding: 0.7rem 1.5rem;
  }
}

/* Tentang Kami Section */
.tentang-section {
  position: relative;
  padding: 6rem 0;
  background-color: #fff;
  overflow: hidden;
}

.section-header {
  margin-bottom: 2rem;
}

.section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-title span {
  color: #4caf50;
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: #c8e6c9;
  bottom: 8px;
  left: 0;
  z-index: -1;
  border-radius: 4px;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  margin: 1.5rem 0;
  border-radius: 2px;
}

.section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-color);
  opacity: 0.9;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 2rem;
}

.section-description i {
  position: absolute;
  left: -1rem;
  top: -1rem;
  transform: rotate(180deg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Visi Misi Section Styles */
.vm-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(40, 94, 63, 0.08);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(40, 94, 63, 0.1);
}

.vm-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(40, 94, 63, 0.15) !important;
}

.vm-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: #2e7d32;
  border: 5px solid white;
  box-shadow: 0 5px 15px rgba(40, 94, 63, 0.1);
}

.vm-title {
  color: #285e3f;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
  padding-bottom: 1rem;
}

.vm-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4caf50, #81c784);
  border-radius: 3px;
}

.vm-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #4caf50, #81c784);
  margin: 0 auto 1.5rem;
  border-radius: 3px;
}

.vm-description {
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 0;
  position: relative;
}

.vm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vm-list li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.vm-list li:hover {
  color: #285e3f;
  transform: translateX(5px);
}

.vm-decoration {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  color: rgba(40, 94, 63, 0.05);
  z-index: 0;
}

/* Decorative Elements */
.leaf-decor {
  font-size: 2rem;
  color: rgba(76, 175, 80, 0.3);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.leaf-vm-1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.leaf-vm-2 {
  bottom: 15%;
  right: 8%;
  animation-delay: 2s;
  transform: rotate(45deg);
}

.circle-decor {
  border-radius: 50%;
  background: rgba(200, 230, 201, 0.4);
  z-index: 0;
}

.circle-vm-1 {
  width: 100px;
  height: 100px;
  top: -30px;
  right: -30px;
  opacity: 0.5;
}

.circle-vm-2 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  left: -50px;
  opacity: 0.3;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .vm-card {
    padding: 2rem 1.5rem;
  }

  .vm-title {
    font-size: 1.5rem;
  }

  .vm-description,
  .vm-list li {
    font-size: 1rem;
  }
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #e8f5e9;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-item h4 {
  font-size: 1.1rem;
  color: #1b5e20;
  margin-bottom: 0.3rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.image-wrapper {
  position: relative;
  padding: 1rem;
}

.image-wrapper img {
  position: relative;
  z-index: 2;
  transition: transform 0.5s ease;
}

.image-wrapper:hover img {
  transform: scale(1.02);
}

.floating-shape {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  background: #e8f5e9;
  opacity: 0.7;
  z-index: 1;
  animation: float 8s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: -20px;
  left: -20px;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: -30px;
  right: -20px;
  background: #c8e6c9;
  animation-delay: 1s;
}

.leaf-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.leaf {
  position: absolute;
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.leaf-1 {
  bottom: 15%;
  right: 8%;
  transform: rotate(-30deg);
  width: 100px;
  animation-delay: 1s;
}

.leaf-2 {
  top: 30%;
  right: 10%;
  transform: rotate(15deg);
  width: 60px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .tentang-card {
    padding: 2rem;
  }

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

@media (max-width: 767px) {
  .tentang-section {
    padding: 4rem 0;
  }

  .tentang-card {
    padding: 1.5rem;
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark mode styles are consolidated with [data-theme="dark"] */

[data-theme="dark"] .section-description,
[data-theme="dark"] .vm-description,
[data-theme="dark"] .vm-list li,
[data-theme="dark"] .feature-item p,
[data-theme="dark"] .vm-icon .bi,
[data-theme="dark"] .feature-icon {
  color: #e0e0e0;
}

[data-theme="dark"] .feature-item,
.dark-mode .feature-item {
  background-color: var(--card-bg);
}

[data-theme="dark"] .feature-item p,
.dark-mode .feature-item p {
  color: #b0b0b0;
}

.dark-mode .vm-card {
  background-color: #2d2d2d;
  border-color: #3d3d3d;
}

.dark-mode .vm-icon {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  border-color: #2d2d2d;
}

.dark-mode .vm-icon .bi {
  color: #c5ffc4;
}

.dark-mode .vm-title,
.dark-mode .feature-item h4,
.dark-mode .section-title {
  color: #81c784;
}

.dark-mode .vm-list li:hover {
  color: #81c784;
}

.dark-mode .feature-icon {
  background-color: #1b5e20;
  color: #e8f5e9;
}

.dark-mode .section-title span {
  color: #a5d6a7;
}

.dark-mode .section-title span::after {
  background: #2e7d32;
}

.dark-mode .vm-decoration {
  color: rgba(129, 199, 132, 0.1);
}

.dark-mode .wave .shape-fill {
  fill: #121212;
}

/* Transisi untuk perubahan tema */
body,
.tentang-section,
.feature-item,
.vm-card,
.navbar,
.nav-link,
.hero-text a,
.cta-btn {
  transition: all 0.3s ease;
}

/* Mobile */
/* About Us Section Styles */

/* ===================== ABOUT SECTION ===================== */
.about-section {
  background-color: white;
  position: relative;
  padding: 4rem 0 6rem;
  margin-top: 0rem;
  overflow: hidden;
}

.bg-soft-accent {
  background-color: white;
}

.section-header {
  position: relative;
  margin-bottom: 2.5rem;
}

.section-tag {
  display: inline-block;
  background-color: var(--accent-green);
  color: white;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-title {
  font-weight: 700;
  font-size: 2.25rem;
  color: #1a1a1a;
  position: relative;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg,
      var(--accent-green),
      rgba(40, 94, 63, 0.5));
  border-radius: 2px;
  margin-top: 1.5rem;
}

.text-accent {
  color: var(--accent-green);
}

.img-container {
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(40, 94, 63, 0.1) 0%,
      rgba(40, 94, 63, 0) 70%);
  z-index: 1;
  border-radius: 1rem;
}

.about-img {
  transition: transform 0.5s ease;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

.img-container:hover .about-img {
  transform: scale(1.03);
}

.experience-badge {
  max-width: 200px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(40, 94, 63, 0.15);
  z-index: 2;
  transform: translateY(20px);
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 0.3s;
}

.experience-number {
  font-size: 2rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-green), #3a8a5e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.experience-text {
  line-height: 1.2;
}

.experience-badge:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 30px rgba(40, 94, 63, 0.15) !important;
}

.btn-accent {
  background-color: var(--accent-green);
  color: white;
  border: none;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.8rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 5px 15px rgba(40, 94, 63, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-accent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.2),
      rgba(255, 255, 255, 0.1));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  transform: skewX(-15deg);
}

.btn-accent:hover::before {
  width: 140%;
}

.btn-outline-accent {
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
  background: transparent;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0.8rem 1rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline-accent:hover {
  background-color: var(--accent-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(40, 94, 63, 0.2);
}

.btn-accent:hover {
  background-color: #1f4b2e;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(40, 94, 63, 0.3) !important;
}

/* Feature Items */
.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(40, 94, 63, 0.1);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(40, 94, 63, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-green);
  font-size: 1.25rem;
}

.feature-text h5 {
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

/* Achievement Counter */
.achievement-item {
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

.achievement-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(40, 94, 63, 0.1) !important;
}

.achievement-number {
  position: relative;
  display: inline-block;
}

.achievement-number::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(40, 94, 63, 0.1);
  z-index: -1;
  border-radius: 4px;
}

.achievement-label {
  font-weight: 500;
  font-size: 0.95rem;
}

/* Floating Elements */
.floating-element {
  position: absolute;
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

.floating-element i {
  font-size: 1.5rem;
}

.floating-element:nth-child(2) {
  animation-delay: 1s;
}

/* Animated Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(40, 94, 63, 0.05);
  animation: float 15s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -100px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
  animation-delay: 2s;
  animation-direction: reverse;
}

/* Animations */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(5deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Layanan Section */
.layanan-section {
  position: relative;
  background-color: #f8faf9;
  overflow: hidden;
}

.layanan-card {
  border-radius: 12px;
  transition: all 0.3s ease;
  background: white;
  overflow: hidden;
}

.layanan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(40, 94, 63, 0.1) !important;
}

.layanan-card .card-title {
  color: var(--accent-green) !important;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.layanan-card .card-text {
  color: #6c757d;
  margin-bottom: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.layanan-card .btn-outline-accent {
  font-size: 0.85rem;
  padding: 0.4rem 1rem;
  border-width: 1.5px;
  font-weight: 500;
}

.layanan-card .btn-outline-accent:hover {
  color: white !important;
}

.card-img-top {
  transition: transform 0.5s ease;
}

.layanan-card:hover .card-img-top {
  transform: scale(1.05);
}

/* Sambutan Section */
.sambutan-section {
  position: relative;
  overflow: hidden;
}

.sambutan-card {
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid rgba(40, 94, 63, 0.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.sambutan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(40, 94, 63, 0.08) !important;
}

.sambutan-img-container {
  width: 180px;
  height: 180px;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sambutan-img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sambutan-card:hover .sambutan-img-container img {
  transform: scale(1.05);
}

.sambutan-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 94, 63, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.sambutan-card:hover .sambutan-overlay {
  opacity: 1;
}

.sambutan-overlay i {
  font-size: 2.5rem;
  color: white;
}

.sambutan-quote {
  position: relative;
  padding: 1.5rem 0;
}

.sambutan-quote p {
  font-style: italic;
  color: #555;
  margin-bottom: 0;
  position: relative;
  line-height: 1.7;
}

.sambutan-quote::before,
.sambutan-quote::after {
  content: '"';
  font-family: Georgia, serif;
  font-size: 4rem;
  color: var(--accent-green);
  opacity: 0.2;
  position: absolute;
  line-height: 1;
}

.sambutan-quote::before {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sambutan-quote::after {
  display: none;
}

.sambutan-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f5f5f5;
  color: var(--accent-green);
  margin: 0 3px;
  transition: all 0.3s ease;
}

.sambutan-social a:hover {
  background: var(--accent-green);
  color: white;
  transform: translateY(-3px);
}

/* Gallery Section */
.gallery-section {
  position: relative;
  background-color: #f8faf9;
  overflow: hidden;
}

.gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  aspect-ratio: 1/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(40, 94, 63, 0.8);
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-overlay i {
  font-size: 2.5rem;
  color: white;
  transition: all 0.3s ease;
}

.gallery-overlay h5 {
  font-weight: 600;
  margin-bottom: 0;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h5 {
  transform: translateY(0);
  opacity: 1;
}

/* Contact Section */

/* ===================== CONTACT SECTION ===================== */
.contact-section {
  position: relative;
  background-color: #f8faf9;
}

.contact-form {
  background-color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.contact-form:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.form-control,
.form-select {
  padding: 12px 15px;
  border: 1px solid #e1e5ee;
  border-radius: 8px !important;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #285e3f;
  box-shadow: 0 0 0 0.25rem rgba(40, 94, 63, 0.15);
}

.input-group-text {
  background-color: #f8f9fa;
  border: 1px solid #e1e5ee;
  border-right: none;
  border-radius: 8px 0 0 8px !important;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
  border-color: #dc3545;
}

.form-control.is-valid,
.was-validated .form-control:valid {
  border-color: #198754;
}

.map-container {
  height: 100%;
  min-height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.map-container:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-item {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-info-item i {
  width: 50px;
  height: 50px;
  background: rgba(40, 94, 63, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #285e3f;
  margin-bottom: 1rem;
}

.footer-links a {
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  transform: translateX(5px);
  color: #fff176 !important;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.footer-links i {
  transition: transform 0.3s ease;
}

.footer-links a:hover i {
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .about-section {
    text-align: center;
  }

  .section-header {
    text-align: center;
  }

  .section-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .about-features {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-item {
    text-align: left;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2.25rem;
  }

  .about-section {
    padding: 4rem 0 6rem;
  }

  .achievement-item {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .section-title {
    font-size: 2rem;
  }

  .btn-accent,
  .btn-outline-accent {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .floating-element {
    width: 40px;
    height: 40px;
  }

  .floating-element i {
    font-size: 1.25rem;
  }
}

.wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.wave-bottom svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.wave-bottom .shape-fill {
  fill: #ffffff;
}

@media (max-width: 992px) {
  .about-section .row {
    text-align: center;
  }

  .experience-badge {
    left: 50% !important;
    transform: translateX(-50%);
    text-align: center;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .about-section {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: calc(90vh + 76px);
    /* Account for navbar height */
    text-align: center;
  }

  .hero-content {
    padding: 3rem 0;
    justify-content: flex-end;
  }

  .hero-text {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-bg-overlay {
    background: linear-gradient(180deg,
        rgba(40, 94, 63, 0.9) 0%,
        rgba(40, 94, 63, 0.7) 30%,
        rgba(40, 94, 63, 0.4) 60%,
        transparent 100%);
  }

  .hero-bg-image {
    object-position: 60% center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .cta-btn {
    width: 100%;
    max-width: 250px;
    padding: 0.7rem 1.5rem;
  }
}

/* Partner Section Styles */

/* ===================== PARTNERS SECTION ===================== */
.partners-section {
  background-color: #f8f9fa;
}

.section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #285e3f;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #285e3f;
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: #285e3f;
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* Search Box */
.search-box {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
}

.search-box input {
  padding-left: 3rem;
  border-radius: 50px;
  border: 2px solid #e1e5ee;
  transition: all 0.3s ease;
}

.search-box input:focus {
  border-color: #285e3f;
  box-shadow: 0 0 0 0.25rem rgba(40, 94, 63, 0.15);
}

.search-box i {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
}

/* Filter Buttons */
.filter-container {
  margin-bottom: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  margin: 0 auto;
  max-width: 100%;
}

.filter-buttons .btn {
  white-space: nowrap;
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-buttons .btn.active {
  background-color: #285e3f;
  color: white;
  border-color: #285e3f;
}

.filter-buttons .btn:not(.active):hover {
  background-color: #e8f5e9;
  border-color: #285e3f;
  color: #285e3f;
}

/* Partner Cards */
.partner-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #285e3f;
  margin-bottom: 0.75rem;
}

.partner-address {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.btn-accent {
  background-color: #285e3f;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-accent:hover {
  background-color: #1e472f;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(40, 94, 63, 0.3);
}

.btn-outline-accent {
  color: #285e3f;
  border-color: #285e3f;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-outline-accent:hover {
  background-color: #285e3f;
  color: white;
  border-color: #285e3f;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .filter-buttons {
    justify-content: center;
    padding-bottom: 1rem;
  }

  .partner-card {
    padding: 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.75rem;
  }

  .search-box {
    margin-bottom: 1.5rem;
  }

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

  .filter-buttons .btn {
    flex: 0 0 calc(33.33% - 0.8rem);
    /* 3 per baris */
  }
}

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

  .section-tag {
    font-size: 0.8rem;
    padding: 0.4rem 1.25rem;
  }

  .partner-card {
    padding: 1.25rem;
  }

  .partner-name {
    font-size: 1.1rem;
  }

  @media (max-width: 480px) {
    .filter-buttons {
      justify-content: center;
    }

    .filter-buttons .btn {
      flex: 0 0 calc(50% - 0.8rem);
      /* 2 per baris */
    }
  }
}


/* Dark Mode - Partners Section */
body.dark-mode .partners-section.bg-light {
  background-color: #1e1e1e !important;
  /* warna gelap */
}

body.dark-mode .partners-section .section-tag {
  color: var(--accent-green);
  /* accent untuk tag */
}

body.dark-mode .partners-section .section-title {
  color: var(--accent-green);
  /* putih untuk judul */
}

body.dark-mode .partners-section .lead {
  color: var(--accent-green);
  /* abu terang untuk deskripsi */
}

body.dark-mode .partners-section .text-muted {
  color: #aaaaaa !important;
  /* ganti muted supaya tetap terlihat */
}

/* Search box */
body.dark-mode .partners-section .search-box input {
  background-color: #2b2b2b;
  border: 1px solid #444;
  color: #f1f1f1;
}

body.dark-mode .partners-section .search-box input::placeholder {
  color: #888;
}

body.dark-mode .partners-section .search-box i {
  color: #888;
}

/* Filter buttons */
body.dark-mode .partners-section .filter-buttons .btn-outline-accent {
  color: var(--accent-green);
  border-color: var(--accent-green);
}

body.dark-mode .partners-section .filter-buttons .btn-outline-accent:hover,
body.dark-mode .partners-section .filter-buttons .btn-outline-accent.active {
  background-color: var(--accent-green);
  color: #1e1e1e;
}

/* Partner card */
body.dark-mode .partners-section .partner-card {
  background-color: #2b2b2b;
  border: 1px solid #444;
  padding: 20px;
  border-radius: 8px;
}

body.dark-mode .partners-section .partner-card .partner-name {
  color: #ffffff;
}

body.dark-mode .partners-section .partner-card .partner-address {
  color: #cccccc;
}

body.dark-mode .partners-section .partner-card .text-accent {
  color: var(--accent-green);
}

body.dark-mode .partners-section .partner-card .btn-accent {
  background-color: var(--accent-green);
  color: #1e1e1e;
  border: none;
}

body.dark-mode .partners-section .partner-card .btn-accent:hover {
  background-color: var(--accent-green);
}

/* Load more button */
body.dark-mode .partners-section #loadMore.btn-outline-accent {
  color: var(--accent-green);
  border-color: var(--accent-green);
}

body.dark-mode .partners-section #loadMore.btn-outline-accent:hover {
  background-color: var(--accent-green);
  color: #1e1e1e;
}

/* Perbaikan untuk tombol Load More */
#loadMore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
}

#loadMore i {
  line-height: 1;
  vertical-align: middle;
  margin-top: -2px;
  /* Penyesuaian halus jika diperlukan */
}

#loadMore span {
  margin-left: 0.5rem;
}


/* News Section Styles */

/* ===================== NEWS SECTION ===================== */
.news-section {
  background-color: #ffffff;
  position: relative;
  padding: 5rem 0;
}

.news-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(40, 94, 63, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(40, 94, 63, 0.1);
}

.news-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(40, 94, 63, 0.15) !important;
}

.news-img {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-card:hover .news-img img {
  transform: scale(1.05);
}

.news-date {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(255, 255, 255, 0.9);
  color: #2e7d32;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.news-category {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.news-content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.news-card h3 {
  color: #285e3f;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.4;
  flex: 1;
}

.news-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.news-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.section-tag {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.section-title span {
  color: #4caf50;
  position: relative;
  display: inline-block;
}

.section-title span::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: #c8e6c9;
  bottom: 8px;
  left: 0;
  z-index: -1;
  border-radius: 4px;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #4caf50, #8bc34a);
  margin: 1.5rem 0;
  border-radius: 2px;
}

/* Decorative Elements */
.leaf-decor {
  font-size: 2rem;
  color: rgba(76, 175, 80, 0.3);
  animation: float 6s ease-in-out infinite;
  z-index: 0;
}

.leaf-news-1 {
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.leaf-news-2 {
  bottom: 15%;
  right: 8%;
  animation: float 8s ease-in-out infinite;
  transform: rotate(45deg);
}

.circle-news-1 {
  width: 150px;
  height: 150px;
  bottom: -50px;
  right: -50px;
  background: rgba(200, 230, 201, 0.3);
  border-radius: 50%;
}

/* Animation */
@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-10px) rotate(2deg);
  }

  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .news-card {
    margin-bottom: 2rem;
  }

  .news-img {
    height: 180px;
  }
}

@media (max-width: 767.98px) {
  .news-section {
    padding: 3rem 0;
  }

  .news-card h3 {
    font-size: 1.1rem;
  }

  .news-card p {
    font-size: 0.9rem;
  }
}


/* === Dark Mode Careers Section === */
body.dark-mode .careers-section.bg-light {
  background-color: var(--accent-light) !important;
  /* Ganti putih jadi gelap */
}

/* Section header */
body.dark-mode .careers-section .section-title {
  color: var(--text-color);
}

body.dark-mode .careers-section .section-tag {
  color: var(--accent-green);
  background-color: #cbf6da;
}

body.dark-mode .careers-section .section-header .lead {
  color: #dddbdb !important;
  /* warna teks di dark mode */
}

/* Search box */
body.dark-mode .careers-section .search-box input {
  background-color: #1e1e1e;
  border: 1px solid #333;
  color: var(--text-color);
}

body.dark-mode .careers-section .search-box input::placeholder {
  color: #aaaaaa;
}

body.dark-mode .careers-section .search-box i {
  color: var(--accent-green);
}

/* Filter buttons */
body.dark-mode .careers-section .btn-outline-accent {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

body.dark-mode .careers-section .btn-outline-accent:hover,
body.dark-mode .careers-section .btn-outline-accent.active {
  background-color: var(--accent-green);
  color: #fff;
}

/* Career cards */
body.dark-mode .careers-section .career-card {
  background-color: #1e1e1e;
  border: 1px solid #333;
  color: var(--text-color);
}

body.dark-mode .careers-section .career-card .job-title {
  color: var(--text-color);
}

body.dark-mode .careers-section .career-card .company-name,
body.dark-mode .careers-section .career-card .job-location,
body.dark-mode .post-date.text-muted {
  color: #bbbbbb !important;
}

body.dark-mode .careers-section .career-card .bg-accent-light {
  background-color: rgba(76, 175, 110, 0.15) !important;
}

body.dark-mode .careers-section .career-card .text-accent {
  color: var(--accent-green) !important;
}

/* Load More button */
body.dark-mode .careers-section #loadMoreJobs {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

body.dark-mode .careers-section #loadMoreJobs:hover {
  background-color: var(--accent-green);
  color: #fff;
}

body.dark-mode .careers-section .job-details {
  color: #bbbbbb !important;
  /* atau putih: #fff */
}

body.dark-mode .careers-section .job-details i,
body.dark-mode .careers-section .job-location i {
  color: var(--accent-green);
  /* ikon tetap warna aksen */
}

/* tema gelap */
body.dark-mode .career-card {
  background: #2e2e2eff !important;
  /* abu gelap */
  color: #f1f1f1;
  border: 1px solid #b9b8b8ff;
}

/* Career Section Styles */
.careers-section {
  background-color: #f8f9fa;
}

.section-header {
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  padding: 0.25rem 1rem;
  background-color: var(--accent-light);
  color: var(--accent-green);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  color: var(--text-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-divider {
  width: 80px;
  height: 4px;
  background: var(--accent-green);
  margin: 1.5rem auto;
  border-radius: 2px;
}

/* Search Box */
.search-box {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.search-box i {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.25rem;
}

.search-box input {
  padding-left: 3rem;
  border-radius: 50px;
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.search-box input:focus {
  border-color: var(--accent-green);
  box-shadow: 0 0 0 0.25rem rgba(40, 94, 63, 0.25);
}

/* Filter Buttons */
.filter-container {
  overflow-x: auto;
  padding-bottom: 1rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.filter-container::-webkit-scrollbar {
  display: none;
}

.filter-buttons {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.5rem 0;
}

.btn-outline-accent {
  color: var(--accent-green);
  border-color: var(--accent-green);
  white-space: nowrap;
  transition: all 0.3s ease;
}

.btn-outline-accent:hover,
.btn-outline-accent.active {
  background-color: var(--accent-green);
  color: white;
  border-color: var(--accent-green);
}

/* Career Cards */
.career-card {
  background: var(--card-bg);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.career-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.job-title {
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.25rem;
}

.company-name {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.job-location {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 1rem;
}

.job-details {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.post-date {
  font-size: 0.8rem;
}

.btn-accent {
  background-color: var(--accent-green);
  color: white;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 5px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: #1f4a2f;
  color: white;
  transform: translateY(-2px);
}

.badge {
  font-weight: 500;
  padding: 0.35em 0.65em;
  font-size: 0.7em;
}

.bg-accent-light {
  background-color: rgba(40, 94, 63, 0.1) !important;
}

.text-accent {
  color: var(--accent-green) !important;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .filter-buttons {
    justify-content: flex-start;
    padding: 0.5rem 1rem;
  }

  .career-card {
    margin-bottom: 1.5rem;
  }
}

/* Dark Mode Adjustments */
[data-theme="dark"] .career-card {
  background: var(--card-bg);
  border: 1px solid #3d3d3d;
}

[data-theme="dark"] .search-box input {
  background-color: #2d2d2d;
  border-color: #3d3d3d;
  color: #e0e0e0;
}

[data-theme="dark"] .search-box input::placeholder {
  color: #8a8a8a;
}

[data-theme="dark"] .search-box i {
  color: #8a8a8a;
}

[data-theme="dark"] .btn-outline-accent {
  color: #e0e0e0;
  border-color: #4a7a5c;
}

[data-theme="dark"] .btn-outline-accent:hover,
[data-theme="dark"] .btn-outline-accent.active {
  background-color: var(--accent-green);
  color: white;
}

[data-theme="dark"] .job-location,
[data-theme="dark"] .job-details,
[data-theme="dark"] .post-date {
  color: #b0b0b0;
}

/* Job Detail Styles */
.job-detail-section {
  padding: 5rem 0;
  background-color: #fff;
}

.section-title {
  color: var(--accent-green);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.job-title {
  color: var(--text-color);
  font-weight: 700;
  font-size: 2rem;
}

.job-meta {
  color: #6c757d;
  font-size: 0.95rem;
}

.job-salary {
  background-color: #f8f9fa;
  border-left: 4px solid var(--accent-green);
}

.job-responsibilities,
.job-requirements-list {
  list-style: none;
  padding-left: 0;
}

.job-responsibilities li,
.job-requirements-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: #495057;
}

.job-responsibilities li:before,
.job-requirements-list li:before {
  content: "\f00c";
  font-family: "bootstrap-icons";
  position: absolute;
  left: 0;
  color: var(--accent-green);
  font-size: 0.9rem;
}

.job-sidebar .card {
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.job-sidebar .card-title {
  color: var(--accent-green);
  font-weight: 600;
  font-size: 1.25rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.job-sidebar .card-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-green);
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.hover-lift {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.1) !important;
}

.btn-accent {
  background-color: var(--accent-green);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-accent:hover {
  background-color: #1f4a2f;
  color: white;
  transform: translateY(-2px);
}

.btn-outline-accent {
  color: var(--accent-green);
  border-color: var(--accent-green);
}

.btn-outline-accent:hover {
  background-color: var(--accent-green);
  color: white;
}

/* Dark Mode Adjustments */
[data-theme="dark"] .job-detail-section {
  background-color: var(--card-bg);
}

[data-theme="dark"] .job-salary {
  background-color: #2d2d2d;
}

[data-theme="dark"] .job-responsibilities li,
[data-theme="dark"] .job-requirements-list li {
  color: #e0e0e0;
}

[data-theme="dark"] .job-sidebar .card {
  background-color: #2d2d2d;
  border-color: #3d3d3d;
}

[data-theme="dark"] .job-sidebar .card-body {
  background-color: #2d2d2d;
}

[data-theme="dark"] .badge.bg-light {
  background-color: #3d3d3d !important;
  color: #e0e0e0 !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
  .job-sidebar {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .job-title {
    font-size: 1.75rem;
  }

  .job-meta {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

  .section-title {
    font-size: 1.25rem;
  }

  .job-sidebar .card {
    margin-bottom: 1.5rem;
  }
}

/* =======================
   DARK MODE - Job Detail
   ======================= */
body.dark-mode .job-detail-section {
  background-color: var(--bg-color);
  color: var(--text-color);
}

body.dark-mode .job-detail-section .job-title {
  color: var(--text-color);
}

body.dark-mode .job-detail-section .badge.bg-accent-light {
  background-color: var(--accent-light) !important;
  color: var(--accent-green) !important;
}

body.dark-mode .job-detail-section .job-meta span,
body.dark-mode .job-detail-section .job-meta i {
  color: var(--text-color) !important;
}

body.dark-mode .job-detail-section .job-salary {
  background-color: var(--accent-light) !important;
  color: var(--text-color) !important;
}

body.dark-mode .job-detail-section .job-salary .text-muted {
  color: #bbb !important;
}

body.dark-mode .job-detail-section .job-description,
body.dark-mode .job-detail-section .job-requirements,
body.dark-mode .job-detail-section .job-skills {
  color: var(--text-color);
}

body.dark-mode .job-detail-section .job-responsibilities li,
body.dark-mode .job-detail-section .job-requirements-list li {
  color: var(--text-color);
}

body.dark-mode .job-detail-section .badge.bg-light {
  background-color: var(--accent-light) !important;
  color: var(--text-color) !important;
}

body.dark-mode .job-sidebar .card {
  background-color: #2e2e2eff !important;
  color: var(--text-color) !important;
}

body.dark-mode .job-sidebar .card .text-muted {
  color: #bbb !important;
}

body.dark-mode .btn.btn-accent {
  background-color: var(--accent-green);
  border-color: var(--accent-green);
  color: #fff;
}

body.dark-mode .btn.btn-accent:hover {
  background-color: #3c915b;
  border-color: #3c915b;
}

/* =======================
   DARK MODE - Contact Info
   ======================= */
body.dark-mode .bg-light {
  background-color: var(--bg-color) !important;
}

body.dark-mode .bg-white {
  background-color: var(--accent-light) !important;
}

body.dark-mode .text-muted {
  color: #bbb !important;
}

body.dark-mode .icon-box.bg-accent-light {
  background-color: var(--accent-light) !important;
  color: var(--accent-green) !important;
}

.dark-mode {
  background-color: #121212;
  color: #e0e0e0;
}

.dark-mode .hero-bg-overlay {
  background: linear-gradient(360deg,
      rgba(1, 51, 19, 0.9) 20%,
      rgba(40, 94, 63, 0.85) 40%,
      rgba(40, 94, 63, 0.4) 60%,
      transparent 80%);
}

.dark-mode .news-section {
  background-color: #1e1e1e;
}

.dark-mode .wave .shape-fill {
  fill: #1e1e1e;
}

.dark-mode .section-title {
  color: #81c784;
}

.dark-mode .section-title span {
  color: #a5d6a7;
}

.dark-mode .section-title span::after {
  background: #2e7d32;
}

.dark-mode .news-card {
  background-color: #2d2d2d;
}

.dark-mode .news-card h3 {
  color: #a5d6a7;
}

.dark-mode .news-card p {
  color: #ffffff;
}

.dark-mode .news-card .btn {
  background-color: #2e7d32;
  color: #ffffff;
}

.dark-mode #internshipPrograms h4, .dark-mode #internshipBenefits span {
  color: #a5d6a7;
}

/* Dark Mode Modal Styles */
.dark-mode .modal-content {
  background-color: #2d2d2d;
  color: #e0e0e0;
  border: 1px solid #444;
}

.dark-mode .modal-header {
  border-bottom: 1px solid #444;
  background-color: #1e1e1e;
}

.dark-mode .modal-footer {
  border-top: 1px solid #444;
  background-color: #1e1e1e;
}

.dark-mode .modal-title {
  color: #ffffff;
}

.dark-mode .form-control,
.dark-mode .form-select,
.dark-mode .form-control:focus,
.dark-mode .form-select:focus {
  background-color: #3d3d3d;
  color: #ffffff;
  border-color: #555;
}

.dark-mode .form-control:disabled,
.dark-mode .form-control[readonly] {
  background-color: #2d2d2d;
}

.dark-mode .input-group-text {
  background-color: #3d3d3d;
  color: #e0e0e0;
  border-color: #555;
}

.dark-mode .form-control::placeholder {
  color: #999;
}

.dark-mode .invalid-feedback {
  color: #ff6b6b;
}

.dark-mode .is-invalid,
.dark-mode .was-validated .form-control:invalid,
.dark-mode .was-validated .form-select:invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
}

.dark-mode .is-valid,
.dark-mode .was-validated .form-control:valid,
.dark-mode .was-validated .form-select:valid {
  border-color: #198754;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
}

.dark-mode .text-muted {
  color: #9e9e9e !important;
}

.dark-mode .alert-info {
  background-color: rgba(25, 135, 84, 0.2);
  border-color: rgba(25, 135, 84, 0.3);
  color: #a5d6a7;
}

.dark-mode .alert-info .bi-info-circle-fill {
  color: #4caf50;
}
/* =======================
DARK MODE OVERRIDES
======================= */
/* Warna dasar dark mode */
body.dark-mode {
  --accent-green: #4caf6e;
  /* Hijau lebih neon */
  --accent-light: #2e2e2e;
  --bg-color: #121212;
  --text-color: #f5f5f5;

  background-color: var(--bg-color);
  color: var(--text-color);
}

/* Section background layering */
body.dark-mode .about-section,
body.dark-mode .layanan-section,
body.dark-mode .sambutan-section,
body.dark-mode .gallery-section,
body.dark-mode .contact-section {
  background-color: #1e1e1e !important;
}

/* Card dan kontainer */
body.dark-mode .card,
body.dark-mode .feature-item,
body.dark-mode .contact-form {
  background-color: #222 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Teks sekunder */
body.dark-mode .card-text,
body.dark-mode .feature-text p,
body.dark-mode .text-muted {
  color: #bbbbbb !important;
}

/* Tombol */
body.dark-mode .cta-btn {
  color: #1b3b27;
}

body.dark-mode .cta-btn.outline {
  color: white;
}

body.dark-mode .btn-accent {
  background-color: var(--accent-green);
  color: #fff;
}

body.dark-mode .cta-btn:hover {
  background-color: var(--accent-green);
  color: #fff;
}

body.dark-mode .btn-outline-accent {
  border-color: var(--accent-green);
  color: var(--accent-green);
}

body.dark-mode .btn-outline-accent:hover {
  background-color: var(--accent-green);
  color: #fff;
}

/* Hero overlay */
body.dark-mode .hero-bg-overlay {
  background: linear-gradient(90deg,
      rgba(1, 51, 19, 0.9) 20%,
      rgba(40, 94, 63, 0.85) 40%,
      rgba(40, 94, 63, 0.4) 60%,
      transparent 80%);
}

/* Wave shape */
body.dark-mode .wave .shape-fill,
body.dark-mode .wave-bottom .shape-fill {
  fill: #1e1e1e;
}

body.dark-mode .bg-soft-accent {
  background-color: #1e1e1e;
}

body.dark-mode .section-title,
body.dark-mode .feature-text h5 {
  color: var(--white);
}

body.dark-mode .experience-text span,
body.dark-mode .experience-text {
  color: #181818;
  /* abu terang */
}

body.dark-mode .experience-text .text-muted {
  color: #5f5d5d !important;
  /* atasi warna default Bootstrap text-muted */
}

body.dark-mode .sambutan-card h4 {
  color: #f3eded;
  /* putih atau warna lain */
}

/* Tema Gelap untuk Card Sambutan */
body.dark-mode .sambutan-card {
  background-color: var(--accent-light);
  /* abu-abu gelap */
  color: var(--text-color);
  /* teks putih */
  border-radius: 12px;
  /* opsional biar lebih soft */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  /* efek bayangan */
}

body.dark-mode .sambutan-card .sambutan-quote p {
  color: #ccc;
  /* teks quote sedikit lebih lembut */
}

/* Dark mode untuk input form */
body.dark-mode .contact-form {
  background-color: #1e1e1e;
  /* background form */
}

body.dark-mode .contact-form .form-control {
  background-color: #2a2a2a;
  /* background input */
  color: #f0f0f0;
  /* warna teks */
  border-color: #444;
  /* border input */
}

body.dark-mode .contact-form .form-control::placeholder {
  color: #aaa;
  /* warna placeholder */
}

body.dark-mode .contact-form .input-group-text {
  background-color: #2a2a2a !important;
  /* samakan warna input */
  border-color: #444 !important;
  color: #f0f0f0 !important;
}


body.dark-mode .contact-form label,
body.dark-mode .contact-form h5,
body.dark-mode .contact-form h6,
body.dark-mode .contact-form p {
  color: #f0f0f0;
  /* warna teks label dan judul */
}