@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400;1,600;1,700&display=swap');

:root {
  /* Executive Luxury Theme: Imperial Emerald & Champagne Gold */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'Outfit', sans-serif;
  --primary: #06382b;
  --primary-dark: #032018;
  --primary-light: #0c4e3d;
  --accent: #d4af37;
  --accent-hover: #b8860b;
  --accent-gradient: linear-gradient(135deg, #f5df8e 0%, #d4af37 50%, #b8860b 100%);
  --navy: #06382b;
  --navy-dark: #032018;
  --navy-light: #0c4e3d;
  --orange: #d4af37;
  --orange-hover: #b8860b;
  --orange-gradient: linear-gradient(135deg, #f5df8e 0%, #d4af37 50%, #b8860b 100%);
  --bg-page: #f2f6f4;
  --card-bg: #ffffff;
  --text-dark: #0f231d;
  --text-muted: #51665e;
  --border-line: #cce0d7;
  --radius-lg: 16px;
  --radius-md: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  background-color: var(--bg-page);
  color: var(--text-dark);
  line-height: 1.55;
  letter-spacing: -0.012em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: all 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: var(--font-main); }
button { cursor: pointer; border: none; outline: none; }

.site-wrapper {
  max-width: 1120px;
  margin: 0 auto;
  background: #ffffff;
  min-height: 100vh;
  box-shadow: 0 0 35px rgba(0,0,0,0.06);
}

.content-container {
  padding: 0 24px;
}

/* ==========================================================
   TOP HEADER & NAVBAR (EXECUTIVE EMERALD)
   ========================================================== */
.top-header,
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--primary-dark);
  box-shadow: 0 4px 18px rgba(3, 32, 24, 0.32);
  transition: all 0.25s ease;
}

.nav-bar,
.header-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 88px;
  height: auto;
}

.brand-wrapper,
.brand-link {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-icon,
.brand-logo-icon {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, #fde047, #d4af37);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #032018;
  font-size: 34px;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.45);
  flex-shrink: 0;
  overflow: hidden;
  padding: 3px;
  box-sizing: border-box;
}

.brand-icon .header-car-svg,
.brand-logo-icon .header-car-svg {
  width: 44px !important;
  height: 32px !important;
}

.brand-icon img,
.brand-logo-icon img,
.site-header-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.brand-titles,
.brand-text-block {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 23px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.brand-name span {
  color: var(--accent);
}

.brand-sub {
  font-size: 11px;
  font-weight: 800;
  color: #e5cb75;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-top: 2px;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.desktop-menu a {
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 4px;
  position: relative;
}

.desktop-menu a:hover,
.desktop-menu a.active {
  color: var(--orange);
}

.nav-right-tools {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-header-search {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.2s ease;
}

.btn-header-search:hover {
  background: var(--orange);
  color: #000;
  transform: scale(1.05);
}

.mobile-hamburger {
  display: none;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.45);
  border-radius: 8px;
  padding: 6px 10px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  line-height: 1;
}

.mobile-hamburger:hover {
  background: rgba(212, 175, 55, 0.22);
  border-color: var(--accent);
}

.hamburger-icon {
  font-size: 17px;
  line-height: 1;
  color: var(--accent);
  display: inline-block;
}

.hamburger-text {
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #ffffff;
  line-height: 1;
  display: inline-block;
}

/* Mobile Nav Drawer */
.mobile-side-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(300px, 80vw);
  height: 100vh;
  background: var(--navy-dark);
  z-index: 100000;
  box-shadow: -10px 0 30px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  transition: right 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-side-menu.open,
.mobile-side-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-close {
  background: rgba(255,255,255,0.1);
  color: #fff;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
}

.mobile-links a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  padding: 12px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-links a:hover {
  background: var(--orange);
  color: #000;
}

.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-nav-backdrop.open,
.mobile-nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================
   CINEMATIC PANORAMIC HERO BANNER (COMPACT & PROFESSIONAL)
   ========================================================== */
.hero-slider-section {
  padding-top: 26px;
  margin-bottom: 22px;
  width: 100%;
}

.hero-panoramic-card {
  position: relative;
  width: 100%;
  aspect-ratio: 1376 / 525;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(2, 23, 17, 0.18);
  background: #032018;
  display: block;
  line-height: 0;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.hero-panoramic-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(2, 23, 17, 0.24);
}

.hero-panoramic-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  border-radius: 16px;
  transition: opacity 0.25s ease;
}

.hero-slider-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: 
    radial-gradient(circle at 75% 30%, rgba(212, 175, 55, 0.28) 0%, transparent 55%),
    radial-gradient(circle at 25% 70%, rgba(16, 185, 129, 0.2) 0%, transparent 60%),
    linear-gradient(130deg, #021711 0%, #06382b 40%, #0a4737 75%, #021a14 100%);
  min-height: 220px;
  box-shadow: 0 10px 30px rgba(3, 32, 24, 0.28);
  display: flex;
  align-items: center;
}

.hero-banner-inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  align-items: center;
  padding: 24px 28px;
  width: 100%;
  gap: 16px;
  position: relative;
  z-index: 2;
}

.hero-left-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.hero-mini-car-badge {
  font-size: 26px;
  filter: drop-shadow(0 2px 6px rgba(212, 175, 55, 0.6));
}

.hero-text-block {
  display: flex;
  flex-direction: column;
}

.hero-brand-logo h1 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3.2vw, 32px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.hero-brand-logo h1 span {
  color: var(--accent);
}

.hero-subtitle {
  font-family: var(--font-main);
  font-size: 11px;
  color: #f0d57d;
  letter-spacing: 0.8px;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 3px;
  margin-bottom: 14px;
}

.hero-cta-btn {
  background: var(--accent-gradient);
  color: #032018;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(212, 175, 55, 0.55);
}

.hero-right-col {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
}

.hero-car-img {
  width: auto;
  max-width: 300px;
  height: auto;
  max-height: 195px;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.45));
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.hero-banner-overlay {
  display: none !important;
}

/* Hero Banner Content Overlay for Dynamic Slides (Hidden as requested) */
.hero-banner-content-overlay {
  display: none !important;
}

.hero-overlay-title {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.8vw, 32px);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 4px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
  max-width: 90%;
  text-align: center;
  pointer-events: auto;
}

.hero-overlay-title span {
  color: #d4af37;
  text-shadow: 0 0 16px rgba(212, 175, 55, 0.4);
}

.hero-overlay-subtitle {
  font-family: var(--font-main);
  font-size: clamp(11px, 1.25vw, 14px);
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin: 0 0 8px 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9);
  max-width: 90%;
  line-height: 1.3;
  text-align: center;
  pointer-events: auto;
}

.hero-overlay-cta-wrap {
  pointer-events: auto;
  display: flex;
  justify-content: center;
}

