/* =====================
RESET & GLOBAL
===================== */
:root {
  /* --- Warna Alam Utama (Branding) --- */
  --primary-green: #8cc63f; /* Lime Green: Warna logo asli, simbol daun dan energi */
  --soft-green: #f4f9ec; /* Pale Green: Warna sejuk untuk background section agar tidak kaku putih murni */
  --forest-dark: #2d4739; /* Forest Dark: Pengganti Navy, warna hijau sangat gelap untuk kesan konstruksi kokoh tapi tetap bertema alam */
  --sky-accent: #e8f4f8; /* Airy Blue: Warna langit sangat muda untuk area yang membutuhkan kesan luas dan bersih */
  --soft-white: #f9f9f9; /* --- Warna Tipografi (Keterbacaan) --- */
  --title-deep: #1a2b48; /* Deep Sea: Warna judul besar agar tetap terlihat profesional dan berwibawa */
  --text-earth: #4a4a4a; /* Earth Grey: Warna teks utama (p) yang lebih hangat daripada hitam pekat */

  /* --- Navbar & Footer (Stabil) --- */
  --nav-footer: #222222; /* Charcoal: Sesuai keinginan Anda untuk menjaga konsistensi elemen navigasi */

  /* --- Elemen UI --- */
  --btn-green: #5f9e33; /* Leaf Green: Warna tombol utama yang memberikan kesan ramah lingkungan */
  --btn-hover: #8cc63f; /* Lime Green: Efek hover yang memberikan kesan "menyala" */
  --border-eco: rgba(
    140,
    198,
    63,
    0.2
  ); /* Border hijau transparan untuk kartu atau pembatas */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
  overflow-x: hidden; /* Anti scroll horizontal */
  width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  scroll-behavior: smooth;
}

/* ============================================================
   MODERN NAVBAR - GLASSMORPHISM
   ============================================================ */
.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: transparent;
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Keadaan saat di-scroll */
.navbar.scrolled {
  background: rgba(11, 15, 13, 0.9); /* Dark Green Background */
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 12px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid rgba(95, 158, 51, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* BRAND STYLING */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand:hover .logo-img {
  transform: scale(1.1);
}

.logotitle {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.logotitle span {
  color: #5f9e33;
}

/* NAV MENU LINKS */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

/* Efek Hover & Active Line */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #5f9e33;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: #5f9e33;
}

/* MOBILE MENU BUTTON */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 28px;
  height: 3px;
  background: #ffffff;
  transition: 0.3s;
  border-radius: 2px;
}

/* ==========================================
   RESPONSIVE NAVBAR (MOBILE)
   ========================================== */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: #0b0f0d;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.active {
    right: 0;
  }

  /* Animasi Hamburger ke X */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }
}

/* =====================
   HERO SECTION (DESKTOP)
   ===================== */
.hero {
  height: 100vh;
  width: 100%;
  background: url("../images/headerhero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

/* Overlay diperhalus dengan Gradient */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.7)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* Di atas overlay */
  color: #ffffff;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.hero-sub {
  display: block;
  font-size: 14px;
  letter-spacing: 4px;
  color: #8cc63f; /* Warna hijau brand */
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 60px; /* Ukuran Desktop */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 30px;
  color: #ffffff; /* Perbaikan dari hitam ke putih */
}

.hero h1 span {
  color: #8cc63f;
}

.hero-action {
  margin-top: 20px;
}

.hero-btn-outline {
  background-color: #5f9e33;
  display: inline-block;
  padding: 16px 40px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.hero-btn-outline:hover {
  background: #8cc63f;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(140, 198, 63, 0.3);
}

/* =====================
   IPAD / TABLET (Responsive)
   ===================== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 45px; /* Mengecil untuk tablet */
  }

  .hero-content {
    max-width: 800px;
  }
}

/* =====================
   HANDPHONE (Responsive)
   ===================== */
@media (max-width: 768px) {
  .hero {
    height: 100vh; /* Tetap full screen di HP */
  }

  .hero h1 {
    font-size: 32px; /* Mengecil untuk HP agar tidak patah */
    line-height: 1.3;
    padding: 0 10px;
  }

  .hero-sub {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .hero-btn-outline {
    width: 80%; /* Tombol lebih proporsional di HP */
    padding: 14px 20px;
    font-size: 12px;
  }

  /* Hilangkan efek gerak hover di HP untuk performa */
  .hero-btn-outline:hover {
    transform: none;
  }
}

/* =====================
CONTENT TENTANG KAMI
===================== */
.content-tentang {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 0;
  background-color: #ffffff;
  overflow: hidden;
}

.tentang-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tentang-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr; /* Rasio yang lebih seimbang */
  gap: 60px;
  align-items: center;
}

/* Kolom Kiri - Gambar dengan Dekorasi */
.tentang-images {
  position: relative;
  z-index: 1;
}

.tentang-images img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 20px 20px 0px #f1f8f2; /* Aksen kotak di belakang gambar */
}

/* Kolom Kanan - Teks */
.sub-title {
  color: #8cc63f;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
}

.tentang-text h2 {
  font-size: clamp(32px, 4vw, 50px);
  font-weight: 800;
  color: #1a1a1a;
  margin: 10px 0;
}

.tentang-text h2 span {
  color: #8cc63f;
}

.tentang-text h4 {
  color: #555;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.tentang-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

/* Stats Styling (Grid 3 Kolom) */
.tentang-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 30px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin-bottom: 30px;
}

.stat-box {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 45px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1;
  text-align: center;
}

.stat-label {
  font-size: 13px;
  color: #8cc63f;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 10px;
  text-align: center;
}

.btn-outline {
  background-color: #5f9e33;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-outline:hover {
  background: #4a7d28;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(95, 158, 51, 0.2);
}

/* ==========================================
   RESPONSIVE LAYOUT (iPad & Handphone)
   ========================================== */

/* TABLET (IPAD) */
@media (max-width: 1024px) {
  .tentang-grid {
    grid-template-columns: 1fr; /* Stack Vertikal */
    gap: 40px;
    text-align: center;
  }

  .tentang-images img {
    height: 400px;
    max-width: 600px;
    margin: 0 auto;
  }

  .tentang-text {
    align-items: center;
  }
}

/* HANDPHONE */
@media (max-width: 768px) {
  .content-tentang {
    padding: 60px 0;
  }

  .tentang-images img {
    height: 300px;
    box-shadow: 10px 10px 0px #f1f8f2;
  }

  .tentang-table {
    grid-template-columns: 1fr; /* List vertikal di HP */
    gap: 30px;
  }

  .stat-number {
    font-size: 40px;
  }
}

/* =====================
   CONTENT PROJECT
===================== */
.content-project {
  position: relative;
  width: 100%;
  min-height: 200vh; /* Mengakomodasi 2 konten bertahap */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.project-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  /* Membuat background terasa lebih hidup saat di-scroll */
  background-attachment: fixed;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.4) 0%,
    rgba(240, 248, 255, 0.85) 100%
  );
  z-index: 2;
}

.project-container {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 20px;
  text-align: center;
}

.project-header h2 {
  font-size: clamp(30px, 5vw, 50px);
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.project-header h4 {
  font-size: 18px;
  color: #444;
  max-width: 750px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

/* PROJECT GRID & CARDS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
}

.project-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px); /* Efek kaca pudar */
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  cursor: pointer;
}

.project-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  background: #ffffff;
}

.card-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.project-card:hover .card-image img {
  transform: scale(1.1);
}

.card-body {
  padding: 30px;
  text-align: left;
}

