/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0b0b0b;
  color: #fff;
}

/* =========================
   NAVBAR
========================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 999;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.hero {
  margin-top: 80px;
}

.navbar.scrolled {
  background: linear-gradient(90deg, #d89c0d, #b9770e);
  padding: 14px 60px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

/* =========================
   LOGO
========================= */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 42px;
}

.logo-text span {
  font-size: 12px;
  color: #bbb;
}

.navbar.scrolled .logo-text strong {
  color: #000;
}

.navbar.scrolled .logo-text span {
  color: #333;
}

/* =========================
   MENU
========================= */
.menu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.menu a:hover {
  color: #F2B705;
}

/* SCROLL MENU */
.navbar.scrolled .menu > a {
  color: #fff;
}

/* =========================
   NAV RIGHT
========================= */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* =========================
   BUTTON LOGIN
========================= */
.btn-login {
  padding: 8px 16px;
  border: 1px solid #d4af37;
  border-radius: 20px;
  color: #d4af37;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.btn-login:hover {
  background: #d4af37;
  color: #000;
}

.navbar.scrolled .btn-login {
  border: 1px solid #000;
  color: #000;
  background: rgba(255,255,255,0.2);
}

.navbar.scrolled .btn-login:hover {
  background: #000;
  color: #f2a900;
}

/* =========================
   CTA WA
========================= */
.cta-top {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1EBE5D, #128C7E);
  padding: 8px 16px;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
}

.cta-top img {
  width: 18px;
}

.cta-top:hover {
  transform: translateY(-2px);
}

/* =========================
   DROPDOWN DESKTOP
========================= */
.dropdown {
  position: relative;
}

.dropbtn {
  cursor: pointer;
}

.dropdown-content {
  position: absolute;
  top: 120%;
  left: 0;
  background: #111;
  min-width: 200px;
  border-radius: 12px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #fff;
}

.dropdown-content a:hover {
  background: rgba(212,175,55,0.1);
  color: #d4af37;
}

/* show desktop */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* =========================
   MOBILE
========================= */

/* hide desktop */
.mobile-only {
  display: none;
}

@media(max-width:768px){

  .nav-right {
    display: none;
  }

  /* MENU MOBILE */
  .menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000;

    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    gap: 20px;

    transform: translateX(100%);
    transition: 0.3s;
  }

  .menu.active {
    transform: translateX(0);
  }

  .menu a {
    font-size: 18px;
    color: #fff;
  }

  /* DROPDOWN MOBILE FIX */
  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background: none;
  }

  .dropdown.active .dropdown-content {
    display: flex;
    flex-direction: column;
  }

  .dropdown-content a {
    color: #ccc;
    font-size: 16px;
    padding-left: 20px;
  }

  /* MOBILE BUTTON */
  .mobile-only {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .mobile-only a {
    width: 80%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
  }

  .mobile-only a:first-child {
    border: 1px solid #fff;
  }

  .mobile-only a:last-child {
    background: #25D366;
  }
}

