/* ═══════════════════════════════════════════════════════════════
   COMPONENT STYLES - All UI Components
   Awwwards-tier premium components
   ═══════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   APP SHELL
   ───────────────────────────────────────────────────────────────── */
.app-shell {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: transparent;  /* Allow living-background to show through */
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
  z-index: 1;  /* Above living-background canvas */
}

.app-content {
  flex: 1;
  padding-bottom: calc(80px + var(--safe-bottom));
  max-width: 100vw;
  overflow-x: hidden;
}

/* Page container */
.page {
  display: none;
  padding: var(--page-padding);
  padding-top: calc(60px + var(--safe-top));
  min-height: calc(100vh - var(--nav-height) - var(--safe-bottom));
  max-width: 100vw;
  overflow-x: hidden;
}

.page.active {
  display: block;
}

/* Section */
.section {
  margin-bottom: var(--section-gap);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

/* ─────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-20) var(--page-padding);
  padding-top: calc(80px + var(--safe-top));  /* Clear trust strip */
  overflow: visible;
}

/* Hero glow background */
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 100%;
  background: var(--gradient-hero-glow);
  pointer-events: none;
  z-index: 0;
}

/* 3D Container */
.hero-3d-container {
  position: relative;
  width: 100%;
  height: 200px;
  margin-bottom: -40px;
  z-index: 1;
  overflow: visible;
}

.hero-3d-container canvas {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140% !important;
  height: 200% !important;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  margin-bottom: var(--space-4);
}

.hero-subtitle {
  margin-bottom: var(--space-10);
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

.hero-phone {
  font-size: var(--text-sm);
  transition: color var(--duration-fast) var(--ease-out);
}

.hero-phone:hover {
  color: var(--color-text);
}

/* Hero Inline Trust Signal */
.hero-trust-inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.hero-trust-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.hero-trust-stars svg {
  filter: drop-shadow(0 1px 2px rgba(var(--color-warning-rgb), 0.3));
}

.hero-trust-text {
  font-weight: var(--font-medium);
}

.hero-trust-divider {
  color: var(--color-border-light);
  margin: 0 var(--space-1);
}

.hero-trust-guarantee {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  color: var(--color-primary);
  font-weight: var(--font-medium);
}

.hero-trust-guarantee::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2300d4e8' stroke-width='2'%3E%3Cpath d='M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z'/%3E%3Cpath d='M9 12l2 2 4-4'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

@media (max-width: 480px) {
  .hero-trust-inline {
    flex-direction: column;
    gap: var(--space-2);
  }

  .hero-trust-divider {
    display: none;
  }
}

/* ─────────────────────────────────────────────────────────────────
   TRUST STRIP - Compact inline with top pills
   ───────────────────────────────────────────────────────────────── */
.trust-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fab);
  background: transparent;
  padding: var(--space-2) var(--page-padding);
  padding-top: var(--safe-top);
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.trust-strip .pill {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2);
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  white-space: nowrap;
}

.trust-strip .pill svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

/* ─────────────────────────────────────────────────────────────────
   PACKAGE CARDS
   ───────────────────────────────────────────────────────────────── */
.packages-grid {
  display: grid;
  gap: var(--card-gap);
}

.packages-list {
  display: flex;
  flex-direction: column;
  gap: var(--card-gap);
}

.package-card {
  position: relative;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--component-padding);
  box-shadow: var(--glass-inner-glow);
  transition: all var(--duration-normal) var(--ease-spring);
  cursor: pointer;
}

.package-card:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.12);
}

.package-card.expanded {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-color: rgba(var(--color-primary-rgb), 0.2);
  box-shadow: var(--shadow-4);
}

/* Popular badge - positioned under price, inline with tagline */
.package-card.popular .package-price::after {
  content: 'Most Popular';
  display: block;
  margin-top: var(--space-1);
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--color-void);
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  text-align: center;
}

/* Premium badge - positioned under price, inline with tagline */
.package-card.premium .package-price::after {
  content: 'Premium';
  display: block;
  margin-top: var(--space-1);
  padding: var(--space-1) var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  color: var(--color-warning);
  background: rgba(var(--color-warning-rgb), 0.15);
  border-radius: var(--radius-full);
  text-align: center;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--space-2);
}

.package-name {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
}

.package-price {
  text-align: right;
}

.package-price-value {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.package-price-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.package-tagline {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-3);
}

.package-meta {
  display: flex;
  gap: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
}

.package-expand-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.package-card.expanded .package-expand-icon {
  transform: rotate(180deg);
}

/* Package features (collapsible) */
.package-features {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-slow) var(--ease-spring);
}

