/* Disable fixed attachment on small screens for performance */
@media (max-width: 820px) {
  body {
    background-attachment: scroll;
    background-position: center center;
  }

  .container {
    background: transparent;
    box-shadow: none;
    padding: 1.25rem;
    border-radius: 0;
  }
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Responsive logo sizing for tablets and smartphones */
@media (max-width: 1024px) {
  .brand .logo {
    width: 140px;
  }
}

@media (max-width: 768px) {
  .brand .logo {
    width: 150px;
  }
}

@media (max-width: 425px) {
  .brand .logo {
    width: 85px;
  }
}

@media (max-width: 320px) {
  .brand .logo {
    width: 45px;
  }
}

/* Dropdown styles */
.dropdown {
  position: relative;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0.5rem 0;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.45);
  min-width: 200px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  z-index: 10;
}
.dropdown:hover .dropdown-menu {
  display: block;
}
.dropdown-menu.show {
  display: block;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--muted);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
  font-weight: 500;
  font-size: 0.9rem;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.05);
}

/* CTA button refinement */
.cta-btn {
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, opacity 160ms ease;
}
.book-now {
  background: linear-gradient(90deg, #ffdf6b, var(--accent));
  color: #101820;
  box-shadow: 0 10px 36px rgba(254, 231, 21, 0.12);
}
.book-now:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 48px rgba(254, 231, 21, 0.18);
}

/* Hamburger */
.hamburger {
  display: none; /* controlled by existing breakpoints */
  background: rgba(255, 255, 255, 0.02);
  padding: 0.45rem 0.55rem;
  border-radius: 10px;
  transition: background 120ms ease, transform 120ms ease;
}
.hamburger:hover {
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 520px);
  gap: 2rem;
  align-items: center;
  padding: 3rem 1rem;
  min-height: 60vh; /* beri ruang visual pada hero */
}
@media (min-width: 1100px) {
  .hero {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1100px) {
  .hero {
    min-height: 52vh;
    padding: 2.4rem 2rem;
  }
  .hero h1 {
    padding: 0 1rem;
  }
}
@media (max-width: 820px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 1.6rem 2.5rem;
    min-height: auto;
  }
}
/* Active state */
.nav-list a.active {
  color: #101820;
  background: linear-gradient(90deg, var(--accent), #ffd54a);
  box-shadow: 0 10px 30px rgba(254, 231, 21, 0.14);
}

.nav-list a.proximate {
  color: var(--text);
  background: linear-gradient(90deg, rgba(254, 231, 21, 0.1), rgba(255, 255, 255, 0.02));
  box-shadow: 0 10px 28px rgba(254, 231, 21, 0.06);
  transform: translateY(-3px);
}

.nav-list a:focus-visible,
.btn:focus-visible,
.cta-btn:focus-visible {
  outline: 2px solid rgba(254, 231, 21, 0.14);
  outline-offset: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Nav links - modern pill style */
.nav-list {
  list-style: none;
  display: flex;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  align-items: center;
}
.nav-list li {
  list-style: none;
}
.nav-list a {
  color: var(--muted);
  text-decoration: none;
  padding: 0.55rem 0.9rem;
  border-radius: 999px; /* pill */
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.2px;
  transition: color 160ms ease, background 160ms ease, transform 160ms ease, box-shadow 160ms ease;
  backdrop-filter: blur(2px);
}

.nav-list a:hover,
.nav-list a:focus {
  color: var(--accent); /* kuning */
  background: linear-gradient(90deg, rgba(254, 231, 21, 0.06), rgba(255, 255, 255, 0.01));
  box-shadow: 0 8px 24px rgba(254, 231, 21, 0.06);
  transform: translateY(-2px);
  outline: none;
}

/* Keep keyboard focus visible and consistent (also yellow) */
.nav-list a:focus-visible {
  outline: 2px solid rgba(254, 231, 21, 0.16);
  outline-offset: 4px;
  border-radius: 12px;
  color: var(--accent);
}

/* Pastikan teks dan tombol pada hero tetap jelas di atas gambar */
.hero-left h1,
.hero-left .lead,
.hero-ctas .btn {
  color: var(--text);
  text-shadow: 0 6px 20px rgba(2, 6, 23, 0.6);
}
.hero-left {
  flex: 1;
}
.hero-right {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero h1 {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}
.hero .accent {
  color: var(--accent);
}
.lead {
  color: var(--muted);
  margin: 0.8rem 0;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn {
  padding: 0.6rem 1rem;
  border-radius: 10px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-weight: 600;
  --prox: 0; /* 0..1 set by JS */
  transition: transform 240ms cubic-bezier(0.22, 0.9, 0.2, 1), box-shadow 240ms cubic-bezier(0.22, 0.9, 0.2, 1), background 220ms ease, color 220ms ease, filter 220ms ease;
  transform: translateY(calc(-4px * var(--prox)));
  will-change: transform, box-shadow, filter;
}
.btn-primary {
  background: linear-gradient(90deg, #ffdf6b, var(--accent));
  color: #101820;
  /* base soft shadow + accent glow that grows with --prox */
  box-shadow: 0 calc(6px * var(--prox)) calc(18px * var(--prox)) rgba(2, 6, 23, calc(0.05 * var(--prox))), 0 calc(8px * var(--prox)) calc(28px * var(--prox)) rgba(254, 231, 21, calc(0.06 * var(--prox)));
  filter: brightness(calc(1 + 0.06 * var(--prox)));
}
.btn-outline {
  background: transparent;
  color: var(--text);
  box-shadow: 0 calc(4px * var(--prox)) calc(14px * var(--prox)) rgba(2, 6, 23, calc(0.04 * var(--prox)));
  /* add gentle fill as you approach */
  background: linear-gradient(90deg, rgba(255, 255, 255, calc(0 * var(--prox))), rgba(255, 255, 255, calc(0.02 * var(--prox))));
  filter: brightness(calc(1 + 0.03 * var(--prox)));
}
.btn[style*='--prox: 0.9'],
.btn[style*='--prox: 1'] {
  transform: translateY(-6px) scale(1.02);
}

/* Make "Lihat Mobil" (hero primary button) text black */
.hero-left .btn-primary {
  color: #101820;
}

/* keep hover/focus readable while preserving existing hover effects */
.hero-left .btn-primary:hover,
.hero-left .btn-primary:focus {
  color: #101820;
}

/* Slider container - diperbesar dan dipoles */
.hero-slider {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9; /* landscape box */
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.006));
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.45);
}

/* slides row */
.hero-slider .slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 756ms cubic-bezier(0.22, 0.9, 0.2, 1);
  will-change: transform;
}

/* each slide full area, center media */
.hero-slider .slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  overflow: hidden;
}

/* media wrapper centers image and prevents crop; image shown fully using contain */
.hero-slider .slide-media {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem; /* beri sedikit ruang agar terlihat rapi */
  box-sizing: border-box;
}

/* ensure all slide images same sizing and fit inside landscape box */
.hero-slider .slide-media img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain; /* tampil penuh, tanpa memotong mobil */
  object-position: center;
  display: block;
  transition: transform 420ms ease, filter 320ms ease;
}