/* HERO */
.hero {
  height: 100vh;
  background: url('/assets/images/mekkah.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-left: 70px;
  max-width: 600px;
}

.hero h1 {
  font-size: 72px;
  font-weight: 800;
}

.gold-text {
  color: #d4af37;
  text-shadow: 0 0 20px rgba(212,175,55,0.4);
}

.gold {
  color: #F2B705;
}

.hero p {
  margin-top: 20px;
  color: #ccc;
}

.buttons {
  margin-top: 30px;
}

.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  background: linear-gradient(135deg, #1EBE5D, #128C7E);
  padding: 14px 28px;
  border-radius: 999px;

  color: #fff;
  text-decoration: none;
  margin-right: 10px;
  font-weight: 600;

  transition: 0.3s;
}

/* ICON */
.btn-red img {
  width: 18px;
  height: 18px;
}

/* HOVER */
.btn-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(18, 140, 126, 0.3);
  background: linear-gradient(135deg, #17a851, #0f7a6c);
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 14px 28px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.btn-outline:hover {
  border-color: #E49B0F;
  color: #E49B0F;
}

/* ABOUT (INI YANG TADI ERROR SEKARANG FIX) */
.about {
  background: linear-gradient(to bottom, #ffffff, #f4f4f4);
  padding: 100px 20px;
  text-align: center;
  color: #222;
}

.about-container {
  max-width: 900px;
  margin: auto;
}

.about-logo {
  width: 200px;
  margin-bottom: 50px;
}

.about h2 {
  font-size: 40px;
  color: #E49B0F;
}

.about h3 {
  font-size: 26px;
  margin-top: 10px;
}

.about p {
  margin-top: 20px;
  color: #555;
  line-height: 1.7;
}

.btn-about {
  margin-top: 30px;
  display: inline-block;
  background: linear-gradient(135deg, #E49B0F, #B9770E);
  padding: 14px 30px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
}

/* RESPONSIVE */
@media(max-width:768px){
  .hero h1 {
    font-size: 40px;
  }

  .menu {
    display: none;
  }

  .hero-content {
    padding: 20px;
  }
}

/* DEFAULT */
.logo img {
  transition: 0.3s;
}

/* SAAT SCROLL → JADI HITAM */
.navbar.scrolled .logo img {
  filter: brightness(0);
}

/* TRUST SECTION */
.trust {
  padding: 40px 0;
  background: linear-gradient(to right, #f5f5f5, #eaeaea);
  overflow: hidden;
}

/* SLIDER */
.trust-slider {
  width: 100%;
  overflow: hidden;
}

.slide-track {
  display: flex;
  gap: 25px;
  width: calc(300px * 8);
  animation: scroll 25s linear infinite;
}

/* CARD */
.card {
  min-width: 280px;
  height: 140px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;

  padding: 20px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

/* IMAGE */
.card img {
  max-width: 180px;
  max-height: 120px;
  object-fit: contain;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* ANIMATION */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.slide-track:hover {
  animation-play-state: paused;
}

/* TESTIMONI */
.testimoni {
  padding: 100px 60px;
  background: linear-gradient(to bottom, #f8f8f8, #eeeeee);
  color: #222; /* FIX: biar tidak ikut putih dari body */
}

/* HEADER */
.testimoni-header {
  text-align: center;
  margin-bottom: 50px;
}

/* BADGE */
.badge {
  background: rgba(228, 155, 15, 0.15);
  color: #b9770e;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

/* TITLE */
.testimoni h2 {
  margin-top: 15px;
  font-size: 36px;
  color: #111;
}

/* WRAPPER */
.testimoni-wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

/* VIDEO */
.testimoni-video video {
  width: 300px;
  height: 500px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* CONTENT */
.testimoni-content {
  max-width: 500px;
}

.testimoni-content h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #111;
}

/* DESKRIPSI */
.desc {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.nav button {
  border: none;
  background: #e0e0e0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.nav button:hover {
  background: #E49B0F;
  color: #fff;
}

/* COUNTER */
#counter {
  font-weight: 600;
  color: #777;
}

/* TESTI BOX */
.testi-box {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* NAMA */
.testi-box h4 {
  margin-bottom: 10px;
  color: #111;
}

/* TEXT */
.testi-box p {
  color: #333;
  line-height: 1.7;
}

/* RESPONSIVE */
@media(max-width:768px){
  .testimoni-wrapper {
    flex-direction: column;
  }

  .testimoni-video video {
    width: 100%;
    height: auto;
  }
}

/* GALERI */
.galeri {
  padding: 100px 60px;
  background: #f8f8f8;
  text-align: center;
}

/* HEADER */
.galeri-header h2 {
  font-size: 32px;
  color: #111;
}

.galeri-header p {
  color: #666;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* GRID */
.galeri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ITEM */
.item {
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

/* IMAGE */
.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* TINGGI VARIASI */
.item.tall {
  grid-row: span 2;
}

/* HOVER */
.item:hover img {
  transform: scale(1.08);
}

/* RESPONSIVE */
@media(max-width:768px){
  .galeri-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .item.tall {
    grid-row: span 1;
  }
}

/* WHY SECTION */
.why {
  padding: 80px 60px;
  background: linear-gradient(to bottom, #f8f8f8, #eeeeee);
  text-align: center;
}

/* TITLE */
.why-header h2 {
  font-size: 30px;
  color: #111;
}

.why-header span {
  color: #E49B0F;
}

/* GRID */
.why-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* DESKTOP */
  gap: 20px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* TABLET */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.why-card {
  background: #fff;
  padding: 16px 14px;
  border-radius: 16px;

  max-width: 320px; /* FIX: batasi ukuran */
  min-height: 180px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* ICON */
.why-card .icon {
  font-size: 22px;
  margin-bottom: 8px;
}

/* TITLE */
.why-card h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #111;
}

/* TEXT */
.why-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto;
}

/* HOVER */
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.08);
}

/* RESPONSIVE */
@media(max-width:768px){
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    max-width: 100%;
  }
}

.icon-svg {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

/* GOLD GRADIENT */
.icon-svg path {
  fill: url(#goldGradient);
}

.legalitas {
  background: #f3efe7;
  text-align: center;
  overflow: hidden;
}

.legalitas-header .label {
  color: #000;
}

.legalitas-header h2 {
  color: #000;
}

/* HEADER GOLD */
.legalitas-header {
  background: linear-gradient(135deg, #f5b21a, #d89c0d);
  padding: 80px 20px 120px;
  position: relative;
  color: #fff;
}

/* WAVE BAWAH */
.legalitas-header::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #f3efe7;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
}

/* LABEL */
.legalitas-header .label {
  font-size: 18px;       
  font-weight: 700;     
  letter-spacing: 3px; 
  margin-bottom: 15px;
}

/* TITLE */
.legalitas h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0;
}

/* CONTENT */
.legalitas-content {
  max-width: 900px;
  margin: -30px auto 60px; /* dari -60 → -30 */
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.legalitas-content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #555;
}

.legalitas-content strong {
  color: #1a1a1a;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .legalitas h2 {
    font-size: 28px;
  }

  .legalitas-content {
    margin-top: -40px;
  }
}

/* SECTION */
.slider {
  padding: 60px 20px;
  background: #ffffff;
}

/* CONTAINER CARD */
.slider-container {
  position: relative;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
  border-radius: 15px;

  border: 1px solid rgba(212, 175, 55, 0.15);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  background: #000;
}

/* WRAPPER */
.slides {
  position: relative;
  height: 350px;
}

/* IMAGE */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: none; /* WAJIB */
}

/* ACTIVE */
.slide.active {
  display: block;
}

/* BUTTON */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.6);
  color: #d4af37;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  transition: 0.3s;
  z-index: 2;
}

.prev:hover, .next:hover {
  background: #d4af37;
  color: #000;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

/* SECTION */
.partner {
  background: #f3efe7;
  padding: 70px 20px;
}

/* TITLE */
.partner .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.partner .section-title p {
  color: #555;
  font-size: 14px;
}

.partner .section-title h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
}

/* WRAPPER */
.partner-wrapper {
  overflow-x: auto;
}

/* TRACK */
.partner-track {
  display: flex;
  gap: 20px;
  padding-bottom: 10px;
}

/* CARD */
.partner-card {
  min-width: 180px;
  height: 100px;
  background: #fff;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* EFFECT */
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: 0.3s;
}

/* IMAGE */
.partner-card img {
  max-width: 150px;
  max-height: 100px;
  object-fit: contain;
}

/* HOVER */
.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.partner-track {
  animation: scrollX 20s linear infinite;
}

@keyframes scrollX {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.partner-card:hover {
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 10px 25px rgba(212,175,55,0.15);
}

.partner-wrapper {
  overflow: hidden;
}

.partner-track {
  display: flex;
  gap: 20px;
  width: max-content;

  animation: scrollLoop 50s linear infinite;
}

/* ANIMATION */
@keyframes scrollLoop {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* SECTION */
.artikel {
  padding: 80px 20px;
  background: #f3efe7;
}

/* TITLE */
.artikel .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.artikel .section-title p {
  color: #666;
  font-size: 14px;
}

.artikel .section-title h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
}

/* GRID */
.artikel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 992px) {
  .artikel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .artikel-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.artikel-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid rgba(0,0,0,0.05);

  display: flex;
  flex-direction: column;
}

/* IMAGE */
.artikel-img {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.artikel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

/* BADGE */
.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #8b6b2e;
  color: #fff;
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 20px;
  font-weight: 600;
}

.badge.gold {
  background: #d4af37;
  color: #000;
}

/* CONTENT */
.artikel-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
}

/* TITLE (BIAR RAPI & SAMA TINGGI) */
.artikel-content h3 {
  font-size: 17px;
  margin-bottom: 10px;
  color: #d48f00; /* gold text seperti design kamu */
  line-height: 1.4;

  display: -webkit-box;
  -webkit-line-clamp: 2; /* max 2 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* DATE */
.artikel-content .date {
  font-size: 13px;
  color: #222;
  font-weight: 600;
  margin-bottom: 10px;
}

/* DESC */
.artikel-content p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;

  display: -webkit-box;
  -webkit-line-clamp: 6; /* max 3 baris */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* HOVER */
.artikel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.artikel-card:hover img {
  transform: scale(1.05);
}

/* BUTTON */
.artikel-btn {
  text-align: center;
  margin-top: 40px;
}

.btn-artikel {
  display: inline-block;
  background: #c98b00;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-artikel:hover {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .artikel-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .artikel-grid {
    grid-template-columns: 1fr;
  }
}

/* SECTION */
.cta-premium {
  background: #f5f2eb; /* warna terang premium */
  padding: 100px 20px 60px;
  margin-bottom: 0;
}

/* WRAP */
.cta-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  margin: auto;
}

/* TEXT */
.cta-text {
  flex: 1;
}

.cta-text h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 30px;
}

/* BUTTON */
.cta-btn {
  display: flex;
  gap: 15px;
}

/* PRIMARY */
.btn-primary {
  background: #02A800;
  color: #fff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #000;
}

/* SECONDARY */
.btn-secondary {
  border: 1px solid #d4af37;
  color: #b88a00;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #d4af37;
  color: #000;
}

/* IMAGE */
.cta-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cta-image img {
  width: 100%;
  max-width: 350px;
  border-radius: 25px;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-wrap {
    flex-direction: column;
    text-align: center;
  }

  .cta-btn {
    justify-content: center;
  }

  .cta-text h2 {
    font-size: 30px;
  }
}

.cta-image img {
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* =========================
   FOOTER FINAL CLEAN
========================= */

.footer {
  background: linear-gradient(135deg, #0a0a0a, #1a1205);
  color: #ccc;
  padding: 80px 0 30px;
  margin: 0;
  width: 100%;
}

/* WRAP (INNER CONTAINER) */
.footer-wrap {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  align-items: start;
}

/* COLUMN */
.footer-col {
  display: flex;
  flex-direction: column;
}

/* LOGO */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 40px;
}

.footer-logo h3 {
  color: #fff;
  margin: 0;
}

.footer-logo span {
  font-size: 12px;
  color: #aaa;
}

/* TEXT */
.footer p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* TITLE */
.footer h4 {
  color: #d4af37;
  margin-bottom: 15px;
}

/* =========================
   SOCIAL
========================= */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.3);
  transition: 0.3s;
}

.footer-social .icon {
  width: 18px;
  height: 18px;
  fill: #d4af37;
}

.footer-social a:hover {
  background: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.6);
}

.footer-social a:hover .icon {
  fill: #000;
}

/* MAP */
.map iframe {
  width: 100%;
  height: 120px;
  border-radius: 10px;
  border: none;
  margin-bottom: 15px;
}

/* MENU */
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-menu a {
  padding: 8px 15px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-menu a:hover {
  background: #d4af37;
  color: #000;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #888;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .footer-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-wrap {
    grid-template-columns: 1fr;
  }
}

/* GLOBAL FIX */
body {
  margin: 0;
}

.footer::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, transparent, #d4af37, transparent);
  margin-bottom: 30px;
}