.hero-overlay-cta {
  background: linear-gradient(135deg, #ffe082 0%, #d4af37 50%, #b89020 100%);
  color: #032018;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 12px;
  padding: 6px 18px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  box-shadow: 0 4px 14px rgba(212, 175, 55, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-panoramic-card:hover .hero-overlay-cta {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.65);
}

@media (max-width: 768px) {
  .hero-banner-content-overlay {
    padding: 14px 16px 0 16px;
    background: linear-gradient(180deg, rgba(2, 23, 17, 0.9) 0%, rgba(2, 23, 17, 0.58) 42%, transparent 80%);
  }
  .hero-overlay-title {
    font-size: clamp(14px, 3.4vw, 20px);
    margin-bottom: 2px;
    max-width: 95%;
  }
  .hero-overlay-subtitle {
    font-size: 9.5px;
    margin-bottom: 6px;
    max-width: 95%;
  }
  .hero-overlay-cta {
    font-size: 9.5px;
    padding: 4px 12px;
    border-radius: 5px;
  }
}

@media (max-width: 480px) {
  .hero-banner-content-overlay {
    padding: 8px 10px 0 10px;
  }
  .hero-overlay-title {
    font-size: 12.5px;
    line-height: 1.15;
    margin-bottom: 2px;
  }
  .hero-overlay-subtitle {
    font-size: 8.5px;
    line-height: 1.2;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .hero-overlay-cta {
    font-size: 8.5px;
    padding: 3px 8px;
    border-radius: 4px;
  }
}


.banner-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: rgba(3, 32, 24, 0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  border: 1.5px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  transition: all 0.2s ease;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  opacity: 0.85;
}

.banner-nav-btn:hover {
  background: #06382b;
  border-color: #d4af37;
  color: #d4af37;
  transform: translateY(-50%) scale(1.08);
  opacity: 1;
}

.banner-nav-prev {
  left: 12px;
  padding-right: 2px;
}

.banner-nav-next {
  right: 12px;
  padding-left: 2px;
}

@media (max-width: 640px) {
  .banner-nav-btn {
    width: 30px;
    height: 30px;
    font-size: 20px;
    background: rgba(3, 32, 24, 0.55);
  }
  .banner-nav-prev { left: 8px; }
  .banner-nav-next { right: 8px; }
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 6;
  background: rgba(3, 32, 24, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.25s ease;
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.slider-dot.active {
  background: #d4af37;
  width: 22px;
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.6);
}

/* ==========================================================
   QUICK CIRCULAR ACTION BUTTONS (EXACT 5 CIRCLES)
   ========================================================== */
.quick-circle-section {
  margin-bottom: 22px;
}

.quick-circle-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  align-items: flex-start;
  padding: 6px 0 10px;
}

.circle-btn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  border: none;
}

.circle-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--primary-dark);
  box-shadow: 0 4px 12px rgba(6, 56, 43, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--accent);
}

.circle-icon-box .c-svg {
  width: 28px;
  height: 28px;
}

.circle-btn-item:hover .circle-icon-box {
  transform: translateY(-3px) scale(1.06);
  background: var(--primary-light);
  border-color: var(--accent);
}

.circle-label {
  font-size: 11px;
  font-weight: 700;
  color: #1e293b;
  text-align: center;
  white-space: nowrap;
  letter-spacing: -0.2px;
  margin-top: 6px;
}

/* ==========================================================
   3 FEATURE HIGHLIGHT CARDS (3 KOLOM, JIKA LEBIH DARI 3 BERI PANAH)
   ========================================================== */
:root {
  --fc-gap: 8px;
}

.feature-cards-section {
  margin-bottom: 20px;
  width: 100%;
  position: relative;
}

.feature-cards-box {
  background: #ffffff;
  border: 1.5px solid #d1d5db;
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.feature-cards-viewport {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
}

.feature-cards-grid,
.feature-cards-track {
  display: flex;
  gap: var(--fc-gap, 8px);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
  width: 100%;
}

/* Setiap kartu tepat 1/3 lebar dari 3 kolom yang terlihat */
.feature-card-item {
  flex: 0 0 calc((100% - (var(--fc-gap, 8px) * 2)) / 3);
  width: calc((100% - (var(--fc-gap, 8px) * 2)) / 3);
  box-sizing: border-box;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 105px;
  background: #021a14;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
  border: 1.5px solid #cbd5e1;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  user-select: none;
  display: block;
}

.feature-card-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(2, 26, 20, 0.8) 0%, rgba(2, 26, 20, 0.15) 50%, transparent 75%);
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
}

.feature-card-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  border-color: var(--accent);
}

.feature-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.feature-card-item:hover .feature-card-img {
  transform: scale(1.06);
}

.feature-card-badge {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(6, 56, 43, 0.94);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  padding: 3.5px 12px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid #d4af37;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  letter-spacing: 0.3px;
  z-index: 2;
  transition: all 0.2s ease;
}

.feature-card-item:hover .feature-card-badge {
  background: #06382b;
  border-color: #f0d57d;
  color: #f0d57d;
}

/* Tombol Arah Panah Navigasi */
.feature-card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(6, 56, 43, 0.92);
  border: 1.5px solid #d4af37;
  color: #d4af37;
  font-size: 18px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 15;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  transition: all 0.2s ease;
  line-height: 1;
  padding: 0;
  user-select: none;
  touch-action: manipulation;
}

.feature-card-arrow:hover {
  background: #06382b;
  color: #ffffff;
  border-color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.feature-card-prev {
  left: 4px;
  padding-right: 1px;
}

.feature-card-next {
  right: 4px;
  padding-left: 1px;
}

/* Responsif Mobile (HP): Tetap Sejajar 3 Kartu Sempurna Seperti di Desktop */
@media (max-width: 640px) {
  :root {
    --fc-gap: 6px;
  }
  .feature-cards-section {
    margin-bottom: 16px;
  }
  .feature-cards-box {
    padding: 5px;
    border-radius: 14px;
  }
  .feature-card-item {
    height: 86px;
    border-radius: 10px;
    border-width: 1px;
  }
  .feature-card-badge {
    font-size: 9px;
    font-weight: 800;
    padding: 2.5px 8px;
    bottom: 5px;
    border-radius: 16px;
  }
  .feature-card-arrow {
    width: 22px;
    height: 22px;
    font-size: 15px;
    background: rgba(6, 56, 43, 0.94);
  }
  .feature-card-prev {
    left: 2px;
  }
  .feature-card-next {
    right: 2px;
  }
}

@media (max-width: 380px) {
  .feature-card-item {
    height: 78px;
    border-radius: 8px;
  }
  .feature-card-badge {
    font-size: 7.5px;
    padding: 2px 6px;
    bottom: 4px;
  }
}

/* ==========================================================
   NOTICE / PROFILE ANNOUNCEMENT BOX (LIGHT BLUE CARD)
   ========================================================== */
.notice-box-section {
  margin-bottom: 24px;
}

.notice-box {
  background: #eaf5f0;
  border: 1.5px solid #b5ded1;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
  color: var(--primary);
  box-shadow: 0 4px 14px rgba(6, 56, 43, 0.08);
}

.notice-box-content {
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.55;
  color: var(--primary-dark);
}

.notice-brand-tag {
  background: var(--primary);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 5px;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-right: 8px;
  vertical-align: baseline;
}

.notice-btn-review {
  display: none !important;
}

/* ==========================================================
   SERVICES SECTION (LAYANAN KAMI)
   ========================================================== */
.services-section {
  padding-bottom: 28px;
}

.services-header-bar {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
}

.services-sub-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}