.package-card.expanded .package-features {
  grid-template-rows: 1fr;
}

.package-features-inner {
  overflow: hidden;
}

.package-features-list {
  padding-top: var(--space-4);
  margin-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.package-feature {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.package-feature svg {
  width: 16px;
  height: 16px;
  color: var(--color-success);
  flex-shrink: 0;
}

.package-cta {
  margin-top: var(--space-4);
  width: 100%;
}

/* ─────────────────────────────────────────────────────────────────
   REVIEW CAROUSEL
   ───────────────────────────────────────────────────────────────── */
.reviews-carousel {
  position: relative;
}

.reviews-track {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  padding: var(--space-2) 0;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  flex: 0 0 calc(100% - var(--space-8));
  scroll-snap-align: center;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--component-padding);
  box-shadow: var(--glass-inner-glow);
}

.review-quote {
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  position: relative;
}

/* Quote mark removed for cleaner look */

.review-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.review-avatar {
  width: 44px;
  height: 44px;
}

.review-info {
  flex: 1;
}

.review-name {
  font-weight: var(--font-semibold);
  margin-bottom: 2px;
}

.review-vehicle {
  font-size: var(--text-sm);
  color: var(--color-text-tertiary);
}

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

.review-star {
  width: 14px;
  height: 14px;
  color: var(--color-warning);
}

.review-source {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  margin-top: var(--space-1);
  text-transform: capitalize;
}

/* Carousel dots */
.reviews-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.review-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border-light);
  border: none;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-spring);
}

.review-dot.active {
  width: 24px;
  background: var(--color-primary);
}

/* ─────────────────────────────────────────────────────────────────
   FAQ
   ───────────────────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--glass-inner-glow);
  transition: all var(--duration-fast) var(--ease-out);
}

.faq-item:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.12);
}

.faq-item.open {
  background: var(--glass-bg-strong);
  border-color: rgba(var(--color-primary-rgb), 0.3);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  min-height: var(--touch-target-comfortable);
  text-align: left;
  cursor: pointer;
}

.faq-question {
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  flex: 1;
}

.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-slow) var(--ease-spring);
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
}

.faq-answer-content {
  padding: 0 var(--space-4) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

/* ─────────────────────────────────────────────────────────────────
   BOTTOM NAVIGATION - iOS glass pill style (floating)
   ───────────────────────────────────────────────────────────────── */
.bottom-nav {
  position: fixed;
  bottom: calc(var(--space-4) + var(--safe-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-nav);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);

  height: 56px;
  padding: 0 var(--space-3);

  /* iOS glass effect */
  background: linear-gradient(
    135deg,
    rgba(30, 35, 45, 0.75) 0%,
    rgba(20, 25, 35, 0.85) 100%
  );
  backdrop-filter: blur(40px) saturate(180%);
  -webkit-backdrop-filter: blur(40px) saturate(180%);

  /* Depth and shadows */
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-full);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.nav-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;

  width: 56px;
  height: 44px;
  padding: 0;
  border-radius: var(--radius-lg);

  color: var(--color-text-muted);
  transition:
    color var(--duration-fast) var(--ease-out),
    background var(--duration-fast) var(--ease-out),
    transform var(--duration-fast) var(--ease-spring);
}

/* Press effect */
.nav-item:active {
  transform: scale(0.95);
}

.nav-item.active {
  color: var(--color-primary);
  background: var(--color-primary-muted);
}

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

.nav-label {
  font-size: 10px;
  font-weight: var(--font-medium);
}

.nav-item.active .nav-label {
  font-weight: var(--font-semibold);
}

/* ─────────────────────────────────────────────────────────────────
   CONTACT FAB - Dual pill layout
   ───────────────────────────────────────────────────────────────── */
.contact-fab {
  position: fixed;
  top: calc(var(--safe-top) + var(--space-2));
  right: var(--page-padding);
  z-index: var(--z-fab);
  display: flex;
  gap: var(--space-2);
}

.fab-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-1);
  padding: var(--space-2);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  box-shadow: var(--shadow-2);
  transition: transform var(--duration-fast) var(--ease-spring);
  border: none;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.fab-pill:active {
  transform: scale(0.92);
}

.fab-pill svg {
  flex-shrink: 0;
}

