/* ================================================= */
/* == 1. VARIABEL & RESET DASAR ==================== */
/* ================================================= */
:root {
  /* Light Mode Defaults */
  --color-primary: #3589e5;
  --color-secondary: #0ad1da;
  --color-success: #28a745;
  --color-dark: #1a1a1a;
  --color-text: #1a1a1a;
  --color-light-bg: #f4f6f9;
  --color-card-bg: #ffffff;
  --color-border: #dee2e6;
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Dark Mode Override */
html[data-theme="dark"] {
  --color-primary: #ff5252;
  --color-secondary: #ffc107;
  --color-success: #69f0ae;
  --color-dark: #f0f0f0;
  --color-text: #f0f0f0;
  --color-light-bg: #1e1e1e;
  --color-card-bg: #2d2d2d;
  --color-border: #3a3a3a;
  --shadow-light: 0 4px 15px rgba(0, 0, 0, 0.4);
}

body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--color-light-bg);
  color: var(--color-text);
  line-height: 1.6;
  transition: background-color 0.3s, color 0.3s;
  scroll-behavior: smooth;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ================================================= */
/* == 2. TOP BAR & NAVIGASI ======================== */
/* ================================================= */
.top-bar {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  text-align: center;
  padding: 8px 0;
  font-size: 0.9em;
  font-weight: 600;
}

.navbar {
  background-color: var(--color-card-bg);
  box-shadow: var(--shadow-light);
  padding: 15px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 99;
}

.footer-links>li>a.fa-li{
    color:;#b5eacc61
}

.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  padding: 15px 0;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;

  /* FIX UTAMA: Navbar default PUTIH (atau warna latar belakang yang solid) */
  background-color: var(
    --color-card-bg
  ); /* Menggunakan warna latar belakang kartu/putih */
  border-bottom: 1px solid var(--color-border); /* Garis pemisah default */
}

/* Style ketika Navbar ter-scroll (Efek Kaca) */
.navbar.scrolled {
  /* Warna latar belakang semi-transparan */
  background-color: rgb(255 255 255 / 25%);

  /* Efek Kaca Buram */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* Untuk kompatibilitas Safari */

  /* Hilangkan border bawah agar terlihat menyatu dengan efek kaca */
  border-bottom: solid 2px #36909561;

  /* Shadow ringan */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-logo {
  font-size: 1.8em;
  font-weight: 700;
  color: var(--color-dark);
}

.navbar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
}
.navbar-menu a {
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  padding: 5px 0;
  transition: color 0.3s;
}
.navbar-menu a:hover {
  color: var(--color-primary);
}
.navbar-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.2em;
}
.navbar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8em;
  color: var(--color-dark);
  padding: 0;
  margin-left: 10px;
}

#theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark);
  font-size: 1.2em;
  padding: 0;
  transition: color 0.3s;
}

/* ================================================= */
/* == 3. HERO SECTION ============================== */
/* ================================================= */
.hero-section {
  background-image: url("https://images.unsplash.com/photo-1555547432-15635f184b25?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-card-bg);
  text-align: center;
  position: relative;
  padding: 22px;
}
.hero-content {
  z-index: 1;
}
.hero-content h1 {
  font-size: 4em;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2em;
  font-weight: 300;
}

/* ================================================= */
/* == 4. FILTER TABS & SEARCH (UPDATED) ============ */
/* ================================================= */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  padding: 30px 0;
  margin-bottom: 20px;
  background-color: var(--color-card-bg);
  box-shadow: var(--shadow-light);
}
.filter-tabs button {
  padding: 10px 25px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1em;
  transition: background-color 0.3s, color 0.3s;
  background-color: var(--color-light-bg);
  color: var(--color-dark);
}
.filter-tabs button.active {
    background: linear-gradient(
    153deg,
    rgba(42, 123, 155, 1) 0%,
    rgba(87, 199, 133, 1) 50%,
    rgba(72, 207, 70, 1) 100%
  );
    color: #fffafa;
    border-radius: 50px;
}

.search-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  margin-bottom: 30px;
  gap: 20px;
}
.search-container {
  flex-grow: 1;
}
.search-container input[type="text"] {
  width: 100%;
  padding: 12px 20px;
  border: 1px solid var(--color-border);
  background-color: var(--color-card-bg);
  color: var(--color-dark);
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s;
}

/* --- VIEW TOGGLE STYLE BARU --- */
.view-toggle {
  display: flex;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(
    --color-light-bg
  ); /* Latar belakang untuk menampung tombol */
  padding: 3px; /* Jarak antar tombol */
  gap: 3px;
}
.view-toggle button {
  /* Reset button styling */
  background: none;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 1em;
  color: var(--color-dark); /* Warna ikon default (gelap/terang) */
  transition: background-color 0.2s, color 0.2s, box-shadow 0.2s;
  border-radius: 6px;
}
.view-toggle button:hover {
  background-color: var(--color-card-bg); /* Highlight saat hover */
}
.view-toggle button.active {
    background: linear-gradient(153deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(72, 207, 70, 1) 100%);
    color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
/* --- END VIEW TOGGLE STYLE BARU --- */

/* ================================================= */
/* == 5. FLOATING ACTIONS ========================== */
/* ================================================= */
.floating-actions {
  position: fixed;
  top: 25%;
  right: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.action-btn {
  padding: 10px 15px;
  color: var(--color-card-bg);
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
  text-decoration: none;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s;
}
#action-skins {
  background-color: #ff6f42;
}
#action-buy {
  background-color: var(--color-success);
}

/* ================================================= */
/* == 6. DAFTAR & KARTU TENANT ===================== */
/* ================================================= */

/* Grid View Default */
.tenant-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.tenant-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: background-color 0.3s, box-shadow 0.3s;
}

.tenant-card-image {
  height: 200px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border-bottom: 1px solid var(--color-border);
  padding: 20px;
  box-sizing: border-box;
}

.tenant-card-body {
  padding: 20px;
}
.tenant-card-body h3 {
  color: var(--color-dark);
  font-size: 1.4em;
  margin: 0 0 5px 0;
}
.tenant-location-icon {
  color: var(--color-primary);
  margin-right: 5px;
}

.category {
  display: inline-block;
  background-color: var(--color-light-bg);
  color: var(--color-dark);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 0.8em;
  font-weight: 600;
  margin-top: 10px;
}