.services-title-label {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.services-header-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  max-width: 650px;
  line-height: 1.45;
  margin-top: 2px;
}

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

.service-card-public {
  background: #ffffff;
  border: 1.5px solid var(--border-line);
  border-radius: var(--radius-lg);
  padding: 22px 18px 18px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(6, 56, 43, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-public::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-public:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(6, 56, 43, 0.12);
}

.service-card-public:hover::before {
  opacity: 1;
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.service-card-icon {
  font-size: 24px;
  line-height: 1;
}

.service-card-number {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #cbd5e1;
  letter-spacing: -0.5px;
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}

.service-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
  flex-grow: 1;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #f4fbf8;
  color: var(--primary);
  border: 1.5px solid #bbf7d0;
  padding: 9px 14px;
  border-radius: var(--radius-md);
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.service-card-btn:hover {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(6, 56, 43, 0.22);
}

.service-card-btn svg {
  transition: transform 0.2s ease;
}

.service-card-btn:hover svg {
  transform: translateX(4px);
}

/* ==========================================================
   ARMADA CATALOG SECTION (POSTER CARDS)
   ========================================================== */
.armada-section {
  padding-bottom: 40px;
}

.armada-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
  border-bottom: 1.5px solid #cbd5e1;
  padding-bottom: 10px;
}

.section-title-label {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #475569;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

/* Search & Filters */
.catalog-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-box-wrap {
  position: relative;
  min-width: 220px;
}

.search-input {
  width: 100%;
  padding: 9px 12px 9px 34px;
  border-radius: 999px;
  border: 1px solid #cbd5e1;
  background: #f8fafc;
  font-size: 13px;
  transition: all 0.2s ease;
}

.search-input:focus {
  border-color: var(--navy);
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(1, 28, 83, 0.1);
}

.search-icon-inside {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
  pointer-events: none;
}

.category-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding: 2px 0;
}

.category-pills::-webkit-scrollbar {
  display: none;
}

.cat-pill {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.2s;
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

/* Posters Grid (2 Columns on mobile / 4 Columns on desktop) */
.cars-poster-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 900px) {
  .cars-poster-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }
}

/* Individual Poster Card (Clean rounded card with square poster on top) */
.poster-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.poster-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(1, 28, 83, 0.12);
}

.poster-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e2e8f0;
  position: relative;
}

.poster-car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.25s ease;
}

.poster-card:hover .poster-car-image {
  transform: scale(1.03);
}

.poster-card-body {
  padding: 12px 14px 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 8px;
  background: #ffffff;
}

.car-display-title {
  font-family: var(--font-main);
  font-size: 13.5px;
  font-weight: 600;
  color: #334155;
  line-height: 1.35;
  margin: 0;
  min-height: 36px;
}

.poster-card-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.poster-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.car-price-main {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: #06382b;
  letter-spacing: -0.02em;
}

.btn-poster-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

