:root {
  /* Color Palette - Merah Hitam Premium */
  --primary: #e50914;
  --primary-hover: #b8050e;
  --bg-dark: #070707;
  --card-bg: rgba(229, 9, 20, 0.03);
  --border: rgba(229, 9, 20, 0.15);
  --text-main: #f5f5f5;
  --text-muted: #a1a1a1;
  --glass: rgba(20, 0, 0, 0.4);
  --glass-border: rgba(229, 9, 20, 0.2);
  --font-main: "Inter", sans-serif;
  --font-heading: "Outfit", sans-serif;
  --container-max: 1200px;
  --nav-height: 90px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fix for icons (emoticons) animating on page load/refresh */
.lucide,
i[data-lucide],
svg[class*="lucide"] {
  animation: none !important;
  transition: none !important;
}

html {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

body {
  width: 100%;
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  color-scheme: dark;
  margin: 0;
  padding: 0;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}

h1 {
  font-size: 4rem;
  line-height: 1.1;
}

h2 {
  font-size: 2.5rem;
}

span {
  color: var(--primary);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  border: none;
  font-family: var(--font-main);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #8a030b 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: all 0.5s ease;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ff1a26 0%, var(--primary-hover) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 30px rgba(229, 9, 20, 0.6);
}

.btn-primary:hover::after {
  left: 200%;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--glass);
  border-color: var(--primary);
  box-shadow: inset 0 0 10px rgba(229, 9, 20, 0.2);
}

.btn-full {
  width: 100%;
}

/* ---- Secondary Service CTA (Lihat Layanan - Glassmorphism) ---- */
.btn-layanan-cta {
  background: rgba(20, 20, 22, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(229, 9, 20, 0.4);
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 13px 30px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-layanan-cta .cta-arrow-icon {
  width: 19px;
  height: 19px;
  color: var(--primary);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease;
  flex-shrink: 0;
  vertical-align: middle;
}

.btn-layanan-cta:hover {
  background: rgba(229, 9, 20, 0.08);
  border-color: rgba(229, 9, 20, 0.85);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5), 0 0 25px rgba(229, 9, 20, 0.35);
}

.btn-layanan-cta:hover .cta-arrow-icon {
  transform: translateX(5px);
  color: #ff2a36;
}

.btn-layanan-cta:active {
  transform: translateY(0) scale(0.98);
  background: rgba(229, 9, 20, 0.14);
  border-color: var(--primary);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.6), 0 0 30px rgba(229, 9, 20, 0.5);
}

@media (max-width: 640px) {
  .btn-layanan-cta {
    padding: 11px 22px;
    font-size: 0.95rem;
    gap: 8px;
    max-width: 100%;
  }

  .btn-layanan-cta .cta-arrow-icon {
    width: 17px;
    height: 17px;
  }
}

/* ---- Navbar ---- */
.navbar {
  height: auto;
  display: flex;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 95%;
  max-width: 1360px;
  z-index: 1000;
  transition: all 0.4s ease;
  background: rgba(20, 20, 20, 0.65);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.15);
  /* Highlight tipis di atas */
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 15px rgba(229, 9, 20, 0.05);
  /* Shadow lembut + glow merah super halus */
}

.navbar.scrolled {
  top: 10px;
  background: rgba(10, 10, 10, 0.85);
  border-color: rgba(229, 9, 20, 0.15);
  border-top-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(229, 9, 20, 0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 2rem;
  height: 80px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: white;
  letter-spacing: -1px;
}

.brand-logo {
  height: 58px;
  max-height: 58px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height 0.3s ease;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0 auto;
  padding: 0;
  align-items: center;
}

.nav-links>li {
  display: inline-flex;
  align-items: center;
  position: relative;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-family: var(--font-main);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.25px;
  white-space: nowrap;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.25s ease;
  border-radius: 2px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff;
}

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

/* ---- Dropdown Styles ---- */
.dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.dropdown-toggle {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px;
  white-space: nowrap !important;
  cursor: pointer;
}

.dropdown-toggle i,
.dropdown-toggle svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.2;
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.25s ease;
  flex-shrink: 0;
  margin: 0 !important;
}

.dropdown:hover .dropdown-toggle i,
.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(15, 15, 15, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top-color: rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  list-style: none;
  min-width: 200px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 15px rgba(229, 9, 20, 0.05);
  z-index: 100;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
  padding: 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #ddd;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.3px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.dropdown-menu a::after {
  display: none;
  /* Hilangkan garis bawah pada dropdown */
}

.dropdown-menu a:hover {
  background: rgba(229, 9, 20, 0.08);
  color: var(--primary);
  padding-left: 25px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 1.5rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--primary);
  border-radius: 12px;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(229, 9, 20, 0.3);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  letter-spacing: 0.2px;
}

.nav-cta i,
.nav-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke-width: 2.2;
}

.nav-cta .fa-whatsapp,
.nav-cta i.fa-brands {
  width: auto;
  height: auto;
  font-size: 1.15rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.btn .fa-whatsapp,
.btn-primary .fa-whatsapp,
.btn-booking-home .fa-whatsapp,
.btn-booking-plus .fa-whatsapp,
.btn-wc-booking .fa-whatsapp {
  font-size: 1.15em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  vertical-align: -0.05em;
  margin-right: 7px;
  flex-shrink: 0;
}

.nav-cta .fa-whatsapp {
  margin-right: 0;
}

.nav-cta:hover {
  background: #ff1a26;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.45);
}

/* ---- Hamburger Menu ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ---- Glassmorphism ---- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* ---- Hero Section ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-height) + 2rem);
  padding-bottom: 4rem;
  position: relative;
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.7) 45%, rgba(7, 7, 7, 0.1) 100%);
  z-index: 1;
}

.hero-content {
  display: block;
  position: relative;
  z-index: 2;
  width: 100%;
}

@keyframes heroFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes heroBtnEntrance {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-text h1 {
  font-size: 76px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: white;
  letter-spacing: -2px;
  animation: heroFadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) both;
  will-change: opacity, transform;
}

/* ---- Hero Background Video Audio Toggle Button ---- */
.audio-toggle-btn {
  position: absolute;
  bottom: 2.25rem;
  right: 2.5rem;
  z-index: 20;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  outline: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  pointer-events: auto;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.audio-toggle-btn:hover {
  background: rgba(229, 9, 20, 0.85);
  border-color: rgba(229, 9, 20, 0.6);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.5);
  color: #ffffff;
}

.audio-toggle-btn:active {
  transform: scale(0.94);
}

.audio-toggle-btn.is-active {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 0 20px rgba(229, 9, 20, 0.6);
}

.audio-toggle-btn svg,
.audio-toggle-btn i {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
  stroke: currentColor;
  display: block;
}

.hero-text h1 span {
  font-size: inherit;
  color: var(--primary);
}

.hero-text h2 {
  font-size: 24px;
  color: #ddd;
  font-weight: 500;
  margin-bottom: 25px;
  letter-spacing: 0.5px;
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.3s both;
  will-change: opacity;
}

.hero-text p {
  font-size: 21px;
  color: #ccc;
  margin-bottom: 45px;
  max-width: 650px;
  line-height: 1.8;
  animation: heroFadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.6s both;
  will-change: opacity, transform;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

.hero-actions .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1.1rem 2.4rem;
  font-size: 1.15rem;
  border-radius: var(--radius-sm);
}

.hero-actions .btn i,
.hero-actions .btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
  flex-shrink: 0;
}

.hero-actions .btn:nth-child(1) {
  animation: heroBtnEntrance 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 0.8s backwards;
  will-change: opacity, transform;
}

.hero-actions .btn:nth-child(2) {
  animation: heroBtnEntrance 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 1.0s backwards;
  will-change: opacity, transform;
}

