/* ============================================================
   ShiftSafe — Packers & Movers Aggregator
   Premium Design System v1.0
   Deep Navy / Emerald / Gold — Trust-First Aesthetics
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  /* Colors — Dark Theme (Default) */
  --bg-primary: #060d1f;
  --bg-secondary: #0a1628;
  --bg-tertiary: #111d35;
  --surface: #152038;
  --surface-hover: #1a2845;
  --emerald: #10b981;
  --emerald-dark: #059669;
  --emerald-light: #34d399;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --danger: #ef4444;
  --success: #22c55e;
  --info: #3b82f6;
  --glass-bg: rgba(15, 25, 50, 0.6);
  --glass-border: rgba(255, 255, 255, 0.08);
  --gradient-hero: linear-gradient(135deg, #060d1f 0%, #0f2027 50%, #0a1628 100%);
  --gradient-emerald: linear-gradient(135deg, #059669, #10b981);
  --gradient-gold: linear-gradient(135deg, #f59e0b, #fbbf24);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 12px;
  --space-base: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-2xl: 32px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --space-5xl: 80px;
  --space-6xl: 96px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Space Grotesk', 'Inter', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3rem;
  --text-6xl: 4rem;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-normal: 300ms ease;
  --transition-slow: 500ms ease;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px rgba(16, 185, 129, 0.15);
  --shadow-emerald: 0 8px 32px rgba(16, 185, 129, 0.2);
}

/* ── Light Theme ───────────────────────────────────────────── */
.light-theme {
  --bg-primary: #f8fafc;
  --bg-secondary: #f1f5f9;
  --bg-tertiary: #ffffff;
  --surface: #ffffff;
  --surface-hover: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);
  --gradient-hero: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-slow), color var(--transition-slow);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

input, select, textarea {
  font-family: inherit;
}

::selection {
  background: var(--emerald);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--emerald-dark);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--emerald);
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(var(--text-3xl), 4vw, var(--text-5xl));
  font-weight: 700;
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--space-base);
  line-height: 1.2;
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ── Glass Card Utility ────────────────────────────────────── */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
}

/* ── Scroll Progress Bar ───────────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  z-index: 9999;
  background: transparent;
}

.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: var(--gradient-emerald);
  transition: width 50ms linear;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-base) 0;
  transition: all var(--transition-normal);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar.scrolled {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-md);
  padding: var(--space-sm) 0;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--emerald);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  transition: color var(--transition-fast);
}

.nav-logo:hover {
  color: var(--emerald-light);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-2xl);
}

.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: var(--text-sm);
  position: relative;
  transition: color var(--transition-fast);
  padding: var(--space-xs) 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-emerald);
  border-radius: var(--radius-full);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-link:hover {
  color: var(--emerald);
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-base);
}

#theme-toggle {
  background: transparent;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: var(--text-lg);
  transition: all var(--transition-fast);
}

#theme-toggle:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  box-shadow: var(--shadow-glow);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: var(--space-xs);
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background: var(--glass-bg);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2xl);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 999;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu .nav-link {
  font-size: var(--text-2xl);
  color: var(--text-primary);
}

/* ── Hero Section ──────────────────────────────────────────── */
#hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

/* Decorative gradient orbs */
#hero-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  border-radius: 50%;
  pointer-events: none;
}

#hero-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}

.hero-title .gradient-text {
  background: linear-gradient(135deg, var(--emerald-light), var(--emerald));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title .gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  color: var(--text-secondary);
  font-size: var(--text-xl);
  margin-bottom: var(--space-3xl);
  max-width: 540px;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: var(--space-3xl);
  margin-top: var(--space-3xl);
}

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

.stat-number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 700;
  color: var(--emerald);
  line-height: 1.2;
}

.stat-label {
  color: var(--text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: var(--space-xs);
}

/* ── Search Form ───────────────────────────────────────────── */
.search-form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: 40px;
  box-shadow: var(--shadow-xl);
  margin-top: var(--space-3xl);
  position: relative;
  z-index: 5;
  transition: border-color var(--transition-normal);
}