/* Primary Luxury Emerald button for car detail */
.btn-poster-primary {
  background: linear-gradient(135deg, #06382b 0%, #0d523f 100%);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(6, 56, 43, 0.2);
  border: 1px solid rgba(212, 175, 55, 0.35);
}

.btn-poster-primary:hover {
  background: linear-gradient(135deg, #0d523f 0%, #06382b 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(6, 56, 43, 0.3);
  color: #f5df8e;
}

.btn-poster-primary i {
  font-size: 10px;
  transition: transform 0.2s;
}

.btn-poster-primary:hover i {
  transform: translateX(2px);
}

/* WhatsApp Green button for Hubungi Admin */
.btn-poster-wa {
  width: 100%;
  padding: 7px 10px;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 11.5px;
  font-weight: 800;
}

.btn-poster-wa:hover {
  background: linear-gradient(135deg, #20ba5a 0%, #0e7065 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.38);
  color: #ffffff;
}

.btn-poster-wa i {
  font-size: 13px;
}

.poster-action-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-top: 14px;
}

.btn-book-wa {
  background: #25d366;
  color: #ffffff;
  font-weight: 800;
  font-size: 13px;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s;
}

.btn-book-wa:hover {
  background: #1eb956;
}

.btn-detail-car {
  background: #f8fafc;
  color: var(--navy);
  border: 1px solid #cbd5e1;
  font-weight: 700;
  font-size: 12px;
  padding: 8px;
  border-radius: 8px;
  text-align: center;
  transition: all 0.2s;
}

.btn-detail-car:hover {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
}

/* ==========================================================
   INTERACTIVE MODAL POPUPS (S&K, REKENING, TESTI, ALAMAT)
   ========================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  background: #ffffff;
  border-radius: 16px;
  width: min(580px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}

.modal-overlay.active .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  background: var(--navy);
  color: #ffffff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: sticky;
  top: 0;
  z-index: 10;
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-close-btn {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close-btn:hover {
  background: rgba(255,255,255,0.3);
}

.modal-body {
  padding: 24px;
  font-size: 14px;
  color: #334155;
  line-height: 1.6;
}

/* Modal Content Styles */
.bank-card-item {
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bank-meta h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
}

.bank-meta p {
  font-size: 18px;
  font-family: monospace;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1px;
}

.bank-meta span {
  font-size: 12px;
  color: #64748b;
}

.btn-copy-acc {
  background: var(--navy);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.btn-copy-acc:hover {
  background: var(--orange);
  color: #000;
}

.sk-list-box {
  padding-left: 20px;
  margin-bottom: 16px;
}

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

/* ==========================================================
   CAR BOOKING DETAIL MODAL (12 JAM & 24 JAM TABS)
   ========================================================== */
.modal-dialog-car {
  width: min(520px, 100%);
  border-radius: 16px;
  max-height: 90vh;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-car-body {
  padding: 16px 18px 30px;
}

.modal-car-img-wrap {
  width: 100%;
  max-height: 200px;
  background: radial-gradient(circle, #f8fafc 0%, #edf2f7 100%);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-bottom: 14px;
}

.modal-car-img {
  max-height: 180px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.modal-car-summary {
  text-align: center;
  margin-bottom: 12px;
}

.modal-car-active-price {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  color: #334155;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}

.modal-car-short-desc {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.5;
  max-width: 440px;
  margin: 0 auto 4px;
}

.btn-wa-svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-booking-quick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
  transition: all 0.2s ease;
}

.btn-booking-quick:hover {
  background: #1eb954;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* Tabs Switcher */
.duration-tabs-wrapper {
  margin-top: 10px;
}

.duration-tabs-nav {
  display: flex;
  gap: 4px;
}

.duration-tab-btn {
  flex: 1;
  padding: 10px 14px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  border-radius: 8px 8px 0 0;
  background: #f1f5f9;
  color: #475569;
  border: 1.5px solid #cbd5e1;
  border-bottom: none;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
}

.duration-tab-btn.active {
  background: #011c53;
  color: #ff9800;
  border-color: #011c53;
  font-weight: 900;
}

.duration-tab-content-box {
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 0 0 12px 12px;
  padding: 16px 16px 20px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.duration-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 16px;
}

.duration-spec-table tr:nth-child(even) {
  background: #f8fafc;
}

.duration-spec-table tr:nth-child(odd) {
  background: #ffffff;
}

.duration-spec-table th,
.duration-spec-table td {
  padding: 8px 12px;
  font-size: 13.5px;
  line-height: 1.4;
  vertical-align: middle;
}

.duration-spec-table th {
  font-weight: 800;
  color: #334155;
  text-align: left;
}

.duration-spec-table td {
  color: #475569;
}

.badge-tarif-gold {
  background: #ff9800;
  color: #000000;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 6px;
  display: inline-block;
  box-shadow: 0 2px 6px rgba(255, 152, 0, 0.35);
}

.table-purpose-select-wrap {
  position: relative;
  width: 100%;
}

.table-purpose-select {
  width: 100%;
  max-width: 100%;
  padding: 7px 28px 7px 10px;
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 600;
  color: #06382b;
  background-color: #f8fafc;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2306382b' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  border: 1.5px solid #06382b;
  border-radius: 8px;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(6, 56, 43, 0.08);
}

.table-purpose-select:focus {
  border-color: #ff9800;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.25);
}

/* Sticky Booking Button in Car Modal */
.modal-car-sticky-footer {
  position: sticky;
  bottom: -20px;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 0 4px;
  margin-top: 10px;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.btn-booking-main {
  width: 100%;
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 13px 20px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(18, 140, 126, 0.35);
  transition: all 0.2s ease;
  margin-top: 0;
}

.btn-booking-main:hover {
  background: linear-gradient(135deg, #1fa855 0%, #0d6b60 100%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 140, 126, 0.45);
}

.car-detail-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}

.car-detail-table th, 
.car-detail-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #e2e8f0;
  text-align: left;
  font-size: 13.5px;
}

.car-detail-table th {
  background: #f8fafc;
  color: var(--navy);
  font-weight: 800;
}

.testi-review-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}

.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.testi-author {
  font-weight: 800;
  color: var(--navy);
  font-size: 14px;
}

.testi-stars {
  color: #f59e0b;
}

/* ==========================================================
   FOOTER (NAVY THEME - COMPACT & CLEAN)
   ========================================================== */
.site-footer {
  background: var(--navy-dark);
  color: #ffffff;
  padding: 26px 0 16px;
  border-top: 2px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-col p {
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 4px;
}

.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  align-items: center;
}

.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-social-btn .social-svg {
  width: 17px;
  height: 17px;
}

.footer-social-btn:hover {
  transform: translateY(-2px);
  color: #ffffff;
}

.footer-social-btn.btn-ig:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #dc2743;
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.footer-social-btn.btn-fb:hover {
  background: #1877f2;
  border-color: #1877f2;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.4);
}

.footer-social-btn.btn-tiktok:hover {
  background: #000000;
  border-color: #fe2c55;
  box-shadow: 0 4px 12px rgba(254, 44, 85, 0.4);
}

.footer-social-btn.btn-yt:hover {
  background: #ff0000;
  border-color: #ff0000;
  box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #64748b;
  font-size: 11px;
  text-align: center;
}

.footer-admin-link {
  display: none !important;
}

/* Floating WhatsApp Admin */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 22px;
  z-index: 999990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.18);
  border: 2px solid rgba(255,255,255,0.3);
  transition: transform .2s ease, box-shadow .2s ease;
  font-family: 'Manrope', sans-serif;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37,211,102,0.55);
}

.wa-icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.wa-icon-wrapper svg {
  width: 24px;
  height: 24px;
  fill: #25d366;
}

.wa-pulse {
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  background: rgba(37,211,102,0.4);
  animation: waPulse 2s infinite cubic-bezier(0.24,0,0.38,1);
  z-index: -1;
}

@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 0.8; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

.wa-float-content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.wa-float-title {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.2px;
}

.wa-float-status {
  font-size: 11px;
  color: rgba(255,255,255,0.95);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wa-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  animation: waBlink 1.4s infinite ease-in-out;
}

@keyframes waBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ==========================================================
   FIXED BOTTOM MOBILE NAVIGATION BAR (RYAN NOVA THEME)
   ========================================================== */
body {
  padding-bottom: 72px;
}

.fixed-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--primary-dark);
  z-index: 99998;
  box-shadow: 0 -3px 18px rgba(0, 0, 0, 0.35);
}

.bottom-nav-accent-line {
  height: 3px;
  background: linear-gradient(90deg, #b8860b 0%, #d4af37 35%, #f5df8e 65%, #b8860b 100%);
  width: 100%;
}

.bottom-nav-inner {
  max-width: 600px;
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  position: relative;
  padding: 0 4px;
}

.bottom-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  flex: 1;
  gap: 2px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px 0;
}

.bottom-nav-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.bottom-nav-icon .b-icon {
  width: 22px;
  height: 22px;
}

.bottom-nav-label {
  font-size: 9.5px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.2px;
  line-height: 1;
}

.bottom-nav-item.center-home-item {
  position: relative;
}

.bottom-nav-home-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-gradient);
  border: 3.5px solid var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  transform: translateY(-15px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.bottom-nav-home-btn:hover {
  transform: translateY(-17px) scale(1.06);
  background: #f5df8e;
}

.bottom-nav-home-btn .home-svg {
  width: 26px;
  height: 26px;
  fill: #000000;
}

/* ==========================================================
   RESPONSIVE BREAKPOINTS (TABLET & MOBILE)
   ========================================================== */
@media (max-width: 992px) {
  .desktop-menu { display: none; }
  .mobile-hamburger { display: flex; }
  .hero-banner-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-left-col { align-items: center; width: 100%; }
  .hero-right-col { width: 100%; margin-top: 8px; }
  .hero-car-img { width: auto; max-width: 250px; height: auto; max-height: 185px; border-radius: 12px; }
  .feature-cards-row, .feature-cards-track.grid-mode { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cars-poster-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .footer-grid { grid-template-columns: 1.2fr 1.35fr 1fr; gap: 12px; }
}

@media (max-width: 640px) {
  .content-container { padding: 0 12px; }
  .nav-bar,
  .header-inner { padding: 10px 14px; min-height: 72px; height: auto; }
  .brand-name { font-size: 19px; }
  .brand-icon, .brand-logo-icon { width: 54px; height: 54px; font-size: 26px; }
  .brand-icon .header-car-svg,
  .brand-logo-icon .header-car-svg { width: 36px !important; height: 26px !important; }
  .mobile-hamburger { display: inline-flex; padding: 5px 9px; gap: 4px; border-radius: 7px; }
  .hamburger-icon { font-size: 15px; }
  .hamburger-text { font-size: 10px; }
  .hero-slider-section { padding-top: 16px; margin-bottom: 16px; }
  .hero-panoramic-card { border-radius: 12px; box-shadow: 0 6px 20px rgba(2, 23, 17, 0.18); }
  .hero-panoramic-img { border-radius: 12px; }
  .hero-banner-inner { padding: 16px 14px 12px; gap: 10px; }
  .hero-cta-btn { width: 100%; max-width: 320px; justify-content: center; font-size: 12px; padding: 9px 16px; }
  .hero-right-col { width: 100%; margin-top: 4px; }
  .hero-car-img { width: auto; max-width: 210px; height: auto; max-height: 175px; object-fit: contain; border-radius: 10px; box-shadow: 0 4px 14px rgba(0,0,0,0.3); }
  .quick-circle-row {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 4px !important;
    padding: 4px 0 8px !important;
    width: 100% !important;
  }
  .circle-btn-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
  }
  .circle-icon-box {
    width: 46px !important;
    height: 46px !important;
    border-width: 2.5px !important;
  }
  .circle-icon-box .c-svg {
    width: 22px !important;
    height: 22px !important;
  }
  .circle-label {
    font-size: 9px !important;
    letter-spacing: -0.3px !important;
    white-space: nowrap !important;
  }
  .feature-cards-row, .feature-cards-track.grid-mode { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .feature-pill-card { height: 76px; width: 136px; flex: 0 0 136px; }
  .feature-cards-track.grid-mode .feature-pill-card { height: 75px; width: auto; flex: 1 1 0; min-width: 0; }
  .feature-card-badge { font-size: 9px; padding: 3px 6px; }
  .notice-box { padding: 12px 14px; gap: 8px; border-radius: 14px; }
  .notice-box-content { font-size: 11.5px; line-height: 1.4; }
  .notice-brand-tag { font-size: 10px; padding: 2px 6px; }
  .notice-btn-review { font-size: 11px; padding: 5px 14px; }
  .services-section { padding-bottom: 18px; }
  .services-title-label { font-size: 16px; }
  .services-header-desc { font-size: 11px; line-height: 1.35; margin-top: 2px; }
  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .service-card-public { padding: 12px 7px 10px; border-radius: 10px; border-width: 1px; }
  .service-card-top { margin-bottom: 6px; }
  .service-card-icon-wrap { width: 34px; height: 34px; border-radius: 8px; }
  .service-card-icon { font-size: 16px; }
  .service-card-number { font-size: 11px; }
  .service-card-title { font-size: 11px; font-weight: 800; margin-bottom: 4px; line-height: 1.25; }
  .service-card-desc { font-size: 9px; line-height: 1.32; margin-bottom: 8px; color: var(--text-muted); }
  .service-card-btn { padding: 5px 4px; font-size: 9px; font-weight: 700; border-radius: 6px; justify-content: center; gap: 3px; }
  .service-card-btn svg { width: 10px; height: 10px; }
  .cars-poster-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .poster-card { border-radius: 14px; }
  .poster-card-body { padding: 9px 9px 11px; gap: 4px; }
  .car-display-title { font-size: 11.5px; line-height: 1.3; min-height: 30px; }
  .car-price-main { font-size: 13px; }
  .btn-poster-cta { font-size: 11px; padding: 4px 8px; border-radius: 6px; }
  .btn-poster-wa { font-size: 10.5px; padding: 6px 8px; border-radius: 6px; }
  .section-title-label { font-size: 14px; }

  /* Compact 3-column Footer on Mobile */
  .site-footer { padding: 18px 0 12px; }
  .footer-grid {
    grid-template-columns: 1.15fr 1.35fr 0.95fr;
    gap: 8px;
    align-items: start;
    margin-bottom: 12px;
  }
  .footer-col .brand-name { font-size: 13px !important; margin-bottom: 3px !important; }
  .footer-col h4 { font-size: 11px !important; margin-bottom: 4px !important; letter-spacing: 0.2px; }
  .footer-social-links { gap: 6px !important; margin-top: 6px !important; }
  .footer-social-btn { width: 30px !important; height: 30px !important; font-size: 11px !important; }
  .footer-social-btn .social-svg { width: 14px !important; height: 14px !important; }
  .footer-col .cat-pill { padding: 3px 8px !important; font-size: 9px !important; }
  .footer-bottom-bar { padding-top: 8px !important; font-size: 9px !important; }
}

@media (max-width: 380px) {
  .services-grid { gap: 4px; }
  .service-card-public { padding: 8px 5px 8px; border-radius: 8px; }
  .service-card-icon-wrap { width: 28px; height: 28px; border-radius: 6px; }
  .service-card-icon { font-size: 14px; }
  .service-card-number { font-size: 9.5px; }
  .service-card-title { font-size: 10px; }
  .service-card-desc { font-size: 8px; line-height: 1.25; margin-bottom: 6px; }
  .service-card-btn { padding: 4px 2px; font-size: 8px; }
  .service-card-btn svg { display: none; }
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 22px;
  z-index: 999990;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(37,211,102,0.45), 0 4px 12px rgba(0,0,0,0.18);
  border: 2px solid rgba(255,255,255,0.3);
  transition: transform .2s ease, box-shadow .2s ease;
  font-family: var(--font-heading);
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(37,211,102,0.55);
}

.wa-icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  background: #fff;
  color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.wa-text-box {
  display: flex;
  flex-direction: column;
}

.wa-float-title {
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.wa-float-sub {
  font-size: 11px;
  opacity: 0.9;
  line-height: 1.2;
}

/* ==========================================================
   WORDPRESS THEME: WP-LOGIN & WP-ADMIN (PRESERVED)
   ========================================================== */
.wp-login-body{background:#f0f0f1;color:#3c434a;font-family:var(--font-main);font-size:13px;line-height:1.4em;min-height:100vh;display:flex;flex-direction:column;justify-content:center;align-items:center;padding:24px 16px;box-sizing:border-box}
.wp-login-wrap{width:min(340px,100%);margin:0 auto}
.wp-login-logo{text-align:center;margin-bottom:20px}
.wp-login-logo a{display:inline-flex;flex-direction:column;align-items:center;text-decoration:none;color:#1d2327}
.wp-logo-circle{width:76px;height:76px;border-radius:50%;background:#1d2327;display:flex;align-items:center;justify-content:center;color:#fff;font:800 32px 'Plus Jakarta Sans',sans-serif;box-shadow:0 4px 12px rgba(0,0,0,0.1);margin-bottom:8px;transition:background .2s}
.wp-logo-circle:hover{background:#2271b1}
.wp-logo-text{font:800 16px 'Plus Jakarta Sans',sans-serif;letter-spacing:-0.5px;color:#1d2327}
.wp-logo-text span{color:#2271b1;font-weight:600}

/* WP Notices */
.wp-notice{background:#fff;border-left:4px solid #72aee6;box-shadow:0 1px 1px 0 rgba(0,0,0,0.05);margin:0 0 16px;padding:12px;font-size:13px;line-height:1.5}
.wp-notice-error{border-left-color:#d63638}
.wp-notice-success{border-left-color:#00a32a}
.wp-notice-info{border-left-color:#72aee6}

/* WP Form Card */
.wp-login-card{background:#fff;border:1px solid #c3c4c7;box-shadow:0 1px 3px rgba(0,0,0,0.04);padding:24px 20px;margin-bottom:16px;border-radius:3px}
.wp-login-card label{display:block;font-size:14px;color:#3c434a;margin-bottom:6px;font-weight:400}
.wp-input{width:100%;font-size:16px;line-height:1.4;padding:8px 10px;margin:0 0 16px 0;background-color:#fff;border:1px solid #8c8f94;box-shadow:0 0 0 transparent;border-radius:4px;box-sizing:border-box;transition:box-shadow .1s linear,border-color .1s linear}
.wp-input:focus{border-color:#2271b1;box-shadow:0 0 0 1px #2271b1;outline:2px solid transparent}
.wp-pass-wrapper{position:relative}
.wp-pass-toggle{position:absolute;right:8px;top:50%;transform:translateY(-50%);background:none;border:none;color:#50575e;cursor:pointer;padding:6px;font-size:15px}
.wp-remember{display:flex;align-items:center;gap:6px;font-size:12px;color:#50575e;margin-bottom:16px}
.wp-remember input[type="checkbox"]{margin:0;cursor:pointer}
.wp-submit-row{display:flex;justify-content:space-between;align-items:center;margin-top:10px}

/* WP Buttons */
.button-primary{background:#2271b1;border-color:#2271b1;color:#fff;text-decoration:none;text-shadow:none;display:inline-block;font-size:13px;line-height:2.15;min-height:36px;margin:0;padding:0 14px;cursor:pointer;border-width:1px;border-style:solid;border-radius:3px;white-space:nowrap;box-sizing:border-box;font-weight:600;transition:all .15s ease-in-out}
.button-primary:hover{background:#135e96;border-color:#135e96;color:#fff}
.button-primary.button-large{min-height:38px;line-height:2.4;padding:0 16px}
.button-secondary{background:#f6f7f7;color:#2271b1;border:1px solid #2271b1;border-radius:3px;padding:6px 12px;font-weight:600;font-size:13px;cursor:pointer;min-height:34px}
.button-secondary:hover{background:#f0f0f1;border-color:#0a4b78;color:#0a4b78}

/* WP Login Bottom Links */
.wp-login-links{text-align:left;font-size:13px}
.wp-login-links p{margin:0 0 8px}
.wp-login-links a{color:#50575e;text-decoration:none;transition:color .1s ease}
.wp-login-links a:hover{color:#2271b1}

/* OTP Simulation Popover */
.otp-badge-box{background:#f0f6fc;border:1px dashed #2271b1;border-radius:6px;padding:12px;margin-bottom:16px;font-size:12px;color:#1e3a8a}
.otp-badge-code{font-family:monospace;font-size:20px;font-weight:800;color:#2271b1;letter-spacing:3px}

/* ==========================================================
   WORDPRESS DASHBOARD (WP-ADMIN)
   ========================================================== */
.wp-admin-body{background:#f0f0f1;color:#3c434a;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;margin:0;padding:0}
#wpadminbar{position:fixed;top:0;left:0;width:100%;height:34px;background:#1d2327;color:#c3c4c7;z-index:99999;display:flex;justify-content:space-between;align-items:center;padding:0 10px;box-sizing:border-box;font-size:13px}
#wpadminbar a{color:#c3c4c7;text-decoration:none;display:flex;align-items:center;gap:6px;height:34px;padding:0 8px;transition:background .15s,color .15s}
#wpadminbar a:hover{background:#2c3338;color:#72aee6}
.wp-bar-left,.wp-bar-right{display:flex;align-items:center}
.wp-avatar-mini{width:22px;height:22px;border-radius:50%;background:#475569;display:inline-block;color:#fff;text-align:center;line-height:22px;font-size:11px;font-weight:700}
.wp-mobile-menu-btn{display:none;background:#2c3338;border:1px solid #475569;color:#fff;font-size:18px;width:32px;height:32px;border-radius:4px;cursor:pointer;align-items:center;justify-content:center;margin-right:6px}

/* WP Sidebar Admin Menu */
#adminmenuwrap{position:fixed;top:34px;bottom:0;left:0;width:170px;background:#1d2327;z-index:9990;overflow-y:auto;transition:transform .25s ease}
#adminmenu{list-style:none;margin:0;padding:0}
#adminmenu li{margin:0;padding:0}
#adminmenu a.menu-item{display:flex;align-items:center;gap:10px;color:#c3c4c7;text-decoration:none;padding:12px 14px;font-size:13px;line-height:18px;border-left:4px solid transparent;transition:all .15s}
#adminmenu a.menu-item:hover{background:#135e96;color:#fff}
#adminmenu li.current a.menu-item{background:#2271b1;color:#fff;border-left-color:#72aee6;font-weight:600}
#adminmenu .wp-menu-icon{font-size:16px;width:20px;text-align:center}

/* WP Content Area */
#wpcontent{margin-left:170px;padding-top:34px;min-height:100vh}
#wpbody{padding:20px 24px}
.wp-heading-inline{font-size:23px;font-weight:400;margin:0 8px 16px 0;line-height:1.3;display:inline-block;color:#1d2327}
.page-title-action{display:inline-block;text-decoration:none;font-size:13px;line-height:2.2;height:auto;padding:1px 10px;cursor:pointer;border:1px solid #2271b1;border-radius:3px;background:#f6f7f7;color:#2271b1;vertical-align:baseline;font-weight:600}
.page-title-action:hover{background:#f0f0f1;border-color:#0a4b78;color:#0a4b78}

/* WP Metabox (Postbox) */
.postbox{background:#fff;border:1px solid #c3c4c7;box-shadow:0 1px 1px rgba(0,0,0,0.04);margin-bottom:20px;border-radius:3px}
.postbox-header{border-bottom:1px solid #c3c4c7;padding:12px 16px;display:flex;justify-content:space-between;align-items:center;background:#fff;flex-wrap:wrap;gap:10px}
.postbox-header h2{font-size:14px;font-weight:600;margin:0;line-height:1.4;color:#1d2327}
.postbox .inside{padding:16px}

/* WP Form Elements in Dashboard */
.form-table{width:100%;border-collapse:collapse}
.form-table th{width:220px;padding:15px 10px 15px 0;font-weight:600;text-align:left;vertical-align:top;font-size:14px;color:#1d2327}
.form-table td{padding:15px 10px;vertical-align:middle}
.regular-text{width:25em;max-width:100%;padding:8px 10px;border:1px solid #8c8f94;border-radius:4px;font-size:15px;box-sizing:border-box}
.large-text{width:100%;max-width:100%;padding:8px 10px;border:1px solid #8c8f94;border-radius:4px;font-size:15px;box-sizing:border-box}
.description{color:#646970;font-size:13px;font-style:italic;margin-top:4px}

/* Car Card Editor Styles */
.car-card-editor{background:#f8fafc;border:1px solid #cbd5e1;border-radius:8px;padding:18px;margin-bottom:18px;display:grid;grid-template-columns:180px 1fr;gap:20px;align-items:start}
.car-photo-box{display:flex;flex-direction:column;gap:8px}
.car-preview-thumb{width:100%;height:130px;border-radius:8px;background:#e2e8f0 center/cover no-repeat;border:1px solid #cbd5e1}
.upload-btn-label{display:flex;align-items:center;justify-content:center;gap:6px;background:#1e293b;color:#fff;font-size:12px;font-weight:700;padding:10px 12px;border-radius:6px;cursor:pointer;text-align:center}
.upload-btn-label:hover{background:#000}
.upload-btn-label input[type="file"]{display:none}
.url-toggle-btn{background:none;border:none;color:#2271b1;font-size:12px;cursor:pointer;text-decoration:underline;padding:2px 0}
.car-fields-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:12px}
.car-fields-grid .field-full{grid-column:span 2}
.btn-delete-car{background:#fee2e2;color:#b91c1c;border:1px solid #fecaca;border-radius:6px;padding:8px 14px;font-weight:700;font-size:12px;cursor:pointer}

/* Hero Uploader Preview */
.hero-image-preview{height:180px;border-radius:8px;background:#e2e8f0 center/cover no-repeat;border:1px solid #cbd5e1}

/* Backdrop for Mobile Admin Sidebar */
.wp-sidebar-backdrop{display:none;position:fixed;inset:0;background:rgba(0,0,0,0.5);z-index:9985;backdrop-filter:blur(2px)}
.wp-sidebar-backdrop.mobile-open{display:block}

/* ==========================================================
   WP-ADMIN RESPONSIVE: TABLET & MOBILE (MAX-WIDTH: 782px)
   ========================================================== */
@media(max-width:782px){
  .wp-mobile-menu-btn{display:inline-flex}
  #wpadminbar{height:46px;padding:0 8px}
  #wpadminbar a{height:46px;font-size:12px;padding:0 6px}
  .quick-add-btn{display:none}
  .site-title-text{display:none}
  #dbStatusBadge{max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;font-size:10px;padding:3px 6px}
  
  /* Sidebar Drawer */
  #adminmenuwrap{top:46px;width:min(240px,80vw);transform:translateX(-100%);box-shadow:4px 0 18px rgba(0,0,0,0.3)}
  #adminmenuwrap.mobile-open{transform:translateX(0)}
  #wpcontent{margin-left:0;padding-top:46px}
  #wpbody{padding:14px 10px}
  
  /* Forms */
  .form-table th,.form-table td{display:block;width:100%;padding:6px 0}
  .regular-text,.large-text{width:100%;font-size:16px}
  
  /* Car Editor Mobile */
  .car-card-editor{grid-template-columns:1fr;gap:14px;padding:14px}
  .car-fields-grid{grid-template-columns:1fr}
  .car-fields-grid .field-full{grid-column:span 1}
  .btn-delete-car{width:100%;padding:10px}
  
  /* Postbox headers */
  .postbox-header{flex-direction:column;align-items:flex-start}
}

/* ==========================================================
   SIMPLE & MODERN ADMIN ENHANCEMENTS (QUICK TABS & MODAL FLEET)
   ========================================================== */

/* Quick Horizontal Tabs (Desktop only) */
.admin-quick-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 6px 4px 14px 4px;
  margin-bottom: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  border-bottom: 1px solid #e2e8f0;
}
.admin-quick-tabs::-webkit-scrollbar { display: none; }
.quick-tab-btn {
  white-space: nowrap;
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #334155;
  padding: 8px 16px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}
.quick-tab-btn:hover {
  background: #f8fafc;
  border-color: #94a3b8;
}
.quick-tab-btn.active {
  background: #2271b1;
  color: #fff;
  border-color: #2271b1;
  box-shadow: 0 2px 8px rgba(34,113,177,0.3);
}

/* Mobile Quick Navigation Bar (Sleek, Compact & Ringkas) */
.admin-mobile-nav-bar {
  display: none;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  border: 1.5px solid #cbd5e1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.btn-mobile-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #2271b1;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(34, 113, 177, 0.25);
}

.btn-mobile-nav-toggle:hover {
  background: #135e96;
}

.mobile-tab-select-wrap {
  flex: 1;
  min-width: 0;
}

.mobile-tab-select {
  width: 100%;
  padding: 9px 12px;
  font-size: 13px;
  font-weight: 700;
  color: #1e293b;
  background: #f8fafc;
  border: 1.5px solid #cbd5e1;
  border-radius: 6px;
  outline: none;
  cursor: pointer;
  box-sizing: border-box;
}

.mobile-tab-select:focus {
  border-color: #2271b1;
  background: #ffffff;
}

@media (max-width: 768px) {
  .admin-quick-tabs {
    display: none !important;
  }
  .admin-mobile-nav-bar {
    display: flex;
  }
}

/* Fleet Header & Filter */
.fleet-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
}
.fleet-header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary-add {
  background: #15803d;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(21,128,61,0.25);
  transition: background 0.2s;
}
.btn-primary-add:hover { background: #166534; }
.btn-preset-reset {
  background: #fff;
  color: #475569;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  padding: 9px 14px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-preset-reset:hover { background: #f1f5f9; }

.fleet-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 10px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.fleet-search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 220px;
}
.fleet-search-box input {
  border: none;
  outline: none;
  font-size: 13px;
  width: 100%;
  background: transparent;
}
.fleet-counter {
  font-size: 12px;
  font-weight: 700;
  color: #2271b1;
  background: #eff6ff;
  padding: 4px 12px;
  border-radius: 12px;
  white-space: nowrap;
}

/* Compact Fleet Cards */
.fleet-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 14px;
}
.car-compact-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  transition: all 0.2s ease;
  cursor: pointer;
}
.car-compact-card:hover {
  border-color: #2271b1;
  box-shadow: 0 6px 14px rgba(34,113,177,0.12);
  transform: translateY(-2px);
}
.car-compact-thumb {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  background: #f8fafc center/contain no-repeat;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}
.car-compact-info {
  flex: 1;
  min-width: 0;
}
.car-compact-title {
  font-size: 15px;
  font-weight: 800;
  color: #1e293b;
  margin: 0 0 4px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.car-compact-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.car-compact-badge {
  font-size: 11px;
  font-weight: 700;
  color: #2563eb;
  background: #eff6ff;
  padding: 2px 7px;
  border-radius: 4px;
}
.car-compact-badge.spec {
  color: #059669;
  background: #ecfdf5;
}
.car-compact-price {
  font-size: 12px;
  color: #475569;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.car-compact-price b {
  color: #ea580c;
  font-weight: 800;
}
.car-compact-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.btn-compact-edit {
  flex: 1;
  background: #2271b1;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.btn-compact-edit:hover { background: #135e96; }
.btn-compact-del {
  background: #fff;
  color: #dc2626;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 7px 10px;
  font-size: 12px;
  cursor: pointer;
}
.btn-compact-del:hover {
  background: #fee2e2;
}

/* Modal Popup Edit Mobil */
.admin-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(4px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  overflow-y: auto;
}
.admin-modal-dialog {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 620px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 35px -5px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  animation: modalPop 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.95) translateY(12px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.admin-modal-header {
  padding: 14px 20px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
}
.modal-close-btn {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 4px;
}
.modal-close-btn:hover { color: #0f172a; background: #e2e8f0; }
.admin-modal-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
}
.modal-form-section {
  margin-bottom: 20px;
}
.modal-section-title {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 10px;
}
.modal-photo-row {
  display: flex;
  gap: 16px;
  align-items: center;
}
.modal-photo-preview {
  width: 95px;
  height: 95px;
  border-radius: 8px;
  background: #f8fafc center/contain no-repeat;
  border: 2px dashed #cbd5e1;
  flex-shrink: 0;
}
.modal-upload-btn {
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.modal-upload-btn:hover { background: #1e293b; }
.modal-upload-btn input[type="file"] { display: none; }
.text-toggle-btn {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 2px 0;
}
.modal-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.modal-col-2 {
  grid-column: span 2;
}
.modal-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 4px;
}
.modal-input {
  width: 100%;
  padding: 9px 12px;
  font-size: 14px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  box-sizing: border-box;
  outline: none;
  background: #fff;
}
.modal-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.15);
}
.chip-suggestions {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.chip {
  font-size: 11px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  padding: 3px 8px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
}
.chip:hover {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: #93c5fd;
}
.modal-specs-box {
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 14px;
}
.modal-footer-actions {
  padding: 14px 20px;
  border-top: 1px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.btn-modal-save {
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(37,99,235,0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-modal-save:hover { background: #1d4ed8; }
.btn-modal-cancel {
  background: #fff;
  color: #64748b;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 16px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  cursor: pointer;
}
.btn-modal-cancel:hover { background: #f1f5f9; }

@media(max-width:640px) {
  .modal-grid-2 { grid-template-columns: 1fr; }
  .modal-col-2 { grid-column: span 1; }
  .fleet-grid-container { grid-template-columns: 1fr; }
  .modal-photo-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   FRONTEND: DOKUMENTASI & GALERI PERJALANAN SECTION
   ============================================================ */
.gallery-section {
  max-width: 1200px;
  margin: 36px auto 20px auto;
  padding: 0 16px;
}
.gallery-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.25);
  padding-bottom: 12px;
}
.gallery-sub-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-gold, #d4af37);
  background: rgba(6, 56, 43, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  margin-bottom: 4px;
}
.gallery-desc {
  font-size: 13px;
  color: #64748b;
  margin: 4px 0 0 0;
  line-height: 1.4;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-item-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(6, 56, 43, 0.06);
  border: 1px solid rgba(6, 56, 43, 0.1);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  display: flex;
  flex-direction: column;
}
.gallery-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(6, 56, 43, 0.14);
  border-color: var(--accent-gold, #d4af37);
}
.gallery-thumb-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #032018;
}
.gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-item-card:hover .gallery-img {
  transform: scale(1.06);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3, 32, 24, 0.6) 0%, rgba(3, 32, 24, 0) 60%);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease;
}
.gallery-item-card:hover .gallery-overlay {
  opacity: 1;
}
.gallery-zoom-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.92);
  color: #032018;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: scale(0.85);
  transition: transform 0.25s ease;
}
.gallery-item-card:hover .gallery-zoom-icon {
  transform: scale(1);
}
.gallery-tag-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(3, 32, 24, 0.82);
  backdrop-filter: blur(4px);
  color: #fef08a;
  border: 1px solid rgba(212, 175, 55, 0.5);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 6px;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.gallery-caption-box {
  padding: 12px 14px 14px 14px;
  background: #ffffff;
  flex: 1;
  display: flex;
  align-items: center;
}
.gallery-item-title {
  margin: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media(max-width: 640px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .gallery-thumb-wrap {
    height: 130px;
  }
  .gallery-caption-box {
    padding: 8px 10px 10px 10px;
  }
  .gallery-item-title {
    font-size: 12px;
  }
  .gallery-tag-badge {
    font-size: 9.5px;
    padding: 2px 6px;
  }
}

/* Admin Header Customization Box */
.admin-header-settings-box {
  margin-bottom: 20px;
  border-left: 4px solid #06382b;
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.07);
  border-radius: 6px;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.admin-header-settings-box .header-inner-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.admin-header-settings-box .title-hndle {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-header-settings-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .admin-header-settings-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* Banner Slide Card Editor */
.slide-card-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .slide-card-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

#bannerSlidesEditor [id^="slidePreviewTitle_"] span {
  color: #d4af37 !important;
}

/* ==========================================================
   SEO & FB PIXEL ADMIN STYLES
   ========================================================== */
.seo-admin-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 980px) {
  .seo-admin-grid {
    grid-template-columns: 1fr;
  }
}

/* Google Search Snippet Preview */
.google-snippet-card {
  background: #ffffff;
  border: 1px solid #dfe1e5;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 1px 6px rgba(32, 33, 36, 0.08);
  font-family: Roboto, Arial, sans-serif;
}
.google-snippet-url-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.google-snippet-favicon {
  width: 26px;
  height: 26px;
  background: #f1f3f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.google-snippet-url-box {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.google-snippet-sitename {
  font-size: 13px;
  color: #202124;
  font-weight: 500;
}
.google-snippet-url {
  font-size: 11px;
  color: #4d5156;
}
.google-snippet-title {
  font-size: 18px;
  color: #1a0dab;
  font-weight: 500;
  line-height: 1.3;
  margin: 0 0 6px 0;
  cursor: pointer;
}
.google-snippet-title:hover {
  text-decoration: underline;
}
.google-snippet-desc {
  font-size: 13px;
  color: #4d5156;
  line-height: 1.5;
  margin: 0;
}

/* Social Media Share Preview */
.social-share-preview-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.social-preview-img {
  width: 100%;
  aspect-ratio: 1200 / 630;
  max-height: 160px;
  background: #021a14 center/cover no-repeat;
}
.social-preview-body {
  padding: 12px 14px;
}
.social-preview-domain {
  font-size: 10px;
  color: #64748b;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.social-preview-title {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 4px;
}
.social-preview-desc {
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ==========================================================
   ADMIN TOAST NOTIFICATION POPUP (FLOATING FIXED)
   ========================================================== */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #06382b;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 999999;
  transform: translateY(100px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  border-left: 4px solid #d4af37;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 640px) {
  .toast-notice {
    bottom: 16px;
    right: 14px;
    left: 14px;
    justify-content: center;
    text-align: center;
    font-size: 12.5px;
    padding: 10px 16px;
  }
}


