body {
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;

  background: 
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
    url("/static/img/body1.png"); /* ganti sesuai nama file lu */

  background-size: cover;       /* full layar */
  background-position: center;  /* posisi tengah */
  background-repeat: no-repeat;
  background-attachment: fixed; /* efek parallax dikit */

  color: #f1f5f9;
  line-height: 1.6;
}
nav { background:transparent; padding:18px 48px; display:flex; justify-content:space-between; border-bottom:0px transparent }
nav a { margin-right:80px; text-decoration:none; color:#ff0000d5 }
header {
  background:transparent;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 12px 12px;
  text-align: center;
}
.container{
  max-width:1100px;
  margin:auto;
  padding:20px 20px;
}

.grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); gap:32px }
.card { background:#ada8a8; padding:30px; border-radius:14px; border:1px solid #dfdfdf }
footer { background:#053d30; color:#d1fae5; padding:10px; text-align:center }
button { background:#166534; color:rgb(231, 218, 218); border:none; padding:12px 22px; border-radius:10px; cursor:pointer }

#contactModal {
    display: none; 
    position: fixed;
    top:0; left:0;
    width:100%; height:100%;
    background: rgba(0,0,0,0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
#contactModal > div {
    background: rgb(255, 255, 255);
    padding: 30px;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
    position: relative;
}
#contactModal button {
    margin-top: 20px;
    cursor: pointer;
}
.lang-switch {
  display: flex;
  align-items: center;
  gap: 12px;
}

.lang-switch a {
  font-size: 18px;
  transition: transform 0.2s ease;
}

.lang-switch a:hover {
  transform: scale(1.2);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Base button */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Tombol bulat */
.lang-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;               
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

/* Flag full isi lingkaran */
.lang-btn .fi {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
}

/* Hover glow */
.lang-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
}

/* Active state */
.lang-btn.active {
  border: 1px solid rgb(255, 255, 255);
  box-shadow: 0 0 14px rgba(219, 218, 207, 0.9);
}

/* ================= NAVBAR ================= */

.navbar{
  position: fixed;        /* biar nempel di atas */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;

  background: rgba(0, 0, 0, 0.384); /* hitam transparan */
  
  /* ini bikin efek kaca — SUPER modern */
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);

  border-bottom: 1px solid rgba(255,255,255,0.08);
}



.nav-container{
  max-width:1200px;
  padding:0 32px;
  margin:auto;

  display:flex;
  align-items:center;
}

.logo img{
  height:60px;  
  width:auto;
  display:block;
}


.nav-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu a {
  position: relative;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  letter-spacing: 0.7px;
  transition: color 0.3s ease;
}

/* Hover underline animation */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: rgba(255, 217, 0, 0.76);
  transition: width 0.3s ease;
}

.nav-menu a:hover {
  color: white;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Active menu */
.nav-menu a.active {
  color: white;
}

.nav-menu a.active::after {
  width: 100%;
}

/* ================= LANGUAGE ================= */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: all 0.25s ease;
}

.lang-btn .fi {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-size: cover;
}

.lang-btn.active {
  opacity: 1;
}

.lang-btn:hover {
  opacity: 1;
  transform: scale(1.08);
}

.lang-separator {
  color: rgba(253, 253, 253, 0.4);
  font-weight: 300;
}

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;

  display: flex;
    align-items: center;     /* vertical center */
    justify-content: center; /* horizontal center */
    text-align: center;
}

/* =========================
   HERO SECTION
========================= */

.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* =========================
   BACKGROUND SLIDES
========================= */

.bg-slide {
  position: absolute;
  inset: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  z-index: -3;

  animation: bgSlide 30s infinite;
  will-change: opacity, transform;
}

/* Images */
.bg-slide:nth-child(1) {
  background-image: url("/static/img/forest.jpg");
  animation-delay: 0s;
}

.bg-slide:nth-child(2) {
  background-image: url("/static/img/bg5.jpg");
  animation-delay: -7.5s;
}

.bg-slide:nth-child(3) {
  background-image: url("/static/img/bg2.png");
  animation-delay: -15s;
}

.bg-slide:nth-child(4) {
  background-image: url("/static/img/bg6.jpg");
  animation-delay: -22.5s;
}


/* =========================
   CINEMATIC ANIMATION
========================= */

@keyframes bgSlide {
  0% {
    opacity: 0;
    transform: scale(1.15);
  }

  5% {
    opacity: 1;
    transform: scale(1);
  }

  25% {
    opacity: 1;
    transform: scale(1.02);
  }

  30% {
    opacity: 0;
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
  }
}


/* =========================
   PREMIUM OVERLAY
========================= */

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, 0.3);

  z-index: -1;
  pointer-events: none;
}


.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  transform: translateY(-40px);
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    margin-bottom: 5px;
    letter-spacing: 1px;
    position: center;
   
}