.search-form-card:hover {
  border-color: rgba(16, 185, 129, 0.2);
}

.search-form-card .form-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-xl);
  color: var(--text-primary);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-base);
  margin-bottom: var(--space-xl);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.form-label {
  color: var(--text-secondary);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-input,
.form-select {
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  color: var(--text-primary);
  font-size: var(--text-base);
  transition: all var(--transition-fast);
  outline: none;
  width: 100%;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-input.error {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.error-message {
  color: var(--danger);
  font-size: var(--text-xs);
  margin-top: var(--space-xs);
  display: none;
}

.error-message.visible {
  display: block;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  background: var(--gradient-emerald);
  color: #fff;
  border: none;
  border-radius: var(--radius-xl);
  padding: 16px 32px;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-emerald);
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary.btn-loading {
  pointer-events: none;
  opacity: 0.8;
}

.btn-primary.btn-loading .btn-text {
  visibility: hidden;
}

.btn-primary.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: rotate 0.8s linear infinite;
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--emerald);
  color: var(--emerald);
  border-radius: var(--radius-xl);
  padding: 14px 28px;
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
}

.btn-secondary:hover {
  background: rgba(16, 185, 129, 0.1);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
  border-radius: var(--radius-lg);
}

/* ── Trust Shield Section ──────────────────────────────────── */
#trust-section {
  background: var(--bg-secondary);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.trust-badge {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.05), transparent);
  transition: left 0.8s ease;
}

.trust-badge:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-emerald);
  border-color: rgba(16, 185, 129, 0.3);
}

.trust-badge:hover::before {
  left: 100%;
}

.badge-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: var(--gradient-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  font-size: var(--text-2xl);
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.trust-badge h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.trust-badge p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ── How It Works ──────────────────────────────────────────── */
.steps-container {
  display: flex;
  gap: var(--space-2xl);
  position: relative;
  align-items: stretch;
}

/* Connecting line */
.steps-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 80px;
  right: 80px;
  height: 3px;
  background: var(--gradient-emerald);
  z-index: 0;
  opacity: 0.3;
  transform: translateY(-50%);
}

.step-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  flex: 1;
  z-index: 1;
  transition: all var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.2);
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--gradient-emerald);
  color: #fff;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.step-icon {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-base);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.step-card p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ── Quote Results ─────────────────────────────────────────── */
#quote-results {
  display: none;
}

#quote-results.visible {
  display: block;
}

.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
  gap: var(--space-base);
}

.results-count {
  color: var(--text-secondary);
  font-size: var(--text-base);
}

.results-count strong {
  color: var(--emerald);
  font-weight: 700;
}

.results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.quote-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1.8fr 1fr;
  transition: all var(--transition-normal);
}

.quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.2);
}

.quote-card.verified {
  border-left: 4px solid var(--emerald);
}