.google-review-badge,
a.google-review-badge,
a.google-review-badge:visited {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  padding: 10px 22px;
  background: rgba(15, 15, 15, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(229, 9, 20, 0.3);
  border-radius: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  width: fit-content;
  max-width: 100%;
  color: #fff;
  text-decoration: none;
}

.google-review-badge:hover {
  background: rgba(229, 9, 20, 0.12);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(229, 9, 20, 0.25);
  border-color: rgba(229, 9, 20, 0.55);
  color: #fff;
}

.grb-stars {
  display: flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 1.2s backwards;
  will-change: opacity;
}

.grb-stars i,
.grb-stars svg,
.grb-stars .star-icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  fill: var(--primary);
  stroke: var(--primary);
  flex-shrink: 0;
}

.grb-stars i.filled,
.grb-stars svg.filled,
.grb-stars .star-icon.filled {
  color: var(--primary);
  fill: var(--primary);
  stroke: var(--primary);
}

.grb-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
  text-align: left;
}

.grb-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: #bbb;
  letter-spacing: 0.6px;
  margin-bottom: 2px;
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 1.4s backwards;
  will-change: opacity;
}

.grb-desc {
  font-size: 13px;
  color: #fff;
  white-space: nowrap;
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) 1.6s backwards;
  will-change: opacity;
}

.grb-desc strong {
  color: var(--primary);
  font-weight: 800;
}

.hero-form {
  padding: 2.5rem;
}

.hero-form h3 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.hero-bg-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, var(--bg-dark) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* ---- Tentang Kami ---- */
.tentang-section {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background: var(--bg-dark);
}

.tentang-wrapper {
  padding: 3rem;
  background: linear-gradient(135deg,
      rgba(26, 26, 28, 0.8) 0%,
      rgba(10, 10, 10, 0.9) 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tentang-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tentang-content {
  display: flex;
  flex-direction: column;
}

.tentang-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  color: #cfcfcf;
  line-height: 1.8;
  font-size: 1.05rem;
}

.tentang-body strong {
  color: #fff;
  font-weight: 600;
}

.tentang-stat {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  align-self: flex-start;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.stat-label {
  font-size: 0.95rem;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.tentang-features {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.tentang-feature-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.5rem;
  background: rgba(20, 20, 20, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.tentang-feature-card:hover {
  background: rgba(229, 9, 20, 0.03);
  border-color: rgba(229, 9, 20, 0.2);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(229, 9, 20, 0.08);
}

.feature-icon {
  color: var(--primary);
  flex-shrink: 0;
  width: 28px;
  height: 28px;
}

.feature-text h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.4rem;
}

.feature-text p {
  font-size: 0.95rem;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}

/* Tentang Entrance Animations */
.tentang-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity, transform;
}

.tentang-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.tentang-features .tentang-reveal {
  transform: translateX(30px);
}

.tentang-features .tentang-reveal.active {
  transform: translateX(0);
}

@media (max-width: 992px) {
  .tentang-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ---- Form Elements ---- */
.input-group {
  margin-bottom: 1.5rem;
}

.input-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(20, 20, 20, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  color: white;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  backdrop-filter: blur(10px);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(30, 30, 30, 0.8);
  box-shadow: 0 0 0 4px rgba(229, 9, 20, 0.15);
  transform: translateY(-2px);
}

/* ---- Section Common ---- */
.section {
  padding: 8rem 0;
}

.fleet.section {
  padding-top: 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 1rem auto;
}

/* Category filters removed */

/* ---- Car Cards ---- */
.car-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.car-card {
  background: #080808;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(150, 150, 150, 0.15);
  border-radius: 24px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.car-card:hover {
  transform: translateY(-8px);
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 20px 50px rgba(229, 9, 20, 0.4), 0 0 20px rgba(229, 9, 20, 0.2);
}

.car-image {
  overflow: hidden;
  background-color: #ffffff;
  padding: 12px;
  position: relative;
}

.car-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center center;
  border-radius: 14px;
  display: block;
  transition: transform 0.4s ease;
}

.car-card:hover .car-image img {
  transform: scale(1.04);
}

.car-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.car-info h3 {
  height: 3.4rem;
  max-height: 3.4rem;
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.35rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  overflow: hidden;
}

.car-merk {
  height: 1.25rem;
  line-height: 1.25rem;
  font-size: 0.85rem;
  color: #999999;
  margin-bottom: 0.85rem;
  overflow: hidden;
}

.car-meta {
  margin-bottom: 1.5rem;
}

.badge-layanan {
  display: inline-block;
  background: rgba(229, 9, 20, 0.12);
  color: #ffffff;
  border: 1px solid rgba(229, 9, 20, 0.5);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ---- Master Service Selector Badge ---- */
.car-card .service-selector {
  height: 28px;
  margin-bottom: 1.25rem;
  display: inline-flex;
  align-items: center;
  width: auto;
  align-self: flex-start;
  background: rgba(229, 9, 20, 0.12);
  border: 1px solid rgba(229, 9, 20, 0.35);
  padding: 4px 14px;
  border-radius: 50px;
  box-sizing: border-box;
}

.car-card .service-selector .service-opt {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding: 0;
  border: none;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
  line-height: 1;
}

.car-footer {
  margin-top: auto;
  border-top: 1px solid rgba(150, 150, 150, 0.18);
  padding-top: 1.25rem;
  display: flex;
  flex-direction: column;
}

.car-price-container {
  height: 3.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 1.25rem;
}

.price-label {
  font-size: 0.85rem;
  color: #888888;
  margin-bottom: 0.25rem;
  display: block;
  line-height: 1.2;
}

.price-value {
  font-size: 0.98rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  display: block;
}

.car-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.car-price .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.car-price .unit {
  font-size: 0.85rem;
  font-weight: 400;
  color: #999999;
}

.btn-booking-home {
  width: 100%;
  height: 48px;
  min-height: 48px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(229, 9, 20, 0.15);
  box-sizing: border-box;
}

.btn-booking-home:hover {
  background: #ff1a26;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(229, 9, 20, 0.3);
}

/* ---- Form Pemesanan & Cara Booking Flow ---- */
.booking-section {
  padding-bottom: 2rem !important;
}

.cara-booking-section {
  background: linear-gradient(to bottom, rgba(229, 9, 20, 0.04), var(--bg-dark));
  position: relative;
  overflow: hidden;
  padding-top: 2rem !important;
}

.timeline-wrapper {
  position: relative;
  padding-top: 2rem;
}

.timeline-line {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  z-index: 1;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
}

.timeline-card {
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(26, 26, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  cursor: default;
}

.timeline-card:hover {
  border-color: rgba(229, 9, 20, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.timeline-step {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  border: 3px solid var(--bg-dark);
  box-shadow: 0 0 10px rgba(229, 9, 20, 0.5);
  z-index: 3;
}

.timeline-icon {
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  margin-top: 1rem;
  transition: all 0.4s ease;
}

.timeline-icon svg {
  width: 48px;
  height: 48px;
  stroke-width: 1.5;
}

.timeline-card:hover .timeline-icon {
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(229, 9, 20, 0.6));
}

.timeline-card h3 {
  font-size: 1.1rem;
  color: var(--text-main);
  margin-bottom: 0.8rem;
}

.timeline-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ---- Tabel Harga ---- */
.harga-section {
  background: linear-gradient(to bottom,
      var(--bg-dark),
      rgba(229, 9, 20, 0.04));
}

.table-wrapper {
  overflow-x: auto;
  padding: 0.5rem;
  border-radius: var(--radius-md);
}

.harga-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  font-size: 0.9rem;
}

.harga-table thead tr {
  background: linear-gradient(135deg, var(--primary), #8a030b);
}

.harga-table th {
  padding: 1rem 1.2rem;
  text-align: center;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.harga-table th:first-child {
  text-align: left;
  border-radius: var(--radius-sm) 0 0 0;
}

.harga-table th:last-child {
  border-radius: 0 var(--radius-sm) 0 0;
}

.harga-table tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.2s ease;
}

.harga-table tbody tr:hover {
  background: rgba(229, 9, 20, 0.08);
}

.harga-table td {
  padding: 1rem 1.2rem;
  text-align: center;
  color: var(--text-muted);
}

.harga-table td.car-name {
  text-align: left;
  color: var(--text-main);
  font-weight: 600;
  white-space: nowrap;
}

.vip-row td {
  color: #ffae00;
}

.vip-row td.car-name {
  color: #ffae00;
}

.harga-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-top: 1.5rem;
  font-style: italic;
}

/* ---- Testimoni ---- */
.testimoni-section {
  background: linear-gradient(to bottom,
      rgba(229, 9, 20, 0.04),
      var(--bg-dark));
}

/* ---- Aktivitas WakRentCar ---- */
.aktivitas-section {
  padding: 90px 0 100px;
  position: relative;
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0.012),
      rgba(229, 9, 20, 0.035) 45%,
      var(--bg-dark));
  overflow: hidden;
}

.aktivitas-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 10px 0;
}

.aktivitas-card {
  width: 100%;
  max-width: 440px;
  background: rgba(23, 23, 26, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
  box-sizing: border-box;
}

.aktivitas-card:hover {
  transform: translateY(-5px);
  border-color: rgba(229, 9, 20, 0.35);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(229, 9, 20, 0.2);
}

.aktivitas-card-header {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.aktivitas-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(229, 9, 20, 0.12);
  color: #ffffff;
  border: 1px solid rgba(229, 9, 20, 0.4);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.aktivitas-badge i {
  color: var(--primary);
  width: 15px;
  height: 15px;
  display: inline-block;
}

.aktivitas-frame-container {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.9);
}

.aktivitas-iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
  border-radius: 14px;
}

.aktivitas-card-footer {
  width: 100%;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
}

.aktivitas-caption-brief .caption-title {
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 5px;
  line-height: 1.4;
}

.aktivitas-caption-brief .caption-desc {
  color: #999999;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
}

.btn-ig-follow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 20px;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 50px;
  color: #ffffff;
  border: 1px solid rgba(229, 9, 20, 0.45);
  background: rgba(229, 9, 20, 0.08);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-ig-follow:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.4);
  transform: translateY(-2px);
}

/* ---- Syarat & Ketentuan ---- */
.syarat-section {
  background: var(--bg-dark);
}

.syarat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  width: 100%;
}