.hero p {
    color: white;
    max-width: 1500px;
    position: flex;
   
}

.footer{
  background:#0f172ac4;     /* navy gelap (corporate banget) */
  color:#94a3b8;         /* abu modern */
  font-size:13px;

  letter-spacing:.5px;
  padding:15px 0;
}

/* Section tetap pakai background hutan */
.services-section {
  position: relative;
  padding: 80px 10%;
 
}

/* Container grid */
.services-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 60px auto;
}

/* Card styling */
.service-card {
  background: rgba(0, 0, 0, 0.5); /* hitam semi transparan */
  backdrop-filter: blur(5px);
  padding: 15px;
  border-radius: 15px;
  color: #ffffff; /* ganti jadi putih biar kebaca */
  transition: 0.3s ease;
  border: 2px solid rgba(255,255,255,0.1);
}
.services-image {
  position: relative;   /* penting supaya absolute ngikutin ini */
  overflow: hidden;
  
}

.services-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 15px;

}

.services-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3); /* tingkat gelap */
  border-radius: 15px;
}

.card-title {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  z-index: 2;
  text-align: center;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-10px);
  background: rgba(0, 0, 0, 0.75);
}

/* Judul */
.service-card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

/* Deskripsi */
.service-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.services-title {
  font-size: clamp(28px, 5vw, 52px);
}


.card-btn {
  display: inline-block;
  margin-top:10px;
  margin-bottom: 25px;
  padding: 15px 25px;
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;

  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(6px);
  transition: all 0.3s ease;
  text-decoration: none;
 
}

.card-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}


/* halaman About */
.about-split {
  padding: 100px 20px;
  background: transparent;
  color: #eaeaea;
}

.about-wrapper {
  display: flex;
  align-items: flex-start;
}

.about-image {
  flex: 0 0 50%;     /* setengah layar */
  overflow: hidden;
  padding-left: 10px;
  padding-top: 90px;
}

.about-image img {
  width: 75%;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
  object-fit: cover;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-size: 38px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
}

.about-content h2::after {
  content: "";
  width: 0px;
  height: 3px;
  background: transparent; /* warna brand LCB */
  display: block;
  margin-top: 90px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
  color: #cccccc;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-block h3 {
  padding-top: 10px;
  font-size: 30px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  
}

.about-block h3::after {
  content: "";
  width: 11%;
  height: 2px;
  background: none;
  display: block;

}
.about-block ul {
  list-style: none;
  padding: 0;
  
}

.about-block ul li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  color: #cccccc;
  text-align: left;
  border-radius: 30px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.about-block ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f7f334;
}

.about-section {
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.content-container {
  max-width:15000px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
.about-container {
  max-width:1000px;
  background: rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 20px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}
/* Huruf judul*/
.about-container h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
/* Huruf konten*/
.about-container p {
  line-height: 1.8;
  font-size: 16px;
  color: #ddd;
}

/* Ordered list styling - same as .about-container p */
.about-container ol {
  line-height: 1.8;
  font-size: 14px;
  color: #ddd;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 30px;
}

.about-container ol li {
  margin-bottom: 10px;
  padding-left: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .about-wrapper {
      flex-direction: column;
      text-align: center;
  }

  .about-content h2::after {
      margin: 10px auto 0;
  }
}

.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.org-level {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.org-level.center {
  justify-content: center;
}

.org-level.three {
  gap: 60px;
}

.org-box {
  background: #ece9d8;
  color: #222;
  padding: 15px 25px;
  border-radius: 15px;
  border: 3px solid #d61c1c;
  box-shadow: 0 10px 20px rgba(0,0,0,0.4);
  font-weight: 600;
  text-align: center;
  min-width: 200px;
}

.org-box span {
  display: block;
  margin-top: 6px;
  font-weight: 400;
  font-size: 13px;
}

.org-box.wide {
  min-width: 500px;
}

/*Galery foto*/
.gallery-section {
  padding: 20px 20px;
  display: flex;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
}

.gallery-wrapper {
  max-width: 1100px;
  width: 100%;
}

.gallery-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

.gallery-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.gallery-track {
  display: flex;
  transition: transform 0.6s ease;
}

.gallery-track img {
  width: 100%;
  max-width: 1100px;
  height: 600px;
  object-fit: cover;
  flex-shrink: 0;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 15px;
  padding: 13px 20px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
}

.gallery-btn:hover {
  background: #d4af37;
}

.prev {
  left: 15px;
}

.next {
  right: 15px;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.legal-item {
  background: #353535cc;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.legal-item:hover {
  transform: translateY(-4px);
}

.legal-item h4 {
  font-size: 15px;
  margin-bottom: 8px;
}

.legal-item p {
  font-weight: 600;
}

.legal-item span {
  font-size: 12px;
  color: #888888;
}