/* Icon-only pills */
.fab-pill-social,
.fab-pill-phone {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Book pill - primary with text */
.fab-pill-book {
  padding: var(--space-2) var(--space-3);
  background: var(--color-primary);
  color: var(--color-void);
}

/* ─────────────────────────────────────────────────────────────────
   SOCIAL SHEET
   ───────────────────────────────────────────────────────────────── */
.social-sheet {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.social-sheet.active {
  pointer-events: auto;
  opacity: 1;
}

.social-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.social-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: calc(100% - var(--space-8));
  max-width: 320px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--glass-inner-glow);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.social-sheet.active .social-container {
  transform: translate(-50%, -50%) scale(1);
}

.social-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
}

.social-header h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
}

.social-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast);
}

.social-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}

.social-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  color: var(--color-text);
  text-decoration: none;
  transition: background var(--duration-fast);
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
}

.social-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.social-link-name {
  flex: 1;
  font-weight: var(--font-medium);
}

.social-link-handle {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.social-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

.social-stat {
  text-align: center;
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
}

.social-stat-value {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.social-stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────
   RATING SHEET
   ───────────────────────────────────────────────────────────────── */
.rating-sheet {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.rating-sheet.active {
  pointer-events: auto;
  opacity: 1;
}

.rating-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.rating-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: calc(100% - var(--space-8));
  max-width: 360px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--glass-inner-glow);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.rating-sheet.active .rating-container {
  transform: translate(-50%, -50%) scale(1);
}

.rating-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-5);
}

.rating-header h3 {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
}

.rating-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: var(--radius-full);
  transition: background var(--duration-fast);
}

.rating-close:hover {
  background: rgba(255, 255, 255, 0.1);
}

.rating-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.rating-display {
  text-align: center;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
}

.rating-big-number {
  font-size: 48px;
  font-weight: var(--font-bold);
  color: var(--color-text);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.rating-stars {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.rating-count {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.google-review-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-4);
  background: #4285f4;
  border-radius: var(--radius-lg);
  color: white;
  font-weight: var(--font-semibold);
  text-decoration: none;
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.google-review-btn:hover {
  background: #3367d6;
}

.google-review-btn:active {
  transform: scale(0.98);
}

.google-review-btn svg:first-child {
  fill: white;
}

.rating-reviews-preview {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.rating-review-mini {
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
}

.rating-review-mini-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin-bottom: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rating-review-mini-author {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

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

.rating-review-mini-stars svg {
  width: 10px;
  height: 10px;
  fill: var(--color-warning);
}

/* ─────────────────────────────────────────────────────────────────
   BOOKING SHEET
   ───────────────────────────────────────────────────────────────── */
.booking-sheet {
  position: fixed;
  inset: 0;
  z-index: var(--z-sheet);
  visibility: hidden;
  pointer-events: none;
}

.booking-sheet.active {
  visibility: visible;
  pointer-events: auto;
}

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.booking-sheet.active .booking-backdrop {
  opacity: 1;
}

.booking-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  max-height: 90vh;
  max-height: 90dvh;
  background: rgba(18, 18, 22, 0.95);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-top: var(--glass-border);
  border-radius: var(--radius-3xl) var(--radius-3xl) 0 0;
  padding: var(--space-6);
  padding-bottom: calc(var(--space-6) + var(--safe-bottom));
  transform: translateY(100%);
  transition: transform var(--duration-slow) var(--ease-spring);
  overflow-y: auto;
  overflow-x: hidden;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
}

.booking-sheet.active .booking-container {
  transform: translateY(0);
}

.booking-handle {
  width: 36px;
  height: 4px;
  background: var(--color-border-light);
  border-radius: var(--radius-full);
  margin: 0 auto var(--space-4);
}

.booking-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-6);
}

.booking-close {
  margin-right: calc(var(--space-2) * -1);
}

.booking-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

/* Booking form steps */
.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
}

.booking-step-header {
  margin-bottom: var(--space-4);
}

.booking-step-title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-1);
}

.booking-step-subtitle {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

/* Package selection in booking */
.booking-packages {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.booking-package-option {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--glass-bg);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.booking-package-option:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.12);
}

.booking-package-option.selected {
  border-color: var(--color-primary);
  background: rgba(var(--color-primary-rgb), 0.15);
}

.booking-package-radio {
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border-light);
  border-radius: var(--radius-full);
  flex-shrink: 0;
  position: relative;
}

.booking-package-option.selected .booking-package-radio {
  border-color: var(--color-primary);
}

.booking-package-option.selected .booking-package-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: var(--radius-full);
}

.booking-package-info {
  flex: 1;
}

.booking-package-name {
  font-weight: var(--font-semibold);
}

.booking-package-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.booking-package-price {
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

/* Vehicle type toggle */
.vehicle-toggle {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-1);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
}

.vehicle-toggle-btn {
  flex: 1;
  padding: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  background: transparent;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-out);
}