.syarat-card {
  padding: 2rem 1.5rem;
  text-align: center;
}

.syarat-card h3 {
  margin-bottom: 1.5rem;
  color: var(--text-main);
  font-size: 1.5rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.syarat-card ul {
  list-style: none;
  text-align: left;
  display: block;
}

.syarat-card ul li {
  margin-bottom: 1rem;
  color: var(--text-muted);
  display: block;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.syarat-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* ---- Kontak ---- */
.kontak-section {
  background: var(--bg-dark);
}

.kontak-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: stretch;
}

.kontak-info {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.kontak-item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.kontak-item h4 {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.kontak-item p {
  color: var(--text-main);
  font-size: 0.95rem;
  line-height: 1.6;
}

.wa-btn {
  margin-top: auto;
  gap: 0.5rem;
  font-size: 1rem;
}

.peta-wrapper {
  overflow: hidden;
  min-height: 400px;
  padding: 0.5rem;
}

.peta-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
}

/* ---- Modal ---- */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal-content {
  width: 100%;
  max-width: 900px;
  padding: 3rem;
  position: relative;
  animation: modalFade 0.4s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-size: 2rem;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal:hover {
  color: white;
}

/* ---- WA Float ---- */
.wa-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  transition: all 0.3s ease;
  animation: waPulse 2.5s infinite;
  text-decoration: none;
}

.wa-float:hover {
  transform: scale(1.1) translateY(-5px);
}

.wa-float span {
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* ---- Footer ---- */
.footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--text-muted);
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 0.7rem;
}

.footer-links ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ---- Scroll Animations ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: opacity, transform;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 100ms;
}

.delay-200 {
  transition-delay: 200ms;
}

.delay-300 {
  transition-delay: 300ms;
}

@media (min-width: 993px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 3rem;
  }

  .timeline-line {
    display: none;
  }
}

/* ---- Mengapa Section ---- */
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.15em;
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    letter-spacing: 0px;
    opacity: 1;
    transform: scale(1);
  }
}

#mengapa .section-header {
  opacity: 1 !important;
  min-height: 150px;
  /* Absorbs any height changes during text expansion to prevent cards from jumping */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#mengapa .section-header h2,
#mengapa .section-header p {
  opacity: 0;
  /* Hidden initially */
  will-change: opacity, transform, letter-spacing;
}

#mengapa .section-header.active h2 {
  animation: tracking-in-expand 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
}

@keyframes fade-in-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

#mengapa .section-header.active p {
  animation: fade-in-up 0.8s cubic-bezier(0.215, 0.610, 0.355, 1.000) forwards;
  animation-delay: 0.3s;
}

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

.mengapa-card {
  padding: 35px 30px;
  text-align: left;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mengapa-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(229, 9, 20, 0.3);
}

.mengapa-icon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  margin-bottom: 20px;
  background: rgba(229, 9, 20, 0.1);
  padding: 10px;
  border-radius: 12px;
}

.mengapa-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 15px;
}

.mengapa-card p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 992px) {
  .mengapa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .mengapa-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* ---- Layanan Section ---- */
.layanan-section {
  padding-top: 5rem;
  padding-bottom: 4rem;
}

.layanan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 40px;
  align-items: stretch;
}

.layanan-card {
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  height: 100%;
}

.layanan-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: rgba(229, 9, 20, 0.3);
}

.layanan-img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}

.layanan-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.layanan-card:hover .layanan-img {
  transform: scale(1.05);
}

.layanan-content {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.layanan-icon {
  width: 44px;
  height: 44px;
  color: var(--primary);
  margin-bottom: 16px;
  background: rgba(229, 9, 20, 0.1);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid rgba(229, 9, 20, 0.2);
  flex-shrink: 0;
}

.layanan-content h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
  line-height: 1.35;
}

.layanan-desc {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}

.layanan-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 0;
}

.l-badge {
  background: rgba(229, 9, 20, 0.12);
  color: #f0f0f0;
  font-size: 0.8rem;
  padding: 5px 12px;
  border-radius: 50px;
  border: 1px solid rgba(229, 9, 20, 0.25);
  font-weight: 500;
  letter-spacing: 0.2px;
}

.layanan-action {
  margin-top: auto;
  width: 100%;
}

.layanan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
}

.layanan-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(229, 9, 20, 0.35);
  transform: translateY(-2px);
}