/* caption overlay (ke bawah) - tidak menumpuk teks lain */
.hero-slider .slide-caption {
  position: absolute;
  left: 1rem;
  bottom: 12px;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.12));
  padding: 0.6rem 0.9rem;
  border-radius: 10px;
  backdrop-filter: blur(4px);
  color: var(--text);
  font-weight: 600;
  pointer-events: none;
}

/* title & subtitle inside caption */
.slide-title {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
}
.slide-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 500;
}

/* reduce hover zoom to minimal */
.hero-slider .slide:hover img,
.hero-slider:hover .slide img {
  transform: scale(1.01);
}

/* Make Porsche image 25% smaller and shift to the left */
#porche {
  transform: scale(0.8) translateX(-10px);
  object-position: left;
}

/* pagination dots - tetap visible atas gambar */
.hero-slider .dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 6;
}
.hero-slider .dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
  cursor: pointer;
}
.hero-slider .dot.active {
  background: var(--accent);
  transform: scale(1.25);
  box-shadow: 0 8px 22px rgba(254, 231, 21, 0.12);
}
.hero-slider .dot:focus {
  outline: 2px solid rgba(254, 231, 21, 0.12);
  outline-offset: 4px;
}

/* Footer translucency supaya menyatu dengan background */
.site-footer {
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.9), rgba(16, 24, 32, 0.86));
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

/* Promo banner — center, larger, smooth animation, proximity scale */
.promo {
  padding: 0.6rem 1rem 1rem;
}
.promo-banner {
  --promo-prox: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.006));
  border: 1px solid rgba(255, 255, 255, 0.03);
  box-shadow: 0 12px 34px rgba(2, 6, 23, 0.28);
  backdrop-filter: blur(6px);
  text-align: center;
  transition: transform 280ms cubic-bezier(0.22, 0.9, 0.2, 1), box-shadow 280ms ease, background 220ms ease;
}

/* new wrapper to place badge beside title */
.promo-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Badge (beside title) - larger */
.promo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #101820;
  background: linear-gradient(180deg, #ffea70, var(--accent));
  box-shadow: 0 10px 28px rgba(254, 231, 21, 0.1);
  font-size: clamp(1rem, 2.6vw, 1.3rem); /* lebih besar */
  transform-origin: center;
  transform: scale(calc(1 + 0.12 * var(--promo-prox)));
  transition: transform 220ms cubic-bezier(0.22, 0.9, 0.2, 1), box-shadow 220ms ease;
}

/* Promo title enlarged and centered beside badge */
.promo-title {
  margin: 0;
  color: var(--text);
  font-weight: 800;
  font-size: clamp(1.6rem, 5.5vw, 2.6rem); /* diperbesar */
  line-height: 1;
  transform-origin: center;
  transform: scale(calc(1 + 0.22 * var(--promo-prox)));
  transition: transform 200ms cubic-bezier(0.22, 0.9, 0.2, 1), text-shadow 200ms ease;
  text-shadow: 0 10px 36px rgba(2, 6, 23, 0.48);
}

/* Promo description smaller and centered */
.promo-desc {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 2.4vw, 1rem);
  max-width: 60ch;
  margin-top: 0.25rem;
  text-align: center;
}

/* If JS not available, allow hover grow */
.promo-banner:hover .promo-title,
.promo-banner:focus-within .promo-title,
.promo-banner:hover .promo-badge,
.promo-banner:focus-within .promo-badge {
  transform: scale(1.08);
}

/* responsive: stack on small screens */
@media (max-width: 640px) {
  .promo-main {
    flex-direction: column;
    gap: 0.35rem;
  }
  .promo-badge {
    font-size: clamp(0.95rem, 3.8vw, 1.05rem);
    padding: 0.32rem 0.6rem;
  }
  .promo-title {
    font-size: clamp(1.25rem, 6.5vw, 1.6rem);
  }
  .promo-desc {
    font-size: 0.95rem;
  }
}

/* further adjustments for very small screens */
@media (max-width: 480px) {
  .promo {
    padding: 0.4rem 0.5rem 0.8rem;
  }
  .promo-banner {
    padding: 0.75rem 1rem;
  }
  .promo-main {
    gap: 0.5rem;
  }
  .promo-badge {
    font-size: clamp(0.9rem, 4vw, 1rem);
    padding: 0.3rem 0.5rem;
  }
  .promo-title {
    font-size: clamp(1.1rem, 7vw, 1.4rem);
  }
  .promo-desc {
    font-size: 0.9rem;
    max-width: 100%;
  }
}

/* respects reduced motion */
@media (prefers-reduced-motion: reduce) {
  .promo-banner,
  .promo-badge,
  .promo-title {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* ============== PROMO PICKUP BANNER (Antar-Jemput / Delivery) ============== */
/* Different design from the main promo banner - More elegant & sophisticated */

.promo-pickup {
  padding: 1rem 1rem 1.5rem;
}

.promo-banner-pickup {
  --pickup-prox: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.12) 0%, rgba(76, 175, 80, 0.05) 50%, rgba(56, 142, 60, 0.08) 100%);
  border: 1.5px solid rgba(76, 175, 80, 0.2);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.35), 0 0 40px rgba(76, 175, 80, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.1), inset 0 -1px 0 rgba(76, 175, 80, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: left;
  transition: all 300ms cubic-bezier(0.22, 0.9, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.promo-banner-pickup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.5), transparent);
  opacity: 0.8;
}

.promo-banner-pickup::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(76, 175, 80, 0.3), transparent);
  opacity: 0.6;
}

.promo-banner-pickup:hover,
.promo-banner-pickup:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.45), 0 0 50px rgba(76, 175, 80, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15), inset 0 -1px 0 rgba(76, 175, 80, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.16) 0%, rgba(76, 175, 80, 0.08) 50%, rgba(56, 142, 60, 0.12) 100%);
}

/* Icon wrapper for delivery icon - More prominent */
.pickup-icon-wrapper {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(56, 142, 60, 0.15));
  border: 1.5px solid rgba(76, 175, 80, 0.25);
  border-radius: 18px;
  margin-right: 2rem;
  transition: all 300ms cubic-bezier(0.22, 0.9, 0.2, 1);
  box-shadow: 0 12px 32px rgba(76, 175, 80, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 -1px 0 rgba(76, 175, 80, 0.1);
  position: relative;
}

.pickup-icon-wrapper::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), transparent);
  pointer-events: none;
}

.promo-banner-pickup:hover .pickup-icon-wrapper,
.promo-banner-pickup:focus-within .pickup-icon-wrapper {
  transform: scale(1.12) translateY(-4px);
  background: linear-gradient(135deg, rgba(76, 175, 80, 0.28), rgba(56, 142, 60, 0.22));
  border-color: rgba(76, 175, 80, 0.4);
  box-shadow: 0 16px 40px rgba(76, 175, 80, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.3), inset 0 -1px 0 rgba(76, 175, 80, 0.15);
}