.footer-col {
  transition: 0.3s;
}

.footer-col:hover {
  transform: translateY(-5px);
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #fff; /* penting biar kelihatan */
  z-index: 1001;
}

@media(max-width:768px){

  .hamburger {
    display: block;
  }

  .menu {
    display: none; /* sembunyikan menu awal */
  }

  .menu.active {
    display: flex;
  }

}

@media(max-width:768px){

  .mobile-only {
    display: flex;
    flex-direction: column;
    align-items: center; /* 🔥 INI YANG BIKIN CENTER */
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    width: 100%;
  }

  .mobile-only a {
    width: 80%;
    text-align: center;
    padding: 12px;
    border-radius: 8px;
  }

}
.mobile-only a:first-child {
  border: 1px solid #fff;
  color: #fff;
}

.mobile-only a:last-child {
  background: #25D366;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px){
  .hero {
    height: auto;
    padding: 100px 20px 60px;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-content {
    padding: 20px;
    text-align: center;
  }
@media(max-width:768px){

  .menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: #000;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding-top: 40px;
    gap: 20px;

    transform: translateX(100%);
    transition: 0.3s;
  }

  .menu.active {
    transform: translateX(0);
  }

  .menu a {
    color: #fff;
    font-size: 18px;
  }
  
  @media(max-width:768px){

  .dropdown {
    position: static;
    background: none;
    box-shadow: none;
    display: none;
  }

  .has-dropdown.active .dropdown {
    display: flex;
    flex-direction: column;
  }

  .dropdown a {
    font-size: 16px;
    color: #ccc;
  }
}

  .buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}

@media(max-width:768px){
  .btn-red,
  .btn-outline,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

img, video {
  max-width: 100%;
  height: auto;
}

section {
  padding-left: 20px;
  padding-right: 20px;
}

@media(max-width:768px){
  .testimoni {
    padding: 60px 20px;
  }

  .testimoni-content {
    text-align: center;
  }
}