/* =====================
   GLOBAL
===================== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif; /* Opsional, agar lebih modern */
background-color: #FFF035;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100%25' height='100%25' viewBox='0 0 1600 800'%3E%3Cg %3E%3Cpath fill='%23fff448' d='M486 705.8c-109.3-21.8-223.4-32.2-335.3-19.4C99.5 692.1 49 703 0 719.8V800h843.8c-115.9-33.2-230.8-68.1-347.6-92.2C492.8 707.1 489.4 706.5 486 705.8z'/%3E%3Cpath fill='%23fff85b' d='M1600 0H0v719.8c49-16.8 99.5-27.8 150.7-33.5c111.9-12.7 226-2.4 335.3 19.4c3.4 0.7 6.8 1.4 10.2 2c116.8 24 231.7 59 347.6 92.2H1600V0z'/%3E%3Cpath fill='%23fffc6e' d='M478.4 581c3.2 0.8 6.4 1.7 9.5 2.5c196.2 52.5 388.7 133.5 593.5 176.6c174.2 36.6 349.5 29.2 518.6-10.2V0H0v574.9c52.3-17.6 106.5-27.7 161.1-30.9C268.4 537.4 375.7 554.2 478.4 581z'/%3E%3Cpath fill='%23fffe81' d='M0 0v429.4c55.6-18.4 113.5-27.3 171.4-27.7c102.8-0.8 203.2 22.7 299.3 54.5c3 1 5.9 2 8.9 3c183.6 62 365.7 146.1 562.4 192.1c186.7 43.7 376.3 34.4 557.9-12.6V0H0z'/%3E%3Cpath fill='%23FEFF94' d='M181.8 259.4c98.2 6 191.9 35.2 281.3 72.1c2.8 1.1 5.5 2.3 8.3 3.4c171 71.6 342.7 158.5 531.3 207.7c198.8 51.8 403.4 40.8 597.3-14.8V0H0v283.2C59 263.6 120.6 255.7 181.8 259.4z'/%3E%3Cpath fill='%23fff685' d='M1600 0H0v136.3c62.3-20.9 127.7-27.5 192.2-19.2c93.6 12.1 180.5 47.7 263.3 89.6c2.6 1.3 5.1 2.6 7.7 3.9c158.4 81.1 319.7 170.9 500.3 223.2c210.5 61 430.8 49 636.6-16.6V0z'/%3E%3Cpath fill='%23ffe975' d='M454.9 86.3C600.7 177 751.6 269.3 924.1 325c208.6 67.4 431.3 60.8 637.9-5.3c12.8-4.1 25.4-8.4 38.1-12.9V0H288.1c56 21.3 108.7 50.6 159.7 82C450.2 83.4 452.5 84.9 454.9 86.3z'/%3E%3Cpath fill='%23ffd966' d='M1600 0H498c118.1 85.8 243.5 164.5 386.8 216.2c191.8 69.2 400 74.7 595 21.1c40.8-11.2 81.1-25.2 120.3-41.7V0z'/%3E%3Cpath fill='%23ffc756' d='M1397.5 154.8c47.2-10.6 93.6-25.3 138.6-43.8c21.7-8.9 43-18.8 63.9-29.5V0H643.4c62.9 41.7 129.7 78.2 202.1 107.4C1020.4 178.1 1214.2 196.1 1397.5 154.8z'/%3E%3Cpath fill='%23FFB247' d='M1315.3 72.4c75.3-12.6 148.9-37.1 216.8-72.4h-723C966.8 71 1144.7 101 1315.3 72.4z'/%3E%3C/g%3E%3C/svg%3E");
background-attachment: fixed;
background-size: cover;
}


/* =====================
   NAVBAR
===================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.nav-container {
  max-width: 1100px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

 .logo {
  font-size: 22px;
  font-weight: 800;
  color: #facc15;
  width: 200px;

} 
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #111827;
  font-weight: 500;
  position: relative;
}

/* underline hover */
.nav-links li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #facc15;
  transition: width 0.3s ease;
}

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