/* Pickup icon - Elegant styling */
.pickup-icon {
  font-size: 2.2rem;
  color: #4caf50;
  transition: all 300ms cubic-bezier(0.22, 0.9, 0.2, 1);
  filter: drop-shadow(0 4px 12px rgba(76, 175, 80, 0.2));
  position: relative;
  z-index: 1;
}

.promo-banner-pickup:hover .pickup-icon,
.promo-banner-pickup:focus-within .pickup-icon {
  transform: scale(1.15) rotate(-8deg);
  color: #45a049;
  filter: drop-shadow(0 6px 16px rgba(76, 175, 80, 0.3));
}

/* Main content for pickup promo */
.promo-pickup-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100%;
  flex-wrap: wrap;
}

/* Pickup text content - Elegant typography */
.pickup-text {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.pickup-title {
  margin: 0;
  font-size: clamp(1.5rem, 4.5vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
  letter-spacing: -0.5px;
  transition: all 250ms cubic-bezier(0.22, 0.9, 0.2, 1);
  text-shadow: 0 2px 8px rgba(76, 175, 80, 0.1);
}

.promo-banner-pickup:hover .pickup-title,
.promo-banner-pickup:focus-within .pickup-title {
  color: #4caf50;
  transform: translateX(3px);
  text-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.pickup-subtitle {
  margin: 0;
  font-size: clamp(0.9rem, 2.5vw, 1.1rem);
  color: #4caf50;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 250ms cubic-bezier(0.22, 0.9, 0.2, 1);
}

.promo-banner-pickup:hover .pickup-subtitle {
  color: #45a049;
  letter-spacing: 1.5px;
}

.pickup-desc {
  margin: 0;
  font-size: clamp(0.9rem, 2.2vw, 1rem);
  color: rgba(245, 245, 245, 0.78);
  line-height: 1.6;
  max-width: 55ch;
  transition: all 250ms cubic-bezier(0.22, 0.9, 0.2, 1);
}

.promo-banner-pickup:hover .pickup-desc {
  color: rgba(245, 245, 245, 0.9);
}

/* Pickup badge (FREE badge on the right) - Premium style */
.pickup-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.4rem;
  border-radius: 16px;
  font-weight: 800;
  letter-spacing: 1.2px;
  font-size: clamp(1.05rem, 3.5vw, 1.3rem);
  color: white;
  background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
  box-shadow: 0 16px 40px rgba(76, 175, 80, 0.35), 0 0 30px rgba(76, 175, 80, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: all 300ms cubic-bezier(0.22, 0.9, 0.2, 1);
  will-change: transform, box-shadow;
  border: 1px solid rgba(255, 255, 255, 0.15);
  position: relative;
}

.pickup-badge::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}

.promo-banner-pickup:hover .pickup-badge,
.promo-banner-pickup:focus-within .pickup-badge {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 22px 50px rgba(76, 175, 80, 0.45), 0 0 40px rgba(76, 175, 80, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #45a049 0%, #388e3c 100%);
}

/* Responsive: promo-pickup banner on tablets */
@media (max-width: 1024px) {
  .promo-pickup {
    padding: 0.9rem 1rem 1.3rem;
  }

  .promo-banner-pickup {
    padding: 1.8rem 2rem;
  }

  .pickup-icon-wrapper {
    width: 65px;
    height: 65px;
    margin-right: 1.8rem;
    border-radius: 16px;
  }

  .pickup-icon {
    font-size: 2rem;
  }

  .pickup-title {
    font-size: clamp(1.35rem, 4.5vw, 1.9rem);
  }

  .pickup-subtitle {
    font-size: clamp(0.88rem, 2.5vw, 1.05rem);
  }

  .pickup-desc {
    font-size: clamp(0.88rem, 2.2vw, 0.98rem);
    max-width: 52ch;
  }

  .pickup-badge {
    padding: 0.7rem 1.2rem;
    font-size: clamp(1rem, 3.2vw, 1.2rem);
  }
}

/* Responsive: promo-pickup banner on mobile */
@media (max-width: 768px) {
  .promo-pickup {
    padding: 0.8rem 0.9rem 1.2rem;
  }

  .promo-banner-pickup {
    padding: 1.5rem 1.8rem;
    border-radius: 18px;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }

  .promo-pickup-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    width: 100%;
  }

  .pickup-icon-wrapper {
    width: 60px;
    height: 60px;
    margin-right: 0;
    border-radius: 16px;
    align-self: flex-start;
  }

  .pickup-icon {
    font-size: 1.8rem;
  }

  .pickup-title {
    font-size: clamp(1.2rem, 5vw, 1.6rem);
    margin-bottom: 0.2rem;
  }

  .pickup-subtitle {
    font-size: clamp(0.85rem, 2.8vw, 1rem);
    margin-bottom: 0.25rem;
  }

  .pickup-desc {
    font-size: clamp(0.87rem, 2.3vw, 0.95rem);
    max-width: 100%;
  }

  .pickup-badge {
    align-self: flex-start;
    padding: 0.65rem 1.1rem;
    font-size: clamp(0.95rem, 3.3vw, 1.1rem);
    margin-top: 0.3rem;
  }
}

/* Responsive: promo-pickup banner on small mobile */
@media (max-width: 480px) {
  .promo-pickup {
    padding: 0.6rem 0.7rem 1rem;
  }

  .promo-banner-pickup {
    padding: 1.2rem 1.4rem;
    border-radius: 16px;
    gap: 1rem;
  }

  .promo-pickup-content {
    gap: 0.8rem;
  }

  .pickup-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 14px;
  }

  .pickup-icon {
    font-size: 1.6rem;
  }

  .pickup-title {
    font-size: clamp(1.1rem, 5.5vw, 1.45rem);
    margin-bottom: 0.15rem;
  }

  .pickup-subtitle {
    font-size: clamp(0.8rem, 3vw, 0.95rem);
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
  }

  .pickup-desc {
    font-size: clamp(0.82rem, 2.5vw, 0.9rem);
  }

  .pickup-badge {
    padding: 0.55rem 0.95rem;
    font-size: clamp(0.9rem, 3.5vw, 1.05rem);
    border-radius: 14px;
  }
}

/* Extra small devices */
@media (max-width: 360px) {
  .promo-pickup {
    padding: 0.5rem 0.6rem 0.9rem;
  }

  .promo-banner-pickup {
    padding: 1rem 1.2rem;
    gap: 0.8rem;
  }

  .pickup-icon-wrapper {
    width: 50px;
    height: 50px;
    margin-right: 0;
  }

  .pickup-icon {
    font-size: 1.4rem;
  }

  .pickup-title {
    font-size: 1.05rem;
  }

  .pickup-subtitle {
    font-size: 0.8rem;
  }

  .pickup-desc {
    font-size: 0.78rem;
    line-height: 1.5;
  }

  .pickup-badge {
    padding: 0.5rem 0.85rem;
    font-size: 0.95rem;
  }
}

/* Respect reduced motion for pickup banner */
@media (prefers-reduced-motion: reduce) {
  .promo-banner-pickup,
  .promo-banner-pickup::before,
  .promo-banner-pickup::after,
  .pickup-icon-wrapper,
  .pickup-icon,
  .pickup-title,
  .pickup-subtitle,
  .pickup-desc,
  .pickup-badge {
    transition: none !important;
    animation: none !important;
    transform: none !important;
  }
}

/* responsive sizes */
@media (max-width: 1100px) {
  .hero-slider {
    max-width: 520px;
  }
}
@media (max-width: 820px) {
  .hero-slider {
    max-width: 100%;
    aspect-ratio: 1 / 1;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.6rem 0;
  }
  .hero-left h1,
  .hero-left .lead,
  .hero-ctas .btn {
    padding-left: 1rem;
  }
}
@media (max-width: 640px) {
  .hero-slider {
    aspect-ratio: 16 / 10;
  }
  .hero-slider .slide-media {
    padding: 0.3rem;
  }
}

/* Features */
.features {
  padding: 2.5rem 1rem;
  transition: opacity 320ms ease, transform 320ms ease;
}
.features.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
.features.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#features-title {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(254, 231, 21, 0.1);
}
.features-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 60ch;
  line-height: 1.6;
}