.mover-info {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.mover-name {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
}

.mover-rating {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
}

.mover-rating .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.mover-rating .rating-number {
  font-weight: 600;
  color: var(--text-primary);
}

.mover-rating .review-count {
  color: var(--text-muted);
}

.mover-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.badge {
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.badge-verified {
  background: rgba(16, 185, 129, 0.1);
  color: var(--emerald);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-insured {
  background: rgba(59, 130, 246, 0.1);
  color: var(--info);
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.badge-price-lock {
  background: rgba(245, 158, 11, 0.1);
  color: var(--gold);
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.mover-details {
  padding: var(--space-xl);
  border-left: 1px solid var(--glass-border);
  border-right: 1px solid var(--glass-border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-base);
  align-content: center;
}

.detail-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.detail-label {
  color: var(--text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: var(--text-sm);
}

.mover-action {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
}

.quote-price {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--emerald);
  line-height: 1.2;
}

.quote-price .currency {
  font-size: var(--text-base);
  color: var(--text-secondary);
  font-weight: 400;
}

.quote-price .price-label {
  display: block;
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 400;
  font-family: var(--font-body);
}

.no-results {
  text-align: center;
  padding: var(--space-5xl);
  color: var(--text-secondary);
  background: var(--glass-bg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
}

/* ── Why Choose Us ─────────────────────────────────────────── */
#why-choose-us {
  background: var(--bg-secondary);
}

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

.feature-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  display: flex;
  gap: var(--space-base);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(16, 185, 129, 0.15);
}

.feature-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: var(--radius-lg);
  background: var(--gradient-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xl);
}

.feature-item h4 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
}

.feature-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.6;
}

/* ── Testimonials ──────────────────────────────────────────── */
.testimonials-track {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: var(--space-lg) 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  min-width: 360px;
  max-width: 420px;
  scroll-snap-align: start;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testimonial-stars {
  color: var(--gold);
  font-size: var(--text-xl);
  margin-bottom: var(--space-base);
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: var(--text-base);
  line-height: 1.8;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: var(--space-lg);
  position: relative;
}

.testimonial-card blockquote::before {
  content: '"';
  font-size: 3rem;
  color: var(--emerald);
  opacity: 0.3;
  position: absolute;
  top: -10px;
  left: -5px;
  font-family: Georgia, serif;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--gradient-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: var(--text-lg);
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--text-primary);
}

.verified-badge-inline {
  color: var(--emerald);
  font-size: var(--text-xs);
  margin-left: var(--space-xs);
}

.author-move {
  color: var(--text-muted);
  font-size: var(--text-xs);
}

/* ── Safety Promise ────────────────────────────────────────── */
#safety-promise {
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(16, 185, 129, 0.03) 100%);
}

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

.safety-item {
  text-align: center;
  padding: var(--space-2xl);
}

.safety-icon {
  font-size: var(--text-5xl);
  margin-bottom: var(--space-base);
  display: block;
}

.safety-item h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.safety-item p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

/* ── FAQ ───────────────────────────────────────────────────── */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
  overflow: hidden;
  transition: border-color var(--transition-normal);
}

.faq-item.active {
  border-color: rgba(16, 185, 129, 0.3);
}

.faq-question {
  padding: var(--space-lg) var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text-primary);
  transition: background var(--transition-fast);
  gap: var(--space-base);
  user-select: none;
}

.faq-question:hover {
  background: var(--surface-hover);
}

.faq-toggle {
  font-size: var(--text-xl);
  color: var(--text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
  color: var(--emerald);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 var(--space-xl);
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 var(--space-xl) var(--space-lg);
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: var(--text-sm);
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--glass-border);
  padding: var(--space-5xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: var(--space-3xl);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  line-height: 1.7;
}

.footer-column h4 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--space-lg);
  color: var(--text-primary);
}

.footer-column li {
  margin-bottom: var(--space-md);
}

.footer-column a {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--emerald);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-md);
}