/* hamburger */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}


/* --- CSS DROPDOWN MENU --- */

/* 1. Container menu Bantuan */
.dropdown {
  position: relative;
  display: inline-block;
}

/* 2. Kotak Putih Dropdown (Sembunyi dulu) */
.dropdown-content {
  display: none; /* Default ngumpet */
  position: absolute;
  top: 100%; /* Muncul persis di bawah menu */
  left: 0;
  background-color: #ffffff; /* Background Putih */
  min-width: 220px; /* Lebar kotak */
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1); /* Bayangan halus */
  z-index: 999;
  /* border-top: 4px solid #0e0d0d;  GARIS BIRU DI ATAS (Sesuai gambar) */
  border-radius: 0 0 5px 5px;
  padding: 10px 0;
  list-style: none; /* Hilangkan titik bullet */
}

/* 3. Link di dalam Dropdown */
.dropdown-content li a {
  color: #333 !important; /* Teks jadi hitam biar kebaca */
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  text-align: left; /* Teks rata kiri */
}

/* 4. Efek Hover Link Dropdown (Pas mouse lewat) */
.dropdown-content li a:hover {
  background-color: #f1f1f1; /* Warna abu muda pas di-hover */
  color: #141414 !important; /* Teks jadi biru */
}

/* 5. Logic: Munculkan menu saat Bantuan di-hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* --- FIX UNTUK MOBILE (Biar rapi di HP) --- */
@media (max-width: 768px) {
  .dropdown-content {
    position: static; /* Gak melayang, tapi numpuk ke bawah */
    box-shadow: none; /* Hapus bayangan */
    border-top: none; /* Hapus garis biru */
    border-left: 3px solid #facc15; /* Ganti penanda garis kuning di samping */
    background-color: rgba(255,255,255,0.05); /* Sedikit transparan */
    width: 100%;
    padding-left: 20px;
  }
  
  .dropdown-content li a {
    color: #fff !important; /* Balikin jadi putih kalau di HP */
  }
}
/* Tambahkan ini di style.css agar lebih halus */




/* =====================
   HEADER
===================== */
header {
  background: #facc15;
  color: #111;
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  margin-bottom: 10px;
}

/* =====================
   SECTION
===================== */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  margin-bottom: 20px;
}
/* SECTION TITLE PACKAGE */
.section-title {
  text-align: center;
  font-size: 60px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.section-subtitle {
  text-align: center;
  font-size: 15.2px;
  color: #6b7280;
  max-width: 520px;
  margin: 0 auto 40px;
}


/* =====================
   CARD / GRID
===================== */
.services,
.packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* hover lift */
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.1);
}

/* =====================
   CTA
===================== */
.cta {
  background: #facc15;
  text-align: center;
  padding: 60px 20px;
}

.cta a {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #111827;
  color: #facc15;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta a:hover {
  transform: scale(1.05);
  background: #000000;
}


.hidden {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.show {
  opacity: 1;
  transform: translateY(0);
}


/* hero section */
.hero-points {
  display: flex;
  justify-content: center;
  gap: 300px;
  list-style: none;
  margin-bottom: 1px;
  padding: 0;
}

.hero-points li {
  background: rgba(112, 107, 107, 0.85);
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 15 px;
  font-weight: 600;
  color: #faf8f8;
  white-space: nowrap;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);

  display: flex;
  align-items: center;
  gap: 8px;
}