/* Grid: responsive, elegant spacing */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Modern elegant card style with glassmorphism */
.feature {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 200px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

/* Icon with modern styling */
.feature-icon {
  font-size: 48px;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(254, 231, 21, 0.15), rgba(254, 231, 21, 0.08));
  padding: 16px;
  border-radius: 16px;
  width: max-content;
  box-shadow: 0 8px 24px rgba(254, 231, 21, 0.15);
  transition: all 300ms ease;
  position: relative;
  z-index: 1;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(254, 231, 21, 0.2), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

/* Titles and description with better typography */
.feature-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
}
.feature-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Enhanced hover / focus micro interaction */
.feature:hover,
.feature:focus-within {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.35), 0 0 30px rgba(254, 231, 21, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.feature:hover::before,
.feature:focus-within::before {
  opacity: 1;
}

.feature:hover .feature-icon,
.feature:focus-within .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 32px rgba(254, 231, 21, 0.25);
}

.feature:hover .feature-icon::after,
.feature:focus-within .feature-icon::after {
  opacity: 1;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .features,
  .features.reveal,
  .features.is-visible,
  .feature,
  .feature:hover,
  .feature:focus-within,
  .feature-icon,
  .feature:hover .feature-icon,
  .feature:focus-within .feature-icon,
  .feature::before,
  .feature:hover::before,
  .feature:focus-within::before,
  .feature-icon::after,
  .feature:hover .feature-icon::after,
  .feature:focus-within .feature-icon::after {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ============== QUICK CALL SECTION (Respon Cepat Telpon/Call) ============== */

.quick-call {
  padding: 3rem 1.5rem;
  transition: opacity 320ms ease, transform 320ms ease;
}

.quick-call.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}

.quick-call.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-call-header {
  text-align: center;
  margin-bottom: 3rem;
}

#quick-call-title {
  margin: 0 0 1rem 0;
  font-size: clamp(1.4rem, 3.5vw, 1.8rem);
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.3px;
}

.quick-call-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 70ch;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

/* Quick Call Content Grid */
.quick-call-content {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 600px;
  margin: 0 auto;
  gap: 2.5rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .quick-call-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .quick-call-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Quick Call Card */
.quick-call-card {
  background: transparent;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  border: 1px solid rgba(37, 211, 102, 0.15);
  box-shadow: none;
  transition: all 300ms ease;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Quick Call Icon Wrapper */
.quick-call-icon-wrapper {
  width: 80px;
  height: 80px;
  background: transparent;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  transition: all 300ms ease;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

/* Quick Call Icon */
.quick-call-icon {
  font-size: 40px;
  color: #25d366;
  transition: all 300ms ease;
  position: relative;
  z-index: 2;
}

.quick-call-icon:hover {
  transform: scale(1.15) rotate(-5deg);
  color: #20ba5e;
}

/* Quick Call Card Title */
.quick-call-card-title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  position: relative;
  z-index: 1;
}

/* Quick Call Card Description */
.quick-call-card-desc {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* Quick Call Button */
.quick-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  margin-top: auto;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 300ms ease;
  text-decoration: none;
  box-shadow: none;
}

.quick-call-btn:hover {
  transform: none;
}

/* WhatsApp Button Variant */
.quick-call-btn.whatsapp-btn {
  background: linear-gradient(135deg, #25d366, #20ba5e);
  color: white;
}

.quick-call-btn.whatsapp-btn:hover {
  box-shadow: none;
}

/* Email Button Variant */
.quick-call-btn.email-btn {
  background: linear-gradient(135deg, #ea4335, #d33425);
}

.quick-call-btn.email-btn:hover {
  box-shadow: 0 20px 50px rgba(234, 67, 53, 0.4), 0 0 40px rgba(234, 67, 53, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Hover effect on card */
.quick-call-card:hover,
.quick-call-card:focus-within {
  transform: none;
  border-color: rgba(37, 211, 102, 0.15);
  box-shadow: none;
}

.quick-call-card:hover .quick-call-icon-wrapper,
.quick-call-card:focus-within .quick-call-icon-wrapper {
  transform: none;
}

.quick-call-card:hover .quick-call-icon,
.quick-call-card:focus-within .quick-call-icon {
  color: #25d366;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .quick-call {
    padding: 2.5rem 1.2rem;
  }

  .quick-call-header {
    margin-bottom: 2.5rem;
  }

  #quick-call-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  }

  .quick-call-card {
    padding: 2rem 1.8rem;
    gap: 1.2rem;
  }

  .quick-call-icon-wrapper {
    width: 65px;
    height: 65px;
  }

  .quick-call-icon {
    font-size: 36px;
  }

  .quick-call-card-title {
    font-size: 1.15rem;
  }

  .quick-call-btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
  .quick-call {
    padding: 2rem 1rem;
  }

  .quick-call-header {
    margin-bottom: 2rem;
  }

  #quick-call-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
  }

  .quick-call-card {
    padding: 1.8rem 1.5rem;
    gap: 1rem;
  }

  .quick-call-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .quick-call-icon {
    font-size: 32px;
  }

  .quick-call-card-title {
    font-size: 1.1rem;
  }

  .quick-call-card-desc {
    font-size: 0.95rem;
  }

  .quick-call-btn {
    padding: 0.8rem 1.6rem;
    font-size: 0.9rem;
  }

  .quick-call-btn .material-icons {
    font-size: 18px;
  }
}

/* Responsive: Small Mobile */
@media (max-width: 480px) {
  .quick-call {
    padding: 1.5rem 0.8rem;
  }

  .quick-call-header {
    margin-bottom: 1.5rem;
  }

  #quick-call-title {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
  }

  .quick-call-sub {
    font-size: 1rem;
  }

  .quick-call-card {
    padding: 1.5rem 1.2rem;
    gap: 0.8rem;
    border-radius: 16px;
  }

  .quick-call-icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 14px;
  }

  .quick-call-icon {
    font-size: 28px;
  }

  .quick-call-card-title {
    font-size: 1rem;
  }

  .quick-call-card-desc {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .quick-call-btn {
    padding: 0.7rem 1.4rem;
    font-size: 0.85rem;
    gap: 0.5rem;
  }

  .quick-call-btn .material-icons {
    font-size: 16px;
  }
}

/* Extra Small Devices */
@media (max-width: 360px) {
  #quick-call-title {
    font-size: 1.2rem;
  }

  .quick-call-sub {
    font-size: 0.95rem;
  }

  .quick-call-card {
    padding: 1.2rem 1rem;
    gap: 0.6rem;
  }

  .quick-call-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .quick-call-icon {
    font-size: 24px;
  }

  .quick-call-card-title {
    font-size: 0.95rem;
  }

  .quick-call-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

/* Respect reduced motion for quick call */
@media (prefers-reduced-motion: reduce) {
  .quick-call,
  .quick-call.reveal,
  .quick-call.is-visible,
  .quick-call-card,
  .quick-call-card:hover,
  .quick-call-card:focus-within,
  .quick-call-icon-wrapper,
  .quick-call-card:hover .quick-call-icon-wrapper,
  .quick-call-card:focus-within .quick-call-icon-wrapper,
  .quick-call-icon,
  .quick-call-card:hover .quick-call-icon,
  .quick-call-card:focus-within .quick-call-icon,
  .quick-call-btn,
  .quick-call-btn:hover {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Catalog */
.catalog {
  padding: 1.8rem 1rem;
}

/* Car Category */
.car-category {
  margin-bottom: 3rem;
}

.car-category:last-child {
  margin-bottom: 0;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1.5rem;
  text-align: center;
  position: relative;
}

.category-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  border-radius: 2px;
}

.best-seller {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), #ffd54a);
  color: #101820;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 0.5rem;
  box-shadow: 0 4px 12px rgba(254, 231, 21, 0.2);
  transform: rotate(-2deg);
}

.new {
  display: inline-block;
  background: linear-gradient(135deg, #2196f3, #64b5f6);
  color: #101820;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-left: 0.5rem;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
  transform: rotate(-2deg);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.car-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.22s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 400px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.car-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}
.car-card h3 {
  margin: 0.6rem 0 0.25rem;
}
.car-card p {
  margin: 0.15rem 0;
  color: var(--muted);
}
.car-card .price {
  font-weight: 700;
  margin-top: 0.4rem;
}
.car-card .open-booking {
  margin-top: 0.6rem;
}
.car-card:hover {
  transform: translateY(-6px);
}

/* New styles for modern car cards */
.car-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.15);
  height: 200px;
  background: rgba(255, 255, 255, 0.02);
}

.car-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.car-card:hover .car-image-wrapper img {
  transform: scale(1.05);
}

.car-icon {
  font-size: 1.5rem;
  color: var(--accent);
  background: rgba(254, 231, 21, 0.1);
  padding: 0.25rem;
  border-radius: 50%;
}

.car-specs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.spec-icon {
  font-size: 1rem;
  color: var(--accent);
}

.price-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

.price-option:hover {
  background: rgba(254, 231, 21, 0.05);
}

.price-icon {
  font-size: 1.1rem;
  color: var(--accent);
}

.car-card .btn {
  margin-top: auto;
  align-self: stretch;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .car-specs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .spec-item {
    justify-content: center;
  }

  .car-card {
    min-height: 350px;
  }
}

/* Tours */
.tours {
  padding: 1.8rem 1rem;
  transition: opacity 320ms ease, transform 320ms ease;
}
.tours.reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}
.tours.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.tours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.tour-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.22s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.tour-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  max-height: 220px;
}
.tour-card h4 {
  margin: 0.6rem 0 0.25rem;
}
.tour-card p {
  margin: 0.15rem 0;
  color: var(--muted);
}
.tour-card .price {
  font-weight: 700;
  margin-top: 0.4rem;
}
.tour-card .btn {
  margin-top: 0.6rem;
}
.tour-card:hover {
  transform: translateY(-6px);
}