.vehicle-toggle-btn.active {
  background: var(--glass-bg-strong);
  color: var(--color-text);
  box-shadow: var(--shadow-2), var(--glass-inner-glow);
}

/* Booking trust badges */
.booking-trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  padding: var(--space-4) 0;
  margin: var(--space-4) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  max-width: 100%;
}

.booking-trust-badges .trust-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
}

.booking-trust-badges .trust-badge svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.booking-trust-badges .trust-badge span {
  white-space: nowrap;
}

/* Responsive: stack on very small screens */
@media (max-width: 380px) {
  .booking-trust-badges {
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
  }
}

/* Booking navigation */
.booking-nav {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.booking-nav .btn {
  flex: 1;
}

/* ─────────────────────────────────────────────────────────────────
   GALLERY
   ───────────────────────────────────────────────────────────────── */
.gallery-tabs {
  display: flex;
  gap: var(--space-2);
  overflow-x: auto;
  padding-bottom: var(--space-4);
  margin-bottom: var(--space-4);
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.gallery-tabs::-webkit-scrollbar {
  display: none;
}

.gallery-tab {
  flex-shrink: 0;
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-full);
  transition: all var(--duration-fast) var(--ease-out);
}

.gallery-tab:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.12);
}

.gallery-tab.active {
  color: var(--color-void);
  background: var(--gradient-primary);
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
}

@media (min-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: var(--space-3);
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.7) 100%);
  opacity: 0;
  transition: opacity var(--duration-fast) var(--ease-out);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

/* Gallery lightbox */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  opacity: 0;
  visibility: hidden;
  transition: all var(--duration-normal) var(--ease-out);
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  padding-top: var(--safe-top);
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 80vh;
  max-height: 80dvh;
  border-radius: var(--radius-lg);
}

/* ─────────────────────────────────────────────────────────────────
   ABOUT PAGE
   ───────────────────────────────────────────────────────────────── */
.about-hero {
  text-align: center;
  padding: var(--space-8) 0;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin: var(--space-8) 0;
}

.about-stat {
  text-align: center;
}

.about-stat-value {
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.about-stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.about-bio {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-8);
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE ADJUSTMENTS
   ───────────────────────────────────────────────────────────────── */
@media (min-width: 480px) {
  .hero {
    min-height: 90vh;
    min-height: 90dvh;
  }

  .hero-3d-container {
    height: 250px;
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .review-card {
    flex: 0 0 calc(50% - var(--space-2));
  }
}

@media (min-width: 768px) {
  :root {
    --page-padding: 32px;
    --section-gap: 96px;
  }

  .hero-3d-container {
    height: 300px;
  }

  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .review-card {
    flex: 0 0 calc(33.333% - var(--space-3));
  }

  .booking-container {
    max-width: 500px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
  }

  .booking-sheet.active .booking-container {
    transform: translateX(-50%) translateY(0);
  }
}

/* ─────────────────────────────────────────────────────────────────
   GLASS FALLBACK
   ───────────────────────────────────────────────────────────────── */
@supports not (backdrop-filter: blur(1px)) {
  .trust-strip,
  .bottom-nav {
    background: rgba(15, 15, 18, 0.98);
  }

  .package-card.expanded {
    background: rgba(22, 22, 25, 0.98);
  }

  .pill {
    background: rgba(255, 255, 255, 0.08);
  }
}

/* ─────────────────────────────────────────────────────────────────
   BEFORE/AFTER IMAGE COMPARISON
   ───────────────────────────────────────────────────────────────── */
.before-after {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--radius-lg);
  touch-action: pan-y;
  cursor: ew-resize;
}

.before-after-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-after {
  clip-path: inset(0 0 0 50%);
}

.before-after-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  transform: translateX(-50%);
  cursor: ew-resize;
  z-index: 10;
}

.before-after-slider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg);
}

.before-after-slider::after {
  content: '↔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: var(--text-lg);
  color: var(--color-bg);
}

.before-after-label {
  position: absolute;
  bottom: var(--space-3);
  padding: var(--space-1) var(--space-3);
  background: rgba(0, 0, 0, 0.7);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
}

.before-after-label-before {
  left: var(--space-3);
}

.before-after-label-after {
  right: var(--space-3);
}

/* ─────────────────────────────────────────────────────────────────
   INFO MODAL
   ───────────────────────────────────────────────────────────────── */
.info-modal {
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  visibility: hidden;
  pointer-events: none;
}

.info-modal.active {
  visibility: visible;
  pointer-events: auto;
}

.info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.info-modal.active .info-modal-backdrop {
  opacity: 1;
}