.btn-icon {
  width: 18px;
  height: 18px;
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.layanan-btn:hover .btn-icon {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .layanan-grid {
    grid-template-columns: 1fr;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    gap: 1.75rem;
  }

  .layanan-img-container {
    height: 230px;
  }
}

@media (max-width: 768px) {
  .layanan-section {
    padding-top: 3.5rem;
    padding-bottom: 2.5rem;
  }

  .layanan-grid {
    max-width: 100%;
    gap: 1.5rem;
    margin-top: 28px;
  }

  .layanan-img-container {
    height: 210px;
  }

  .layanan-content {
    padding: 22px 18px 18px;
  }

  .layanan-content h3 {
    font-size: 1.25rem;
  }

  .layanan-desc {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }

  .layanan-badges {
    margin-bottom: 20px;
  }
}

/* ---- Responsive (Tablet & Mobile <= 992px) ---- */
@media (max-width: 992px) {
  h1 {
    font-size: 3rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text p {
    margin: 0 auto 2.5rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .navbar {
    top: 12px;
    left: 12px;
    right: 12px;
    width: auto;
    max-width: none;
    transform: none !important;
    border-radius: 18px;
  }

  .navbar.scrolled {
    top: 8px;
    transform: none !important;
  }

  .navbar .container {
    height: 70px;
    padding: 0 1.25rem;
    gap: 0.75rem;
  }

  .brand-logo {
    height: 50px;
    max-height: 50px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }

  /* Single Booking Button on Navbar */
  .nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px !important;
    padding: 0 1.1rem;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 10px;
    white-space: nowrap;
  }

  .nav-cta i,
  .nav-cta svg {
    width: 16px;
    height: 16px;
  }

  .nav-cta .fa-whatsapp,
  .nav-cta i.fa-brands {
    font-size: 1.05rem !important;
    width: auto !important;
    height: auto !important;
  }

  .btn-booking-home .fa-whatsapp,
  .btn-booking-plus .fa-whatsapp {
    font-size: 0.95rem;
    margin-right: 5px;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px !important;
    height: 38px !important;
    padding: 8px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    -webkit-tap-highlight-color: transparent;
    transition: background 0.2s ease;
  }

  .menu-toggle:active {
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: white;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: center;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Mobile Drawer Menu */
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: calc(100vh - 85px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(14, 14, 16, 0.96);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(229, 9, 20, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    z-index: 999;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links li {
    width: 100%;
    text-align: left;
    display: block;
  }

  .nav-links a {
    font-size: 1.02rem;
    font-weight: 600;
    color: #f0f0f0;
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    transition: background 0.2s, color 0.2s;
    width: 100%;
    line-height: 1.3;
  }

  .nav-links a::after {
    display: none !important;
  }

  .nav-links a:hover,
  .nav-links a:active {
    background: rgba(229, 9, 20, 0.12);
    color: #fff;
  }

  .dropdown-menu {
    position: static !important;
    transform: none !important;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin: 4px 0 6px 0.5rem;
    padding: 4px 0;
    box-shadow: none;
    display: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    font-size: 0.95rem;
    padding: 0.6rem 1rem;
    color: #bbb;
  }

  .dropdown-toggle i,
  .dropdown-toggle svg {
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-toggle i,
  .dropdown.active .dropdown-toggle svg {
    transform: rotate(180deg);
  }

  .kontak-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .syarat-grid {
    grid-template-columns: 1fr;
  }

  .modal-content {
    padding: 1.5rem;
  }

  #modal-body>div {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .booking-section {
    padding-bottom: 1.5rem !important;
  }

  .cara-booking-section {
    padding-top: 1.5rem !important;
  }

  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: clamp(85px, 13vh, 115px);
    padding-bottom: clamp(30px, 6vh, 50px);
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
  }

  .hero-video {
    object-position: 75% center;
  }

  .audio-toggle-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 40px;
    height: 40px;
  }

  .audio-toggle-btn svg,
  .audio-toggle-btn i {
    width: 17px;
    height: 17px;
  }

  .hero-slider .slide {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  #antigravity-container {
    display: none !important;
  }

  .hero-overlay {
    background: linear-gradient(to bottom,
        rgba(7, 7, 7, 0.70) 0%,
        rgba(7, 7, 7, 0.85) 45%,
        rgba(7, 7, 7, 0.98) 100%);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: auto auto;
    padding: 0 !important;
    width: 100%;
    flex-grow: 1;
  }

  .hero-text {
    width: 100%;
    max-width: 560px;
    margin: auto auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-text h1 {
    font-size: clamp(2rem, 7.5vw, 2.75rem);
    line-height: 1.15;
    letter-spacing: -0.5px !important;
    margin-bottom: 0.75rem;
    word-break: break-word;
    text-align: center;
    width: 100%;
    transform: none !important;
    will-change: auto !important;
  }

  .hero-text h2 {
    font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    line-height: 1.5;
    font-weight: 500;
    color: #e0e0e0;
    margin-bottom: 1rem;
    text-align: center;
    width: 100%;
    transform: none !important;
    will-change: auto !important;
  }

  .hero-text p {
    margin: 0 auto 1.75rem;
    font-size: clamp(0.88rem, 3.2vw, 1rem);
    line-height: 1.6;
    max-width: 100%;
    color: #bbb;
    text-align: center;
    transform: none !important;
    will-change: auto !important;
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 275px;
    margin: 0 auto;
    gap: 0.65rem;
    transform: none !important;
    will-change: auto !important;
  }

  .hero-actions .btn {
    width: 100%;
    padding: 0.65rem 1.25rem;
    font-size: 0.88rem;
    font-weight: 600;
    min-height: 40px;
    border-radius: var(--radius-sm);
    text-align: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0.2px;
  }

  .hero-actions .btn i,
  .hero-actions .btn svg {
    width: 17px;
    height: 17px;
    stroke-width: 2.2;
    flex-shrink: 0;
  }

  .hero-actions .btn-outline {
    padding: 0.55rem 1.15rem;
    font-size: 0.84rem;
    min-height: 38px;
  }

  .google-review-badge {
    margin-top: 1rem;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 14px;
    gap: 8px;
    min-height: 38px;
    max-width: fit-content;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transform: none !important;
    will-change: auto !important;
  }

  .grb-stars {
    gap: 2px;
  }

  .grb-stars i,
  .grb-stars svg,
  .grb-stars .star-icon {
    width: 14px;
    height: 14px;
  }

  .grb-title {
    font-size: 8.5px;
    margin-bottom: 1px;
    letter-spacing: 0.4px;
    line-height: 1.1;
  }

  .grb-desc {
    font-size: 11px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .grb-desc strong {
    font-size: 11.5px;
    font-weight: 700;
  }

  .input-row {
    grid-template-columns: 1fr;
  }

  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .car-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .wa-float {
    bottom: 1.25rem;
    right: auto;
    left: 1.25rem;
    width: 50px;
    height: 50px;
  }

  /* Table Responsiveness */
  .table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-sm);
    margin: 0 -0.5rem;
    padding: 0 0.5rem;
  }
}

/* ---- Mobile Cards Optimization (<= 640px) ---- */
@media (max-width: 640px) {
  .car-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.25rem;
  }

  .car-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .car-image {
    padding: 6px;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
  }

  .car-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    display: block;
  }

  .car-status-badge {
    font-size: 0.70rem;
    padding: 3px 8px;
    border-radius: 4px;
  }

  .car-info {
    padding: 0.95rem 0.95rem 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .car-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2px;
    word-break: break-word;
    color: #ffffff;
  }

  .car-merk {
    font-size: 0.78rem;
    color: #999999;
    margin-bottom: 0.65rem;
  }

  .car-meta {
    margin-bottom: 0.75rem;
  }

  .badge-layanan {
    font-size: 0.70rem;
    padding: 3px 10px;
    border-radius: 50px;
  }

  .car-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .car-price-container {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .price-label {
    font-size: 0.75rem;
    color: #888888;
  }

  .car-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .car-price .amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }

  .car-price .unit {
    font-size: 0.78rem;
    color: #aaaaaa;
  }

  .price-value {
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
  }

  .btn-booking-home {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Layanan Cards Mobile */
  .layanan-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.25rem;
    margin-top: 24px;
  }

  .layanan-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 16px;
  }

  .layanan-img-container {
    height: 160px;
    width: 100%;
  }

  .layanan-content {
    padding: 1.1rem 0.95rem 1rem;
  }

  .layanan-icon {
    width: 34px;
    height: 34px;
    padding: 7px;
    margin-bottom: 8px;
    border-radius: 9px;
  }

  .layanan-content h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .layanan-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .layanan-badges {
    gap: 5px;
  }

  .l-badge {
    font-size: 0.70rem;
    padding: 3px 8px;
    border-radius: 6px;
  }

  /* Wedding Card Promo Mobile */
  .wedding-card-container {
    flex-direction: column !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 20px 16px !important;
    border-radius: 18px !important;
    gap: 20px !important;
    text-align: center !important;
  }

  .wedding-card-content {
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }

  .wc-title {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    margin-bottom: 10px !important;
  }

  .wc-text {
    font-size: 15.5px !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .wc-text-sub {
    font-size: 14.5px !important;
    line-height: 1.55 !important;
    margin-bottom: 18px !important;
    text-align: center !important;
    width: 100% !important;
  }

  .wc-cta-wrapper {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
  }

  .btn-wc-booking {
    width: 100% !important;
    max-width: 240px !important;
    min-height: 38px !important;
    padding: 8px 16px !important;
    font-size: 0.84rem !important;
    border-radius: 50px !important;
    justify-content: center !important;
  }

  .wc-image-wrapper {
    max-width: 180px !important;
  }

  /* Aktivitas Section Mobile */
  .aktivitas-section {
    padding: 60px 0 70px;
  }

  .aktivitas-card {
    max-width: 380px;
    padding: 14px;
    border-radius: 18px;
  }

  .aktivitas-iframe {
    height: 480px;
  }

  .aktivitas-caption-brief .caption-title {
    font-size: 0.98rem;
  }

  .aktivitas-caption-brief .caption-desc {
    font-size: 0.80rem;
  }

  .btn-ig-follow {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  /* Mengapa Section Mobile Cards */
  .mengapa-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 24px auto 0;
    gap: 12px;
  }

  .mengapa-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .mengapa-icon {
    width: 34px;
    height: 34px;
    padding: 7px;
    margin-bottom: 8px;
    border-radius: 8px;
  }

  .mengapa-card h3 {
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .mengapa-card p {
    font-size: 0.82rem;
    line-height: 1.5;
  }

  /* Syarat Cards Grid Mobile */
  .syarat-grid {
    grid-template-columns: 1fr !important;
    max-width: 380px;
    margin: 0 auto;
    gap: 12px !important;
  }

  #syarat .glass {
    padding: 1.25rem 1rem !important;
    border-radius: 16px !important;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  #syarat .glass h3 {
    font-size: 1.15rem !important;
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
  }

  #syarat .glass h3 i {
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px !important;
  }

  #syarat .glass ul {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    gap: 8px !important;
    padding-left: 1.1rem !important;
  }

  /* Tentang Kami Mobile Cards */
  .tentang-wrapper {
    max-width: 420px;
    margin: 0 auto;
    padding: 1.35rem 1rem;
    border-radius: 16px;
  }

  .tentang-body {
    font-size: 0.88rem;
    line-height: 1.6;
    gap: 0.85rem;
  }

  .tentang-stat {
    padding: 0.6rem 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .tentang-feature-card {
    padding: 0.85rem 0.8rem;
    border-radius: 12px;
    gap: 0.75rem;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
  }

  .feature-text h4 {
    font-size: 0.94rem;
    margin-bottom: 2px;
  }

  .feature-text p {
    font-size: 0.80rem;
    line-height: 1.45;
  }

  /* Timeline Grid Mobile Cards */
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 380px;
    margin: 0 auto;
    gap: 10px !important;
  }

  .timeline-card {
    padding: 1rem 0.65rem;
    border-radius: 12px;
  }

  .timeline-step {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    top: -11px;
  }

  .timeline-icon svg {
    width: 28px;
    height: 28px;
  }

  .timeline-card h3 {
    font-size: 0.86rem;
    margin-bottom: 0.25rem;
  }

  .timeline-card p {
    font-size: 0.74rem;
    line-height: 1.35;
  }
}