/* New styles for modern tour cards */
.tour-image-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.15);
}

.tour-image-wrapper img {
  transition: transform 0.3s ease;
}

.tour-card:hover .tour-image-wrapper img {
  transform: scale(1.05);
}

.tour-icon {
  font-size: 1.5rem;
  color: var(--accent);
  background: rgba(254, 231, 21, 0.1);
  padding: 0.25rem;
  border-radius: 50%;
}

.tour-desc {
  margin: 0.5rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.tour-specs {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.tour-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.9rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.tour-specs .spec-icon {
  font-size: 1rem;
  color: var(--accent);
}

.tour-card .price-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tour-card .price-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.5rem;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: background 0.2s ease;
}

.tour-card .price-option:hover {
  background: rgba(254, 231, 21, 0.05);
}

.tour-card .price-icon {
  font-size: 1.1rem;
  color: var(--accent);
}

.tour-card .btn {
  margin-top: auto;
  align-self: stretch;
}

/* Elegant and modern styling for tour booking buttons */
.tour-card .btn-outline {
  background: linear-gradient(90deg, rgba(254, 231, 21, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(254, 231, 21, 0.25);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tour-card .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(254, 231, 21, 0.2), transparent);
  transition: left 0.5s;
}

.tour-card .btn-outline:hover::before {
  left: 100%;
}

.tour-card .btn-outline:hover {
  background: linear-gradient(90deg, var(--accent), #ffd54a);
  color: #101820;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 231, 21, 0.25);
  border-color: var(--accent);
}

.tour-card .btn-outline:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(254, 231, 21, 0.15);
}

/* Responsive adjustments for tours */
@media (max-width: 768px) {
  .tour-specs {
    flex-direction: column;
    gap: 0.5rem;
  }

  .tour-specs .spec-item {
    justify-content: center;
  }
}

/* About */
.about {
  padding: 1.8rem 1rem;
  transition: opacity 320ms ease, transform 320ms ease;
}
.about.reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}
.about.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* About header */

.about h2 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  text-align: left;
}
.about-sub {
  margin: 0 auto;
  color: var(--text);
  font-size: 1.05rem;
  max-width: 70ch;
  text-align: center;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: 0.2px;
  font-style: italic;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(254, 231, 21, 0.03), rgba(255, 255, 255, 0.02));
  padding: 1.5rem 2rem;
  border-radius: 20px;
  border-left: 4px solid var(--accent);
  box-shadow: inset 0 2px 12px rgba(2, 6, 23, 0.08), 0 8px 24px rgba(254, 231, 21, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 300ms ease, background 280ms ease;
  text-shadow: 0 1px 1px rgba(2, 6, 23, 0.2);
}

.about-sub:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 4px 20px rgba(2, 6, 23, 0.15), 0 12px 48px rgba(254, 231, 21, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(254, 231, 21, 0.02), rgba(255, 255, 255, 0.04));
}

.about-sub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(254, 231, 21, 0.4), transparent);
  opacity: 0.8;
}

.about-sub::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 231, 21, 0.2), transparent);
}

/* About content - grid for items */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* About item - elegant card style */
.about-item {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008));
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: transform 320ms cubic-bezier(0.22, 0.9, 0.2, 1), box-shadow 320ms ease, background 280ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 280px;
  position: relative;
  overflow: hidden;
}