.info-modal-container {
  position: relative;
  width: 100%;
  max-width: 360px;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-6);
  text-align: center;
  box-shadow: var(--glass-inner-glow);
}

.info-modal-content {
  margin-bottom: var(--space-6);
}

.info-modal-icon {
  margin-bottom: var(--space-4);
}

.info-modal-icon svg {
  width: 48px;
  height: 48px;
}

.info-modal-title {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-3);
}

.info-modal-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
}

.info-modal-links {
  display: flex;
  gap: var(--space-2);
  justify-content: center;
  margin-top: var(--space-4);
}

.info-modal-custom {
  text-align: left;
}

/* Rating Modal Enhanced Styles */
.info-modal-rating-display {
  text-align: center;
  padding: var(--space-4);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-4);
}

.info-modal-rating-score {
  font-size: 56px;
  font-weight: var(--font-bold);
  color: var(--color-text);
  line-height: 1;
  margin-bottom: var(--space-2);
}

.info-modal-rating-stars {
  display: flex;
  justify-content: center;
  gap: var(--space-1);
  margin-bottom: var(--space-2);
}

.info-modal-rating-count {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.info-modal-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background: #4285f4;
  border-radius: var(--radius-lg);
  color: white;
  font-weight: var(--font-semibold);
  font-size: var(--text-sm);
  text-decoration: none;
  margin-bottom: var(--space-4);
  transition: background var(--duration-fast), transform var(--duration-fast);
}

.info-modal-google-btn:hover {
  background: #3367d6;
}

.info-modal-google-btn:active {
  transform: scale(0.98);
}

.info-modal-google-btn svg:first-child {
  fill: white;
}

.info-modal-mini-reviews {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.info-modal-mini-review {
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-md);
  text-align: left;
}

.info-modal-mini-review-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.4;
  margin-bottom: var(--space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.info-modal-mini-review-meta {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.info-modal-mini-review-stars {
  display: flex;
  gap: 2px;
}

/* Review Form Styles */
.review-form {
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
}

.review-form-header {
  font-size: var(--text-base);
  font-weight: var(--font-semibold);
  margin-bottom: var(--space-3);
  text-align: center;
}

.review-star-select {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.star-btn {
  width: 40px;
  height: 40px;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform var(--duration-fast);
}

.star-btn svg {
  width: 100%;
  height: 100%;
  fill: rgba(255, 255, 255, 0.2);
  transition: fill var(--duration-fast);
}

.star-btn:hover svg {
  fill: rgba(255, 193, 7, 0.5);
}

.star-btn.active svg {
  fill: var(--color-warning);
}

.star-btn:active {
  transform: scale(1.1);
}

.review-input,
.review-textarea {
  width: 100%;
  padding: var(--space-3);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-sm);
  margin-bottom: var(--space-3);
  transition: border-color var(--duration-fast);
}

.review-input:focus,
.review-textarea:focus {
  outline: none;
  border-color: var(--color-primary);
}

.review-input::placeholder,
.review-textarea::placeholder {
  color: var(--color-text-muted);
}

.review-textarea {
  resize: none;
  min-height: 80px;
}

.review-submit-btn {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  background: var(--color-primary);
  border: none;
  border-radius: var(--radius-md);
  color: var(--color-text);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  cursor: pointer;
  transition: background var(--duration-fast), opacity var(--duration-fast);
}

.review-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.review-submit-btn:not(:disabled):hover {
  background: var(--color-primary-hover);
}

.review-submit-btn:not(:disabled):active {
  transform: scale(0.98);
}

.review-success {
  text-align: center;
  padding: var(--space-4);
}

.review-success svg {
  margin-bottom: var(--space-3);
}

.review-success-title {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-2);
}

.review-success-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ─────────────────────────────────────────────────────────────────
   ADDONS CAROUSEL
   ───────────────────────────────────────────────────────────────── */
.addons-section {
  margin-bottom: var(--section-gap);
}

.addons-track {
  display: flex;
  gap: var(--space-3);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: var(--space-2) 0;
  -webkit-overflow-scrolling: touch;
}

.addons-track::-webkit-scrollbar {
  display: none;
}

.addon-card {
  flex: 0 0 200px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-4);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--glass-inner-glow);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-spring);
}

.addon-card:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.addon-card:active {
  transform: scale(0.98);
}

.addon-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-muted);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
}

.addon-icon svg {
  width: 20px;
  height: 20px;
}

.addon-name {
  font-weight: var(--font-semibold);
}

.addon-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-normal);
}