/* --- LIST VIEW STYLES --- */
.tenant-list.list-view {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.tenant-list.list-view .tenant-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 15px;
  border: 1px solid var(--color-border);
}
.tenant-list.list-view .tenant-card-image {
  min-width: 100px;
  height: 100px;
  border-bottom: none;
  border-radius: 8px;
  margin-right: 15px;
  padding: 10px;
}
.tenant-list.list-view .tenant-card-body {
  flex-grow: 1;
  padding: 0;
}

/* ================================================= */
/* == 7. KONTROL PAGINATION ======================== */
/* ================================================= */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 50px;
}

.pagination-controls button {
  background-color: var(--color-card-bg);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}
.pagination-controls button.active {
  background-color: var(--color-secondary);
  color: var(--color-dark);
}

/* ================================================= */
/* == 8. FOOTER & SCROLL TO TOP =================== */
/* ================================================= */
footer {
  background: linear-gradient(135deg, #0e2e4af2, #054c24d1);
  color: var(--color-card-bg);
  padding: 50px 20px 20px;
  position: relative;
  display: block;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.footer-section h4 {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 20px;
  color: #b5eacc;
}
.footer-contact p {
  margin: 5px 0;
  font-size: 0.9em;
  color: var(--color-light-bg);
}

/* Tautan Footer */
.footer-links a {
  color: var(--color-card-bg);
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s;
}
.footer-links a.active {
  color: var(--color-secondary);
}
.footer-links a:hover {
  color: var(--color-primary);
}
.footer-contact a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 600;
}

.social-icons .social-icon {
  border: 1px solid var(--color-light-bg);
  color: var(--color-light-bg);
}
.social-icon:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-card-bg);
}
.footer-logo-large {
  color: var(--color-card-bg);
}
.footer-bottom {
  color: var(--color-border);
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(
    153deg,
    rgba(42, 123, 155, 1) 0%,
    rgba(87, 199, 133, 1) 50%,
    rgba(72, 207, 70, 1) 100%
  );
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  text-align: center;
  line-height: 40px;
  font-size: 1.2em;
  text-decoration: none;
  box-shadow: var(--shadow-light);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s;
}
.back-to-top.show {
  opacity: 1;
}

/* ================================================= */
/* == 9. OFF-CANVAS MENU STYLES ==================== */
/* ================================================= */
.off-canvas {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1001;
  top: 0;
  right: 0;
  background-color: var(--color-card-bg);
  overflow-y: auto;
  overflow-x: hidden;
  transition: 0.5s;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}
.off-canvas.open {
  width: 85%;
}
.off-canvas-content {
  padding: 40px 30px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  color: var(--color-dark);
}
.off-canvas-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.off-canvas-links > li {
  margin-bottom: 25px;
}

/* Tautan Off-Canvas */
.off-canvas-links a {
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2em;
}
.off-canvas-links .submenu a {
  color: var(--color-secondary);
  font-weight: 400;
  font-size: 0.9em;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 3em;
  font-weight: 300;
  color: var(--color-dark);
  border: none;
  background: none;
  cursor: pointer;
}

.social-icons-mobile {
  display: flex;
  gap: 10px;
  margin: 25px 0 35px 0;
}
.social-icons-mobile .social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--color-secondary) !important;
  color: #ffffff !important;
  font-size: 1.2em;
  text-align: center;
  line-height: 40px;
  border: none;
}
.search-mobile-bar {
  position: relative;
  margin-bottom: 20px;
}
.search-mobile-bar input {
  width: 100%;
  padding: 12px 15px;
  padding-right: 40px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background-color: var(--color-card-bg);
  color: var(--color-dark);
}
.search-mobile-bar .icon-search-mobile {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-dark);
}
.cart-location-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
  color: var(--color-dark);
}
.off-canvas-links .submenu {
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
  display: none;
}

/* ================================================= */
/* == 10. MEDIA QUERIES ============================ */
/* ================================================= */
@media (max-width: 992px) {
  .navbar {
    position: fixed;
  }
  .navbar-toggle {
    display: block;
  }
  #desktop-menu {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-section {
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
  }
}

/* ================================================= */
/* == 3. HERO SECTION (Khusus Promo) =============== */
/* ================================================= */
.hero-section {
  background-image: linear-gradient(135deg, #1b6cb3f2, #4bcd83d1),
    url(/assets/images/gmdepan-min.jpg);
  background-size: cover;
  background-position: bottom;
  height: 40vh;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff !important;
  text-align: initial;
  position: relative;
}

.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.hero-content p {
  font-size: 1.1em;
  font-weight: 300;
}

/* ================================================= */
/* == 4. KONTROL PENCARIAN & FILTER ================ */
/* ================================================= */
.controls {
  padding: 30px 0;
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.controls input[type="text"] {
  flex-grow: 1;
  padding: 12px 20px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 1em;
}

/* ================================================= */
/* == 6B. DAFTAR & KARTU PROMO (UPDATED) ========== */
/* ================================================= */
.promo-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 35px;
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
}

.promo-card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s, box-shadow 0.3s;
}
.promo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}
.promo-card-banner {
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.promo-discount {
  position: absolute;
  top: 15px;
  right: 0;
  background-color: var(--color-primary);
  color: var(--color-card-bg);
  padding: 8px 15px;
  font-weight: 700;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: 1.1em;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.3);
}
.promo-card-body {
  padding: 20px;
}
.promo-card-body h2 {
  font-size: 1.5em;
  color: var(--color-dark);
  margin-top: 0;
  margin-bottom: 5px;
}
.tenant-info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.tenant-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 10px;
}
.tenant-name-location {
  font-size: 0.9em;
  color: var(--color-secondary);
}
.promo-description {
  font-size: 0.9em;
  color: var(--color-promo-text-secondary); /* Menggunakan variabel khusus */
  margin-bottom: 15px;
}
.promo-dates {
  font-size: 0.85em;
  font-weight: 600;
  color: var(--color-success);
  padding: 8px 10px;
  background-color: var(--color-light-bg);
  border-radius: 4px;
  display: inline-block;
}