@media (max-width: 480px) {
  .navbar {
    top: 8px;
    left: 8px;
    right: 8px;
    width: auto;
    max-width: none;
    transform: none !important;
    border-radius: 14px;
  }

  .navbar.scrolled {
    top: 6px;
    transform: none !important;
  }

  .navbar .container {
    padding: 0 0.75rem;
    height: 58px;
    gap: 0.5rem;
  }

  .brand-logo {
    height: 40px;
    max-height: 40px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-shrink: 0;
  }

  .nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 35px !important;
    padding: 0 0.75rem !important;
    font-size: 0.78rem !important;
    font-weight: 600;
    gap: 5px !important;
    border-radius: 9px !important;
    white-space: nowrap !important;
  }

  .nav-cta i,
  .nav-cta svg {
    width: 14px !important;
    height: 14px !important;
    flex-shrink: 0;
  }

  .nav-cta .fa-whatsapp,
  .nav-cta i.fa-brands {
    font-size: 0.96rem !important;
    width: auto !important;
    height: auto !important;
  }

  .menu-toggle {
    width: 35px !important;
    height: 35px !important;
    padding: 6px !important;
    border-radius: 8px;
  }

  .hero-actions {
    max-width: 260px;
    gap: 0.6rem;
  }

  .hero-actions .btn {
    padding: 0.6rem 1.15rem;
    font-size: 0.85rem;
    min-height: 40px;
    gap: 7px;
  }

  .hero-actions .btn i,
  .hero-actions .btn svg {
    width: 16px;
    height: 16px;
  }

  .hero-actions .btn-outline {
    padding: 0.5rem 1rem;
    font-size: 0.82rem;
    min-height: 36px;
  }

  .logo {
    gap: 0.4rem;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .container {
    padding: 0 1rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2,
  .section-title {
    font-size: clamp(1.6rem, 6.5vw, 2rem) !important;
    line-height: 1.25;
  }

  .section-header p {
    font-size: 0.88rem;
    margin-top: 0.4rem;
  }

  /* Google Review Badge Mobile Compact */
  .google-review-badge {
    margin-top: 0.9rem;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 12px;
    gap: 7px;
    min-height: 35px;
    max-width: fit-content;
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transform: none !important;
  }

  .grb-stars {
    gap: 1.5px;
  }

  .grb-stars i,
  .grb-stars svg,
  .grb-stars .star-icon {
    width: 13px;
    height: 13px;
  }

  .grb-title {
    font-size: 8px;
    letter-spacing: 0.35px;
    margin-bottom: 1px;
    line-height: 1.1;
  }

  .grb-desc {
    font-size: 10.5px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .grb-desc strong {
    font-size: 11px;
    font-weight: 700;
  }

  /* Fleet Cards on Mobile */
  #fleet .car-grid,
  #plus-driver .car-grid,
  .car-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.25rem !important;
  }

  .car-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .car-image {
    padding: 6px;
    background: #ffffff;
    border-radius: 16px 16px 0 0;
    position: relative;
    overflow: hidden;
  }

  .car-image img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
    display: block;
  }

  .car-status-badge {
    font-size: 0.70rem;
    padding: 3px 8px;
    border-radius: 4px;
  }

  .car-info {
    padding: 0.95rem 0.95rem 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }

  .car-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 2px;
    word-break: break-word;
    color: #ffffff;
  }

  .car-merk {
    font-size: 0.78rem;
    color: #999999;
    margin-bottom: 0.65rem;
  }

  .car-meta {
    margin-bottom: 0.75rem;
  }

  .badge-layanan {
    font-size: 0.70rem;
    padding: 3px 10px;
    border-radius: 50px;
  }

  .car-footer {
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
  }

  .car-price-container {
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
  }

  .price-label {
    font-size: 0.75rem;
    color: #888888;
  }

  .car-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
  }

  .car-price .amount {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
  }

  .car-price .unit {
    font-size: 0.78rem;
    color: #aaaaaa;
  }

  .price-value {
    font-size: 0.88rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.35;
    word-break: break-word;
  }

  .btn-booking-home {
    min-height: 38px;
    padding: 8px 14px;
    font-size: 0.84rem;
    font-weight: 600;
    border-radius: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Syarat Cards Grid */
  .syarat-grid {
    grid-template-columns: 1fr !important;
    max-width: 380px;
    margin: 0 auto;
    gap: 12px !important;
  }

  .syarat-grid>div,
  #syarat .glass {
    padding: 1.25rem 1rem !important;
    border-radius: 16px !important;
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  #syarat .glass h3 {
    font-size: 1.15rem !important;
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
  }

  #syarat .glass h3 i {
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px !important;
  }

  #syarat .glass ul {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    gap: 8px !important;
    padding-left: 1.1rem !important;
  }

  /* Tentang Kami */
  .tentang-wrapper {
    max-width: 420px;
    margin: 0 auto;
    padding: 1.35rem 1rem;
    border-radius: 16px;
  }

  .tentang-body {
    font-size: 0.88rem;
    line-height: 1.6;
    gap: 0.85rem;
  }

  .tentang-stat {
    padding: 0.6rem 1rem;
    margin-top: 1rem;
    border-radius: 10px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .tentang-feature-card {
    padding: 0.85rem 0.8rem;
    border-radius: 12px;
    gap: 0.75rem;
  }

  .feature-icon {
    width: 20px;
    height: 20px;
  }

  .feature-text h4 {
    font-size: 0.94rem;
    margin-bottom: 2px;
  }

  .feature-text p {
    font-size: 0.80rem;
    line-height: 1.45;
  }

  /* Layanan Cards */
  .layanan-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 1.25rem;
    margin-top: 24px;
  }

  .layanan-card {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
    border-radius: 16px;
  }

  .layanan-img-container {
    height: 160px;
    width: 100%;
  }

  .layanan-content {
    padding: 1.1rem 0.95rem 1rem;
  }

  .layanan-icon {
    width: 34px;
    height: 34px;
    padding: 7px;
    margin-bottom: 8px;
    border-radius: 9px;
  }

  .layanan-content h3 {
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 6px;
  }

  .layanan-desc {
    font-size: 0.84rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .layanan-badges {
    gap: 5px;
  }

  .l-badge {
    font-size: 0.70rem;
    padding: 3px 8px;
    border-radius: 6px;
  }

  .layanan-btn {
    padding: 10px 14px;
    font-size: 0.86rem;
    min-height: 40px;
  }

  /* Wedding Card Promo */
  .wedding-card-container {
    flex-direction: column !important;
    max-width: 420px !important;
    margin: 0 auto !important;
    padding: 20px 16px !important;
    border-radius: 18px !important;
    gap: 20px !important;
    text-align: center !important;
  }

  .wedding-card-content {
    align-items: center !important;
    text-align: center !important;
  }

  .wc-title {
    justify-content: center !important;
    font-size: 1.35rem !important;
    margin-bottom: 8px !important;
  }

  .wc-text {
    font-size: 0.86rem !important;
    line-height: 1.55 !important;
    margin-bottom: 6px !important;
    text-align: center !important;
  }

  .wc-text-sub {
    font-size: 0.80rem !important;
    line-height: 1.5 !important;
    margin-bottom: 16px !important;
    text-align: center !important;
  }

  .wc-cta-wrapper {
    justify-content: center !important;
  }

  .btn-wc-booking {
    width: 100% !important;
    max-width: 240px !important;
    min-height: 38px !important;
    padding: 8px 16px !important;
    font-size: 0.84rem !important;
    border-radius: 50px !important;
    justify-content: center !important;
  }

  .wc-image-wrapper {
    max-width: 180px !important;
  }

  /* Timeline Grid */
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    max-width: 380px;
    margin: 0 auto;
    gap: 10px !important;
  }

  .timeline-line {
    display: none;
  }

  .timeline-card {
    padding: 1rem 0.65rem;
    border-radius: 12px;
  }

  .timeline-step {
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    top: -11px;
  }

  .timeline-icon svg {
    width: 28px;
    height: 28px;
  }

  .timeline-card h3 {
    font-size: 0.86rem;
    margin-bottom: 0.25rem;
  }

  .timeline-card p {
    font-size: 0.74rem;
    line-height: 1.35;
  }

  /* Footer */
  .footer {
    padding: 50px 0 25px !important;
  }

  .footer-grid {
    gap: 30px !important;
  }

  /* Page Header on Catalog / Subpages */
  .page-header {
    padding: 110px 0 35px !important;
    min-height: auto !important;
  }

  .page-header h1 {
    font-size: clamp(1.6rem, 6.5vw, 2.2rem) !important;
    margin-bottom: 12px !important;
  }

  .page-header p {
    font-size: 0.88rem !important;
    margin-bottom: 20px !important;
  }

  .search-container input {
    padding: 12px 16px 12px 42px !important;
    font-size: 0.9rem !important;
  }
}