.addon-price {
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

/* Addon detail in modal */
.addon-detail {
  text-align: center;
}

.addon-detail-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-4);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-muted);
  border-radius: var(--radius-xl);
  color: var(--color-primary);
}

.addon-detail-icon svg {
  width: 32px;
  height: 32px;
}

.addon-detail-desc {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.addon-detail-price {
  font-size: var(--text-2xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-4);
}

/* ─────────────────────────────────────────────────────────────────
   TOAST NOTIFICATIONS
   ───────────────────────────────────────────────────────────────── */
.toast-container {
  position: fixed;
  top: calc(var(--space-4) + var(--safe-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  width: calc(100% - var(--space-8));
  max-width: 360px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(22, 22, 28, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-4);
  pointer-events: auto;
  transform: translateY(-20px);
  opacity: 0;
  transition: all var(--duration-normal) var(--ease-spring);
}

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

.toast.dismissing {
  transform: translateY(-20px) scale(0.95);
  opacity: 0;
}

.toast-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.toast-icon svg {
  width: 100%;
  height: 100%;
}

.toast-success .toast-icon {
  color: var(--color-success);
}

.toast-error .toast-icon {
  color: var(--color-error);
}

.toast-warning .toast-icon {
  color: var(--color-warning);
}

.toast-info .toast-icon {
  color: var(--color-primary);
}

.toast-message {
  flex: 1;
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.toast-dismiss {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: color var(--duration-fast) var(--ease-out);
}

.toast-dismiss:hover {
  color: var(--color-text);
}

.toast-dismiss svg {
  width: 100%;
  height: 100%;
}

/* ─────────────────────────────────────────────────────────────────
   SERVICE AREAS
   ───────────────────────────────────────────────────────────────── */
.areas-section {
  margin-bottom: var(--section-gap);
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.area-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.area-chip:hover {
  border-color: var(--color-primary);
  background: var(--color-primary-muted);
}

.area-chip svg {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
}

.area-chip-fee {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.area-chip-fee.free {
  color: var(--color-success);
}

/* Map container */
.map-container {
  height: 200px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--glass-bg);
  border: var(--glass-border);
}

/* ─────────────────────────────────────────────────────────────────
   BOOKING PROGRESS DOTS
   ───────────────────────────────────────────────────────────────── */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.booking-progress-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border-light);
  transition: all var(--duration-fast) var(--ease-spring);
}

.booking-progress-dot.active {
  width: 24px;
  background: var(--color-primary);
}

.booking-progress-dot.completed {
  background: var(--color-primary);
}

.booking-progress-line {
  width: 24px;
  height: 2px;
  background: var(--color-border);
}

.booking-progress-line.completed {
  background: var(--color-primary);
}

/* ─────────────────────────────────────────────────────────────────
   MICRO-INTERACTIONS
   ───────────────────────────────────────────────────────────────── */

/* Ripple effect */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Shake animation for errors */
.shake {
  animation: shake 0.4s ease-out;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-8px); }
  40% { transform: translateX(8px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

/* Press feedback */
.press-feedback:active {
  transform: scale(0.97);
  transition: transform 0.1s ease-out;
}

/* Glow pulse for attention */
.glow-pulse {
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(var(--color-primary-rgb), 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(var(--color-primary-rgb), 0.5);
  }
}

/* Trust strip interactive pills */
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--glass-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  white-space: nowrap;
}

.trust-pill:hover {
  background: var(--color-primary-muted);
  border-color: var(--color-primary);
}

.trust-pill:active {
  transform: scale(0.97);
}

.trust-pill svg {
  width: 14px;
  height: 14px;
}

.trust-pill-value {
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

/* ─────────────────────────────────────────────────────────────────
   ENHANCED ABOUT PAGE
   ───────────────────────────────────────────────────────────────── */
.about-owner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: var(--space-8);
}

.about-owner-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  border: 3px solid var(--color-primary);
  object-fit: cover;
  margin-bottom: var(--space-4);
}

.about-owner-name {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  margin-bottom: var(--space-1);
}

.about-owner-title {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.about-contact-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
  box-shadow: var(--glass-inner-glow);
}

.about-contact-buttons {
  display: flex;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.about-contact-buttons .btn {
  flex: 1;
}

.about-quote-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-3) 0;
  border-top: 1px solid var(--color-border);
  cursor: pointer;
}

.about-quote-toggle svg {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  transition: transform var(--duration-normal) var(--ease-spring);
}

.about-quote-toggle.open svg {
  transform: rotate(180deg);
}

.about-quote-form {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-slow) var(--ease-spring);
}

.about-quote-form.open {
  grid-template-rows: 1fr;
}