@media (max-width: 768px) {
  .hero-points {
    flex-wrap: wrap;
  }

  .hero-title {
    top: 14%;
  }
}
.hero-points {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-points li {
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 20px;
  border-radius: 50px;
}


/* =====================
   WHY SECTION
===================== */
.why {
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-box {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.why-box img {
  width: 64px;
  margin-bottom: 12px;
}


/* penting */
 .stats-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stats-content h1 {
  font-size: 56px;
  color: #facc15;
} 

/* =====================
   STATS COUNTER
===================== */


.stats {
  height: 60vh;
  background: url("https://images.unsplash.com/photo-1581090700227-1e37b190418e");
  background-size: cover;
  background-position: center;
  position: relative;
}

.stats-overlay {
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.6);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.stats-content {
  color: #fff;
  max-width: 700px;
}

.stats-content h2 {
  font-weight: 400;
}

.stats-content h1 {
  font-size: 60px;
  color: #facc15;
}

.stats-content p {
  font-size: 18px;
}

/* mobile */
@media (max-width:768px) {
  .stats-content h1 {
    font-size: 42px;
  }
}

/* /* =====================
   TESTIMONI
===================== */
.testimoni {
  text-align: center;
}

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

.testi-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.testi-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
}

.testi-card h4 {
  margin: 8px 0 4px;
}

.testi-card span {
  font-size: 14px;
  color: #6b7280;
}

.testi-card p {
  margin-top: 12px;
  font-style: italic;
} */


/* =====================
   COVERAGE MAP
===================== */
/* .coverage {
  text-align: center;
} */
.coverage {
  text-align: center;
}
.allow {
  text-align: center;
}

.coverage-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.coverage-list {
  text-align: left;
  background: rgba(245, 243, 243, 0.7);
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

.coverage-list h3 {
  margin-bottom: 12px;
  color: #facc15;
}

.coverage-list ul {
  padding-left: 20px;
}

.coverage-list li {
  margin-bottom: 8px;
}

.coverage-list .note {
  margin-top: 12px;
  font-size: 14px;
  color: #6b7280;
}

.coverage-map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.1);
}

/* MOBILE */
@media (max-width: 768px) {
  .coverage-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================
   TESTIMONI SLIDER
===================== */
.slider {
  position: relative;
  max-width: 600px;
  margin: 40px auto 20px;
}

.slide {
  display: none;
  text-align: center;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.slide.active {
  display: block;
}

.slide img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin-bottom: 12px;
}

.dots {
  text-align: center;
}

.dot {
  height: 10px;
  width: 10px;
  background: #d1d5db;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
  cursor: pointer;
}

.dot.active {
  background: #facc15;
}



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


/* =====================
   FOOTER (FINAL)
===================== */







/* Container untuk menaruh kartu di tengah halaman */
.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  background-color: #f9f9f9; /* Warna latar belakang lembut agar beda dengan section lain */
}



.card-register h3 {
  margin-bottom: 10px;
  color: #333;
}

.card-register p {
  margin-bottom: 20px;
  color: #666;
}

/* Styling Tombol Kuning Besar */
.btn-main-register {
  display: inline-block;
  background-color: #facc15; /* Kuning Yellow Net */
  color: #000;
  padding: 15px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s, background 0.3s;
  box-shadow: 0 4px 10px rgba(250, 204, 21, 0.3);
}

.btn-main-register:hover {
  background-color: #eab308;
  transform: translateY(-3px); /* Efek mengangkat saat di-hover */
}

/* =====================
   PACKAGE SECTION (ISOLATED)
===================== */

.package-section {
  background: transparent; /* Tambahkan ini */
  padding: 80px 20px;
}

.package-section .container {
  max-width: 1100px;
  margin: auto;
}

.package-section .packages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

/* CARD KHUSUS PAKET */
.package-section .package-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  text-align: center;
  position: relative;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.package-section .package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}


.package-section .p-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #facc15, #fde047);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 16px;
}


.package-section .p-speed {
  font-size: 46px;
  font-weight: 800;
  color: #111827;
  margin: 12px 0;
}

.package-section .p-speed span {
  font-size: 16px;
  font-weight: 600;
  color: #6b7280;
}


.package-section .p-features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.package-section .p-features li {
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
  font-weight: 500;
}

.package-section .p-features li:last-child {
  border-bottom: none;
}