/* Extra Small Mobile (320px - 360px) */
@media (max-width: 360px) {
  .navbar {
    top: 6px;
    left: 5px;
    right: 5px;
    width: auto;
    max-width: none;
    transform: none !important;
    border-radius: 12px;
  }

  .navbar.scrolled {
    top: 4px;
    transform: none !important;
  }

  .navbar .container {
    padding: 0 0.5rem;
    height: 54px;
    gap: 0.35rem;
  }

  .brand-logo {
    height: 36px;
    max-height: 36px;
  }

  .nav-actions {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    flex-shrink: 0;
  }

  .nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 33px !important;
    padding: 0 0.55rem !important;
    font-size: 0.74rem !important;
    font-weight: 600;
    gap: 4px !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
  }

  .nav-cta i,
  .nav-cta svg {
    width: 13px !important;
    height: 13px !important;
    flex-shrink: 0;
  }

  .nav-cta .fa-whatsapp,
  .nav-cta i.fa-brands {
    font-size: 0.88rem !important;
    width: auto !important;
    height: auto !important;
  }

  .btn-booking-home .fa-whatsapp,
  .btn-booking-plus .fa-whatsapp {
    font-size: 0.88rem;
    margin-right: 4px;
  }

  .menu-toggle {
    width: 33px !important;
    height: 33px !important;
    padding: 6px !important;
    border-radius: 7px;
  }

  .hero-actions {
    max-width: 240px;
    gap: 0.5rem;
  }

  .hero-actions .btn {
    padding: 0.55rem 0.95rem;
    font-size: 0.80rem;
    min-height: 38px;
    gap: 6px;
  }

  .hero-actions .btn i,
  .hero-actions .btn svg {
    width: 15px;
    height: 15px;
  }

  .hero-actions .btn-outline {
    padding: 0.45rem 0.85rem;
    font-size: 0.78rem;
    min-height: 34px;
  }

  .audio-toggle-btn {
    bottom: 1rem !important;
    right: 1rem !important;
    width: 36px !important;
    height: 36px !important;
  }

  .audio-toggle-btn svg,
  .audio-toggle-btn i {
    width: 15px !important;
    height: 15px !important;
  }

  .google-review-badge {
    margin-top: 0.8rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 4px 10px !important;
    gap: 6px !important;
    min-height: 33px !important;
    max-width: fit-content !important;
    width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transform: none !important;
  }

  .grb-stars {
    gap: 1.5px !important;
  }

  .grb-stars i,
  .grb-stars svg,
  .grb-stars .star-icon {
    width: 12px !important;
    height: 12px !important;
  }

  .grb-title {
    font-size: 7.5px !important;
    letter-spacing: 0.3px !important;
    margin-bottom: 1px !important;
    line-height: 1.1 !important;
  }

  .grb-desc {
    font-size: 10px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .grb-desc strong {
    font-size: 10.5px !important;
    font-weight: 700 !important;
  }

  .container {
    padding: 0 0.75rem;
  }

  .hero-text h1 {
    font-size: 1.7rem;
  }

  .car-card,
  .layanan-card,
  .mengapa-grid,
  .syarat-grid,
  .timeline-grid,
  .aktivitas-card {
    max-width: 330px !important;
  }

  .aktivitas-card {
    padding: 10px;
    border-radius: 16px;
  }

  .aktivitas-iframe {
    height: 440px;
  }

  .aktivitas-badge {
    font-size: 0.72rem;
    padding: 4px 10px;
  }

  .btn-ig-follow {
    padding: 8px 12px;
    font-size: 0.80rem;
  }

  .car-image {
    padding: 5px;
  }

  .car-image img {
    border-radius: 9px;
  }

  .car-info {
    padding: 0.85rem 0.85rem 0.95rem;
  }

  .car-info h3 {
    font-size: 1.08rem;
  }

  .btn-booking-home {
    min-height: 36px;
    padding: 7px 12px;
    font-size: 0.80rem;
  }

  .layanan-img-container {
    height: 145px;
  }

  .layanan-content h3 {
    font-size: 1.08rem;
  }

  .wedding-card-container {
    max-width: 330px !important;
    padding: 18px 12px !important;
  }

  .wc-image-wrapper {
    max-width: 160px !important;
  }

  .wc-title {
    font-size: 30px !important;
  }

  .tentang-wrapper {
    max-width: 330px !important;
    padding: 1.1rem 0.85rem;
  }

  .l-badge {
    padding: 3px 7px;
    font-size: 0.68rem;
  }

  .logoloop-item {
    width: 85px !important;
  }
}