.about-quote-form-inner {
  overflow: hidden;
}

.about-quote-form-content {
  padding-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.about-description {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  margin-bottom: var(--space-6);
  box-shadow: var(--glass-inner-glow);
}

.about-description p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--color-text-secondary);
}

.about-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
}

.about-cert {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--color-primary-muted);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  color: var(--color-primary);
}

.about-cert svg {
  width: 14px;
  height: 14px;
}

/* Owner Card (Enhanced) */
.owner-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.owner-avatar {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.owner-avatar img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  border: 3px solid var(--color-primary);
  object-fit: cover;
}

.owner-avatar-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-elevated);
  border-radius: var(--radius-full);
  border: 3px solid var(--color-border);
  color: var(--color-text-tertiary);
}

.owner-avatar img:not([src=""]):not([src="assets/images/owner.jpg"]) + .owner-avatar-fallback {
  display: none;
}

.owner-info {
  flex: 1;
}

.owner-name {
  font-weight: var(--font-bold);
  margin-bottom: var(--space-1);
}

.owner-title {
  font-size: var(--text-sm);
}

.owner-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.certification-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(var(--color-primary-rgb), 0.12);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-primary);
}

.certification-badge svg {
  flex-shrink: 0;
}

/* Contact Card */
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.contact-method {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  transition: all var(--duration-fast) var(--ease-spring);
}

.contact-method:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.12);
  transform: translateX(4px);
}

.contact-method:active {
  transform: scale(0.98);
}

.contact-method-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--color-primary-muted);
  border-radius: var(--radius-md);
  color: var(--color-primary);
}

.contact-method-info {
  flex: 1;
}

.contact-method-label {
  font-size: var(--text-xs);
  margin-bottom: 2px;
}

.contact-method-value {
  font-weight: var(--font-semibold);
}

/* Business Hours Grid */
.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-2);
}

@media (min-width: 400px) {
  .hours-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hours-row {
  display: flex;
  flex-direction: column;
  padding: var(--space-2);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  text-align: center;
}

.hours-row.closed {
  opacity: 0.5;
}

.hours-day {
  font-size: var(--text-xs);
  color: var(--color-text-tertiary);
  font-weight: var(--font-medium);
}

.hours-time {
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
}

/* Service Map */
.service-map {
  height: 250px;
  background: var(--glass-bg);
  border-radius: var(--radius-xl);
  border: var(--glass-border);
  overflow: hidden;
  margin-bottom: var(--space-4);
}

.service-map .leaflet-popup-content-wrapper {
  background: rgba(18, 18, 22, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-4);
}

.service-map .leaflet-popup-content {
  margin: var(--space-3);
  color: var(--color-text);
  font-family: var(--font-sans);
}

.service-map .leaflet-popup-tip {
  background: rgba(18, 18, 22, 0.9);
}

.custom-marker .marker-pin {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Areas List */
.areas-list {
  display: grid;
  gap: var(--space-3);
}

.area-card {
  padding: var(--space-4);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--glass-inner-glow);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-spring);
}

.area-card:hover {
  background: var(--glass-bg-strong);
  border-color: rgba(255, 255, 255, 0.12);
}

.area-card:active {
  transform: scale(0.98);
}

.area-card.active {
  border-color: var(--color-primary);
  background: var(--color-primary-muted);
}

.area-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.area-name {
  font-weight: var(--font-semibold);
}

.area-fee {
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-2);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--color-text-secondary);
}

.area-fee.free {
  background: rgba(var(--color-success-rgb), 0.2);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(var(--color-success-rgb), 0.3);
  color: var(--color-success);
}

.area-neighborhoods {
  margin-top: var(--space-2);
  font-size: var(--text-xs);
  line-height: var(--leading-relaxed);
}

/* About Stats (make clickable) */
.about-stat {
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-spring);
}

.about-stat:hover {
  transform: scale(1.05);
}

.about-stat:active {
  transform: scale(0.95);
}

/* ─────────────────────────────────────────────────────────────────
   BOOKING PROGRESS BAR - Labeled Steps
   ───────────────────────────────────────────────────────────────── */
.booking-progress-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-4) var(--space-2);
  margin-bottom: var(--space-4);
  border-bottom: 1px solid var(--color-border);
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-1);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.progress-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-muted);
  transition: all var(--duration-fast) var(--ease-spring);
}

.progress-step-label {
  font-size: 10px;
  font-weight: var(--font-medium);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color var(--duration-fast) var(--ease-out);
}

/* Active step */
.progress-step.active .progress-step-number {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-void);
  box-shadow: 0 0 12px rgba(var(--color-primary-rgb), 0.4);
}