.footer-contact-item .contact-icon {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-certifications {
  border-top: 1px solid var(--glass-border);
  margin-top: var(--space-3xl);
  padding-top: var(--space-2xl);
  display: flex;
  justify-content: center;
  gap: var(--space-2xl);
  flex-wrap: wrap;
}

.certification-badge {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-xs);
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.certification-badge:hover {
  border-color: rgba(16, 185, 129, 0.2);
  color: var(--text-primary);
}

.certification-badge .cert-icon {
  color: var(--emerald);
  font-size: var(--text-base);
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  margin-top: var(--space-2xl);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: var(--text-xs);
}

.footer-social {
  display: flex;
  gap: var(--space-base);
}

.footer-social a {
  color: var(--text-muted);
  font-size: var(--text-lg);
  transition: color var(--transition-fast);
}

.footer-social a:hover {
  color: var(--emerald);
}

/* ── Animation Classes ─────────────────────────────────────── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-up {
  opacity: 0;
  transform: translateY(60px);
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(-60px);
}

.slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(60px);
}

.slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in {
  opacity: 0;
}

.fade-in.visible {
  opacity: 1;
}

/* Stagger delays */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ── Keyframe Animations ──────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

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

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.2); }
  50% { box-shadow: 0 0 40px rgba(16, 185, 129, 0.4); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Focus States ──────────────────────────────────────────── */
*:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 2px;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

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

  .quote-card {
    grid-template-columns: 1fr;
  }

  .mover-details {
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

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

  .section-title {
    font-size: var(--text-3xl);
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

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

  .steps-container {
    flex-direction: column;
    align-items: center;
  }

  .steps-container::before {
    top: 0;
    bottom: 0;
    left: 50%;
    right: auto;
    width: 3px;
    height: 100%;
    transform: translateX(-50%);
  }

  .step-card {
    max-width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-xl);
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  .testimonial-card {
    min-width: 280px;
  }

  .search-form-card {
    padding: var(--space-xl);
  }

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

  .footer-certifications {
    gap: var(--space-base);
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-base);
  }

  .hero-title {
    font-size: var(--text-3xl);
  }

  .search-form-card {
    padding: var(--space-lg);
  }

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

  .stat-number {
    font-size: var(--text-3xl);
  }
}

/* ============================================================
   Inventory Accordion — Detailed Cargo Entry
   ============================================================ */

/* ── Accordion Toggle Button ── */
.inventory-accordion {
  margin-top: var(--space-lg);
}

.inventory-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  width: 100%;
  padding: var(--space-md) var(--space-base);
  background: var(--surface);
  border: 1px dashed var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-normal);
}

.inventory-toggle:hover {
  border-color: var(--emerald);
  color: var(--text-primary);
  background: var(--surface-hover);
}

.inventory-toggle[aria-expanded="true"] {
  border-color: var(--emerald);
  border-style: solid;
  color: var(--emerald);
  background: var(--surface-hover);
}

.inventory-toggle-icon {
  font-size: var(--text-lg);
}

.inventory-toggle-text {
  flex: 1;
  text-align: left;
}

.inventory-toggle-text small {
  opacity: 0.6;
  font-size: var(--text-xs);
}

.inventory-toggle-arrow {
  font-size: var(--text-xs);
  transition: transform var(--transition-normal);
}

.inventory-toggle[aria-expanded="true"] .inventory-toggle-arrow {
  transform: rotate(180deg);
}

/* ── Accordion Panel ── */
.inventory-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.35s ease,
              margin-top 0.35s ease;
  margin-top: 0;
}

.inventory-panel.open {
  max-height: 1200px;
  opacity: 1;
  margin-top: var(--space-base);
}

/* ── Inventory Sub-Sections ── */
.inventory-section {
  padding: var(--space-base);
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-bottom: var(--space-md);
}

.inventory-section-title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
}

.inventory-hint {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.inventory-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-base);
}

.inventory-field {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

/* ── Stepper Controls ── */
.stepper-control {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-tertiary);
}

.stepper-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border: none;
  color: var(--text-primary);
  font-size: var(--text-lg);
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition-fast), color var(--transition-fast);
  flex-shrink: 0;
}

.stepper-btn:hover {
  background: var(--emerald);
  color: #fff;
}

.stepper-btn:active {
  transform: scale(0.92);
}

.stepper-input {
  flex: 1;
  text-align: center;
  border: none !important;
  border-radius: 0 !important;
  background: var(--bg-tertiary) !important;
  font-weight: 600;
  font-size: var(--text-base);
  padding: var(--space-sm) 0 !important;
  -moz-appearance: textfield;
}

.stepper-input::-webkit-outer-spin-button,
.stepper-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Box Weight Inline Summary ── */
.box-weight-summary {
  margin-top: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-align: right;
}

.box-weight-summary strong {
  color: var(--emerald);
  font-weight: 700;
}

/* ── Heavy Items Grid ── */
.heavy-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
}

.heavy-item-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-sm);
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  user-select: none;
}

.heavy-item-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.heavy-item-card:hover {
  border-color: var(--emerald);
  background: var(--surface-hover);
  transform: translateY(-2px);
}