/* --- LIST VIEW STYLES (PROMO) --- */
.promo-list.list-view {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.promo-list.list-view .promo-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  border: 1px solid var(--color-border); /* Tambahkan border untuk pemisahan List */
  box-shadow: var(--shadow-light);
}
.promo-list.list-view .promo-card:hover {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.promo-list.list-view .promo-card-banner {
  min-width: 250px; /* Lebar minimum untuk banner */
  height: 100%;
  min-height: 200px; /* Tinggi minimum agar konten tidak terlalu kecil */
  position: relative;
  background-position: center;
}
.promo-list.list-view .promo-discount {
  /* Pertahankan posisi absolut agar tetap di pojok gambar */
  position: absolute;
  top: 15px;
  right: 0;
  margin: 0;
}

.promo-list.list-view .promo-card-body {
  padding: 20px;
  flex-grow: 1;
}

/* ================================================= */
/* == 7. KONTROL PAGINATION ======================== */
/* ================================================= */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0 50px;
}

.pagination-controls button {
  background-color: var(--color-card-bg);
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  padding: 10px 15px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s, color 0.3s;
}
.pagination-controls button.active {
    background: linear-gradient(153deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(72, 207, 70, 1) 100%);
    color: #ffffff;
}

/* ================================================= */
/* == 11. STYLES KHUSUS CONTACT PAGE ============== */
/* ================================================= */

/* HERO CONTACT */
.hero-section.hero-contact {
  background-image: linear-gradient(135deg, #09ace9c7, #0ed1dacc),
    url("/assets/images/hero-kontak.jpg");
  background-position: top;
  height: 45vh;
  color: var(--color-dark);
  text-align: left;
  padding-left: 5%;
  justify-content: flex-end;
  align-items: flex-start;
}
html[data-theme="dark"] .hero-section.hero-contact {
  background-image: linear-gradient(
      135deg,
      rgba(30, 30, 30, 0.7),
      rgba(45, 45, 45, 0.7)
    ),
    url("https://city-plaza.cmsmasters.studio/main/wp-content/uploads/sites/10/2025/05/64-contacts-1.webp");
  color: var(--color-text);
}
.hero-contact .hero-content {
  z-index: 1;
  max-width: 450px;
  padding-bottom: 50px;
}
.hero-contact .hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: var(--color-primary);
  text-shadow: none;
  line-height: 1.1;
}
.hero-contact .hero-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
}
.hero-button {
  background: linear-gradient(
    153deg,
    rgba(42, 123, 155, 1) 0%,
    rgba(87, 199, 133, 1) 50%,
    rgba(72, 207, 70, 1) 100%
  );
  color: var(--color-card-bg);
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}
.hero-button:hover {
  background-color: #c62828;
}

/* CONTACT INFO & MAP */
.contact-info-section {
  padding: 50px 0;
}
.section-title-contact {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 30px;
  padding-top: 20px;
}
html[data-theme="dark"] .section-title-contact {
  color: var(--color-text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 50px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-intro {
  font-size: 1.1em;
  color: var(--color-promo-text-secondary);
}
.address-title {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 1.2em;
}
.contact-tel {
  font-weight: 600;
  color: var(--color-dark);
}
.contact-map {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}
.map-image {
  width: 100%;
  display: block;
}

/* LOCATIONS GRID */
.all-locations-title {
  margin-top: 50px;
}
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}
.location-card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}
.location-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid var(--color-secondary);
}
.location-body {
  padding: 20px;
}
.location-body h3 {
  color: var(--color-dark);
  margin-top: 0;
  font-size: 1.5em;
}
.location-hours {
  font-weight: 600;
  color: var(--color-success);
}
.location-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  margin-top: 15px;
  display: inline-block;
}

/* ASK A QUESTION & FORM */
.ask-question-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 80px;
  align-items: start;
}
.question-form-container {
  order: 2; /* Pindah form ke kanan di desktop */
}
.image-with-person {
  order: 1; /* Pindah gambar ke kiri di desktop */
}
.contact-image-large {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  background-color: var(--color-card-bg);
  color: var(--color-dark);
  font-family: inherit;
}
html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea {
  color: var(--color-text);
}
.submit-button {
  background-color: var(--color-dark);
  color: var(--color-card-bg);
  padding: 15px 30px;
  border: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}
.submit-button:hover {
  background-color: var(--color-primary);
}

