@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:wght@300;400;600;700&display=swap");

/* === RESET DAN DASAR === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
  color: #222;
  background-color: #ffffff;
  overflow-x: hidden; /* Mencegah scroll horizontal */
  width: 100%;
}

/* === KEYFRAMES (ANIMASI) === */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6); }
  70% { box-shadow: 0 0 0 25px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes float {
  0% { transform: translate(-50%, 40%); }
  50% { transform: translate(-50%, 60%); }
  100% { transform: translate(-50%, 40%); }
}

@keyframes floatMobile {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* === NAVBAR (Efek Glassmorphism WOW) === */
.isi {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  color: white;
  z-index: 999;
  background-color: rgba(15, 100, 66, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s ease;
}


.navbar .isi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  flex-wrap: wrap;
}

.navbar .logo {
  font-size: 24px;
  color: white;
  font-style: oblique;
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.navbar .logo .tekskecil {
  font-size: 14px;
  color: #d4af37;
  font-style: italic;
  letter-spacing: 1px;
}

.navbar nav ul {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
}

.navbar nav ul li {
  margin-left: 20px;
}

.navbar nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;
  font-size: 15px;
}

.navbar nav ul li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #d4af37;
  transition: width 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar nav ul li a:hover { color: #d4af37; }
.navbar nav ul li a:hover::after { width: 100%; }

.navbar.navbar--hidden {
  transform: translateY(-100%);
  box-shadow: none;
}

/* === Gambar Utama dan Teks === */
.utama {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-color: #0f6442;
  min-height: 100vh;
}

.utama::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

.utama .isi {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
  width: 100%;
}

.teks-utama {
  color: white;
  max-width: 600px;
}

.teks-utama .subjudul {
  font-family: "Great Vibes", cursive;
  color: #d4af37;
  font-size: 32px;
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.teks-utama h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin: 10px 0;
  opacity: 0;
  animation: fadeInUp 1s ease 0.3s forwards;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

.teks-utama .tagline {
  font-size: 18px;
  opacity: 0;
  line-height: 1.6;
  animation: fadeInUp 1.2s ease 0.6s forwards;
}

.play-button-wrapper {
  opacity: 0;
  animation: fadeInUp 1.2s ease 0.9s forwards;
}

.play-button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulseGlow 2.5s infinite;
}

.play-button i {
  font-size: 28px;
  color: #0f6442;
  margin-left: 5px;
  transition: color 0.3s ease-in-out;
}

.play-button:hover {
  transform: scale(1.15) rotate(5deg);
  background-color: #d4af37;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}
.play-button:hover i { color: #ffffff; }

/* ==== Search Tools / Konsultasi Cepat ==== */
.hero-section {
  position: relative;
  padding-bottom: 0px; 
  z-index: 10;
  
}

.search-container {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 90%;
  max-width: 1100px;
  z-index: 10;
  background: transparent !important; /* KUNCI 1: Hapus background putih utama */
  box-shadow: none !important; /* KUNCI 2: Hapus bayangan utama */
  animation: float 6s ease-in-out infinite;
}

.search-tabs {
  display: flex;
  width: max-content;
  gap: 5px; /* Kasih jarak dikit antar tombol biar makin estetik */
}

.tab-link {
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.25); /* KUNCI 3: Tombol jadi nembus pandang (kaca) */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: none;
  cursor: pointer;
  white-space: nowrap; /* Biar tulisan nggak turun */
  border-radius: 12px 12px 0 0; /* Sudut atas membulat, bawahnya rata nempel kotak */
  transition: all 0.3s ease;
}

.tab-link:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

.tab-link.active {
  background-color: #0f6442; /* Warna hijau khas Wira Arsitek */
  color: white;
}

/* Kotak Isian Pencarian */
.search-fields {
  display: none; /* Sembunyikan semua tab secara bawaan */
  flex-wrap: wrap;
  align-items: center;
  padding: 15px;
  background-color: #ffffff;
  border-radius: 0 12px 12px 12px; 
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Tampilkan hanya tab yang sedang aktif */
.search-fields.active {
  display: flex;
  animation: fadeInUp 0.5s ease; /* Tambahan animasi halus pas tab diganti */
}
  

.field {
  flex: 1;
  min-width: 200px;
  padding: 15px;
  border-right: 1px solid #eee;
  transition: transform 0.3s ease;
}

.field:hover { transform: translateY(-2px); }
.field:last-of-type { border-right: none; }

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #888;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-with-icon {
  display: flex;
  align-items: center;
}

.search-fields input,
.search-fields select {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  background-color: transparent;
  color: #333;
}

.search-button {
  background: linear-gradient(135deg, #d4af37 0%, #b8962c 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 20px 40px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.4s ease;
  margin-left: 15px;
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.search-button:hover {
  background: linear-gradient(135deg, #b8962c 0%, #997a20 100%);
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* ======== Deskripsi / Produk ======= */
.description {
  padding: 150px 0 80px 0;
}

.deskripsi {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
  padding: 0 20px;
  flex-wrap: wrap; /* Supaya tidak pecah di HP */
}

.deskripsi-kiri {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  flex: 1 1 50%;
}

.deskripsi-card {
  position: relative;
  min-height: 260px;
  padding: 30px;
  border-radius: 15px;
  color: white;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.deskripsi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
  z-index: 0;
  transition: opacity 0.4s ease;
}

.deskripsi-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 100, 66, 0.3);
}

.deskripsi-card:hover::before { opacity: 0.7; }
.deskripsi-card > * { position: relative; z-index: 1; }

.card-icon {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  transition: transform 0.4s ease;
}

.deskripsi-card:hover .card-icon { transform: scale(1.1) rotate(5deg); }
.card-icon i { color: #0f6442 !important; }
.deskripsi-card h3 { font-size: 20px; margin-bottom: 8px; font-weight: 700; }

.Deskripsi-kanan {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Deskripsi-kanan h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.2;
}

.Deskripsi-kanan p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #0f6442 0%, #0a4a30 100%);
  color: white;
  padding: 16px 30px;
  border-radius: 8px;
  width: max-content;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 20px rgba(15, 100, 66, 0.2);
  transition: all 0.4s ease;
}

.btn-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(15, 100, 66, 0.4);
}

.Deskripsi-Kanan-judul {
  font-family: "Great Vibes", cursive;
  font-size: 32px;
  color: #d4af37;
  margin-bottom: 10px;
}

/* =================== KATALOG (Gambar 3 Kolom) =================*/
.Gambar3kolom {
  padding: 25px 0;
  background-color: #f4f7f6;
}

.Gambar3kolom .isi { text-align: center; }
.Gambar3kolom h2 { margin-bottom: 50px; font-size: 36px; font-weight: 700; }

.Pembatas {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 30px;
}

.Gambar3kolom-perkotak {
  position: relative;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: left;
  transition: all 0.4s ease;
  margin-bottom: 110px; /* DITAMBAH: Jarak bawah dilebarkan agar kotak putih punya ruang */
}

.Gambar3kolom-perkotak:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(15, 100, 66, 0.15);
}

.perkotak {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.perkotak img {
  width: 100%;
  height: 400px; /* DIPERBESAR: Agar foto kubah menjulang full kelihatan semua */
  object-fit: cover;
  object-position: center; /* Fokus gambar di tengah */
  display: block;
  transition: transform 0.6s ease;
}

.Gambar3kolom-perkotak:hover .perkotak img { transform: scale(1.1); }

/* Perbaikan Kotak Putih Teks */
.perkotak-isian {
  position: absolute;
  bottom: -80px; /* DITURUNKAN: Kotak putih lebih turun, jadi gak menutupi kubah */
  left: 5%;
  right: 5%;
  width: 90%;
  background: white;
  padding: 20px;
  z-index: 2;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  transition: all 0.4s ease;
}

.Gambar3kolom-perkotak:hover .perkotak-isian { bottom: -90px; }

.perkotak-durasi {
  font-size: 13px;
  color: #d4af37;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.perkotak-isian h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin: 8px 0;
}

.perkotak-lokasi {
  font-size: 14px;
  color: #777;
  margin-bottom: 15px;
}

.perkotak-logonya {
  display: flex;
  gap: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}

.item-detail i { color: #0f6442; margin-right: 5px; font-size: 16px; }

.ribbon {
  position: absolute;
  top: 15px;
  left: -8px;
  background: linear-gradient(135deg, #d4af37 0%, #b8962c 100%);
  color: white;
  font-weight: bold;
  padding: 8px 15px;
  font-size: 13px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.ribbon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  border-top: 8px solid #8f721b;
  border-left: 8px solid transparent;
}

/*======== SECTION TENTANG KAMI ========*/
.Gambarbesar {
  position: relative;
  width: 100%;
  background-color: #fff;
}

.SubGambarBesar {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 400px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.SubGambarBesar::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(15, 100, 66, 0.7); 
}

.GambarContent {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  padding: 50px 5% 40px; /* <--- UBAH DI SINI (Kurangi jarak bawah) */
  margin-top: -100px;
  position: relative;
  z-index: 3;
  flex-wrap: wrap; 
}

.floating-image {
  width: 100%;
  max-width: 450px;
  background-color: white;
  padding: 15px;
  border-radius: 12px;
  position: relative;
  z-index: 4;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transition: transform 0.5s ease;
}

.floating-image:hover { transform: translateY(-10px); }
.floating-image img { width: 100%; display: block; border-radius: 8px; }

.content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  padding-top: 100px;
}

.small-title {
  color: #d4af37;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.content h2 {
  font-size: 32px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.content-description {
  font-size: 15px;
  color: #666;
  margin-bottom: 30px;
  line-height: 1.8;
}

.book-button {
  display: inline-block;
  background: linear-gradient(135deg, #0f6442 0%, #0a4a30 100%);
  color: white;
  padding: 16px 30px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(15, 100, 66, 0.2);
}

.book-button:hover { transform: translateY(-5px); }


/*============ BANNER CTA ==================*/
.banner-utama {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 250px;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  border-radius: 15px;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 80px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  padding: 40px 20px;
}

.judul-utama { font-size: 32px; font-weight: 800; margin-bottom: 15px; letter-spacing: 1px; }
.deskripsi-banner { font-size: 16px; margin-bottom: 30px; opacity: 0.95; }

.tombol-aksi {
  display: inline-block;
  background: #d4af37;
  color: white;
  padding: 15px 35px;
  border-radius: 50px; 
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.tombol-aksi:hover {
  background: #fff;
  color: #0f6442;
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 255, 255, 0.4);
}

/*===== FOOTER =====*/
.site-footer {
  background-color: #111;
  padding: 80px 0 40px 50px;
  font-size: 15px;
  color: #aaa;
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap; /* Supaya turun ke bawah di HP */
}

.footer-column { flex: 1 1 200px; }
.footer-column.about-column { flex: 1 1 300px; }

.footer-column h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 3px;
  background-color: #d4af37;
}

.footer-column ul li { margin-bottom: 12px; }
.footer-column ul a { text-decoration: none; color: #aaa; transition: all 0.3s ease; display: inline-block; }
.footer-column ul a:hover { color: #d4af37; transform: translateX(8px); }

.social-icons { margin-top: 20px; display: flex; gap: 12px; }

.social-icon {
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.05);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.4s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  background-color: #d4af37;
}

.contact-info li { display: flex; align-items: flex-start; margin-bottom: 15px; }
.contact-info li i { color: #d4af37; font-size: 18px; margin-top: 2px; }

.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.1); font-size: 14px; }

/* Modal Video */
.video-toggle { display: none; }
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.video-toggle:checked ~ .modal { visibility: visible; opacity: 1; }
.modal-content {
  position: relative;
  width: 90%;
  max-width: 900px;
  transform: scale(0.8);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.video-toggle:checked ~ .modal .modal-content { transform: scale(1); }
.close-button { position: absolute; top: -40px; right: 0; font-size: 2.5rem; color: white; cursor: pointer; transition: color 0.3s; }
.close-button:hover { color: #d4af37; }
.video-container { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 10px; box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.video-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ======================================================================== */
/* 2. SMARTPHONE POTRAIT (PEMADATAN ANTI-MALAS SCROLL) */
/* ======================================================================== */
@media (max-width: 768px) {
  /* Navbar Makin Ramping */
  .navbar .isi { flex-direction: column; padding: 8px; gap: 5px; }
  .navbar nav ul { gap: 8px; flex-wrap: wrap; }
  .navbar nav ul li a { font-size: 11px; }

  /* Hero Atas: Dipendekin biar form langsung kelihatan */
  .utama { height: auto; min-height: unset; padding: 110px 0 60px 0; }
  .utama .isi { gap: 15px; }
  .teks-utama h1 { font-size: 1.8rem; margin: 5px 0; }
  .teks-utama .subjudul { font-size: 18px; }
  .teks-utama .tagline { font-size: 13px; line-height: 1.4; margin-bottom: 0; }
  .play-button { width: 55px; height: 55px; }
  .play-button i { font-size: 18px; }

  /* Form Konsultasi: Dipadatkan */
  .hero-section { padding-bottom: 10px; }
  .search-container { margin: -30px auto 10px auto; width: 95%; }
  .search-tabs { width: 100%; display: flex; }
  .tab-link { flex: 1; padding: 10px 5px; font-size: 12px; }
  .search-fields { padding: 10px; gap: 5px; border-radius: 0 0 10px 10px; }
  .field { padding: 8px 5px; border-bottom: 1px solid #eee; }
  .field label { font-size: 11px; margin-bottom: 4px; }
  .search-fields input, .search-fields select { font-size: 13px; }
  .search-button { padding: 12px; font-size: 14px; margin-top: 5px; width: 100%; }

  /* Social Proof: BIKIN JEJER KE SAMPING BIAR GAK PANJANG */
  .social-proof { margin-top: 10px; padding: 20px 0; }
  .proof-grid { flex-direction: row; justify-content: space-around; gap: 10px; }
  .proof-item { flex: 1; min-width: 30%; }
  .proof-item h2 { font-size: 24px; margin-bottom: 2px; }
  .proof-item p { font-size: 9px; }

  /* Pangkas Ruang Kosong Global */
  .description, .Gambar3kolom, .section-blog, .keunggulan-section, .Katalog3DStack { padding: 30px 0; }
  .Deskripsi-kanan h2, .Gambar3kolom h2, .judul-section h2 { font-size: 20px !important; margin-bottom: 10px; }
  .Deskripsi-Kanan-judul, .subjudul-blog { font-size: 18px; margin-bottom: 5px; }
  .Deskripsi-kanan p { font-size: 13px; line-height: 1.5; margin-bottom: 15px; }
  .btn-primary, .book-button { padding: 12px 20px; font-size: 14px; }

  /* Tentang Kami: Dipadatkan */
  .SubGambarBesar { height: 120px !important; }
  .GambarContent { margin-top: -40px; padding: 15px; gap: 15px; }
  .floating-image { max-width: 80%; }
  .content { padding-top: 0; }
  .content h2 { font-size: 20px; margin-bottom: 10px; }
  .content-description { font-size: 13px; line-height: 1.5; margin-bottom: 15px; }

  /* Katalog 3D Stack: Dikecilkan */
  .Katalog3DStack { perspective: 800px; padding: 30px 0; }
  .katalog-tabs { gap: 5px; margin-bottom: 20px; }
  .katalog-tab { padding: 8px 12px; font-size: 11px; }
  .katalog-content { height: 320px; }
  .katalog-stack-card { width: 200px; height: 300px; }
  .katalog-stack-card img { height: 150px; }
  .katalog-card-info { padding: 10px; }
  .katalog-card-info h3 { font-size: 13px; margin-bottom: 4px; }
  .katalog-card-info p { font-size: 10px; margin-bottom: 5px; line-height: 1.3;}
  .card-tag { font-size: 9px; padding: 3px 6px; }
  .stack-btn { width: 35px; height: 35px; font-size: 14px; bottom: 0; }

  /* Keunggulan Kami: BIKIN 2 KOLOM (KIRI-KANAN) BIAR GAK NUMPUK KE BAWAH */
  .keunggulan-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
  .keunggulan-card { padding: 15px 10px; border-radius: 10px; }
  .keunggulan-icon { width: 45px; height: 45px; font-size: 20px; margin-bottom: 10px; }
  .keunggulan-card h3 { font-size: 13px; margin-bottom: 5px; }
  .keunggulan-card p { font-size: 11px; line-height: 1.4; }

  /* Banner CTA Bawah */
  .banner-utama { padding: 30px 15px; margin-bottom: 30px; min-height: unset; }
  .judul-utama { font-size: 18px; margin-bottom: 10px; }
  .deskripsi-banner { font-size: 12px; margin-bottom: 20px; }
  .tombol-aksi { padding: 12px 20px; font-size: 14px; }

  /* Footer */
  .site-footer { padding: 40px 15px 20px 15px; }
  .footer-columns { gap: 20px; }
  .footer-column h3 { font-size: 16px; margin-bottom: 15px; }
  .footer-column p, .footer-column ul a, .contact-info span { font-size: 13px; }


  .layanan-grid-greget { grid-template-columns: repeat(2, 1fr); gap: 20px;}
  .layanan-greget { padding: 50px 0; }
  .layanan-grid-greget { grid-template-columns: 1fr; gap: 15px; }
  .layanan-card-greget { min-height: 350px; padding: 30px 20px; border-radius: 15px; }
  .layanan-card-greget h3 { font-size: 20px; text-align: left;}
  .layanan-card-greget p { font-size: 13px; text-align: left; }
  .icon-layanan-lingkar { width: 60px; height: 60px; font-size: 24px; }
}

/* ============================================================================= */
/* ===                           HALAMAN KONTAK                              === */
/* ============================================================================= */

.halaman-atas {
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  margin-top: 0;
  padding-top: 80px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  font-size: 16px;
  animation: fadeInUp 0.8s ease forwards;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "»";
  margin: 0 12px;
  color: rgba(212, 175, 55, 0.8); /* Warna Emas */
}

.breadcrumb-item a { color: white; text-decoration: none; transition: color 0.3s; }
.breadcrumb-item a:hover { color: #d4af37; }
.breadcrumb-item.active { color: #d4af37; font-weight: 600; }

.isi-halaman-atas h1 {
  font-size: 54px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease 0.3s forwards;
  opacity: 0;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
}

/* Section Info Kontak (4 Kotak) */
.info-kontak-section {
  padding: -80px 0 80px 0;
  background-color: #f4f7f6;
  position: relative;
  z-index: 5;
}

.info-kontak-section .isi {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: -80px; /* Bikin kotaknya naik menimpa background header */
}

.kotak-info {
  text-align: center;
  padding: 40px 25px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border-bottom: 4px solid transparent;
}

.kotak-info:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(15, 100, 66, 0.2);
  border-bottom: 4px solid #d4af37;
}

.ikon-info {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #0f6442 0%, #0a4a30 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 20px rgba(15, 100, 66, 0.2);
  transition: transform 0.4s ease;
}

.kotak-info:hover .ikon-info { transform: scale(1.1) rotate(10deg); background: #d4af37; }

.kotak-info h3 { font-size: 20px; font-weight: 700; color: #333; margin-bottom: 12px; }
.kotak-info p { color: #666; font-size: 15px; line-height: 1.6; }

/* Section Form dan Peta */
.form-dan-peta-section { padding: 100px 0; background-color: #fff; }
.form-dan-peta-section .isi { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: flex-start; }

.kolom-form h2 { font-size: 36px; font-weight: 800; margin-bottom: 15px; color: #222; }
.kolom-form p { color: #666; margin-bottom: 35px; line-height: 1.8; }
.kolom-form form { display: flex; flex-direction: column; gap: 20px; }

.grup-input { display: flex; gap: 20px; }
.grup-input input { width: 100%; }

.kolom-form input, .kolom-form textarea {
  padding: 18px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
}

.kolom-form input:focus, .kolom-form textarea:focus {
  outline: none;
  border-color: #d4af37;
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.tombol-kirim {
  background: linear-gradient(135deg, #0f6442 0%, #0a4a30 100%);
  color: white;
  padding: 18px 35px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s ease;
  align-self: flex-start;
  box-shadow: 0 10px 20px rgba(15, 100, 66, 0.2);
}

.tombol-kirim:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #d4af37 0%, #b8962c 100%);
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.kolom-gambar {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.kolom-gambar img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 25px;
  border: 4px solid #f4f7f6;
  transition: transform 0.5s ease;
}

.kolom-gambar:hover img { transform: scale(1.02); }
.kolom-gambar h3 { margin: 5px 0; font-weight: 800; color: #222; font-size: 22px; }

/* Responsive Kontak */
@media (max-width: 992px) {
  .info-kontak-section .isi { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .form-dan-peta-section .isi { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .halaman-atas { height: 50vh; }
  .isi-halaman-atas h1 { font-size: 36px; }
  .info-kontak-section .isi { grid-template-columns: 1fr; margin-top: -50px; }
  .grup-input { flex-direction: column; gap: 20px; }
  .kolom-form h2 { font-size: 28px; }
  .tombol-kirim { width: 100%; }
}

/* ======================================================== */
/* ======== TOMBOL WHATSAPP MELAYANG (FLOATING WA) ======== */
/* ======================================================== */

.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25d366; /* Warna khas WhatsApp */
  color: white;
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 38px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  animation: pulseGlowWA 2s infinite; /* Efek berdenyut memanggil untuk diklik */
  text-decoration: none;
}

.floating-wa:hover {
  transform: scale(1.15) rotate(-5deg);
  background-color: #128c7e;
  color: white;
}

@keyframes pulseGlowWA {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
  70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Penyesuaian ukuran di HP biar nggak ngabisin layar */
@media (max-width: 768px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 32px;
  }
}




  /* ======================================================== */
/* ======== KATALOG PRODUK 3D STACK CAROUSEL ============ */
/* ======================================================== */

.Katalog3DStack {
  padding: 60px 0; /* <--- UBAH DI SINI (Dari 100px jadi 60px) */
  background-color: #f4f7f6;
  position: relative;
  perspective: 2000px; 
  width: 100%;
  overflow: hidden;
}

.katalog-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.katalog-tab {
  padding: 12px 30px;
  border: 2px solid #0f6442;
  background: transparent;
  color: #0f6442;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.katalog-tab.active, .katalog-tab:hover {
  background: #0f6442;
  color: white;
  box-shadow: 0 5px 15px rgba(15, 100, 66, 0.3);
  transform: translateY(-3px);
}

.katalog-content {
  display: none;
  position: relative;
  width: 100%;
  height: 480px; /* Tinggi kontainer stack */
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.katalog-content.active {
  display: flex;
  animation: fadeInUp 0.5s ease;
}

.katalog-stack-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-style: preserve-3d;
}

.katalog-stack-card {
  position: absolute;
  width: 320px;
  height: 420px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  backface-visibility: hidden;
  cursor: grab;
  user-select: none;
  z-index: 1;
}

.katalog-stack-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.katalog-card-info {
  padding: 15px;
  text-align: center;
  background: white;
}

.katalog-card-info h3 {
  font-size: 17px;
  color: #222;
  font-weight: 700;
  margin-bottom: 5px;
}

.katalog-card-info p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  margin-bottom: 10px;
}

.card-tag {
  display: inline-block;
  background-color: rgba(15, 100, 66, 0.1);
  color: #0f6442;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Tombol Navigasi */
.stack-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #d4af37;
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stack-btn:hover {
  background: #b8962c;
  transform: translateY(-50%) scale(1.1);
}

.stack-btn.prev { left: 40px; }
.stack-btn.next { right: 40px; }

/* Responsive untuk HP */
@media (max-width: 992px) {
  .stack-btn.prev { left: 10px; }
  .stack-btn.next { right: 10px; }
}

@media (max-width: 768px) {
  .Katalog3DStack { padding: 60px 0; perspective: 1000px; }
  .katalog-content { height: 380px; }
  .katalog-stack-card { width: 240px; height: 340px; }
  .katalog-stack-card img { height: 180px; }
  .katalog-card-info h3 { font-size: 15px; }
  .katalog-card-info p { font-size: 11px; }
  .stack-btn { width: 35px; height: 35px; font-size: 14px; }
  .stack-btn.prev { left: 5px; }
  .stack-btn.next { right: 5px; }
}


/* ======================================================== */
/* ======== KEUNGGULAN KAMI (PENGGANTI INSTAGRAM) ======== */
/* ======================================================== */
.keunggulan-section {
  padding: 60px 0; /* <--- UBAH DI SINI (Dari 100px jadi 60px) */
  background-color: #ffffff;
}

.keunggulan-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.keunggulan-card {
  background: #f4f7f6;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.4s ease;
  border-bottom: 5px solid transparent;
}

/* Animasi hover yang estetik */
.keunggulan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(15, 100, 66, 0.1);
  border-bottom: 5px solid #d4af37;
  background: #fff;
}

.keunggulan-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: rgba(15, 100, 66, 0.1);
  color: #0f6442;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  transition: all 0.5s ease;
}

/* Ikon akan membesar dan berubah warna jadi hijau solid saat disentuh mouse */
.keunggulan-card:hover .keunggulan-icon {
  background: #0f6442;
  color: #fff;
  transform: scale(1.1) rotateY(360deg);
}

.keunggulan-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 700;
}

.keunggulan-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive Keunggulan */
@media (max-width: 992px) {
  .keunggulan-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .keunggulan-section { padding: 60px 0; }
  .keunggulan-grid {
    grid-template-columns: 1fr;
  }
} 

/* ======================================================== */
/* ======== SOCIAL PROOF (ANGKA KEPERCAYAAN) ============== */
/* ======================================================== */
.social-proof {
  background: linear-gradient(135deg, #0f6442 0%, #0a4a30 100%);
  padding: 40px 0;
  color: white;
  text-align: center;
  position: relative;
  z-index: 5; /* DITURUNKAN: Biar posisinya ada di belakang form konsultasi */
  margin-top: 130px; /* DITAMBAH: Didorong ke bawah agar form punya ruang napas */
}

.proof-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
}

.proof-item h2 {
  font-size: 46px;
  color: #d4af37; /* Emas Premium */
  margin-bottom: 5px;
  font-weight: 800;
  text-shadow: 2px 4px 10px rgba(0,0,0,0.3);
}

.proof-item p {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .social-proof { margin-top: 100px; } 
  .proof-grid { flex-direction: column; gap: 30px; }
  .proof-item h2 { font-size: 38px; }
}


/* ======================================================== */
/* ======== LAYANAN / PRODUK (DESAIN GREGET DENGAN GAMBAR) ======== */
/* ======================================================== */
.layanan-greget {
  padding: 100px 0;
  background-color: #ffffff;
}
.layanan-grid-greget {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.layanan-card-greget {
  position: relative;
  min-height: 420px; 
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 25px;
  color: white;
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.layanan-card-greget::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
  transition: opacity 0.4s ease;
}

.layanan-card-greget:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(15, 100, 66, 0.3);
}

.layanan-card-greget > * {
  position: relative;
  z-index: 2;
}

.icon-layanan-lingkar {
  width: 70px;
  height: 70px;
  background: rgba(255,255,255,0.1); 
  border: 2px solid transparent; 
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  color: #fff;
  transition: all 0.5s ease;
  margin-bottom: auto; 
}

/* Efek bingkai emas pas hover */
.layanan-card-greget:hover .icon-layanan-lingkar {
  background: #0f6442; 
  border-color: #d4af37; 
  transform: scale(1.1) rotate(5deg);
}

.layanan-card-greget h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.layanan-card-greget p {
  font-size: 14px;
  color: rgba(255,255,255,0.9); 
  line-height: 1.6;
}

/* ======================================================== */
/* ======== TENTANG KAMI (DESAIN BARU RAPI) =============== */
/* ======================================================== */
.tentang-baru {
  padding: 100px 0;
  background-color: #f4f7f6;
}
.tentang-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.tentang-gambar {
  flex: 1;
  position: relative;
}
.tentang-gambar img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  display: block;
}
.badge-pengalaman {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: linear-gradient(135deg, #d4af37 0%, #b8962c 100%);
  color: white;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3);
  border: 5px solid #f4f7f6;
}
.badge-pengalaman h3 { font-size: 36px; font-weight: 800; margin-bottom: 5px; line-height: 1;}
.badge-pengalaman p { font-size: 14px; font-weight: 600; text-transform: uppercase; margin: 0; line-height: 1.2;}
.tentang-teks {
  flex: 1;
}
.tentang-teks h2 {
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin-bottom: 25px;
  line-height: 1.3;
}
.tentang-teks p {
  font-size: 16px;
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}
/* ======================================================== */
/* JURUS PAMUNGKAS: FIX FORM KONSULTASI BENGKOK DI HP       */
/* ======================================================== */
@media (max-width: 768px) {
  .hero-section .input-with-icon {
    display: flex !important;
    align-items: center !important;
    background-color: #f8f9fa !important;
    border: 1px solid #ccc !important;
    border-radius: 10px !important;
    padding: 0 15px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  
  .hero-section .input-with-icon:focus-within {
    border-color: #d4af37 !important;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2) !important;
  }

  .hero-section .input-with-icon i {
    color: #0f6442 !important;
    font-size: 16px !important;
    margin-right: 12px !important;
    display: inline-block !important;
  }

  .hero-section .input-with-icon input,
  .hero-section .input-with-icon select {
    flex: 1 !important;
    width: 100% !important;
    border: none !important;
    background: transparent !important;
    padding: 15px 0 !important;
    box-shadow: none !important;
    outline: none !important;
    font-size: 14px !important;
    border-radius: 0 !important;
  }
}

/* ======================================================== */
/* JURUS PAMUNGKAS 2: FIX LAYANAN GEPENG & TENTANG KECIL    */
/* ======================================================== */
@media (max-width: 768px) {
  /* 1. LAYANAN: Dipaksa 1 Kolom Berjejer ke Bawah (Biar Gak Gepeng) */
  .layanan-grid-greget {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important; /* Jarak antar gambar diperlebar biar lega */
  }
  
  .layanan-card-greget {
    width: 100% !important;
    min-height: 350px !important; /* Tinggi gambar dilock biar proporsional */
    background-size: cover !important;
    background-position: center !important;
    margin-bottom: 0 !important;
  }

  /* 2. TENTANG KAMI: Gambar Dibikin Gede & Gagah */
  .tentang-gambar {
    width: 100% !important;
  }

  .tentang-gambar img {
    width: 100% !important;
    height: 380px !important; /* Tingginya dipaksa naik biar gak sekecil prangko */
    max-height: none !important; /* Hapus limitasi tinggi yang lama */
    object-fit: cover !important;
    border-radius: 15px !important;
  }
  
  /* Sesuaikan posisi kotak emas (Badge) biar gak terlalu nutupin gambar yang udah digedein */
  .badge-pengalaman {
    bottom: -25px !important;
    right: 15px !important;
    transform: scale(0.9) !important;
  }
}

/* ======================================================== */
/* JURUS PAMUNGKAS 3: FIX GAMBAR TENTANG KAMI KEJEPIT       */
/* ======================================================== */
@media (max-width: 768px) {
  /* 1. Paksa kontainer numpuk atas-bawah, JANGAN kiri-kanan */
  .GambarContent, .tentang-container {
    display: flex !important;
    flex-direction: column !important; 
    width: 100% !important;
    padding: 20px 15px !important;
    box-sizing: border-box !important;
    align-items: center !important;
  }
  
  /* 2. Bungkus gambar dipaksa ngambil full lebar layar HP */
  .floating-image, .tentang-gambar {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 30px auto !important;
    display: block !important;
  }

  /* 3. KUNCI ANTI GEPENG: Tinggi diset 'auto' biar proporsional */
  .floating-image img, .tentang-gambar img {
    width: 100% !important;
    height: auto !important; 
    max-height: 350px !important; 
    object-fit: cover !important;
    border-radius: 15px !important;
  }
  
  /* 4. Teksnya ditaruh di bawah gambar dengan rapi */
  .content, .tentang-teks {
    width: 100% !important;
    padding: 0 !important;
    text-align: center !important;
  }
}


/* ======================================================== */
/* STYLE LOGO BARU MINAKUBAHARSITEK                         */
/* ======================================================== */
.navbar .logo {
  display: flex !important;
  flex-direction: row !important; 
  align-items: center !important;
  gap: 12px !important;
}

.logo-img {
  height: 50px !important;
  width: auto !important;
  object-fit: contain !important;
  border-radius: 8px; 
}

.logo-teks-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .navbar .logo {
    justify-content: center !important;
  }
  .logo-img {
    height: 40px !important; 
  }
}

/* ======================================================== */
/* JURUS PERBESAR TEKS "TENTANG KAMI" & "SPESIALIS KAMI"    */
/* ======================================================== */

.Deskripsi-Kanan-judul, .small-title {
  font-family: "Great Vibes", cursive !important;
  font-size: 48px !important; 
  color: #d4af37 !important;
  margin-bottom: 15px !important;
  display: block !important;
}

/* Ukuran di HP (biar nggak kegedean dan nabrak) */
@media (max-width: 768px) {
  .Deskripsi-Kanan-judul, .small-title {
    font-size: 38px !important;
    margin-bottom: 10px !important;
  }
}