/* Subtle hover lift */
.about-item:hover,
.about-item:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(2, 6, 23, 0.28);
  background: linear-gradient(180deg, rgba(254, 231, 21, 0.01), rgba(255, 255, 255, 0.015));
}

/* Icon wrapper - circular background */
.about-icon-wrapper {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(254, 231, 21, 0.1), rgba(254, 231, 21, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border: 2px solid rgba(254, 231, 21, 0.2);
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.about-item:hover .about-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(254, 231, 21, 0.15);
}

/* Icon */
.about-icon {
  font-size: 40px;
  color: var(--accent);
  transition: color 280ms ease;
}

.about-item:hover .about-icon {
  color: #ffd54a;
}

/* Item title */
.about-item-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Item description */
.about-item-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  display: flex;
  align-items: center;
}

/* Respect reduced motion for about */
@media (prefers-reduced-motion: reduce) {
  .about,
  .about.reveal,
  .about.is-visible,
  .about-item,
  .about-item:hover,
  .about-item:focus-within,
  .about-icon-wrapper,
  .about-item:hover .about-icon-wrapper,
  .about-icon,
  .about-item:hover .about-icon {
    transition: none !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Dokumentasi */
.dokumentasi {
  padding: 2.5rem 1rem;
  transition: opacity 320ms ease, transform 320ms ease;
}
.dokumentasi.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
.dokumentasi.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Dokumentasi header */
.dokumentasi h2 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(254, 231, 21, 0.1);
  text-align: center;
}

.dokumentasi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
@media (max-width: 1024px) {
  .dokumentasi-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
  }
}
@media (max-width: 640px) {
  .dokumentasi-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }
}

/* Modern elegant card style with glassmorphism */
.dokumentasi-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem 1.5rem;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.dokumentasi-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}

/* Enhanced hover / focus micro interaction */
.dokumentasi-card:hover,
.dokumentasi-card:focus-within {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.35), 0 0 30px rgba(254, 231, 21, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}

.dokumentasi-card:hover::before,
.dokumentasi-card:focus-within::before {
  opacity: 1;
}

/* Image wrapper with modern styling */
.dokumentasi-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.15);
  transition: transform 300ms ease, box-shadow 300ms ease;
  height: 200px;
}

.dokumentasi-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 16px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.dokumentasi-card:hover .dokumentasi-image-wrapper img {
  transform: scale(1.08);
}

.dokumentasi-card:hover .dokumentasi-image-wrapper {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.25);
}

/* Header with icon */

.dokumentasi-icon {
  font-size: 1.8rem;
  color: var(--accent);
  background: linear-gradient(135deg, rgba(254, 231, 21, 0.08), rgba(254, 231, 21, 0.04));
  padding: 0.4rem;
  border-radius: 50%;
  border: 1px solid rgba(254, 231, 21, 0.2);
  box-shadow: 0 4px 12px rgba(254, 231, 21, 0.1);
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.dokumentasi-card:hover .dokumentasi-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 24px rgba(254, 231, 21, 0.25);
}

/* Description with better typography */
.dokumentasi-desc {
  margin: 0.5rem 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
  position: relative;
  z-index: 1;
  text-align: center;
}

/* Elegant and modern styling for dokumentasi buttons */
.dokumentasi-card .btn-outline {
  background: linear-gradient(90deg, rgba(254, 231, 21, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(254, 231, 21, 0.25);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: auto;
  align-self: stretch;
}

.dokumentasi-card .btn-outline::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(254, 231, 21, 0.2), transparent);
  transition: left 0.5s;
}

.dokumentasi-card .btn-outline:hover::before {
  left: 100%;
}

.dokumentasi-card .btn-outline:hover {
  background: linear-gradient(90deg, var(--accent), #ffd54a);
  color: #101820;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 231, 21, 0.25);
  border-color: var(--accent);
}

.dokumentasi-card .btn-outline:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(254, 231, 21, 0.15);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dokumentasi,
  .dokumentasi.reveal,
  .dokumentasi.is-visible,
  .dokumentasi-card,
  .dokumentasi-card:hover,
  .dokumentasi-card:focus-within,
  .dokumentasi-image-wrapper,
  .dokumentasi-card:hover .dokumentasi-image-wrapper,
  .dokumentasi-image-wrapper img,
  .dokumentasi-card:hover .dokumentasi-image-wrapper img,
  .dokumentasi-icon,
  .dokumentasi-card:hover .dokumentasi-icon,
  .dokumentasi-card::before,
  .dokumentasi-card:hover::before,
  .dokumentasi-card:focus-within::before,
  .dokumentasi-card .btn-outline,
  .dokumentasi-card .btn-outline:hover,
  .dokumentasi-card .btn-outline:active,
  .dokumentasi-card .btn-outline::before,
  .dokumentasi-card .btn-outline:hover::before {
    transition: none !important;
    transform: none !important;
    animation: none !important;
    opacity: 1 !important;
  }
}

/* Responsive adjustments for dokumentasi */
@media (max-width: 768px) {
  .dokumentasi-card {
    /* min-height: 350px; */
    padding: 1.5rem 1rem;
  }
}

/* Reviews */
.reviews {
  padding: 1.8rem 0;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.review-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.18);
  transition: transform 320ms cubic-bezier(0.22, 0.9, 0.2, 1), box-shadow 320ms ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 250px;
}

.customer-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 12px rgba(254, 231, 21, 0.2);
}

.review-meta {
  flex: 1;
}

.customer-name {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.customer-location {
  margin: 0.2rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.review-date {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stars {
  font-size: 1.2rem;
  color: var(--accent);
}

.rating-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}

.review-text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
  position: relative;
  padding: 1rem 1.2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(254, 231, 21, 0.01));
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  font-style: italic;
  box-shadow: inset 0 2px 8px rgba(2, 6, 23, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.review-text::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 0.5rem;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.6;
  font-family: serif;
}

.review-text::after {
  content: '"';
  position: absolute;
  bottom: -1rem;
  right: 0.5rem;
  font-size: 2rem;
  color: var(--accent);
  opacity: 0.6;
  font-family: serif;
}

.review-card:hover .review-text {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(254, 231, 21, 0.02));
  box-shadow: inset 0 4px 12px rgba(2, 6, 23, 0.15), 0 4px 12px rgba(254, 231, 21, 0.1);
}

.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(2, 6, 23, 0.24);
}

/* Contact */
.contact {
  padding: 2.5rem 1rem;
  transition: opacity 320ms ease, transform 320ms ease;
}
.contact.reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
}
.contact.is-visible {
  opacity: 1;
  transform: translateY(0);
}

#contact-title {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(254, 231, 21, 0.1);
}

.contact-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 320ms cubic-bezier(0.22, 0.9, 0.2, 1), box-shadow 320ms ease;
}

.contact-form:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(254, 231, 21, 0.1);
  background: rgba(255, 255, 255, 0.08);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 320ms cubic-bezier(0.22, 0.9, 0.2, 1), box-shadow 320ms ease;
}

.info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(2, 6, 23, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.5rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 8px;
  flex-shrink: 0;
  box-shadow: none;
}