/* --- MEDIA QUERIES UNTUK CONTACT --- */
@media (max-width: 1050px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 992px) {
  .hero-section.hero-contact {
    height: 40vh;
    padding-left: 20px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .ask-question-block {
    grid-template-columns: 1fr;
  }
  .question-form-container {
    order: 1; /* Form di atas di mobile */
  }
  .image-with-person {
    order: 2; /* Gambar di bawah di mobile */
  }
}
@media (max-width: 600px) {
  .hero-contact .hero-content h1 {
    font-size: 2.5em;
  }
}

/* ================================================= */
/* == 12. STYLES KHUSUS EVENT PAGE ================ */
/* ================================================= */

/* HERO EVENT */
.hero-section.hero-event {
  background-image: linear-gradient(135deg, #09ace9c7, #0ed1dacc),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?q=80&w=2670&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
  background-position: center;
  height: 40vh;
  color: white;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-left: 10%;
}
.hero-section.hero-event::before {
  background: none; /* Hilangkan lapisan gelap default */
}
.hero-event .hero-content {
  max-width: 600px;
}
.hero-event h1 {
  font-size: 3.5em;
  color: var(--color-card-bg); /* Putih */
}
.hero-event .highlight {
  color: var(--color-secondary); /* Kuning */
}
.hero-event .button-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
.hero-event .hero-button {
  background-color: var(--color-primary);
  color: var(--color-card-bg);
  padding: 10px 25px;
}
.hero-event .callout-text {
  color: var(--color-card-bg);
  opacity: 0.8;
  font-weight: 400;
}

/* EVENT LIST & CARD LAYOUT */
/* EVENT LIST & CARD LAYOUT */
.event-controls {
  padding: 30px 0;
  display: flex;
  justify-content: center;
}
.event-search-input {
  width: 80%;
  max-width: 600px;
  padding: 12px 20px;
  border: 1px solid var(--color-border);
  background-color: var(--color-card-bg);
  color: var(--color-dark);
  border-radius: 8px;
  font-size: 1em;
  transition: border-color 0.3s;
}
html[data-theme="dark"] .event-search-input {
  color: var(--color-text);
}

.event-list {
  list-style: none;
  padding: 0;
  margin-bottom: 50px;

  /* --- PENTING: TAMPILAN GRID UNTUK EVENT --- */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

.event-card {
  display: flex;
  flex-direction: column; /* Pastikan selalu vertikal/card */
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: box-shadow 0.3s;
  border: 1px solid var(--color-border);
}
.event-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.event-banner-container {
  flex-shrink: 0;
  width: 100%; /* Lebar penuh card */
  height: 0;
  padding-bottom: 56.25%; /* Rasio 16:9 Landscape */
  position: relative;
}

.event-banner-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-content {
  padding: 20px;
  flex-grow: 1;
}
.event-owner {
  display: inline-block;
  font-size: 0.8em;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.event-title {
  font-size: 1.5em;
  color: var(--color-dark);
  margin: 0 0 10px 0;
}
.event-meta {
  font-size: 0.9em;
  color: var(--color-promo-text-secondary); /* Warna teks sekunder */
  margin-bottom: 15px;
}
.event-meta i {
  color: var(--color-secondary);
  margin-right: 5px;
}
.event-description {
  font-size: 0.9em;
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 15px;
}
.read-more-btn {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9em;
}

/* MEDIA QUERIES EVENT (RESPONSIVE) */
@media (max-width: 768px) {
  .event-card {
    flex-direction: column;
  }
  .event-banner-container {
    width: 100%;
    padding-bottom: 56.25%;
  }
  .hero-section.hero-event {
    padding-left: 5%;
    height: 35vh;
  }
  .hero-event h1 {
    font-size: 2.5em;
  }
}

/* ================================================= */
/* == 13. STYLES KHUSUS MAP PAGE =================== */
/* ================================================= */

/* HERO MAP */
.hero-section.hero-map {
  background-image: linear-gradient(135deg, #1b6cb3f2, #4bcd83d1),
    url(/assets/images/gmdepan-min.jpg);
  background-position: bottom;
  height: 45vh;
  color: white;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-section.hero-map::before {
  background: none;
}
.hero-map .hero-content h1 {
  font-size: 4em;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}
.hero-map .hero-content .highlight {
  color: var(--color-secondary);
}
.hero-map .hero-button {
  background-color: var(--color-primary);
  color: var(--color-card-bg);
  padding: 10px 25px;
}
.hero-map .callout-text {
  color: var(--color-card-bg);
  opacity: 0.8;
  font-weight: 400;
}

/* MAP VIEW */
.map-section {
  padding: 50px 0;
}
.section-title-map {
  font-size: 2.2em;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 30px;
  padding-top: 20px;
}
html[data-theme="dark"] .section-title-map {
  color: var(--color-text);
}

.map-controls-and-view {
  display: flex;
  gap: 30px;
  margin-bottom: 50px;
}
.level-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 150px;
}
.level-btn {
  padding: 15px 20px;
  border: 1px solid var(--color-border);
  border-radius: 50px;
  background-color: var(--color-card-bg);
  color: var(--color-dark);
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}
.level-btn.active {
  background: linear-gradient(153deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(72, 207, 70, 1) 100%);
  color: #ffffff;
  border-color: var(--color-secondary);
  box-shadow: 0 4px 10px rgba(255, 193, 7, 0.4);
}
.level-btn:hover:not(.active) {
  background-color: var(--color-light-bg);
}

.map-view-area {
  flex-grow: 1;
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  border: 4px solid var(--color-dark);
  position: relative;
}
.level-label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-dark);
  color: white;
  padding: 8px 15px;
  font-weight: 600;
  z-index: 10;
}
.map-image-container {
  width: 100%;
  height: auto;
  display: block;
}
.map-level-image {
  width: 100%;
  height: auto;
  display: block;
}

/* TENANT FAVORIT SECTION */
.favorite-tenants-section {
  padding-bottom: 50px;
}
/* Menggunakan ulang .tenant-list dan .tenant-card dari tenants.php untuk tampilan konsisten */

/* MEDIA QUERIES MAP */
@media (max-width: 768px) {
  .map-controls-and-view {
    flex-direction: column;
  }
  .level-selector {
    flex-direction: row;
    justify-content: space-between;
    min-width: 100%;
  }
}

/* ================================================= */
/* == 14. STYLES KHUSUS HOME PAGE ================== */
/* ================================================= */
/* HERO HOME (OVERLAY STYLE BARU) */
.hero-section.hero-home-overlay {
  /* Background Image */
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url("/assets/images/gm-home.png"); /* Gambar baru */
  background-position: center;
  background-size: cover;

  /* Layout */
  height: 70vh; /* Tinggi yang mencolok */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  z-index: 1;
}
/* Lapisan gelap agar teks tetap terbaca */
.hero-section.hero-home-overlay::before {
  content: none;
}

.hero-home-overlay .hero-content {
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}

.hero-tagline-overlay {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  display: block;
}
.hero-tagline-overlay .repeat-text {
  color: var(--color-secondary); /* Kuning */
  font-weight: 700;
}

.hero-home-overlay h1 {
  font-size: 4.5em; /* Ukuran font besar */
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 30px;
  color: white;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.8);
}

/* BUTTONS OVERLAY */
.hero-buttons-overlay {
  display: flex;
  justify-content: center;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

.hero-button-explore-overlay {
  background-color: white; /* Tombol utama Putih */
  color: var(--color-dark); /* Teks Hitam */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.3s;
  border: 2px solid white;
}
.hero-button-events-overlay {
  /* Tombol sekunder Transparan dengan border putih */
  background: none;
  color: white;
  border: 2px solid white;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}
.hero-button-events-overlay:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* MEDIA QUERIES untuk Hero Overlay */
@media (max-width: 768px) {
  .hero-section.hero-home-overlay {
    height: 90vh;
  }
  .hero-home-overlay h1 {
    font-size: 3em;
  }
  .hero-buttons-overlay {
    flex-direction: column;
  }
  .hero-button-explore-overlay,
  .hero-button-events-overlay {
    width: 80%;
    text-align: center;
  }
}

/* GENERAL SECTION STYLES */
.section-title-home {
  font-size: 2.5em;
  font-weight: 900;
  margin-bottom: 30px;
}
.featured-section {
  background-color: var(--color-secondary); /* Kuning */
  padding: 50px 0;
  margin-top: -60px; /* Geser ke atas, di bawah Hero */
  position: relative;
  z-index: 5;
}
.featured-section .section-title-home {
  color: var(--color-dark);
  text-align: center;
  margin-top: 0;
}
.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.featured-card {
  background-color: var(--color-card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}
.featured-card-image {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.featured-card-body {
  padding: 15px;
}
.featured-card-body h3 {
  font-size: 1.1em;
  color: var(--color-dark);
  margin: 0 0 5px 0;
}
.featured-price {
  font-weight: 600;
  color: var(--color-primary);
}

/* BOOKING & BEYOND SECTION */
.booking-section {
  background-color: var(--color-dark);
  padding: 80px 0 50px;
}
.dark-title {
  color: white;
  padding-top: 40px;
}

.booking-grid-large {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}
.booking-block {
  background-color: #222;
  color: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.booking-cinema {
  grid-column: 1 / 2;
}
.booking-gaming {
  grid-column: 2 / 3;
}

.booking-promo {
  padding: 30px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  min-height: 200px;
}
.booking-yellow {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  grid-column: 1 / 2;
}
.booking-burger {
  grid-column: 2 / 3;
  color: white;
  background-color: #333; /* Fallback gelap */
}
.booking-promo h3 {
  font-size: 1.8em;
  margin-top: 0;
  line-height: 1.1;
}
.booking-promo .highlight {
  color: var(--color-primary);
}

.bookmakers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.bookmaker-card {
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
}
.bookmaker-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  font-weight: 600;
  font-size: 0.9em;
}

/* SHOPPING SECTION */
.shopping-section {
  background-color: var(--color-light-bg);
  padding: 50px 0;
}
.light-title {
  color: var(--color-dark);
  text-align: center;
}
.shopping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.shopping-card {
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  box-shadow: var(--shadow-light);
}
.shopping-card p {
  position: absolute;
  bottom: 10px;
  left: 15px;
  color: white;
  font-size: 1.5em;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
}

/* UPCOMING EVENTS SECTION */
.events-section {
  background-color: var(--color-card-bg);
  padding: 50px 0;
}
.mini-event-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 30px;
}
.mini-event-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 10px;
}
.mini-event-thumb {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.event-date-small {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.8em;
  display: block;
}
.event-title-small {
  font-size: 1em;
  color: var(--color-dark);
  margin: 0;
}
.all-events-link {
  display: block;
  text-align: center;
  color: var(--color-secondary);
  font-weight: 600;
  text-decoration: none;
}

/* WIDER CALLOUT SECTION */
.wider-callout-section {
  background-size: cover;
  background-position: center;
  height: 35vh;
  display: flex;
  align-items: center;
  text-align: center;
  color: white;
  position: relative;
  /* Parallax effect placeholder */
  background-attachment: fixed;
}
.wider-callout-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
}
.callout-content {
  z-index: 1;
}
.callout-content h2 {
  font-size: 3em;
  font-weight: 900;
  margin-bottom: 20px;
}
.callout-content .highlight {
  color: var(--color-secondary);
}
.social-links-callout .callout-social-icon {
  color: white;
  border: 2px solid white;
  padding: 10px;
  margin: 0 5px;
  border-radius: 50%;
  transition: background-color 0.3s;
}
.callout-social-icon:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
}

/* SHARE MOMENTS (GALLERY) */
.share-moments-section {
  background-color: var(--color-light-bg);
  padding: 50px 0 80px;
}
.tag-link {
  display: block;
  text-align: center;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 30px;
  text-decoration: none;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.gallery-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 6px;
}

/* MEDIA QUERIES HOME PAGE */
@media (max-width: 992px) {
  .hero-home h1 {
    font-size: 4em;
  }
  .featured-grid,
  .bookmakers-grid,
  .shopping-grid,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .bookmakers-grid {
    gap: 10px;
  }
  .featured-section {
    margin-top: -40px;
  }
}
@media (max-width: 600px) {
  .hero-home h1 {
    font-size: 3em;
  }
  .featured-grid {
    grid-template-columns: 1fr;
  }
  .booking-grid-large {
    grid-template-columns: 1fr;
  }
  .bookmakers-grid,
  .shopping-grid {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ================================================= */
/* == 15. STYLES KHUSUS DOWNLOAD PAGE ============== */
/* ================================================= */

/* HERO DOWNLOAD SECTION */
.hero-section.hero-download {
  background-color: var(--color-light-bg); /* Latar belakang terang */
  padding: 80px 0;
  height: auto;
  margin-top: 70px;
}
.hero-download-container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.hero-download-content {
  flex: 1;
}
.hero-download-content h1 {
  font-size: 3.5em;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  color: #fff;
}
.hero-download-content .highlight-download {
  color: #ffd278;
}
.hero-download-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #fff;
}
.small-info-text {
  font-size: 0.9em;
  opacity: 0.7;
  margin-top: 15px;
}

.hero-mockup-visual {
  flex: 1;
  text-align: center;
}
.app-mockup {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* CTA BUTTONS (DIREUSE) */
.download-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    zoom: 0.8;
}
.app-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 22px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.app-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}
.google-btn {
  background-color: var(--color-success);
  color: white;
}
.apple-btn {
  background-color: var(--color-dark);
  color: white;
}
.app-cta-btn i {
  font-size: 1.2em;
  margin-right: 10px;
}

/* WHY DOWNLOAD SECTION (Benefit Grid) */
.why-download-section {
  padding: 60px 0;
  background-color: var(--color-card-bg);
}
.section-title-download {
  font-size: 2.5em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-dark);
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  text-align: center;
}
.benefit-card {
  padding: 20px;
  border-radius: 12px;
  border: solid 3px #3e9d6f;
  background: linear-gradient(153deg, rgb(74 137 162) 0%, rgb(60 149 96) 50%);
}
.benefit-icon {
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 15px;
}
.benefit-card h3 {
  color: #fff;
  font-size: 1.3em;
}
.benefit-card p {
  color: #fff;
}

/* FEATURE SPOTLIGHT SECTION */
.feature-spotlight-section {
  background-color: var(--color-light-bg);
  padding: 80px 0;
}
.spotlight-container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.spotlight-visual {
  flex: 1;
  height: 310px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
}
.spotlight-content {
  flex: 1;
}
.spotlight-tag {
  font-size: 0.9em;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.spotlight-content h2 {
  font-size: 2.5em;
  color: var(--color-dark);
  font-weight: 900;
  margin-bottom: 20px;
}
.download-now-btn {
  background-color: var(--color-secondary);
  color: var(--color-dark);
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 20px;
  display: inline-block;
}

/* FINAL CTA SECTION */
.final-cta-section {
  background-color: #3a8f7b;
  padding: 50px 0;
  text-align: center;
}
.final-cta-container h2 {
  color: white;
  font-size: 2.5em;
  font-weight: 900;
  margin-bottom: 30px;
}
.final-cta-btn {
  background-color: white;
  color: var(--color-dark);
  font-size: 1.2em;
}

/* MEDIA QUERIES DOWNLOAD PAGE */
@media (max-width: 992px) {
  .hero-download-container,
  .spotlight-container {
    flex-direction: column;
    gap: 30px;
  }
  .hero-mockup-visual {
    order: 1;
  }
  .hero-download-content {
    order: 2;
    text-align: center;
  }
  .download-cta-buttons {
    justify-content: center;
  }
  .spotlight-visual {
    height: 300px;
  }
}

.plan-visit-section {
  background-color: #fff; /* Latar belakang hitam */
  padding: 80px 0;
}

.plan-visit-section .dark-title {
  color: #3f3f3f;
  text-align: center;
  margin-bottom: 50px;
}

.plan-visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.plan-visit-card {
  display: block; /* Agar bisa berfungsi sebagai link penuh */
  position: relative;
  height: 400px; /* Tinggi kartu yang mencolok */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Overlay gelap pada gambar */
.plan-visit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #093d69bd, #064f22b3);
  transition: background 0.3s;
}

/* Efek hover */
.plan-visit-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
}

.card-overlay-content {
  position: absolute;
  bottom: 30px;
  left: 30px;
  color: white;
  z-index: 2;
}

.card-overlay-content h3 {
  font-size: 1.8em;
  font-weight: 700;
  margin: 0;
}

.card-overlay-content p {
  font-size: 1em;
  opacity: 0.8;
  margin-top: 5px;
}

/* Panah Kuning */
.card-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(153deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(72, 207, 70, 1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2em;
  transform: rotate(90deg); /* Diputar 90 derajat ke kanan */
  transition: transform 0.3s;
  z-index: 2;
}

.plan-visit-card:hover .card-arrow {
  transform: rotate(45deg); /* Efek panah ke atas saat hover */
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
  .plan-visit-grid {
    grid-template-columns: 1fr;
  }
}

/* ... CSS sebelumnya ... */

/* SECTION 5: UPCOMING EVENTS (REVISI BERAT) */
.events-section {
  background-color: var(--color-light-bg); /* Latar belakang cerah */
  padding: 50px 0;
}
.events-section .light-title {
  text-align: center;
  margin-bottom: 50px;
}

.upcoming-event-list-detailed {
  list-style: none;
  padding: 0;
  max-width: 900px; /* Batasi lebar daftar */
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.upcoming-event-item-detailed {
  display: grid;
  grid-template-columns: 80px 150px 1fr auto; /* Tanggal | Gambar | Info | Tombol */
  align-items: center;
  background-color: var(--color-card-bg);
  border-radius: 12px;
  padding: 20px;
  box-shadow: var(--shadow-light);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.3s;
}
.upcoming-event-item-detailed:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Tanggal Samping Kiri */
.event-date-box {
  text-align: center;
  color: var(--color-dark);
  font-weight: 700;
  padding-right: 20px;
  border-right: 1px solid var(--color-border);
}
.day-num {
  font-size: 1.1em;
  display: block;
  line-height: 1;
  color: #2e9c7d;
}
.day-name {
  font-size: 1em;
  display: block;
  color: var(--color-dark);
  opacity: 0.7;
  margin-top: 5px;
}

/* Visual Gambar */
.event-visual {
  position: relative;
  padding-left: 20px;
}
.event-thumb-round {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--color-card-bg);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.event-tag {
  position: absolute;
  top: 5px;
  left: 60px;
  background-color: var(--color-secondary);
  color: var(--color-dark);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.7em;
  font-weight: 700;
  white-space: nowrap;
}

/* Info Konten */
.event-info {
  padding: 0 20px;
}
.event-info h3 {
  font-size: 1.2em;
  font-weight: 600;
  color: var(--color-dark);
  margin: 0 0 5px 0;
}
.event-short-desc {
  font-size: 0.9em;
  color: var(--color-promo-text-secondary);
  margin-bottom: 10px;
}
.event-details-meta {
  font-size: 0.8em;
  color: var(--color-promo-text-secondary);
  display: flex;
  gap: 15px;
  opacity: 0.8;
}
.event-details-meta i {
  color: var(--color-primary);
  margin-right: 4px;
}

/* Tombol Aksi */
.event-action {
  text-align: right;
  padding-left: 20px;
}
.view-details-btn {
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  padding: 10px 15px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--color-dark);
  font-weight: 500;
  transition: background-color 0.2s;
  white-space: nowrap;
}
.view-details-btn:hover {
  background-color: var(--color-light-bg);
}
.view-details-btn i {
  margin-left: 8px;
  color: var(--color-primary);
}

/* MEDIA QUERIES EVENT LIST DETAIL */
/* MEDIA QUERIES EVENT LIST DETAIL */
@media (max-width: 900px) {
  /* 1. Untuk tablet/desktop kecil (900px ke bawah) */
  .upcoming-event-item-detailed {
    /* Kita pertahankan tata letak 3 kolom untuk tablet, tapi disederhanakan */
    grid-template-columns: 80px 120px 1fr; /* Tanggal | Gambar | Info */
    grid-template-areas:
      "date visual info"
      "date action info";
    padding: 15px;
  }
  .event-action {
    grid-area: action;
    text-align: left;
    padding-top: 5px;
    padding-left: 20px;
    margin-top: 5px;
    border-top: none;
  }
  .event-info {
    /* Pastikan info mengambil sisa ruang */
    padding-left: 10px;
  }
  .event-details-meta {
    flex-direction: column;
    gap: 5px;
  }
}

@media (max-width: 600px) {
  /* 2. Untuk mobile (600px ke bawah): Ubah menjadi Card Vertikal Penuh */
  .upcoming-event-list-detailed {
    gap: 20px;
  }
  .upcoming-event-item-detailed {
    display: flex; /* Gunakan flex untuk tata letak vertikal */
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  /* Visual */
  .event-visual {
    padding: 0;
    margin-bottom: 15px;
    position: relative;
  }
  .event-thumb-round {
    /* Jadikan thumbnail lebih besar dan tetap bulat */
    width: 150px;
    height: 150px;
  }
  .event-tag {
    /* Posisikan tag EVENTS di tengah atas gambar */
    left: 50%;
    top: -5px;
    transform: translateX(-50%);
  }

  /* Tanggal Samping Kiri (Pindah ke atas/tengah) */
  .event-date-box {
    border: none;
    padding-right: 0;
    order: 1; /* Pindah ke urutan atas (setelah gambar) */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .day-num {
    font-size: 1.8em;
    margin-right: 5px;
    line-height: 1.2;
  }
  .day-name {
    font-size: 0.9em;
    margin-top: 0;
  }

  /* Info Konten */
  .event-info {
    padding: 0;
    order: 3;
    text-align: center;
  }
  .event-short-desc {
    /* Hilangkan deskripsi singkat di mobile agar lebih ringkas */
    display: none;
  }
  .event-details-meta {
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 10px;
  }

  /* Tombol Aksi */
  .event-action {
    text-align: center;
    padding-left: 0;
    order: 4;
    margin-top: 20px;
    width: 100%;
  }
  .view-details-btn {
    width: 80%;
    max-width: 250px;
  }
}

/* ================================================= */
/* == 16. STYLES KHUSUS VIRTUAL TOUR ============= */
/* ================================================= */

/* HERO TOUR */
.hero-section.hero-tour {
  background-image: linear-gradient(135deg, #1b6cb3f2, #4bcd83d1),
    url(/assets/images/gmdepan-min.jpg);
  background-position: center;
  height: 40vh;
  color: white;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 30px;
}
.hero-tour h1 {
  font-size: 3em;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}
.hero-tour .highlight {
  color: var(--color-secondary);
}

/* IFRAME EMBED STYLES */
.virtual-tour-section {
  padding: 50px 0;
}
.iframe-wrapper {
  /* Kontainer untuk membatasi dan memusatkan iframe */
  max-width: 1200px;
  margin: 0 auto; /* Pemusatan horizontal */
  padding: 0 40px; /* Padding di kiri dan kanan */

  /* Menggunakan teknik rasio aspek 16:9 untuk iframe */
  position: relative;
  height: 0;
  padding-bottom: 56.25%; /* Rasio 16:9 */
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  background-color: var(--color-card-bg);
}

.iframe-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none !important;
}

.tour-info-box {
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  color: var(--color-promo-text-secondary);
}
.tour-info-box a {
  color: var(--color-primary);
  font-weight: 600;
}

/* MEDIA QUERIES TOUR */
@media (max-width: 768px) {
  .iframe-wrapper {
    padding: 0 10px; /* Kurangi padding di mobile */
  }
}

/* ================================================= */
/* == 17. STYLES KHUSUS TOP BRANDS =============== */
/* ================================================= */

.top-brands-section {
  background-color: var(
    --color-light-bg
  ); /* Latar belakang terang, mendekati putih */
  padding: 100px 0;
}

.top-brands-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Konten Teks Kiri */
.brand-text-content {
  flex: 1;
  max-width: 400px;
}
.brand-text-content h2 {
  font-size: 3.5em;
  font-weight: 900;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 20px;
}
.brand-text-content p {
  font-size: 1.1em;
  color: var(--color-promo-text-secondary);
  margin-bottom: 30px;
}

/* Tombol See All Brands */
.see-all-brands-btn {
  background-color: var(--color-dark);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
}
.see-all-brands-btn:hover {
  background-color: var(--color-primary);
}

/* Grid Logo Kanan */
.brand-logo-grid {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.brand-card {
  background-color: white;
  height: 150px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  transition: transform 0.2s;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.brand-card h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.2em;
  color: var(--color-dark);
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.brand-subtitle {
  display: block;
  font-size: 0.7em;
  font-weight: 400;
  text-transform: none;
  color: var(--color-promo-text-secondary);
  margin-top: 2px;
}

/* MEDIA QUERIES BRANDS */
@media (max-width: 992px) {
  .top-brands-container {
    flex-direction: column;
    text-align: center;
  }
  .brand-text-content {
    max-width: 100%;
  }
  .brand-logo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 600px) {
  .brand-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .brand-text-content h2 {
    font-size: 2.5em;
  }
}

/* ================================================= */
/* == 18. STYLES KHUSUS CTA DOWNLOAD APP ========== */
/* ================================================= */

.download-app-cta-section {
  padding: 50px 0;
  background-color: var(
    --color-light-bg
  ); /* Latar belakang terang, memisahkan dari footer gelap */
}

.download-app-banner {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0e2e4af2, #0f8e40d1); /* Latar belakang pink/pastel seperti di gambar */
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  min-height: 250px;
}

.banner-visual {
  flex-shrink: 0;
  width: 35%; /* Proporsi visual */
  height: 100%;
  position: relative;
}

.banner-image-cta {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Pastikan gambar terpotong sedikit di kanan agar menyatu dengan background */
  position: relative;
  left: 0;
  top: 0;
}

.banner-content {
  flex-grow: 1;
  padding: 30px 50px 30px 40px; /* Padding lebih banyak di kanan */
  color: #fff; /* Warna teks utama merah muda/merah */
  max-width: 60%;
  text-align: initial;
}

.banner-content h2 {
  font-size: 2em;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 15px;
}

.banner-content p {
  font-size: 1em;
  margin-bottom: 25px;
  color: #fff;
}

.banner-cta-button {
  background-color: #ffffff;
  color: #52c974;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
}

.banner-cta-button i {
  margin-left: 8px;
  color: #57c780;
}

.banner-cta-button:hover {
  background-color: var(--color-light-bg);
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
  .download-app-banner {
    flex-direction: column;
    min-height: 450px;
  }
  .banner-visual {
    width: 100%;
    height: 200px;
    order: 1;
  }
  .banner-image-cta {
    position: relative;
    object-position: 50% 50%; /* Tengah di mobile */
  }
  .banner-content {
    order: 2;
    width: 100%;
    max-width: 100%;
    text-align: center;
    padding: 30px 20px;
  }
  .banner-cta-button {
    display: inline-flex;
  }
  .download-nav {
    display: none;
  }
}

/* ================================================= */
/* == 19. STYLES KHUSUS FACILITIES PAGE =========== */
/* ================================================= */

/* HERO FACILITIES */
.hero-section.hero-facilities {
  /* Menggunakan gaya background image yang sedikit pudar (ambil dari hero direktori atau hero kontak) */
  background-image: linear-gradient(135deg, #1b6cb3f2, #4bcd83d1),
    url(/assets/images/gmdepan-min.jpg);
  background-position: center;
  background-size: cover;
  height: 40vh; /* Sedikit lebih pendek dari hero utama */
  color: var(--color-dark);
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-facilities .hero-content-centered {
  text-align: center;
}
.hero-facilities h1 {
  font-size: 3.5em;
  font-weight: 900;
  color: #fff;
}
.hero-facilities .highlight-yellow {
  color: #fff;
}
.hero-facilities p {
  font-size: 1.1em;
  color: #fff;
  opacity: 0.8;
  max-width: 600px;
  margin: 10px auto 0;
}

/* DAFTAR FASILITAS */
.facility-list-section {
  padding: 80px 0;
  background-color: white; /* Latar belakang putih sesuai gambar */
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Tiga kolom per baris */
  gap: 40px 60px; /* Spasi antar item */
}

.facility-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.facility-icon {
  flex-shrink: 0;
  font-size: 2.6em;
  color: #ffffff;
  line-height: 1;
  background: linear-gradient(135deg, #1b6cb3f2, #4bcd83d1);
  padding: 15px;
  width: 70px;
  height: 70px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.facility-details {
  padding-top: 5px;
}

.facility-title {
  font-size: 1em;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: var(--color-dark);
  /* Garis kuning seperti di screenshot */
  border-bottom: 2px solid var(--color-secondary);
  display: inline-block;
  padding-bottom: 3px;
}

.facility-desc {
  font-size: 0.9em;
  color: var(--color-promo-text-secondary);
  margin: 0;
}

/* MEDIA QUERIES */
@media (max-width: 992px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr); /* Dua kolom di tablet */
  }
}
@media (max-width: 600px) {
  .facility-grid {
    grid-template-columns: 1fr; /* Satu kolom di mobile */
  }
  .facility-item {
    flex-direction: column;
    text-align: center;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
  }
  .facility-icon {
    font-size: 3em;
  }
  .facility-details {
    padding-top: 0;
  }
  .facility-title {
    margin: 0 auto 5px;
  }
}
/* ================================================= */
/* == 19. STYLES KHUSUS TOP TENANTS HOME ========== */
/* ================================================= */

.top-tenants-section {
  padding: 50px 0;
  background-color: var(--color-card-bg); /* Latar belakang cerah */
}

.top-tenants-section .light-title {
  margin-bottom: 40px;
}

/* Menggunakan kembali tenant-list grid untuk konsistensi */

.view-all-tenants-btn {
    background: linear-gradient(153deg, rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 50%, rgba(72, 207, 70, 1) 100%);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
    display: inline-block;
}
.view-all-tenants-btn:hover {
  opacity: 0.9;
}
.view-all-tenants-btn i {
  margin-left: 8px;
}

/* ================================================= */
/* == 14. STYLES KHUSUS HOME PAGE (FINAL HERO SLIDER FIX + TEKS ALIGN) == */
/* ================================================= */

/* HERO SLIDER CONTAINER (Harus mencakup seluruh viewport) */
.hero-section.hero-slider {
  height: 100vh;
  width: 100vw;
  margin: 0;
  padding: 0;
  background: none;
  position: relative;
  overflow: hidden;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: block;
}

/* SLIDER WRAPPER */
.slider-wrapper {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.6s ease-in-out;
}

/* SETIAP SLIDE */
.hero-slide {
  width: 50%;
  flex-shrink: 0;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  /* FIX UTAMA UNTUK TEKS TIDAK RATA: Pusatkan konten secara horizontal */
  justify-content: center; /* Memposisikan .slide-content di tengah secara horizontal */
  align-items: center; /* Memposisikan .slide-content di tengah secara vertikal */
  padding: 0 10%; /* Padding agar teks tidak terlalu mepet ke samping */
  position: relative;
  box-sizing: border-box;
  text-align: center; /* FIX: Pastikan teks di dalam slide-content rata tengah */
}

/* Lapisan gelap agar teks terlihat */
.hero-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #053865f5, #0e7b3dc4);
  z-index: 5;
}

/* KONTEN TEKS SLIDE */
.slide-content {
  z-index: 10;
  color: white;
  max-width: 700px; /* Lebarkan sedikit max-width agar teks lebih leluasa */
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  /* Pastikan teks di sini juga mengikuti rata tengah */
  text-align: center;
}

/* Typography Slider */
.hero-tagline-slider {
  font-size: 1.1em;
  font-weight: 600;
  margin-bottom: 10px;
}
.repeat-text-slider {
  color: var(--color-secondary);
}
.slide-content h1 {
  font-size: 4.5em;
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 20px;
  color: white;
}
.slide-content p {
  font-size: 1.1em;
  margin-bottom: 30px;
}

/* TOMBOL SLIDER */
.hero-buttons-overlay {
  display: flex; /* Menggunakan flexbox untuk tombol */
  gap: 15px; /* Jarak antar tombol */
  justify-content: center; /* FIX: Pusatkan tombol secara horizontal */
  margin-top: 20px; /* Sedikit ruang di atas tombol */
}
.hero-buttons-overlay a {
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  white-space: nowrap; /* Mencegah tombol pecah baris */
}
.hero-button-explore-overlay {
  background: linear-gradient(
    153deg,
    rgba(42, 123, 155, 1) 0%,
    rgba(87, 199, 133, 1) 50%,
    rgba(72, 207, 70, 1) 100%
  ); /* Contoh warna */
  color: white;
}
.hero-button-events-overlay {
  background-color: transparent;
  border: 2px solid white;
  color: white;
}
.hero-button-explore-overlay:hover {
  background-color: #004d40;
} /* Darker green */
.hero-button-events-overlay:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* Navigasi */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  z-index: 20;
  font-size: 1.5em;
  transition: background 0.3s;
}
.slider-nav:hover {
  background: rgba(0, 0, 0, 0.8);
}
.prev-btn {
  left: 0;
  border-radius: 0 5px 5px 0;
}
.next-btn {
  right: 0;
  border-radius: 5px 0 0 5px;
}

/* Dots Indicator */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s, width 0.3s;
}
.dot.active {
  background-color: var(--color-secondary);
  width: 25px;
  border-radius: 5px;
}

/* MEDIA QUERIES UNTUK SLIDER DI MOBILE */
@media (max-width: 768px) {
  .hero-section.hero-slider {
    height: 100vh;
  }
  .hero-slide {
    padding: 0 5%;
    margin-top: 35px;
    /* justify-content dan align-items tetap center */
  }
  .slide-content h1 {
    font-size: 3em;
  }
  /* hero-buttons-overlay juga tetap center di mobile */
}