.package-section .p-price {
  font-size: 22px;
  font-weight: 800;
  color: #facc15;
  margin: 20px 0;
}

.package-section .p-price span {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.package-section .p-btn {
  display: inline-block;
  padding: 14px 32px;
  background: #111827;
  color: #facc15;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: all .25s ease;
}

.package-section .p-btn:hover {
  background: #000;
  transform: scale(1.05);
}

.package-section .package-card.popular {
  border: 3px solid #facc15;
  transform: scale(1.05);
  
  /* border: 3px solid #facc15;
  transform: scale(1.02); lebih kalem */


}


.box {
  width: 100%;
}

@media (min-width: 1024px) {
  .box {
    width: 1000px;
  }
}


.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #facc15;
  color: #111827;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 12px 50px rgba(0,0,0,.30);
  z-index: 9999;
  transition: transform .25s ease;
}

.wa-float:hover {
  transform: scale(1.05);
}

.wa-text {
  font-size: 14px;
  white-space: nowrap;
  font-family: 'Poppins', sans-serif;
}





/* === 1. NAVBAR MENYATU (TRANSPARAN) === */
.navbar {
  position: fixed; /* Kunci: Fixed biar nempel di layar */
  top: 0;
  left: 0;
  width: 100%;
  background: transparent; /* Kunci: Transparan */
  border-bottom: none;
  transition: all 0.4s ease;
  padding: 20px 0;
}

/* Warna text menu jadi PUTIH biar kelihatan di video */
.nav-links li a {
  color: #ffffff; 
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.nav-links li a::after {
  background: #facc15; /* Garis bawah kuning */
}

/* Class tambahan saat discroll (nanti dipakai JS) */
.navbar.scrolled {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.navbar.scrolled .nav-links li a {
  color: #111827; /* Balik jadi hitam kalau background putih */
  text-shadow: none;
}

/* === 2. HERO SECTION FULL SCREEN VIDEO === */
.hero {
  position: relative;
  width: 100%;
  height: 100vh; /* Full layar penuh */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000; /* Warna cadangan kalau video gagal */
  padding: 0;
}

/* Mengatur Video di Belakang */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Video tidak gepeng */
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradasi gelap dari bawah ke atas mirip referensi */
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  z-index: 1;
}

/* === 3. KONTEN TENGAH === */
.hero-content {
  position: relative;
  z-index: 2; /* Di atas video */
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 0 20px;
  /* Reset posisi absolute lama kamu */
  bottom: auto; 
  left: auto;
  transform: none;
}

.hero-title {
  position: relative; /* Reset posisi absolute lama */
  top: auto;
  left: auto;
  transform: none;
  
  font-size: clamp(40px, 8vw, 80px);
  margin: 0 0 10px 0;
  color: #fff;
}

.hero-subtitle {
  font-size: 24px;
  color: #facc15;
  margin-bottom: 30px;
  font-weight: 400;
  font-style: italic;
}

/* Style Poin-poin baru */
.hero-points {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.hero-points li {
  background: transparent;
  box-shadow: none;
  color: #fff;
  font-size: 18px;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 20px;
  border-radius: 50px;
}

/* === 4. SEARCH BAR ALA BIZNET === */


/* Styling Tombol Download App */
.download-apps {
  display: flex;
  flex-direction: column; /* Tombol tumpuk atas bawah seperti di foto */
  gap: 8px;
  width: 0px; /* Lebar tombol download */
}

.download-apps img {
  width: 100%;
  height: auto;
  filter: none !important; /* Supaya tombol store tetap berwarna asli */
  opacity: 1 !important;
  transition: transform 0.2s;
}

.download-apps img:hover {
  transform: scale(1.05);
}

/* Hapus CSS ikon yang double/error di bawah */
.contact-icons i {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #facc15 !important;
  font-size: 30px;
  margin: 0 12px;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .footer-main-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .address-col, .partner-col { text-align: center; }
  .partner-logos-grid { justify-content: center; }
}



/* Menyeimbangkan posisi kolom kanan */
.partner-col {
  text-align: center; /* Ubah dari right ke center agar teks "Our Partners" di tengah kolom */
}

.partner-container {
  display: flex;
  flex-direction: column;
  align-items: center; /* Bikin semua logo di tengah kolom */
  gap: 20px;
  margin-top: 10px;
}

.partner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.partner-logo {
  height: auto;
  width: 200px; /* Ukuran logo partner */
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.8;
  transition: 0.3s;
}

.partner-logo:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* Styling Tombol Download App */


/* Hapus CSS ikon yang double/error di bawah */
.contact-icons i {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  color: #facc15 !important;
  font-size: 30px;
  margin: 0 12px;
}



footer {
  background: #111827; /* Warna gelap sesuai foto */
  color: #e5e7eb;
  padding: 60px 20px 30px;
  border-top: 4px solid #facc15;
}

.footer-main-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.footer-col { flex: 1; }

/* Styling Judul Kolom */
.footer-col h3 {
  color: #facc15;
  font-size: 16px;
  margin-bottom: 5px; /* Perkecil dari 15px ke 5px */
  text-transform: uppercase;
  font-weight: bold;
}

/* Kolom Kiri */
.address-col p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0;      /* Pastikan tidak ada margin atas di paragraf */
  margin-bottom: 20px; /* Jarak antar blok alamat (misal dari Head ke Branch) */
}

/* Kolom Tengah (Gaya Foto ke-2) */
.info-col {
  text-align: center;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin: 20px 0;
}

.contact-item i {
  font-size: 32px;
  color: #facc15;
  transition: transform 0.3s ease;
}

.contact-item i:hover {
  transform: scale(1.2);
  color: #ffffff;
}

.wa-number {
  color: #facc15;
  font-weight: bold;
  letter-spacing: 1px;
}

/* Kolom Kanan (Partner & Download) */
.partner-col {
  text-align: center;
}

.partner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.partner-logo {
  width: 180px; /* Ukuran lebih proporsional */
  height: auto;
  filter: brightness(0) invert(1); /* Bikin logo jadi putih agar elegan di bg gelap */
  opacity: 0.9;
}

.download-apps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 120px; /* Ukuran tombol download disesuaikan */
  margin-top: 5px;
}