.card-body h3 {
  font-size: 26px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.card-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.card-meta span {
  font-size: 13px;
  background: rgba(95, 158, 51, 0.1);
  color: #5f9e33;
  padding: 6px 14px;
  border-radius: 50px;
  font-weight: 600;
}

.card-hr {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 20px 0;
}

.card-action {
  font-weight: 700;
  color: #5f9e33;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ==========================================
   RESPONSIVE (DESKTOP, IPAD, HP)
   ========================================== */

/* IPAD / TABLET (Max 1024px) */
@media (max-width: 1024px) {
  .project-grid {
    gap: 25px;
  }
  .card-body h3 {
    font-size: 22px;
  }
}

/* HANDPHONE (Max 768px) */
@media (max-width: 768px) {
  .project-container {
    padding: 60px 15px;
  }
  .project-grid {
    grid-template-columns: 1fr;
  } /* Menumpuk satu kolom */
  .card-image {
    height: 250px;
  }
  .project-header h2 {
    font-size: 28px;
  }
  .project-header h4 {
    font-size: 14px;
  }
}

/* =====================
   KOMITMEN CONTENT
===================== */
.komitmen-wrapper {
  margin-top: 20vh; /* Jarak dari konten atas */
  padding-bottom: 100px;
}

.grid-komitmen {
  display: grid;
  grid-template-columns: 4fr 6fr; /* Rasio 40% kiri, 60% kanan */
  gap: 50px;
  align-items: center;
  text-align: left;
}

.komitmen-text h2 {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 25px;
}

.komitmen-text h2 span {
  color: #5f9e33;
}

.komitmen-text h4 {
  font-size: 20px;
  color: #555;
  font-weight: 400;
  line-height: 1.6;
}

/* Kanan - Card Flex */
.komitmen-flex-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.card-komitmen {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: 0.4s ease;
  cursor: pointer;
}

.card-komitmen:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 25px 50px rgba(95, 158, 51, 0.2);
}

.komitmen-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.komitmen-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.komitmen-body {
  padding: 25px;
}

.komitmen-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.komitmen-meta p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

.komitmen-hr {
  border: 0;
  height: 1px;
  background: #eee;
  margin: 15px 0;
}

.komitmen-action {
  font-weight: 700;
  color: #5f9e33;
  font-size: 13px;
}

/* ==========================================
   RESPONSIVE (DESKTOP, IPAD, HP)
   ========================================== */

/* IPAD / TABLET (Max 1024px) */
@media (max-width: 1024px) {
  .grid-komitmen {
    grid-template-columns: 1fr; /* Stack Atas-Bawah */
    text-align: center;
  }

  .komitmen-text h4 {
    margin: 0 auto;
    max-width: 600px;
  }
}

/* HANDPHONE (Max 768px) */
@media (max-width: 768px) {
  .komitmen-wrapper {
    margin-top: 10vh;
  }

  .komitmen-flex-container {
    grid-template-columns: 1fr; /* Kartu menumpuk satu kolom */
  }

  .komitmen-text h2 {
    font-size: 32px;
  }

  .komitmen-text h4 {
    font-size: 16px;
  }
}

/* ============================================================
   SECTION PROSES - FIX KIRI KANAN (5:5)
   ============================================================ */

.section-proses {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  background-color: #ffffff;
}

.proses-header {
  text-align: center;
  margin-bottom: 50px;
}

.proses-title {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a1a;
  line-height: 1.1;
}

.proses-title span {
  color: #5f9e33;
}

.proses-subtitle {
  font-size: 20px;
  color: #555;
  margin-top: 20px;
  line-height: 1.6;
}

/* LAYOUT UTAMA - PAKSA SEJAJAR */
.proses-container {
  display: flex !important;
  flex-direction: row !important; /* Paksa tetap baris (kiri-kanan) */
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

.proses-col-visual {
  flex: 1 !important; /* 50% */
  display: flex;
  justify-content: center;
}

.proses-col-visual img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.proses-col-content {
  flex: 1 !important; /* 50% */
}

/* CARD */
.proses-card {
  background: #ffffff;
  border: 2px solid #1a1a1a;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.card-list {
  list-style: none;
  padding: 0;
}
.card-list li {
  font-size: 16px;
  margin-bottom: 10px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-list li::before {
  content: "•";
  color: #5f9e33;
  font-weight: bold;
}

/* ACTION BAR */
.proses-action-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
}
.nav-arrows {
  display: flex;
  gap: 10px;
}
.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #1a1a1a;
  background: #fff;
  cursor: pointer;
}

.btn-primary-proses {
  background: #2d4336;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
}

/* ==========================================
   RESPONSIVE HP & IPAD (TETAP KIRI KANAN)
   ========================================== */
@media (max-width: 1024px) {
  .proses-title {
    font-size: 32px;
  }
  .proses-subtitle {
    font-size: 16px;
  }
  .proses-container {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .section-proses {
    /* Menambah padding kiri & kanan agar konten tidak menyentuh tepi layar */
    padding: 40px 20px !important;
    box-sizing: border-box;
  }

  .proses-container {
    display: flex !important;
    flex-direction: row !important;
    /* Gap diperkecil agar tidak memakan terlalu banyak ruang di layar sempit */
    gap: 12px !important;
    width: 100%;
    justify-content: space-between;
  }

  .proses-col-visual {
    /* Mengurangi sedikit persentase agar ada sisa ruang untuk margin/gap */
    flex: 0 0 calc(48% - 6px) !important;
    max-width: calc(48% - 6px);
  }

  .proses-col-content {
    /* Sama dengan visual, total keduanya (48+48) memberi sisa 4% untuk safety margin */
    flex: 0 0 calc(48% - 6px) !important;
    max-width: calc(48% - 6px);
  }

  .proses-card {
    padding: 12px !important; /* Padding dalam kartu diperkecil */
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box; /* Memastikan padding tidak membuat card melebar keluar */
  }

  /* Penyesuaian teks agar tetap rapi dalam kartu yang sempit */
  .card-title {
    font-size: 13px !important;
    line-height: 1.2;
  }

  .card-list li {
    font-size: 9px !important;
    margin-bottom: 5px;
  }

  /* Navigasi & Tombol */
  .proses-action-bar {
    margin-top: 15px;
    display: flex;
    flex-direction: row; /* Tetap sejajar kiri-kanan */
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .btn-primary-proses {
    font-size: 8px !important;
    padding: 8px 12px !important;
    border-radius: 20px;
    height: 32px; /* Samakan tinggi dengan nav-btn agar sejajar rapi */
    display: flex;
    align-items: center;
  }

  .nav-arrows {
    gap: 8px; /* Mempersempit jarak antar tombol panah */
    justify-content: flex-start; /* Pastikan tetap di kiri bawah kartu */
  }

  .nav-btn {
    width: 32px !important; /* Ukuran lingkaran tombol diperkecil */
    height: 32px !important;
    min-width: 32px;
  }

  .nav-btn i {
    font-size: 10px !important; /* Ukuran icon panah di dalam tombol diperkecil */
  }
}
/* ====================================================
TENTANG PERUSAHAAN
======================================================= */
/* ============================================================
   HERO SECTION - TENTANG KAMI (REMODERNIZED)
   ============================================================ */
.tentanghero {
  height: 100vh;
  min-height: 600px; /* Mencegah konten terpotong di layar pendek */
  background: url("../images/herotentangperusahaan.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Overlay Gelap Presisi */
.tentanghero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 1;
}

.tentanghero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 1000px; /* Dipersempit sedikit agar teks tidak terlalu lebar */
  padding: 20px;
  text-align: center;
}

/* Judul Utama - Selaras dengan skala 48px Desktop */
.tentanghero h1 {
  font-size: 56px; /* Sedikit lebih besar untuk Hero */
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 30px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 1s ease forwards;
}

/* Subtitle - Selaras dengan skala 20px Desktop */
.tentanghero p {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 400;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Animasi Masuk */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================
   RESPONSIVE IPAD (Tablet)
   ========================================== */
@media (max-width: 1024px) {
  .tentanghero h1 {
    font-size: 42px; /* Menurun seiring skala h2 Komitmen iPad */
  }
  .tentanghero p {
    font-size: 18px;
    max-width: 700px;
  }
}

/* ==========================================
   RESPONSIVE HANDPHONE (Mobile)
   ========================================== */
@media (max-width: 768px) {
  .tentanghero {
    height: 100vh; /* Tetap full screen di HP */
  }

  /* Font diselaraskan dengan skala 32px (h2 Komitmen Mobile) */
  .tentanghero h1 {
    font-size: 32px !important;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  /* Font diselaraskan dengan skala 16px (h4 Komitmen Mobile) */
  .tentanghero p {
    font-size: 16px !important;
    line-height: 1.5;
    padding: 0 10px;
  }
}

/* Mengatasi HP Sangat Kecil atau Layar Landscape */
@media (max-height: 500px) {
  .tentanghero {
    height: auto;
    padding: 100px 0;
  }
}

/* ============================================================
   ABOUT DETAIL & PHILOSOPHY - FINAL REVISION
   ============================================================ */

.about-detail-section {
  padding: 80px 0 0;
  background: #ffffff;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- PROFIL TEXT --- */
.profil-text {
  max-width: 900px;
  margin: 0 auto 80px;
  text-align: center;
}

.title-consistency {
  font-size: 48px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.1;
}

/* Permainan Warna Hijau Brand */
.title-consistency span {
  color: #5f9e33;
}

.subtitle-consistency {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

.subtitle-consistency strong {
  color: #1a1a1a;
  font-weight: 700;
}

/* --- FILOSOFI GRID --- */
.filosofi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 100px;
}

.filosofi-item {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
}

/* Efek Cantik saat Hover */
.filosofi-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(95, 158, 51, 0.1);
  border-color: #5f9e33;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background: #f0f7eb;
  color: #5f9e33;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 25px;
  transition: 0.5s ease;
}

.filosofi-item:hover .icon-circle {
  background: #5f9e33;
  color: #ffffff;
  transform: rotateY(360deg);
}

.filosofi-item h3 {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.filosofi-item p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* --- DIRECTOR SECTION --- */
.director-section {
  background: #1a2b48;
  padding: 120px 0;
  color: white;
  margin-top: 50px;
}

.director-container {
  display: flex;
  align-items: center;
  gap: 80px;
}

.director-col-photo {
  flex: 0 0 400px; /* Ukuran tetap untuk desktop agar gagah */
  display: flex;
  justify-content: center;
}

.photo-wrapper {
  position: relative;
  z-index: 1;
}

.photo-wrapper img {
  width: 100%;
  border-radius: 15px;
  display: block;
  filter: grayscale(20%); /* Memberi kesan elegan */
  transition: 0.4s;
}

.photo-wrapper:hover img {
  filter: grayscale(0%);
}

.photo-wrapper::after {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid #5f9e33;
  border-radius: 15px;
  z-index: -1;
}

.director-col-content {
  flex: 1;
}

.quote-label {
  color: #5f9e33;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  display: block;
  margin-bottom: 25px;
}

.quote-icon {
  font-size: 40px;
  color: rgba(95, 158, 51, 0.4);
  margin-bottom: 15px;
}

.director-quote {
  font-size: 26px;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 35px;
  color: #f0f0f0;
  font-weight: 300;
}

.director-meta strong {
  display: block;
  font-size: 22px;
  color: #fff;
  letter-spacing: 1px;
}

.director-meta span {
  color: #5f9e33;
  font-size: 15px;
  font-weight: 600;
}

/* ==========================================
   RESPONSIVE IPAD & HP
   ========================================== */

@media (max-width: 1024px) {
  .title-consistency {
    font-size: 36px;
  }
  .filosofi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .director-container {
    gap: 40px;
  }
  .director-col-photo {
    flex: 0 0 320px;
  }
  .director-quote {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .section-proses {
    padding: 60px 0;
  }
  .title-consistency {
    font-size: 32px !important;
  }
  .subtitle-consistency {
    font-size: 16px !important;
  }

  .filosofi-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .director-section {
    padding: 80px 0;
  }

  /* Director Mobile - Tetap Side by Side */
  .director-container {
    flex-direction: row !important;
    gap: 15px !important;
    align-items: flex-start;
  }

  .director-col-photo {
    flex: 0 0 35% !important;
  }

  .director-col-content {
    flex: 1 !important;
  }

  .photo-wrapper::after {
    top: -10px;
    left: -10px;
    border-width: 2px;
  }

  .director-quote {
    font-size: 13px !important;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  .quote-label {
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .quote-icon {
    font-size: 20px;
    margin-bottom: 5px;
  }

  .director-meta strong {
    font-size: 14px;
  }
  .director-meta span {
    font-size: 10px;
  }
}

/* ============================================================
   SECTION VISI MISI - FULL COMPLETE (FIXED 2x2 LAYOUT)
   ============================================================ */

.vision-mission-light {
  min-height: 100vh;
  width: 100%;
  /* Efek Glassmorphism Background */
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.85)),
    url("https://images.unsplash.com/photo-1503387762-592dea58ef23?auto=format&fit=crop&q=80&w=1920");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  display: flex;
  align-items: center;
  margin: 0 !important;
  box-sizing: border-box;
}

.vm-wrapper-light {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* --- SISI VISI (KIRI) --- */
.tag-light {
  color: #5f9e33;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  font-size: 14px;
}

.title-light {
  font-size: 48px;
  color: #1a1a1a;
  line-height: 1.1;
  font-weight: 900;
  margin: 0;
}

.title-light .green-text {
  color: #5f9e33;
}

.accent-line {
  width: 60px;
  height: 5px;
  background: #5f9e33;
  margin: 30px 0;
  border-radius: 10px;
}

.desc-light {
  font-size: 19px;
  color: #444;
  line-height: 1.8;
  max-width: 500px;
  margin: 0;
}

/* --- SISI MISI (KANAN - GRID 2x2) --- */
.mission-cards-light {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.m-card-light {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 30px 25px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.m-card-light:hover {
  transform: translateY(-10px);
  background: #ffffff;
  box-shadow: 0 20px 40px rgba(95, 158, 51, 0.15);
  border-color: #5f9e33;
}

.m-number {
  font-size: 28px;
  font-weight: 900;
  color: #5f9e33;
}

.m-info h4 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
  line-height: 1.2;
}

.m-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin: 0;
}

/* ==========================================
   RESPONSIVE IPAD (Max 1024px)
   ========================================== */
@media (max-width: 1024px) {
  .vm-wrapper-light {
    grid-template-columns: 1fr; /* Visi di atas, Misi di bawah */
    gap: 50px;
  }

  .vision-side {
    text-align: center;
  }

  .accent-line {
    margin: 20px auto;
  }

  .title-light {
    font-size: 38px;
  }

  .desc-light {
    max-width: 100%;
    font-size: 18px;
  }

  /* Tetap 2x2 di iPad */
  .mission-cards-light {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
  }
}

/* ==========================================
   RESPONSIVE HANDPHONE (Max 768px)
   ========================================== */
@media (max-width: 768px) {
  .vision-mission-light {
    padding: 60px 0;
    background-attachment: scroll; /* Agar performa HP ringan */
  }

  .title-light {
    font-size: 30px !important;
    line-height: 1.2;
  }

  .desc-light {
    font-size: 15px !important;
    line-height: 1.6;
  }

  /* TETAP 2x2 DI HP (Misi Tidak Menjadi 1 Kolom) */
  .mission-cards-light {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .m-card-light {
    padding: 15px 12px !important;
    border-radius: 15px;
    min-height: 160px; /* Menjaga keseimbangan tinggi kotak */
    justify-content: flex-start;
  }

  .m-number {
    font-size: 20px !important;
    margin-bottom: 0;
  }

  .m-info h4 {
    font-size: 14px !important;
    margin-bottom: 5px !important;
  }

  .m-info p {
    font-size: 10px !important;
    line-height: 1.3 !important;
  }
}

/* Penyesuaian Terakhir untuk Layar Sangat Kecil (Layar < 400px) */
@media (max-width: 400px) {
  .mission-cards-light {
    gap: 8px !important;
  }
  .m-card-light {
    padding: 10px !important;
  }
  .m-info h4 {
    font-size: 13px !important;
  }
}

/* ============================================================
   STRUCTUR ORGANISASI - FIXED 2-2-2-1 RESPONSIVE
   ============================================================ */

/* --- CONTAINER & HEADER --- */
.org-structure-modern {
  min-height: 100vh;
  width: 100%;
  background: radial-gradient(circle at center, #1a2e24 0%, #0a0f0d 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  margin: 0 !important;
  color: #ffffff;
}

.container-compact {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.org-header {
  text-align: center;
  margin-bottom: 50px;
}
.org-title {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 3px;
  margin: 0;
}
.org-title span {
  color: #5f9e33;
}
.org-line {
  width: 60px;
  height: 4px;
  background: #5f9e33;
  margin: 10px auto;
  border-radius: 10px;
}

/* --- PIMPINAN --- */
.pimpinan-row {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
}

.pimpinan-node {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(95, 158, 51, 0.3);
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  text-align: center;
  flex: 1;
  max-width: 350px;
  transition: 0.4s;
}

.node-label {
  color: #5f9e33;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.node-name {
  font-size: 22px;
  margin-top: 8px;
  font-weight: 700;
  color: #fff;
}

/* --- STAFF BALANCED GRID (Desktop: 4 Atas, 3 Bawah) --- */
.staff-balanced-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 15px;
}

.s-node {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
}

.s-node span {
  color: #5f9e33;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}
.s-node h5 {
  font-size: 15px;
  margin: 0;
  color: #fff;
}

/* Desktop Span Logic */
.staff-balanced-grid .s-node:nth-child(-n + 4) {
  grid-column: span 3;
}
.staff-balanced-grid .s-node:nth-child(5) {
  grid-column: 2 / span 3;
}
.staff-balanced-grid .s-node:nth-child(6) {
  grid-column: span 3;
}
.staff-balanced-grid .s-node:nth-child(7) {
  grid-column: span 3;
}

/* ==========================================
   RESPONSIVE IPAD & HP (Formasi 2-2-2-1)
   ========================================== */
@media (max-width: 1024px) {
  .org-structure-modern {
    height: auto;
    padding: 80px 0;
  }

  .pimpinan-row {
    flex-direction: row; /* Tetap sejajar di iPad jika muat */
    gap: 20px;
  }

  /* Force Grid 2 Kolom */
  .staff-balanced-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px;
  }

  /* Reset Semua Span Desktop */
  .staff-balanced-grid .s-node {
    grid-column: span 1 !important;
  }

  /* Orang ke-7 Menjadi Baris Sendiri (1) di Tengah */
  .staff-balanced-grid .s-node:nth-child(7) {
    grid-column: 1 / span 2 !important;
    width: 50%; /* Tidak terlalu lebar */
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pimpinan-row {
    flex-direction: column; /* Pimpinan tumpuk di HP */
    align-items: center;
  }

  .pimpinan-node {
    width: 100%;
    max-width: 320px;
  }

  .org-title {
    font-size: 26px;
  }

  /* Grid 2-2-2-1 di HP */
  .staff-balanced-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .staff-balanced-grid .s-node:nth-child(7) {
    width: 80%; /* Sedikit lebih lebar di HP agar teks aman */
  }

  .s-node h5 {
    font-size: 14px;
  }
}
/* ============================================================
   CONTENT LEGALITAS - PREMIUM COMPLIANCE
   ============================================================ */
.legalitas-section {
  padding: 120px 0;
  background-color: #ffffff;
  color: #333;
}

.legal-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 60px;
}

.legal-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 10px 0 20px;
}

.legal-header h2 span {
  color: #5f9e33;
}

.legal-header p {
  color: #666;
  line-height: 1.8;
  font-size: 17px;
}

.legal-line {
  width: 60px;
  height: 4px;
  background: #5f9e33;
  margin: 20px auto;
  border-radius: 10px;
}

/* Wrapper Layout */
.legal-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: stretch;
}

/* --- SISI KIRI: PROFIL CARD --- */
.legal-info-main {
  background: #f4f9f1;
  padding: 45px;
  border-radius: 30px;
  border: 1px solid rgba(95, 158, 51, 0.2);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.info-card {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.info-card:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  min-width: 55px;
  height: 55px;
  background: white;
  color: #5f9e33;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.info-text label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.info-text h5 {
  font-size: 16px;
  color: #222;
  margin: 0;
  line-height: 1.5;
  font-weight: 700;
}

/* Hover Effect Kiri */
.legal-info-main:hover {
  background: #5f9e33;
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(95, 158, 51, 0.25);
}

.legal-info-main:hover .info-text label {
  color: rgba(255, 255, 255, 0.7);
}
.legal-info-main:hover .info-text h5 {
  color: white;
}
.legal-info-main:hover .info-icon {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}
.legal-info-main:hover .info-card {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* --- SISI KANAN: DOC GRID --- */
.legal-documents-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.doc-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.doc-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.doc-header i {
  font-size: 24px;
  color: #5f9e33;
}

.doc-header span {
  font-weight: 800;
  font-size: 16px;
  color: #1a1a1a;
}

.doc-body p {
  font-weight: 700;
  font-size: 14px;
  color: #333;
  margin-bottom: 5px;
}

.doc-body small {
  font-size: 12px;
  color: #888;
  display: block;
}

/* Hover Effect Kanan */
.doc-card:hover {
  background: #5f9e33;
  border-color: #5f9e33;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(95, 158, 51, 0.2);
}

.doc-card:hover i,
.doc-card:hover span,
.doc-card:hover p,
.doc-card:hover small {
  color: white !important;
}

/* ==========================================
   RESPONSIVE LAYOUT
   ========================================== */
@media (max-width: 1024px) {
  .legal-wrapper {
    grid-template-columns: 1fr;
  }
  .legal-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .legalitas-section {
    padding: 80px 0;
  }
  .legal-info-main {
    padding: 30px 20px;
  }

  .legal-documents-grid {
    grid-template-columns: 1fr; /* Jadi satu kolom di HP agar lega */
  }

  .info-icon {
    min-width: 45px;
    height: 45px;
    font-size: 18px;
  }
  .info-text h5 {
    font-size: 14px;
  }
}
/* ============================================================
   CONTENT KESELAMATAN (K3) - PREMIUM DARK STYLE
   ============================================================ */
.safety-premium-layout {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #0a0f0d;
  color: #ffffff;
  overflow: hidden;
}

/* --- BARIS ATAS (Split 50/50) --- */
.safety-row-top {
  display: flex;
  flex-wrap: wrap;
  min-height: 50vh; /* Menggunakan min-height agar dinamis */
  width: 100%;
  margin-bottom: 0; /* Pastikan tidak ada margin bottom */
}

.safety-col-image {
  width: 50%;
  display: flex; /* Tambahkan ini agar wrapper mengisi penuh */
}

.image-wrapper {
  position: relative;
  width: 100%;
  height: 100%; /* Memaksa mengisi seluruh tinggi kolom */
  overflow: hidden; /* Mengunci gambar agar tidak bocor */
  display: block; /* Menghilangkan gap spasi inline elemen */
}

.image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Penting: agar gambar tidak gepeng tapi tetap full */
  display: block; /* Menghilangkan whitespace di bawah gambar */
  filter: brightness(0.7) contrast(1.1);
}

/* --- PERBAIKAN SHADOW AGAR MENYATU --- */
.image-inner-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 101%; /* Sedikit dilebihkan 1% untuk menutupi celah pixel */
  background: linear-gradient(to right, transparent 0%, #0a0f0d 100%);
  z-index: 1;
}

/* --- SESUAIKAN KOLOM TEKS AGAR SEJAJAR --- */
.safety-col-text {
  width: 50%;
  background-color: #0a0f0d;
  display: flex;
  align-items: center;
  padding: 60px 80px;
  margin-bottom: 0;
}

.safety-badge {
  color: #e67e22;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 3px;
  border-left: 3px solid #e67e22;
  padding-left: 12px;
}

.text-content-frame h2 {
  font-size: 40px;
  margin: 15px 0;
  font-weight: 800;
}

.text-content-frame h2 span {
  color: #5f9e33;
}

.safety-line-bold {
  width: 60px;
  height: 5px;
  background: #e67e22;
  margin-bottom: 25px;
  border-radius: 5px;
}

.text-content-frame p {
  font-size: 17px;
  color: #bdc3c7;
  line-height: 1.8;
}

/* --- BARIS BAWAH (3 Pillars) --- */
.safety-row-bottom {
  padding: 80px;
  background: radial-gradient(circle at top left, #14251d, #0a0f0d);
}

.culture-section-title {
  text-align: center;
  margin-bottom: 50px;
}

.culture-section-title h3 {
  font-size: 26px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.culture-section-title p {
  color: #5f9e33;
  font-weight: 600;
}

.safety-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.safety-card-premium {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
}

.card-icon-box {
  font-size: 35px;
  color: #e67e22;
  margin-bottom: 20px;
  transition: 0.5s ease;
}

.safety-card-premium:hover .card-icon-box {
  transform: rotateY(360deg);
}

.safety-card-premium h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #fff;
}

.safety-card-premium p {
  font-size: 14px;
  color: #95a5a6;
  line-height: 1.6;
}

.safety-card-premium:hover {
  transform: translateY(-10px);
  background: rgba(230, 126, 34, 0.1);
  border-color: #e67e22;
}

.safety-card-premium.active {
  border-color: #5f9e33;
  background: rgba(95, 158, 51, 0.05);
}

/* ============================================================
   RESPONSIVE K3 - FIXED FORMATION (1-1-1)
   ============================================================ */

@media (max-width: 1024px) {
  /* Layout Atas: Menumpuk agar teks tidak sempit */
  .safety-row-top {
    flex-direction: column;
    height: auto;
  }

  .safety-col-image {
    width: 100%;
    height: 40vh;
  }

  .safety-col-text {
    width: 100%;
    padding: 60px 40px;
  }

  /* Efek Shadow Gambar: Berubah arah dari Samping ke Bawah */
  .image-inner-shadow {
    background: linear-gradient(to bottom, transparent, #0a0f0d);
  }

  /* Grid Kartu Bawah: Formasi 1-1-1 */
  .safety-grid-cards {
    grid-template-columns: 1fr !important; /* Paksa satu kolom */
    gap: 25px;
  }

  /* Reset Span & Width: Pastikan kartu memenuhi layar secara vertikal */
  .safety-card-premium,
  .safety-card-premium:last-child {
    grid-column: span 1 !important;
    width: 100% !important;
    margin: 0;
  }

  .safety-row-bottom {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .safety-col-image {
    height: 35vh;
  }

  .safety-col-text {
    padding: 40px 25px;
  }

  .text-content-frame h2 {
    font-size: 28px;
  }

  .safety-row-bottom {
    padding: 40px 25px;
  }

  .culture-section-title h3 {
    font-size: 20px;
  }
}

/* ============================================================
   CONTENT KEBERLANJUTAN - LIGHT MODERN STYLE
   ============================================================ */
.sustainability-layout {
  min-height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  color: #333333;
  overflow: hidden;
}

/* --- BARIS ATAS (Split 50/50) --- */
.sus-row-top {
  display: flex;
  flex-wrap: wrap;
  min-height: 50vh;
}

.sus-col-text {
  flex: 1;
  min-width: 50%;
  background-color: #f8faf9;
  display: flex;
  align-items: center;
  padding: 60px 80px;
}

.sus-badge {
  color: #4caf50;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 3px;
  border-left: 3px solid #4caf50;
  padding-left: 12px;
}

.sus-content-frame h2 {
  font-size: 38px;
  margin: 15px 0;
  font-weight: 800;
  color: #1a1a1a;
}

.sus-line-bold {
  width: 60px;
  height: 5px;
  background: #4caf50;
  margin-bottom: 25px;
  border-radius: 5px;
}

.sus-content-frame p {
  font-size: 17px;
  color: #555;
  line-height: 1.8;
}

/* Kolom Gambar di Kanan */
.sus-col-image {
  flex: 1;
  min-width: 50%;
  height: 50vh;
}

.sus-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
}

.sus-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* Menghapus gap margin bawah */
}

.sus-image-inner-shadow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to left, transparent, #f8faf9);
}

/* --- BARIS BAWAH (3 Pillars) --- */
.sus-row-bottom {
  padding: 80px;
  background: #ffffff;
}

.sus-header-center {
  text-align: center;
  margin-bottom: 50px;
}

.sus-header-center h3 {
  font-size: 26px;
  letter-spacing: 2px;
  font-weight: 800;
  color: #1a1a1a;
}

.sus-header-center p {
  color: #4caf50;
  font-weight: 600;
}

.sus-grid-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.sus-card-premium {
  background: #ffffff;
  border: 1px solid #eee;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.sus-icon-box {
  font-size: 35px;
  color: #4caf50;
  margin-bottom: 20px;
  transition: 0.5s ease;
}

.sus-card-premium:hover .sus-icon-box {
  transform: rotateY(360deg);
}

.sus-card-premium h4 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.sus-card-premium p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
}

.sus-card-premium:hover {
  transform: translateY(-10px);
  border-color: #4caf50;
  box-shadow: 0 20px 40px rgba(76, 175, 80, 0.1);
}

.sus-card-premium.active {
  border-color: #4caf50;
  background: #f1f8f2;
}

/* ==========================================
   RESPONSIVE KEBERLANJUTAN (Formasi 1-1-1)
   ========================================== */
@media (max-width: 1024px) {
  .sus-row-top {
    flex-direction: column-reverse;
  } /* Gambar pindah ke atas di Mobile */

  .sus-col-image {
    width: 100%;
    height: 40vh;
  }
  .sus-col-text {
    width: 100%;
    padding: 60px 40px;
  }

  .sus-image-inner-shadow {
    background: linear-gradient(to bottom, transparent, #f8faf9);
  }

  .sus-grid-cards {
    grid-template-columns: 1fr !important;
    gap: 25px;
  }

  .sus-card-premium {
    grid-column: span 1 !important;
    width: 100% !important;
  }

  .sus-row-bottom {
    padding: 60px 40px;
  }
}

@media (max-width: 768px) {
  .sus-content-frame h2 {
    font-size: 30px;
  }
  .sus-col-image {
    height: 35vh;
  }
  .sus-row-bottom {
    padding: 40px 25px;
  }
  .sus-col-text {
    padding: 40px 25px;
  }
}

/* =========================================================
PROPERTY PAGE
========================================================== */
/* ============================================================
   HERO PROPERTY - PREMIUM ELEGANCE
   ============================================================ */
.propertyhero {
  height: 100vh;
  /* Pastikan path gambar benar, gunakan fallback warna gelap jika gambar loading */
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../images/property.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  overflow: hidden;
}

.propertyhero-content {
  position: relative;
  z-index: 2; /* Di atas overlay */
  color: #ffffff;
  max-width: 800px;
  padding: 20px;
}

.property-tag {
  color: #5f9e33;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 13px;
  display: block;
  margin-bottom: 20px;
}

.propertyhero h1 {
  font-size: clamp(32px, 5vw, 60px); /* Ukuran dinamis sesuai layar */
  line-height: 1.2;
  margin-bottom: 20px;
  color: #ffffff; /* Ubah dari black ke white */
  font-weight: 800;
  text-transform: uppercase;
}

.propertyhero h1 span {
  color: #5f9e33;
}

.propertyhero-line {
  width: 80px;
  height: 4px;
  background: #5f9e33;
  margin: 0 auto 30px;
  border-radius: 10px;
}

.propertyhero-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  font-weight: 300;
}

.propertyhero-btn-outline {
  background-color: #5f9e33;
  display: inline-block;
  padding: 16px 35px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 10px 25px rgba(95, 158, 51, 0.3);
}

.propertyhero-btn-outline:hover {
  background: #ffffff;
  color: #5f9e33;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Penyesuaian Mobile */
@media (max-width: 768px) {
  .propertyhero {
    height: 80vh; /* Sedikit lebih pendek di HP */
  }
  .propertyhero-content p {
    font-size: 15px;
    padding: 0 20px;
  }
}

/* ============================================================
   PROPERTY SHOWCASE - UNIQUE CLASS
   ============================================================ */
.prop-explorer-section {
  padding: 120px 0;
  background-color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.prop-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.prop-header {
  text-align: center;
  margin-bottom: 70px;
}

.prop-tagline {
  color: #5f9e33;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 4px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 15px;
}

.prop-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.prop-main-title span {
  color: #5f9e33;
}

.prop-subtitle {
  color: #666;
  max-width: 650px;
  margin: 0 auto 25px;
  line-height: 1.8;
}

.prop-divider {
  width: 60px;
  height: 4px;
  background: #5f9e33;
  margin: 0 auto;
  border-radius: 5px;
}

/* GRID SYSTEM */
.prop-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* CARD STYLING */
.prop-item-card {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  border: 1px solid #f0f0f0;
}

.prop-item-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(95, 158, 51, 0.15);
  border-color: #5f9e33;
}

.prop-img-box {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.prop-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.prop-item-card:hover .prop-img-box img {
  transform: scale(1.1);
}

.prop-status-tag {
  position: absolute;
  top: 25px;
  left: 25px;
  background: #5f9e33;
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  z-index: 2;
}

.prop-info-box {
  padding: 40px;
}

.prop-category {
  color: #5f9e33;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.prop-info-box h3 {
  font-size: 28px;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.prop-features {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.prop-features span {
  font-size: 14px;
  color: #888;
  display: flex;
  align-items: center;
  gap: 8px;
}

.prop-description {
  color: #777;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.prop-footer-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  color: #1a1a1a;
  transition: gap 0.3s ease;
}

.prop-item-card:hover .prop-footer-link {
  color: #5f9e33;
  gap: 25px;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .prop-showcase-grid {
    gap: 30px;
  }
  .prop-info-box {
    padding: 30px;
  }
  .prop-info-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .prop-showcase-grid {
    grid-template-columns: 1fr;
  }
  .prop-img-box {
    height: 280px;
  }
  .prop-main-title {
    font-size: 32px;
  }
  .prop-explorer-section {
    padding: 80px 0;
  }
}
/* =========================================================
CONTACT PAGE
========================================================== */
/* ============================================================
   CONTACT HERO - CONCISE & PROFESSIONAL
   ============================================================ */
.contacthero {
  min-height: 50vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/contacthero.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  padding: 80px 20px;
}

.contacthero-inner {
  position: relative;
  z-index: 2;
  color: #ffffff;
  max-width: 800px;
}

.contact-tag {
  color: #5f9e33;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 4px;
  font-size: 13px;
  display: block;
  margin-bottom: 15px;
}

.contacthero h1 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #ffffff;
}

.contacthero h1 span {
  color: #5f9e33;
}

.contact-line {
  width: 60px;
  height: 4px;
  background: #5f9e33;
  margin: 0 auto 25px;
  border-radius: 10px;
}

.contacthero-inner p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Responsif untuk Mobile */
@media (max-width: 768px) {
  .contacthero {
    min-height: 40vh;
    padding: 60px 20px;
  }

  .contacthero h1 {
    font-size: 30px;
  }

  .contacthero-inner p {
    font-size: 15px;
  }
}

/* ============================================================
   CONTACT INFO SECTION - CLEAN GRID
   ============================================================ */
.contact-grid-layout {
  min-height: 100vh;
  width: 100%;
  background-color: #ffffff;
  display: flex;
}

.contact-container-full {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

/* Kolom Kiri Styling */
.contact-col-info {
  width: 50%;
  background-color: #f8faf9;
  display: flex;
  align-items: center;
  padding: 80px 10%;
}

.contact-info-wrapper {
  width: 100%;
}

.contact-info-wrapper h2 {
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  margin: 10px 0;
  color: #1a1a1a;
}

.contact-info-wrapper h2 span {
  color: #5f9e33;
}

.contact-divider {
  width: 60px;
  height: 5px;
  background: #5f9e33;
  margin-bottom: 40px;
  border-radius: 5px;
}

/* List Detail Styling */
.contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-item i {
  font-size: 20px;
  color: #5f9e33;
  background: white;
  min-width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.detail-item:hover i {
  background: #5f9e33;
  color: #ffffff;
  transform: scale(1.1);
}

.detail-text label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  color: #888;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.detail-text h5 {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
  font-weight: 600;
}

/* Container Kolom Kanan (Map) */
.contact-col-map {
  width: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.map-wrapper-square {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  padding: 12px;
  background: #fff;
  border: 2px solid #5f9e33;
  border-radius: 25px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.map-wrapper-square iframe {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}

/* ==========================================
   RESPONSIVE CONTACT INFO
   ========================================== */
@media (max-width: 1024px) {
  .contact-col-info {
    padding: 60px 5%;
  }
  .contact-col-map {
    padding: 40px;
  }
}

@media (max-width: 768px) {
  .contact-col-info,
  .contact-col-map {
    width: 100%;
  }

  .contact-col-info {
    order: 1;
  }
  .contact-col-map {
    order: 2;
    padding: 20px;
  }

  .map-wrapper-square {
    max-width: 100%;
    aspect-ratio: 4 / 3; /* Lebih lebar di HP agar tidak terlalu tinggi */
  }

  .contact-grid-layout {
    height: auto;
  }
}

/* ============================================================
   SOCIAL MEDIA SECTION - GLASSMORPHISM STYLE
   ============================================================ */
.social-premium-section {
  min-height: 100vh;
  width: 100%;
  background: radial-gradient(circle at top left, #14251d, #0d1612);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 100px 0;
}

.social-overlay-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #5f9e33;
  filter: blur(180px);
  opacity: 0.12;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.container-social {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 2;
  padding: 0 40px;
}

.social-title-area {
  text-align: center;
  margin-bottom: 70px;
}

.modern-badge {
  background: rgba(95, 158, 51, 0.1);
  color: #5f9e33;
  padding: 10px 25px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid rgba(95, 158, 51, 0.3);
}

.social-title-area h2 {
  font-size: clamp(32px, 5vw, 48px);
  margin: 20px 0;
  font-weight: 800;
}

.social-title-area h2 span {
  color: #5f9e33;
  text-shadow: 0 0 20px rgba(95, 158, 51, 0.4);
}

.social-title-area p {
  color: #bdc3c7;
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* Grid & Glass Cards */
.social-card-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default Desktop */
  gap: 20px;
  padding: 20px 0;
}

.card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 50px 30px;
  border-radius: 30px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

.icon-wrap {
  width: 75px;
  height: 75px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  transition: 0.5s ease;
}

.card-glass h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: 1px;
}

.card-glass p {
  color: #95a5a6;
  font-size: 14px;
  margin-bottom: 35px;
  line-height: 1.5;
}

.btn-glass {
  display: inline-block;
  padding: 12px 35px;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* --- Hover Effects --- */
.card-glass:hover {
  transform: translateY(-20px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(95, 158, 51, 0.5);
}

/* WhatsApp Hover (New) */
.wa-glass:hover .icon-wrap {
  background: #25d366;
  color: #fff;
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4);
}

/* Facebook Hover */
.fb-glass:hover .icon-wrap {
  background: #1877f2;
  box-shadow: 0 0 30px rgba(24, 119, 242, 0.4);
}

/* Instagram Hover */
.ig-glass:hover .icon-wrap {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  box-shadow: 0 0 30px rgba(220, 39, 67, 0.4);
}

/* Tiktok Hover */
.tt-glass:hover .icon-wrap {
  background: #ffffff;
  color: #000;
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.4);
}

.card-glass:hover .btn-glass {
  background: #5f9e33;
  border-color: #5f9e33;
  box-shadow: 0 10px 20px rgba(95, 158, 51, 0.3);
}

/* --- Responsive Formasi 2-2 (iPad & HP) --- */
@media (max-width: 1024px) {
  .social-card-container {
    grid-template-columns: repeat(2, 1fr); /* Formasi 2 kolom di iPad */
    gap: 15px;
  }
  .card-glass {
    padding: 35px 20px; /* Sedikit dirampingkan */
  }
}

@media (max-width: 768px) {
  .container-social {
    padding: 0 20px;
  }
  .social-title-area h2 {
    font-size: 32px;
  }
  .social-card-container {
    grid-template-columns: repeat(2, 1fr); /* Tetap 2 kolom di HP */
    gap: 10px;
  }
  .card-glass {
    padding: 30px 15px;
    border-radius: 20px;
  }
  .card-glass h3 {
    font-size: 18px;
  }
  .card-glass p {
    font-size: 12px;
    margin-bottom: 20px;
  }
  .icon-wrap {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .btn-glass {
    padding: 10px 20px;
    font-size: 12px;
    width: 100%; /* Tombol full width di dalam card agar rapi */
    box-sizing: border-box;
  }
}

/* Untuk layar HP sangat kecil agar tidak berantakan */
@media (max-width: 380px) {
  .social-card-container {
    grid-template-columns: 1fr; /* Kembali ke 1 kolom jika layar benar-benar sempit */
  }
}

/* ===================================================================================================
  KENCANA GREEN RESIDENC
   ====================================================================================================
/* ============================================================
   HERO PROPERTY SECTION (KENCANA GREEN RESIDENCE)
   ============================================================ */
.hero-property {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}

.hero-property-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-property-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1); /* Untuk efek zoom halus nantinya */
  animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

.hero-property-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(11, 15, 13, 0.8) 0%,
    rgba(11, 15, 13, 0.4) 50%,
    transparent 100%
  );
  z-index: -1;
}

.hero-property-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  z-index: 10;
}

.badge-property {
  display: inline-block;
  background: rgba(95, 158, 51, 0.2);
  color: #5f9e33;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  border: 1px solid #5f9e33;
  margin-bottom: 25px;
  backdrop-filter: blur(5px);
}

.headline-property {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.headline-property span {
  color: #5f9e33;
}

.subheadline-property {
  font-size: clamp(16px, 2vw, 20px);
  max-width: 600px;
  color: #e0e0e0;
  line-height: 1.7;
  margin-bottom: 40px;
}

/* Tombol CTA Property */
.hero-property-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-prop {
  background: #5f9e33;
  color: #fff;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(95, 158, 51, 0.3);
}

.btn-primary-prop:hover {
  background: #4d8229;
  transform: translateY(-5px);
}

.btn-secondary-prop {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 16px 35px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.btn-secondary-prop:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #5f9e33;
}

/* Scroll Indicator */
.scroll-down-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.7;
}

.scroll-down-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.mouse-icon {
  width: 25px;
  height: 40px;
  border: 2px solid #fff;
  border-radius: 15px;
  position: relative;
}

.mouse-icon::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: #5f9e33;
  border-radius: 2px;
  animation: scrollMouse 1.5s infinite;
}

@keyframes scrollMouse {
  0% {
    opacity: 1;
    top: 8px;
  }
  100% {
    opacity: 0;
    top: 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-property-content {
    padding: 0 20px;
  }
  .hero-property-cta {
    flex-direction: column;
  }
  .btn-primary-prop,
  .btn-secondary-prop {
    justify-content: center;
  }
  .hero-property-overlay {
    background: linear-gradient(
      to top,
      rgba(11, 15, 13, 0.9),
      rgba(11, 15, 13, 0.5)
    );
  }
}

/* ============================================================
   USP PROPERTY SECTION
   ============================================================ */
.usp-property {
  padding: 100px 0;
  background: #fdfdfd;
  position: relative;
}

.container-usp {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.usp-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.usp-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 20px 0;
}

.usp-header h2 span {
  color: #5f9e33;
}

.usp-header p {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
}

/* Grid Kartu */
.usp-card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.usp-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.usp-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: #5f9e33;
  transition: all 0.4s ease;
}

.usp-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(95, 158, 51, 0.1);
  border-color: rgba(95, 158, 51, 0.2);
}

.usp-card:hover::before {
  height: 100%;
}

.usp-icon {
  font-size: 35px;
  color: #5f9e33;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.usp-card:hover .usp-icon {
  transform: scale(1.1) rotate(-5deg);
}

.usp-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.usp-card p {
  font-size: 14px;
  color: #777;
  line-height: 1.6;
  margin-bottom: 25px;
}

.usp-card-footer {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #5f9e33;
  letter-spacing: 1px;
}

/* ==========================================
   RESPONSIVE USP
   ========================================== */
@media (max-width: 1024px) {
  .usp-card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .usp-card-grid {
    grid-template-columns: 1fr;
  }

  .usp-header h2 {
    font-size: 32px;
  }

  .usp-property {
    padding: 60px 0;
  }
}

/* ============================================================
   SECTION TIPE UNIT - DARK THEME (CORE STYLE)
   ============================================================ */
.unit-section.dark-theme {
  padding: 100px 0;
  background-color: #0b0f0d; /* Ultra Dark Green */
  color: #ffffff;
  font-family: "Inter", sans-serif;
  overflow: hidden;
}

.container-unit {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.unit-header {
  text-align: center;
  margin-bottom: 60px;
}

.unit-header h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 15px;
}

.unit-header h2 span {
  color: #5f9e33;
}

.text-gray {
  color: #95a5a6;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   UNIT CARDS (DESAIN SEMPURNA SEBELUMNYA)
   ============================================================ */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.unit-card-dark {
  background: #161b18;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
}

.unit-card-dark:hover {
  transform: translateY(-12px);
  border-color: rgba(95, 158, 51, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.unit-img-wrapper {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.unit-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.unit-card-dark:hover .unit-img-main {
  transform: scale(1.1);
}

.unit-tag-premium {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #5f9e33, #4d8229);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.unit-info {
  padding: 30px;
  flex-grow: 1;
}

.unit-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.unit-specs-main span {
  color: #5f9e33;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.unit-features-grid-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0;
}

.feature-item-dark {
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 5px;
  border-radius: 12px;
  text-align: center;
  font-size: 11px;
  color: #bdc3c7;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-item-dark i {
  color: #5f9e33;
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.unit-divider-dark {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin-bottom: 20px;
}

.price-value-dark {
  font-size: 26px;
  font-weight: 800;
}

.price-value-dark span {
  color: #5f9e33;
  font-size: 14px;
}

.btn-unit-detail-dark {
  width: 100%;
  padding: 15px;
  background: #5f9e33;
  color: #fff;
  border-radius: 12px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  margin-top: 15px;
  transition: 0.3s;
}

.btn-unit-detail-dark:hover {
  background: #fff;
  color: #0b0f0d;
}

/* ============================================================
   DISPLAY AREA (EXPANDING SECTION REVISI)
   ============================================================ */
.detail-expand-container {
  max-height: 0;
  overflow: hidden;
  background: #121714;
  transition: max-height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 50px;
  border-radius: 30px;
}

.detail-expand-container.active {
  max-height: 2000px;
  border: 1px solid rgba(95, 158, 51, 0.3);
}

.detail-content-wrapper {
  padding: 50px;
  position: relative;
}

.close-expand {
  position: absolute;
  top: 20px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
  z-index: 10;
}

/* Atas: Slider & Info */
.detail-upper-layout {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.detail-col-slider {
  flex: 1.2;
}

.slider-container {
  position: relative;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
}

.slider-container img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Agar gambar tidak terpotong */
}

.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.slide-nav-btn {
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(5px);
}

.detail-col-info {
  flex: 1;
}

.detail-col-info h2 {
  font-size: 36px;
  color: #5f9e33;
  margin-bottom: 25px;
}

/* Container Card Spesifikasi */
.mini-card-spec {
  background: #1c221f;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #2a332e;
  display: flex;
  flex-direction: column;
  gap: 8px; /* Jarak antara baris atas dan angka */
  transition: 0.3s;
}

/* Bagian Atas: Icon dan Label Sejajar */
.spec-upper {
  display: flex;
  align-items: center;
  gap: 8px; /* Jarak antara icon dan teks */
  justify-content: flex-start; /* Icon & label mulai dari kiri */
}

.spec-upper i {
  color: #5f9e33;
  font-size: 14px;
}

.spec-upper span {
  font-size: 10px;
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap; /* Mencegah teks turun ke bawah */
}

/* Angka/Value di Bawah Center */
.spec-value {
  display: block;
  text-align: center;
  font-size: 18px; /* Lebih besar agar menonjol */
  color: #ffffff;
  font-weight: 800;
}

/* Efek Hover Tipis */
.mini-card-spec:hover {
  border-color: #5f9e33;
  background: #222a25;
}

/* Penyesuaian Grid 2-2-2 agar tetap rapi */
.grid-specs-222 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 25px;
}

.detail-price-highlight {
  background: rgba(95, 158, 51, 0.1);
  padding: 20px;
  border-radius: 15px;
  border-left: 5px solid #5f9e33;
  display: none;
}

/* Bawah: Action Bar */
.detail-lower-action-bar {
  display: flex;
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.action-btn-col {
  flex: 1;
}

.btn-material-popup,
.btn-wa-direct {
  /* Ukuran & Box Model */
  width: 100%;
  height: 60px; /* Gunakan tinggi tetap (fixed height) agar pasti sama */
  padding: 0 20px; /* Padding samping saja karena tinggi sudah dikunci */
  box-sizing: border-box; /* Memastikan padding tidak menambah lebar/tinggi */

  /* Flexbox untuk konten di tengah */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  /* Tipografi & Estetika */
  font-size: 15px; /* Sesuaikan ukuran font */
  font-weight: 800;
  text-decoration: none;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none; /* Hilangkan border default button */
  font-family: "Inter", sans-serif; /* Pastikan font sama */
}

/* Warna masing-masing */
.btn-material-popup {
  background: #34495e;
  color: #fff;
}

.btn-wa-direct {
  background: #25d366;
  color: #fff;
}

/* Efek Hover */
.btn-material-popup:hover {
  background: #2c3e50;
  transform: translateY(-2px);
}

.btn-wa-direct:hover {
  background: #1eb954;
  transform: translateY(-2px);
}

/* ============================================================
   RESPONSIVE LAYOUT (IPAD & HP)
   ============================================================ */

/* IPAD / TABLET (Layar dibawah 1024px) */
@media (max-width: 1024px) {
  .unit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail-upper-layout {
    gap: 30px;
  }

  .slider-container {
    height: 300px;
  }
  .grid-specs-222 {
    gap: 10px;
  }
  .spec-value {
    font-size: 17px;
  }
}

/* HP / MOBILE (Layar dibawah 768px) */
@media (max-width: 768px) {
  .unit-header h2 {
    font-size: 32px;
  }

  .unit-grid {
    grid-template-columns: 1fr; /* Kartu jadi satu kolom */
  }

  .unit-card-dark {
    max-width: 400px;
    margin: 0 auto;
  }

  /* Detail Expanding HP */
  .detail-content-wrapper {
    padding: 40px 20px;
  }

  .detail-upper-layout {
    flex-direction: column; /* Slider diatas, Info dibawah */
  }

  .slider-container {
    height: 250px;
  }

  .detail-col-info h2 {
    font-size: 28px;
    text-align: center;
  }

  .grid-specs-222 {
    grid-template-columns: repeat(2, 1fr); /* Tetap 2 kolom kecil */
    gap: 8px; /* Merapatkan jarak antar card */
  }

  .mini-card-spec {
    padding: 10px 8px; /* Padding lebih ramping */
  }

  .spec-upper i {
    font-size: 12px;
  }

  .spec-upper span {
    font-size: 9px;
    letter-spacing: 0;
  }

  .spec-value {
    font-size: 16px;
  }

  .detail-lower-action-bar {
    flex-direction: column; /* Tombol WA & Material tumpuk vertikal */
    gap: 15px;
  }

  .btn-material-popup,
  .btn-wa-direct {
    padding: 15px;
    font-size: 14px;
  }

  .close-expand {
    top: 10px;
    right: 15px;
    font-size: 32px;
  }
  .action-btn-col {
    width: 100%; /* Tombol memenuhi lebar layar di HP */
  }
}

/* SMALL PHONE (Layar dibawah 480px) */
@media (max-width: 480px) {
  .mini-card-spec {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px;
  }

  .mini-card-spec i {
    margin-bottom: 0;
  }

  .spec-value {
    font-size: 18px;
  }
  .spec-upper span {
    display: none; /* Sembunyikan label, sisakan ICON saja jika layar terlalu sempit */
  }
  .spec-upper {
    justify-content: center; /* Icon jadi ke tengah */
  }
}

/* ============================================================
   FASILITAS SECTION - LIGHT THEME
   ============================================================ */
.fasilitas-section {
  padding: 100px 0;
  background-color: #f9fbf9; /* Abu-abu sangat muda dengan sentuhan hijau */
  font-family: "Inter", sans-serif;
}

.container-fasilitas {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 25px;
}

.fasilitas-header {
  text-align: center;
  margin-bottom: 60px;
}

.badge-fasilitas {
  display: inline-block;
  background: rgba(95, 158, 51, 0.1);
  color: #5f9e33;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.fasilitas-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 20px;
}

.fasilitas-header h2 span {
  color: #5f9e33;
}

.fasilitas-header p {
  color: #7f8c8d;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Grid Layout */
.fasilitas-grid {
  display: grid;
  /* Desktop: 4 Kolom */
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* Card Style */
.fasilitas-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  /* Penambahan Border Halus */
  border: 1px solid #e0e6ed;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.fasilitas-card:hover {
  transform: translateY(-10px);
  /* Border berubah warna saat hover agar lebih interaktif */
  border-color: #5f9e33;
  box-shadow: 0 20px 40px rgba(95, 158, 51, 0.12);
}

/* Image Box with Icon */
.fas-img-box {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.fas-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.fasilitas-card:hover .fas-img-box img {
  transform: scale(1.1);
}

.fas-icon-overlay {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 45px;
  height: 45px;
  background: #5f9e33;
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 5px 15px rgba(95, 158, 51, 0.3);
}

/* Content */
.fas-content {
  padding: 25px;
}

.fas-content h3 {
  font-size: 18px;
  color: #2c3e50;
  font-weight: 700;
  margin-bottom: 12px;
}

.fas-content p {
  font-size: 14px;
  color: #7f8c8d;
  line-height: 1.5;
}

/* ============================================================
   RESPONSIVE FASILITAS
   ============================================================ */

/* IPAD (Tablet) */
@media (max-width: 1024px) {
  .fasilitas-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 Formasi */
    gap: 20px;
  }
}

/* HP (Mobile) */
@media (max-width: 600px) {
  .fasilitas-grid {
    /* Tetap mempertahankan formasi 2 kolom sesuai permintaan */
    grid-template-columns: repeat(2, 1fr);
    gap: 12px; /* Jarak lebih rapat untuk layar kecil */
  }

  .fasilitas-header h2 {
    font-size: 28px;
  }

  .fas-content {
    padding: 15px; /* Padding lebih ramping di HP */
  }

  .fas-content h3 {
    font-size: 15px; /* Ukuran teks judul fasilitas menyesuaikan */
    margin-bottom: 8px;
  }

  .fas-content p {
    font-size: 12px; /* Deskripsi lebih kecil agar tidak penuh */
    line-height: 1.4;
  }

  .fas-img-box {
    height: 150px; /* Tinggi gambar dikurangi agar proporsional */
  }

  .fas-icon-overlay {
    width: 35px;
    height: 35px;
    font-size: 16px;
    bottom: 10px;
    right: 10px;
  }
}

@media (max-width: 380px) {
  .fasilitas-grid {
    gap: 8px;
  }
  .fas-content {
    padding: 10px;
  }
}

/* ============================================================
   LOKASI SECTION - PREMIUM DARK THEME REVISION
   ============================================================ */
.lokasi-section {
  padding: 120px 0;
  background: #0b0f0d; /* Ultra Dark Green/Black */
  color: #ffffff;
  overflow: hidden;
}

.container-lokasi {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
}

/* 1. PREMIUM HEADER STYLE (DARK) */
.lokasi-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.header-line {
  width: 60px;
  height: 4px;
  background: #5f9e33;
  margin: 0 auto 20px;
  border-radius: 2px;
  box-shadow: 0 0 15px rgba(95, 158, 51, 0.5);
}

.badge-luxury {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #5f9e33;
  margin-bottom: 15px;
  display: block;
  text-shadow: 0 0 10px rgba(95, 158, 51, 0.3);
}

.title-main {
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 25px;
}

.title-main span {
  color: #5f9e33;
  position: relative;
  display: inline-block;
}

.subtitle-text {
  color: #94a3b8; /* Muted Slate */
  max-width: 650px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.7;
}

/* 2. MAPS & SITEPLAN 5:5 (DARK FRAME) */
.map-peta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 100px;
}

.visual-card-frame {
  background: #161b18; /* Darker Card */
  border-radius: 30px;
  padding: 15px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.visual-label {
  padding: 10px 20px;
  font-weight: 700;
  font-size: 12px;
  color: #5f9e33;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.frame-content {
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Google Maps Grayscale Filter (Optional: for more dark aesthetic) */
.frame-content iframe {
  filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
}

.siteplan-zoom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  opacity: 0.9;
}

.siteplan-zoom:hover img {
  transform: scale(1.1);
  opacity: 1;
}

/* 3. AKSES GRID WITH NEON ACCENT BORDERS */
.akses-premium-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.akses-card-modern {
  background: #161b18;
  padding: 35px 25px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-top: 6px solid #334155;
  position: relative;
}

/* Glow Effect on Hover */
.akses-card-modern:hover {
  transform: translateY(-15px);
  background: #1c231f;
}

/* Variasi Border Berwarna & Glow */
.akses-card-modern.border-green {
  border-top-color: #5f9e33;
}
.akses-card-modern.border-blue {
  border-top-color: #3498db;
}
.akses-card-modern.border-red {
  border-top-color: #e74c3c;
}
.akses-card-modern.border-gold {
  border-top-color: #f1c40f;
}

.akses-card-modern.border-green:hover {
  box-shadow: 0 20px 40px rgba(95, 158, 51, 0.2);
}
.akses-card-modern.border-blue:hover {
  box-shadow: 0 20px 40px rgba(52, 152, 219, 0.2);
}
.akses-card-modern.border-red:hover {
  box-shadow: 0 20px 40px rgba(231, 76, 60, 0.2);
}
.akses-card-modern.border-gold:hover {
  box-shadow: 0 20px 40px rgba(241, 196, 15, 0.2);
}

.icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.border-green i {
  color: #5f9e33;
}
.border-blue i {
  color: #3498db;
}
.border-red i {
  color: #e74c3c;
}
.border-gold i {
  color: #f1c40f;
}

.akses-card-modern h4 {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
}

.akses-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.akses-list li {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 12px;
  display: flex;
  align-items: center; /* Menjaga teks sejajar vertikal di tengah */
  gap: 8px; /* Jarak antara waktu, pemisah, dan tujuan */
  line-height: 1.4;
}

.time-tag {
  font-weight: 800;
  color: #5f9e33;
  font-size: 11px;
  text-transform: uppercase;
  white-space: nowrap; /* Mencegah waktu terpotong/pindah baris */
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .map-peta-grid {
    grid-template-columns: 1fr;
  }
  .akses-premium-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .container-lokasi {
    padding: 0 30px;
  }
}

@media (max-width: 600px) {
  .title-main {
    font-size: 32px;
  }
  .akses-premium-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .akses-card-modern {
    padding: 25px 15px;
  }
  .frame-content {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .akses-list li {
    font-size: 11px;
    gap: 5px;
  }
  .time-tag {
    font-size: 9px;
  }
}

/*================================================*/
/* Sembunyikan secara total saat load awal */
.hb-modal-portal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Berada di paling belakang saat tidak aktif */
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden; /* Tidak bisa diklik/dilihat */
  opacity: 0;
  transition: all 0.4s ease;
}

/* State Aktif */
.hb-modal-portal.is-visible {
  z-index: 999999; /* Lompat ke paling depan */
  visibility: visible;
  opacity: 1;
}

/* Latar Belakang Gelap (Blur) */
.hb-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Jendela Modal */
.hb-modal-wrapper {
  position: relative;
  width: 90%;
  max-width: 850px;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hb-modal-portal.is-visible .hb-modal-wrapper {
  transform: translateY(0);
}

/* Kontainer Gambar */
.hb-modal-container {
  background: #111;
  padding: 8px;
  border-radius: 20px;
  border: 1px solid rgba(95, 158, 51, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.hb-spec-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Tombol Close */
.hb-modal-close {
  position: absolute;
  top: -60px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 45px;
  cursor: pointer;
  line-height: 1;
  transition: 0.3s;
}

.hb-modal-close:hover {
  color: #5f9e33;
  transform: scale(1.1);
}

/* Perbaikan untuk Mobile */
@media (max-width: 768px) {
  .hb-modal-wrapper {
    width: 95%;
  }
  .hb-modal-close {
    top: -50px;
    right: 10px;
    font-size: 40px;
  }
}

/* ============================================================
   WIDGET HUBUNGI KAMI - FLOATING BUTTON
   ============================================================ */
.hubungi-kami-widget {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.widget-container {
  background: linear-gradient(135deg, #5f9e33, #4d8229);
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(95, 158, 51, 0.3);
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 200px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.widget-content {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
}

.widget-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
}

.widget-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.widget-label {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.widget-title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.widget-arrow {
  font-size: 12px;
  opacity: 0.8;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.hubungi-kami-widget:hover {
  transform: translateY(-5px) scale(1.05);
}

.hubungi-kami-widget:hover .widget-container {
  background: linear-gradient(135deg, #6bb33f, #5f9e33);
  box-shadow: 0 15px 40px rgba(95, 158, 51, 0.4);
}

.hubungi-kami-widget:hover .widget-icon {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.hubungi-kami-widget:hover .widget-arrow {
  transform: translateX(3px);
}

/* Pulse Animation */
.hubungi-kami-widget::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(95, 158, 51, 0.3);
  border-radius: 50px;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0;
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .hubungi-kami-widget {
    bottom: 20px;
    right: 20px;
  }
  
  .widget-container {
    min-width: 160px;
    padding: 12px 16px;
  }
  
  .widget-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  
  .widget-label {
    font-size: 10px;
  }
  
  .widget-title {
    font-size: 13px;
  }
}

/* Compact Mode untuk layar sangat kecil */
@media (max-width: 480px) {
  .widget-text {
    display: none;
  }
  
  .widget-container {
    min-width: auto;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    padding: 0;
    justify-content: center;
  }
  
  .widget-content {
    gap: 0;
  }
  
  .widget-icon {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
  }
  
  .widget-arrow {
    display: none;
  }
}

/* ============================================================
   ENHANCED ANIMATIONS & EFFECTS
   ============================================================ */

/* Fade in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apply animations to sections */
.content-tentang {
  animation: fadeInUp 0.8s ease-out;
}

.tentang-images {
  animation: slideInLeft 1s ease-out 0.2s both;
}

.tentang-text {
  animation: slideInRight 1s ease-out 0.4s both;
}

.project-card {
  animation: fadeInUp 0.6s ease-out both;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.project-card:nth-child(1) {
  animation-delay: 0.1s;
}

.project-card:nth-child(2) {
  animation-delay: 0.3s;
}

/* Enhanced hover effects */
.project-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(95, 158, 51, 0.2);
}

.usp-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(95, 158, 51, 0.15);
}

.fasilitas-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(95, 158, 51, 0.12);
}

/* Floating animation for icons */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

.usp-icon {
  animation: float 3s ease-in-out infinite;
}

.fas-icon-overlay {
  animation: float 2.5s ease-in-out infinite;
}

/* Improved responsive breakpoints */
@media (max-width: 1200px) {
  .nav-container {
    padding: 0 30px;
  }
  
  .project-container,
  .container,
  .container-usp,
  .container-fasilitas {
    padding: 0 30px;
  }
}

@media (max-width: 992px) {
  .hero h1 {
    font-size: 48px;
  }
  
  .tentang-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .project-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .grid-komitmen {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .komitmen-flex-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
  }
  
  .project-header h2 {
    font-size: 32px;
  }
  
  .usp-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .fasilitas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  
  .proses-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .proses-col-visual,
  .proses-col-content {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }
  
  .tentang-text h2 {
    font-size: 28px;
  }
  
  .project-header h2 {
    font-size: 24px;
  }
  
  .fasilitas-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .tentang-table {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .nav-container {
    padding: 0 20px;
  }
  
  .project-container,
  .container,
  .container-usp,
  .container-fasilitas {
    padding: 0 20px;
  }
  
  .hero-content {
    padding: 0 15px;
  }
  
  .hero-btn-outline {
    padding: 14px 25px;
    font-size: 13px;
  }
  
  .btn-outline {
    padding: 12px 25px;
    font-size: 13px;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }
  
  .hero-sub {
    font-size: 12px;
  }
  
  .tentang-text h2 {
    font-size: 24px;
  }
  
  .project-header h2 {
    font-size: 20px;
  }
  
  .card-body h3 {
    font-size: 18px;
  }
  
  .usp-card h3,
  .fasilitas-card h3 {
    font-size: 16px;
  }
  
  .proses-title {
    font-size: 20px;
  }
  
  .proses-subtitle {
    font-size: 14px;
  }
}

/* Enhanced green theme colors */
.hero-btn-outline:hover {
  background: linear-gradient(135deg, #8cc63f, #6bb33f);
  box-shadow: 0 15px 35px rgba(140, 198, 63, 0.4);
}

.btn-outline:hover {
  background: linear-gradient(135deg, #5f9e33, #4d8229);
  box-shadow: 0 12px 25px rgba(95, 158, 51, 0.3);
}

/* Smooth transitions for all interactive elements */
* {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button, .btn-outline, .hero-btn-outline, .project-card, .usp-card, .fasilitas-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Enhanced green glow effects */
.hero-btn-outline:hover {
  box-shadow: 0 0 20px rgba(140, 198, 63, 0.6), 0 15px 35px rgba(140, 198, 63, 0.4);
}

.btn-outline:hover {
  box-shadow: 0 0 15px rgba(95, 158, 51, 0.5), 0 12px 25px rgba(95, 158, 51, 0.3);
}

/* Leaf falling animation */
@keyframes leafFall {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(10px) rotate(10deg);
    opacity: 0;
  }
}

.sub-title::before {
  content: '🌿';
  margin-right: 8px;
  animation: leafFall 2s ease-in-out infinite;
}

/* Breathing effect for stat numbers */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.stat-number {
  animation: breathe 3s ease-in-out infinite;
}

/* Parallax scroll effect for background */
.project-bg {
  transform: translateZ(0);
  will-change: transform;
}

/* Enhanced card interactions */
.project-card:hover .card-image img {
  transform: scale(1.15);
  filter: brightness(1.1) saturate(1.2);
}

.usp-card:hover .usp-icon {
  transform: scale(1.2) rotate(5deg);
  color: #6bb33f;
}

.fasilitas-card:hover .fas-icon-overlay {
  transform: scale(1.1) rotate(-5deg);
  background: linear-gradient(135deg, #5f9e33, #8cc63f);
}

/* Ripple effect for buttons */
@keyframes ripple {
  0% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}

.hero-btn-outline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-btn-outline:active::before {
  width: 300px;
  height: 300px;
  animation: ripple 0.6s ease-out;
}