.info-content h4 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.info-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Map iframe */
.map-embed iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 12px;
}

/* Responsive for contact */
@media (max-width: 1120px) {
  /* Tablet adjustments: keep grid 2 columns, ensure info-item row alignment */
  .contact-grid {
    gap: 2rem;
  }

  .contact-form,
  .info-card,
  .map-container {
    padding: 2rem;
  }

  .info-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    text-align: left;
  }

  .info-icon {
    align-self: flex-start;
    flex-shrink: 0;
  }

  .info-content h4 {
    font-size: 1rem;
  }

  .info-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  /* Mobile: stack grid to 1 column, keep info-item row for icon alignment */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-header {
    margin-bottom: 2rem;
  }

  #contact-title {
    font-size: 1.8rem;
  }

  .contact-sub {
    font-size: 1rem;
  }

  .contact-form,
  .info-card,
  .map-container {
    padding: 1.5rem;
  }

  .info-item {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.75rem;
    text-align: left;
  }

  .info-icon {
    align-self: flex-start;
    flex-shrink: 0;
    font-size: 1.25rem;
  }

  .info-content h4 {
    font-size: 0.95rem;
  }

  .info-content p {
    font-size: 0.85rem;
  }

  .map-embed iframe {
    height: 250px;
  }
}

/* FAQ */
.faq {
  padding: 2.5rem 1rem;
  transition: opacity 320ms ease, transform 320ms ease;
}
.faq.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
.faq.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 40px rgba(2, 6, 23, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: center;
  position: relative;
}
.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 300ms ease;
}
.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 60px rgba(2, 6, 23, 0.35), 0 0 20px rgba(254, 231, 21, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
}
.faq-item:hover::before,
.faq-item:focus-within::before {
  opacity: 1;
}
.faq-question {
  padding: 2rem 2rem 2rem 3rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.15rem;
  line-height: 1.4;
  position: relative;
  transition: color 300ms ease, padding 300ms ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::before {
  content: '+';
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--accent);
  transition: transform 300ms ease, color 300ms ease;
}
.faq-question::after {
  content: '';
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 300ms ease;
  margin-left: auto;
}
.faq-item:hover .faq-question::after {
  width: 30px;
}
details[open] .faq-question::before {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
.faq-question:hover,
.faq-question:focus {
  color: var(--accent);
}
.faq-question:focus {
  outline: none;
  box-shadow: inset 0 0 0 2px rgba(254, 231, 21, 0.2);
  border-radius: 12px;
}
.faq-answer {
  padding: 0 2rem 2rem 3rem;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 400ms ease;
}
details[open] .faq-answer {
  max-height: 500px;
  padding: 1rem 2rem 2rem 3rem;
}
.faq-answer p {
  margin: 0;
  margin-bottom: 1rem;
}
.faq-answer p:last-child {
  margin-bottom: 0;
}

/* Footer - Modern and Elegant */
.site-footer {
  background: linear-gradient(180deg, rgba(16, 24, 32, 0.95), rgba(16, 24, 32, 0.98));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 231, 21, 0.3), transparent);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.15);
  position: relative;
  overflow: hidden;
}

.socials a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(254, 231, 21, 0.2), transparent);
  transition: left 0.5s ease;
}

.socials a:hover::before {
  left: 100%;
}

.socials a:hover {
  background: linear-gradient(135deg, rgba(254, 231, 21, 0.15), rgba(254, 231, 21, 0.08));
  border-color: rgba(254, 231, 21, 0.3);
  color: var(--accent);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(254, 231, 21, 0.2);
}

.socials a:active {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 12px rgba(254, 231, 21, 0.15);
}

/* Responsive footer */
@media (max-width: 640px) {
  .site-footer {
    padding: 2rem 0 1rem;
    margin-top: 3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-inner p {
    font-size: 0.9rem;
  }

  .socials {
    gap: 0.75rem;
  }

  .socials a {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(2, 6, 23, 0.6);
  z-index: 80;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal[aria-hidden='false'] {
  display: flex;
}
.modal-panel {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 2.5rem 2rem;
  border-radius: 24px;
  width: 480px;
  max-width: 95%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(2, 6, 23, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.3s ease;
}
.modal-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 100px rgba(2, 6, 23, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.modal-close {
  position: absolute;
  right: 1rem;
  top: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(2, 6, 23, 0.2);
}
.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(2, 6, 23, 0.3);
}

/* Booking Form Styling */
#booking-modal h3 {
  margin: 0 0 2rem 0;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  text-align: center;
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(254, 231, 21, 0.1);
}

#booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#booking-form label {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

#booking-form input,
#booking-form select {
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#booking-form input:focus,
#booking-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(254, 231, 21, 0.1);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

#booking-form input[readonly] {
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  cursor: not-allowed;
}

#booking-form select {
  cursor: pointer;
}

#booking-form .btn {
  margin-top: 1rem;
  padding: 0.9rem 1.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.2);
}

#booking-form .btn-primary {
  background: linear-gradient(90deg, #ffdf6b, var(--accent));
  color: #101820;
  border: none;
}

#booking-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(254, 231, 21, 0.25);
}

#booking-form .btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

#booking-form .btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(2, 6, 23, 0.3);
}

.form-buttons {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  justify-content: space-between;
}

/* Page booking form */
#booking-form-page {
  max-height: 70vh;
  overflow-y: auto;
  padding-right: 0.5rem;
}

#booking-form-page .form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

#booking-form-page label {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}

#booking-form-page input,
#booking-form-page select {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

#booking-form-page input:focus,
#booking-form-page select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(254, 231, 21, 0.1);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

#booking-form-page .form-buttons {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

#booking-form-page .btn {
  padding: 0.9rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.2);
}

@media (max-width: 640px) {
  .modal-panel {
    padding: 2rem 1.5rem;
    width: 95%;
  }
  #booking-modal h3 {
    font-size: 1.5rem;
  }
  .form-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  #booking-form-page .form-row {
    flex-direction: column;
    gap: 0.5rem;
  }
  #booking-form-page {
    max-height: none;
    overflow-y: visible;
  }
}

/* Map iframe */
.map-embed iframe {
  width: 100%;
  height: 200px;
  border: 0;
  border-radius: 8px;
}

/* responsive - mobile-first */
@media (max-width: 1024px) {
  .feature-grid,
  .cars-grid,
  .tours-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Add padding to "Lihat Mobil" button on tablet and mobile */
  .hero-ctas .btn {
    padding: 0.8rem 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .nav-list {
    display: none;
  }
  .hamburger {
    display: inline-block;
  }
  .cars-grid,
  .feature-grid,
  .tours-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    padding: 0.5rem 0.75rem;
  }
  .brand .logo {
    width: 140px;
    max-height: 40px;
  }
  .book-now {
    padding: 0.45rem 0.7rem;
  }
  .nav-list {
    gap: 0.35rem;
  }
  .hero-ctas .btn {
    margin-left: 1rem;
  }
}
@media (max-width: 420px) {
  .brand .logo {
    width: 96px; /* 2x dari 48px */
    max-height: 96px; /* 2x dari 48px */
  }
}