.progress-step.active .progress-step-label {
  color: var(--color-primary);
}

/* Completed step */
.progress-step.completed .progress-step-number {
  background: var(--color-success);
  border-color: var(--color-success);
  color: var(--color-void);
}

.progress-step.completed .progress-step-number::after {
  content: '✓';
  font-size: 14px;
}

.progress-step.completed .progress-step-number span {
  display: none;
}

.progress-step.completed .progress-step-label {
  color: var(--color-success);
}

/* Connecting lines */
.progress-line {
  flex: 1;
  max-width: 32px;
  height: 2px;
  background: var(--color-border);
  margin: 0 var(--space-1);
  margin-bottom: 18px; /* align with step number */
  transition: background var(--duration-fast) var(--ease-out);
}

.progress-line.completed {
  background: var(--color-success);
}

/* ─────────────────────────────────────────────────────────────────
   BOOKING PRICE SUMMARY
   ───────────────────────────────────────────────────────────────── */
.booking-price-summary {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  margin-bottom: var(--space-4);
}

.price-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.price-summary-label {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.price-summary-total {
  font-size: var(--text-xl);
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.price-summary-details {
  display: none;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--color-border);
}

.booking-price-summary.expanded .price-summary-details {
  display: flex;
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
}

.price-line-label {
  color: var(--color-text-secondary);
}

.price-line-value {
  font-weight: var(--font-medium);
}

.price-line.addon .price-line-label {
  padding-left: var(--space-3);
  position: relative;
}

.price-line.addon .price-line-label::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.price-line-divider {
  height: 1px;
  background: var(--color-border);
  margin: var(--space-2) 0;
}

.price-line.total {
  font-weight: var(--font-bold);
  font-size: var(--text-base);
}

.price-line.total .price-line-value {
  color: var(--color-primary);
}

/* ─────────────────────────────────────────────────────────────────
   BOOKING CONFIRMATION STEP
   ───────────────────────────────────────────────────────────────── */
.booking-confirmation {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.confirm-section {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}

.confirm-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.confirm-section-title {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-semibold);
  color: var(--color-text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.confirm-section-title svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.confirm-edit-btn {
  font-size: var(--text-xs);
  color: var(--color-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast) var(--ease-out);
}

.confirm-edit-btn:hover {
  background: var(--color-primary-muted);
}

.confirm-package {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.confirm-package-name {
  flex: 1;
  font-weight: var(--font-semibold);
}

.confirm-package-vehicle {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.confirm-package-price {
  font-weight: var(--font-bold);
  color: var(--color-primary);
}

.confirm-detail {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
}

.confirm-detail:not(:last-child) {
  border-bottom: 1px solid var(--color-border);
}

.confirm-detail-icon {
  width: 20px;
  height: 20px;
  color: var(--color-text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.confirm-detail-content {
  flex: 1;
}

.confirm-detail-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.confirm-detail-value {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
}

.confirm-addons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-2);
}

.confirm-addon-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-1) var(--space-2);
  background: var(--color-primary-muted);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  color: var(--color-primary);
}

/* Legacy booking dots (hidden, keep for fallback) */
.booking-progress {
  display: none;
}

.booking-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  transition: all var(--duration-normal) var(--ease-spring);
}

.booking-dot.active {
  width: 24px;
  background: var(--color-primary);
}

.booking-dot.completed {
  background: var(--color-success);
}

/* ─────────────────────────────────────────────────────────────────
   HERO SHOWCASE - Static Image + Optional 360° View
   "Luxury isn't gimmicks - it's effortless sophistication"
   ───────────────────────────────────────────────────────────────── */
.hero-showcase {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.hero-showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.hero-360-toggle {
  position: absolute;
  bottom: var(--space-3);
  right: var(--space-3);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  color: var(--color-text-secondary);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-spring);
}

.hero-360-toggle:hover {
  background: var(--glass-bg-strong);
  color: var(--color-text);
}

.hero-360-toggle.active {
  background: var(--color-primary-muted);
  color: var(--color-primary);
  border-color: rgba(var(--color-primary-rgb), 0.3);
}

.hero-360-toggle svg {
  flex-shrink: 0;
}

.hero-360-toggle.active svg {
  animation: spin360 2s linear infinite;
}

@keyframes spin360 {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-360-hint {
  position: absolute;
  bottom: var(--space-3);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-3);
  background: rgba(0, 0, 0, 0.6);
  border-radius: var(--radius-md);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  animation: hint-pulse 2s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.hero-showcase:active {
  cursor: grabbing;
}