.heavy-item-card:has(input:checked) {
  border-color: var(--emerald);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 16px rgba(16, 185, 129, 0.15);
}

.heavy-item-card:has(input:checked)::after {
  content: '✓';
  position: absolute;
  top: 4px;
  right: 6px;
  font-size: var(--text-xs);
  color: var(--emerald);
  font-weight: 700;
  background: rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-full);
  width: 18px;
  height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.heavy-item-icon {
  font-size: 1.6rem;
  line-height: 1;
}

.heavy-item-name {
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.2;
}

.heavy-item-weight {
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ── Weight Summary Strip ── */
.weight-summary-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  padding: var(--space-md) var(--space-base);
  background: var(--bg-tertiary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  margin-top: var(--space-sm);
}

.weight-summary-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.weight-label {
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.weight-value {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.weight-divider {
  font-size: var(--text-lg);
  color: var(--text-muted);
  font-weight: 300;
}

.weight-summary-total .weight-value {
  color: var(--emerald);
  font-size: var(--text-lg);
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Responsive: Inventory ── */
@media (max-width: 768px) {
  .heavy-items-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .weight-summary-strip {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }
}

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

  .heavy-item-icon {
    font-size: 1.3rem;
  }

  .inventory-toggle {
    font-size: var(--text-xs);
  }
}

/* ── City Autocomplete ── */
.city-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--glass-border);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  max-height: 220px;
  overflow-y: auto;
  z-index: 100;
  display: none;
  box-shadow: var(--shadow-lg);
}

.city-autocomplete.visible {
  display: block;
}

.city-suggestion {
  padding: var(--space-sm) var(--space-base);
  cursor: pointer;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  transition: background var(--transition-fast);
  border-bottom: 1px solid var(--glass-border);
  text-align: left;
}

.city-suggestion:hover,
.city-suggestion.highlighted {
  background: var(--surface-hover);
  color: var(--emerald);
}

.city-suggestion:last-child {
  border-bottom: none;
}

.form-group {
  position: relative;
}

/* ── WhatsApp Button ── */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 16px;
  background: #25D366;
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-normal);
  width: 100%;
  text-align: center;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ── Quote Disclaimer ── */
.quote-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: var(--space-sm);
  opacity: 0.8;
}

/* ── Booking Modal ── */
.booking-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-base);
  animation: fadeIn 0.25s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.booking-modal {
  background: var(--bg-secondary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  padding: var(--space-2xl);
  animation: slideUp 0.35s ease;
  position: relative;
}

.booking-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: var(--text-xl);
  cursor: pointer;
}

.booking-modal h2 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-xs);
  background: linear-gradient(135deg, var(--emerald), var(--emerald-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: left;
}

.booking-modal .modal-subtitle {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
  text-align: left;
}

.booking-modal .modal-price {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  font-family: var(--font-heading);
  text-align: left;
}

.booking-modal .form-group {
  margin-bottom: var(--space-md);
  text-align: left;
}

.booking-modal .form-input {
  width: 100%;
}

.booking-modal .checkbox-group {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  text-align: left;
}

.booking-modal .checkbox-group input[type="checkbox"] {
  accent-color: var(--emerald);
  width: 16px;
  height: 16px;
}

.booking-modal .modal-actions {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.booking-modal .modal-actions .btn-primary {
  flex: 1;
}

.booking-modal .btn-cancel {
  padding: 10px 20px;
  background: transparent;
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: var(--text-sm);
  transition: all var(--transition-normal);
}

.booking-modal .btn-cancel:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

/* Booking Success State */
.booking-success {
  text-align: center;
  padding: var(--space-lg) 0;
}

.booking-success .success-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.booking-success h3 {
  font-family: var(--font-heading);
  color: var(--emerald);
  margin-bottom: var(--space-sm);
}

.booking-success p {
  color: var(--text-secondary);
  font-size: var(--text-sm);
  margin-bottom: var(--space-lg);
}

.booking-success .btn-whatsapp {
  max-width: 280px;
  margin: 0 auto var(--space-md);
}