/* Proximity hover effect (subtle, elegant) */
.proximate {
  transition: transform 180ms ease, box-shadow 180ms ease, background 200ms ease, color 200ms ease;
}

/* Nav links proximity */

/* Primary buttons proximity (Lihat Mobil / Dapatkan Diskon / Booking) */
.btn-primary.proximate,
.cta-btn.proximate,
.book-now.proximate,
.btn.proximate {
  background: linear-gradient(90deg, #ffea80, var(--accent));
  color: #101820;
  box-shadow: 0 18px 48px rgba(254, 231, 21, 0.12);
  transform: translateY(-4px);
}

/* Outline buttons proximity — subtle fill */
.btn-outline.proximate {
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: 0 12px 36px rgba(2, 6, 23, 0.28);
  transform: translateY(-3px);
}

/* Reduce motion users: disable JS proximity transform */
@media (prefers-reduced-motion: reduce) {
  .proximate {
    transition: none !important;
    transform: none !important;
    box-shadow: none !important;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.whatsapp-icon {
  color: white;
  font-size: 24px;
  font-weight: bold;
}

/* Chatbot - Elegant, Neat, and Modern */
.chatbot {
  padding: 3rem 1rem;
  transition: opacity 320ms ease, transform 320ms ease;
}
.chatbot.reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
.chatbot.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.chatbot h2 {
  margin: 0 0 0.75rem 0;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  background: linear-gradient(135deg, var(--text), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 12px rgba(254, 231, 21, 0.1);
}
.chatbot-sub {
  margin: 0;
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.6;
}

.chatbot-messages {
  height: 450px;
  overflow-y: auto;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.008));
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  scrollbar-width: thin;
  scrollbar-color: rgba(254, 231, 21, 0.3) transparent;
}
.chatbot-messages::-webkit-scrollbar {
  width: 6px;
}
.chatbot-messages::-webkit-scrollbar-track {
  background: transparent;
}
.chatbot-messages::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, rgba(254, 231, 21, 0.3), rgba(254, 231, 21, 0.1));
  border-radius: 3px;
}
.chatbot-messages::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(254, 231, 21, 0.5), rgba(254, 231, 21, 0.2));
}
.message {
  display: flex;
  margin-bottom: 1.5rem;
  align-items: flex-start;
  gap: 1rem;
  animation: messageSlideIn 0.4s ease-out;
}
@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.message-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(2, 6, 23, 0.2);
  transition: transform 300ms ease, box-shadow 300ms ease;
}
.message:hover .message-avatar {
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(2, 6, 23, 0.3);
}
.bot-message .message-avatar {
  background: linear-gradient(135deg, var(--accent), #ffd54a);
  color: #101820;
  box-shadow: 0 8px 24px rgba(254, 231, 21, 0.2);
}
.user-message .message-avatar {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.message-content p {
  margin: 0;
  padding: 1rem 1.25rem;
  border-radius: 20px;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 80%;
  word-wrap: break-word;
  position: relative;
}
.bot-message .message-content p {
  background: linear-gradient(135deg, rgba(254, 231, 21, 0.08), rgba(254, 231, 21, 0.04));
  color: var(--text);
  border: 1px solid rgba(254, 231, 21, 0.15);
  box-shadow: 0 4px 12px rgba(254, 231, 21, 0.1);
}
.bot-message .message-content p::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(254, 231, 21, 0.15);
}
.user-message .message-content p {
  background: linear-gradient(135deg, var(--accent), #ffd54a);
  color: #101820;
  border: 1px solid rgba(254, 231, 21, 0.3);
  box-shadow: 0 4px 12px rgba(254, 231, 21, 0.2);
  align-self: flex-end;
}
.user-message .message-content p::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 20px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(254, 231, 21, 0.3);
}
.user-message {
  flex-direction: row-reverse;
}
.user-message .message-content p {
  text-align: right;
}

/* Responsive for Chatbot */
@media (max-width: 768px) {
  .chatbot-container {
    margin: 0 1rem;
    padding: 1.5rem;
  }
  .chatbot-messages {
    height: 350px;
    padding: 1rem;
  }
  .message-content p {
    max-width: 90%;
    font-size: 0.95rem;
  }
  .chatbot-input-container {
    flex-direction: column;
    gap: 0.75rem;
  }
  .chatbot-input-container input {
    width: 100%;
  }
  .chatbot-input-container .btn {
    width: 100%;
  }
}

/* ===== SEARCH BOX ===== */
.search-box {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 18px 0;
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 1rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

/* ===== CAROUSEL ===== */
.cars-carousel {
  position: relative;
  overflow: hidden;
  margin: 12px 0 28px;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 6px;
  -webkit-overflow-scrolling: touch;
}

.carousel-track .car-card {
  scroll-snap-align: start;
  flex: 0 0 260px; /* lebar card di carousel; ubah sesuai kebutuhan */
  max-width: 260px;
}

/* scrollbar kecil */
.carousel-track::-webkit-scrollbar {
  height: 8px;
}
.carousel-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

/* tombol navigasi */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  border: none;
  color: #fff;
  font-size: 20px;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 6;
}
.carousel-btn.prev {
  left: 8px;
}
.carousel-btn.next {
  right: 8px;
}

/* responsive: di layar kecil, card lebih lebar (satu per view) */
@media (max-width: 640px) {
  .carousel-track .car-card {
    flex: 0 0 78%;
    max-width: 78%;
  }
  .carousel-btn {
    display: none;
  } /* user akan swipe di HP */
}

/* ======================= */
/*     TOUR CAROUSEL       */
/* ======================= */

.tour-carousel {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}

.tour-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 6px;
  -webkit-overflow-scrolling: touch;
}
.tour-track::-webkit-scrollbar {
  height: 8px;
}
.tour-track::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}
.tour-track::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.3);
}

.tour-card {
  min-width: 300px;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.05);
  padding: 15px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.tour-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.tour-card h3 {
  margin: 10px 0;
}

.price-short {
  color: var(--accent);
  margin-bottom: 10px;
}

.btn {
  width: 100%;
  margin-bottom: 8px;
}

/* Arrows */
.tour-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  background: rgba(255, 255, 255, 0.12);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  font-size: 28px;
  cursor: pointer;
}

.tour-arrow.left {
  left: 8px;
}
.tour-arrow.right {
  right: 8px;
}

/* ======================= */
/*          MODAL          */
/* ======================= */

.tour-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #111;
  padding: 20px;
  border-radius: 14px;
  width: 90%;
  max-width: 450px;
  color: white;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
}

.modal-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.close-modal {
  position: absolute;
  right: 12px;
  top: 12px;
  font-size: 26px;
  cursor: pointer;
}

/* Hide carousel arrows on tablet & mobile */
@media (max-width: 992px) {
  .carousel-btn {
    display: none !important;
  }
}

/* Carousel dots for navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 1rem;
}

.carousel-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.carousel-dots .dot.active {
  background: var(--accent);
  transform: scale(1.2);
}

.carousel-dots .dot:hover {
  background: rgba(254, 231, 21, 0.5);
}