.download-apps img {
  width: 100%;
  height: auto;
}

.copyright {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: #9ca3af;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-main-content {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .address-col { text-align: center; }
}

/* Mengatur Gambar di Dalam Card */
.card img {
  width: 100%;           /* Lebar penuh mengikuti kartu */
  height: 270px;         /* Atur tinggi kotak gambar di sini */
  object-fit: cover;     /* Menjaga proporsi gambar tetap bagus */
  object-position: center; /* Memastikan bagian tengah gambar yang terlihat */
  border-radius: 8px;    /* Agar sudut gambar tumpul sesuai desain kamu */
  margin-bottom: 15px;   /* Jarak antara gambar dan teks judul */
}



@media (max-width: 768px) {
  /* 1. Aktifkan Tombol Hamburger */
  .menu-toggle {
    display: block;
    color: #facc15; /* Warna kuning */
    z-index: 1001;
  }

  /* 2. Ubah Menu Navigasi jadi Dropdown */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%; /* Sembunyi di kanan luar layar */
    width: 70%; /* Lebar menu saat terbuka */
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: 0.4s ease-in-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
  }

  /* 3. Class saat Menu Aktif (dipicu JS) */
  .nav-links.active {
    right: 0; /* Muncul ke layar */
  }

  /* 4. Sesuaikan warna teks di mobile agar selalu hitam (karena bg putih) */
  .nav-links li a {
    color: #111827 !important;
    font-size: 20px;
    text-shadow: none !important;
  }

  /* 5. Kecilin Logo biar gak penuh */
  .logo img {
    width: 140px; 
  }
}