/* Micro Mobile (<= 330px, e.g. 320px) */
@media (max-width: 330px) {
  .navbar {
    top: 4px;
    left: 4px;
    right: 4px;
    border-radius: 10px;
  }

  .navbar.scrolled {
    top: 3px;
  }

  .navbar .container {
    padding: 0 0.35rem;
    height: 50px;
    gap: 0.25rem;
  }

  .brand-logo {
    height: 30px;
    max-height: 30px;
  }

  .nav-actions {
    gap: 0.25rem;
  }

  .nav-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    padding: 0 0.42rem !important;
    font-size: 0.69rem !important;
    font-weight: 600;
    gap: 3px !important;
    border-radius: 7px !important;
    letter-spacing: 0;
    white-space: nowrap !important;
  }

  .nav-cta i,
  .nav-cta svg {
    width: 12px !important;
    height: 12px !important;
    flex-shrink: 0;
  }

  .nav-cta .fa-whatsapp,
  .nav-cta i.fa-brands {
    font-size: 0.82rem !important;
    width: auto !important;
    height: auto !important;
  }

  .btn-booking-home .fa-whatsapp,
  .btn-booking-plus .fa-whatsapp {
    font-size: 0.82rem;
    margin-right: 3px;
  }

  .menu-toggle {
    width: 30px !important;
    height: 30px !important;
    padding: 5px !important;
    border-radius: 6px;
  }

  .hero-actions {
    max-width: 220px;
    gap: 0.45rem;
  }

  .hero-actions .btn {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
    min-height: 35px;
    gap: 5px;
  }

  .hero-actions .btn i,
  .hero-actions .btn svg {
    width: 13px;
    height: 13px;
  }

  .hero-actions .btn-outline {
    padding: 0.4rem 0.7rem;
    font-size: 0.72rem;
    min-height: 32px;
  }

  .audio-toggle-btn {
    bottom: 0.75rem !important;
    right: 0.75rem !important;
    width: 32px !important;
    height: 32px !important;
  }

  .audio-toggle-btn svg,
  .audio-toggle-btn i {
    width: 13px !important;
    height: 13px !important;
  }

  .car-card,
  .layanan-card,
  .mengapa-grid,
  .syarat-grid,
  .timeline-grid,
  .wedding-card-container,
  .tentang-wrapper,
  .aktivitas-card {
    max-width: 296px !important;
  }

  .aktivitas-card {
    padding: 8px;
  }

  .aktivitas-iframe {
    height: 410px;
  }

  .aktivitas-caption-brief .caption-title {
    font-size: 0.90rem;
  }

  .car-image {
    padding: 4px;
  }

  .car-image img {
    border-radius: 8px;
  }

  .car-info {
    padding: 0.75rem 0.75rem 0.85rem;
  }

  .car-info h3 {
    font-size: 0.98rem;
  }

  .car-merk {
    font-size: 0.74rem;
    margin-bottom: 0.5rem;
  }

  .badge-layanan {
    font-size: 0.66rem;
    padding: 2px 7px;
  }

  .car-price .amount {
    font-size: 1.15rem;
  }

  .car-price .unit {
    font-size: 0.74rem;
  }

  .btn-booking-home {
    min-height: 35px;
    padding: 6px 10px;
    font-size: 0.78rem;
  }

  .layanan-img-container {
    height: 130px;
  }

  .layanan-content {
    padding: 0.85rem 0.75rem 0.85rem;
  }

  .layanan-content h3 {
    font-size: 1.02rem;
  }

  .wc-image-wrapper {
    max-width: 140px !important;
  }

  .wc-title {
    font-size: 30px !important;
  }

  .wc-text,
  .wc-text-sub {
    font-size: 0.78rem !important;
  }

  .btn-wc-booking {
    font-size: 0.78rem !important;
    min-height: 35px !important;
    padding: 6px 12px !important;
  }
}


@media (min-width: 993px) {
  .mobile-only-link {
    display: none !important;
  }
}

/* ---- Wedding Card Promo Section ---- */
.wedding-card-container {
  padding: 50px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(25, 10, 10, 0.85) 100%);
  border: 1px solid rgba(229, 9, 20, 0.15);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6), inset 0 0 40px rgba(229, 9, 20, 0.05);
  position: relative;
}

.wedding-card-content {
  flex: 1;
  max-width: 550px;
  animation: fadeSlideRight 1s ease forwards;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: center;
}

.wc-title {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  text-align: left;
  width: 100%;
}

.wc-title i {
  color: var(--primary);
  width: 32px;
  height: 32px;
}

.wc-title span {
  color: var(--primary);
}

.wc-text {
  color: #e0e0e0;
  font-size: 18.5px;
  line-height: 1.7;
  margin-bottom: 15px;
  text-align: left;
  width: 100%;
}

.wc-text-sub {
  color: #bbb;
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 25px;
  text-align: left;
  width: 100%;
}

.wc-cta-wrapper {
  margin-top: 20px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.btn-wc-booking {
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 20px rgba(229, 9, 20, 0.3);
  transition: all 0.3s ease;
}

.btn-wc-booking:hover {
  box-shadow: 0 8px 30px rgba(229, 9, 20, 0.5);
  transform: translateY(-2px);
}

.wedding-card-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
  animation: fadeSlideLeft 1s ease 0.2s forwards;
  opacity: 0;
}

.wc-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 350px;
  animation: floatImage 6s ease-in-out infinite;
}

.wc-mockup-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.wc-glow-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(229, 9, 20, 0.15) 0%, rgba(229, 9, 20, 0) 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulseGlow 4s ease-in-out infinite;
}

/* Animations */
@keyframes fadeSlideRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeSlideLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes floatImage {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes pulseGlow {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.5;
  }
}

/* Tablet Responsive */
@media (max-width: 768px) and (min-width: 641px) {
  .wedding-card-container {
    flex-direction: column;
    padding: 30px 24px;
    gap: 25px;
    text-align: center;
  }

  .wedding-card-content {
    align-items: center;
    text-align: center;
    width: 100%;
  }

  .wc-title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    font-size: 36px;
  }

  .wc-text,
  .wc-text-sub {
    text-align: center;
    width: 100%;
  }

  .wc-cta-wrapper {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .wedding-card-visual {
    margin-top: 10px;
  }

  .wc-image-wrapper {
    max-width: 240px;
  }
}

/* ---- Google Reviews Modal ---- */
.reviews-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
}

.reviews-modal-content {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  margin: 20px;
  padding: 30px;
  width: 100%;
  max-width: 650px;
  border-radius: 24px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: modalFadeIn 0.3s ease;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-modal {
  color: #ccc;
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 35px;
  font-weight: 300;
  cursor: pointer;
  transition: 0.3s;
  line-height: 1;
}

.close-modal:hover {
  color: #fff;
  transform: scale(1.1);
}

.reviews-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.reviews-list-container {
  overflow-y: auto;
  padding-right: 10px;
  flex: 1;
}

/* Custom Scrollbar for Reviews */
.reviews-list-container::-webkit-scrollbar {
  width: 6px;
}

.reviews-list-container::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

.reviews-list-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
}

.reviews-list-container::-webkit-scrollbar-thumb:hover {
  background: rgba(229, 9, 20, 0.5);
}

/* Review Card */
.review-card {
  background: rgba(25, 25, 25, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: rgba(229, 9, 20, 0.2);
  background: rgba(30, 30, 30, 0.8);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.review-avatar-placeholder {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
}

.review-name {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}

.review-date {
  font-size: 0.8rem;
  color: #888;
}

.review-stars-small {
  display: flex;
  gap: 2px;
}

.review-stars-small i {
  width: 14px;
  height: 14px;
  color: #555;
}

.review-stars-small i.filled {
  color: #fbbc04;
  fill: #fbbc04;
}

.review-text {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

.spin-icon {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) and (min-width: 641px) {
  .reviews-modal-content {
    padding: 24px;
    margin: 20px;
  }

  .review-header {
    flex-direction: column;
    gap: 10px;
  }

  #syarat {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  #syarat .section-header {
    margin-bottom: 40px !important;
  }

  #syarat .section-header h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
    line-height: 1.2 !important;
  }

  #syarat>.container>div:nth-child(2) {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  #syarat .glass {
    padding: 22px 18px !important;
  }

  #syarat .glass h3 {
    font-size: 1.25rem !important;
    margin-bottom: 16px !important;
    padding-bottom: 12px !important;
    align-items: flex-start !important;
    line-height: 1.4 !important;
  }

  #syarat .glass h3 i {
    width: 22px !important;
    height: 22px !important;
    margin-right: 10px !important;
    flex-shrink: 0;
    margin-top: 2px;
  }

  #syarat .glass ul {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    gap: 10px !important;
    padding-left: 20px !important;
  }

  #syarat .glass>div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
    margin-bottom: 25px !important;
  }

  #syarat .glass>div[style*="display: grid"]>div {
    padding: 15px !important;
  }

  #syarat .glass>div[style*="display: grid"]>div>div:first-child {
    font-size: 1.1rem !important;
    margin-bottom: 10px !important;
  }

  #syarat .glass>div[style*="display: grid"]>div>div:last-child {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  #syarat .glass>div[style*="rgba(229, 9, 20, 0.15)"] {
    padding: 20px 15px !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
  }
}

@media (max-width: 640px) {
  .reviews-modal-content {
    padding: 18px 14px !important;
    margin: 10px !important;
    border-radius: 16px !important;
  }

  .review-header {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 10px;
  }

  .review-card {
    padding: 12px 10px !important;
    border-radius: 12px !important;
    margin-bottom: 8px !important;
  }

  .review-author {
    gap: 8px !important;
  }

  .review-avatar,
  .review-avatar-placeholder {
    width: 34px !important;
    height: 34px !important;
  }

  .review-name {
    font-size: 0.86rem !important;
  }

  .review-date {
    font-size: 0.72rem !important;
  }

  .review-text {
    font-size: 0.80rem !important;
    line-height: 1.45 !important;
  }

  #syarat {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  #syarat .section-header {
    margin-bottom: 24px !important;
  }

  #syarat .glass {
    padding: 1.25rem 1rem !important;
    border-radius: 16px !important;
    max-width: 380px !important;
    margin: 0 auto !important;
    width: 100% !important;
  }

  #syarat .glass h3 {
    font-size: 1.15rem !important;
    margin-bottom: 10px !important;
    padding-bottom: 8px !important;
  }

  #syarat .glass h3 i {
    width: 20px !important;
    height: 20px !important;
    margin-right: 8px !important;
  }

  #syarat .glass ul {
    font-size: 0.82rem !important;
    line-height: 1.5 !important;
    gap: 8px !important;
    padding-left: 1.1rem !important;
  }

  #syarat .glass>div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-bottom: 15px !important;
  }

  #syarat .glass>div[style*="display: grid"]>div {
    padding: 10px !important;
  }

  #syarat .glass>div[style*="rgba(229, 9, 20, 0.15)"] {
    padding: 12px 10px !important;
    font-size: 12px !important;
    line-height: 1.5 !important;
  }
}

@media (max-width: 360px) {
  #syarat .glass {
    padding: 1rem 0.85rem !important;
    max-width: 330px !important;
  }

  #syarat .glass h3 {
    font-size: 1.05rem !important;
  }

  #syarat .glass ul {
    font-size: 0.78rem !important;
    padding-left: 0.95rem !important;
  }
}

@media (max-width: 330px) {
  #syarat .glass {
    padding: 0.85rem 0.75rem !important;
    max-width: 296px !important;
  }

  #syarat .glass h3 {
    font-size: 0.95rem !important;
  }

  #syarat .glass ul {
    font-size: 0.74rem !important;
    padding-left: 0.85rem !important;
  }
}

@media (max-width: 350px) {
  .google-review-badge {
    margin-top: 0.7rem !important;
    margin-left: auto !important;
    margin-right: auto !important;
    transform: none !important;
    padding: 3.5px 9px !important;
    gap: 5px !important;
    min-height: 31px !important;
    max-width: fit-content !important;
    width: fit-content !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  .grb-stars {
    gap: 1px !important;
  }

  .grb-stars i,
  .grb-stars svg,
  .grb-stars .star-icon {
    width: 11.5px !important;
    height: 11.5px !important;
  }

  .grb-title {
    font-size: 7px !important;
    letter-spacing: 0.25px !important;
    margin-bottom: 1px !important;
    line-height: 1.1 !important;
  }

  .grb-desc {
    font-size: 9.5px !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
  }

  .grb-desc strong {
    font-size: 10px !important;
    font-weight: 700 !important;
  }
}

/* Interactive Toggle Selector (for pages with active buttons like armada.php) */
.car-card .service-selector.interactive-toggle {
  display: flex;
  width: 100%;
  height: auto;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px;
  border-radius: 50px;
}

.car-card .service-selector.interactive-toggle .service-opt {
  flex: 1;
  text-align: center;
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #9e9e9e;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.25s ease;
}

.car-card .service-selector.interactive-toggle .service-opt.active {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 2px 10px rgba(229, 9, 20, 0.35);
}