/* ============================================
   PACXEN PACKERS & MOVERS — DESIGN SYSTEM
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800;900&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Primary Palette */
  --navy: #18181b;
  --navy-light: #27272a;
  --navy-dark: #09090b;
  --orange: #e1251b;
  --orange-hover: #c81e14;
  --orange-light: rgba(225, 37, 27, 0.12);
  --teal: #52525b;
  --teal-dark: #3f3f46;
  --green-check: #22c55e;

  /* Neutral */
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1e293b;
  --gray-900: #0f172a;

  /* Typography */
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.25rem;
  --fs-2xl: 1.5rem;
  --fs-3xl: 1.875rem;
  --fs-4xl: 2.25rem;
  --fs-5xl: 3rem;

  /* Spacing */
  --container: 1280px;
  --section-py: 80px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 50px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.06);

  /* Transitions */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}
button { cursor: pointer; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Section Base ---------- */
.section {
  padding: var(--section-py) 0;
}

.section-label {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 12px;
}

.section-title {
  font-size: var(--fs-4xl);
  font-weight: 800;
  text-align: center;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-subtitle {
  text-align: center;
  color: var(--gray-500);
  font-size: var(--fs-lg);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-weight: 700;
  font-size: var(--fs-base);
  border-radius: var(--radius-pill);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:active {
  transform: translateY(0) scale(0.96) !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
}

.btn-primary {
  background: linear-gradient(135deg, #e1251b 0%, #ea580c 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(225, 37, 27, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(225, 37, 27, 0.45);
  color: var(--white);
  background: linear-gradient(135deg, #ea580c 0%, #e1251b 100%);
}

.btn-outline {
  background: transparent;
  color: #ea580c;
  border-color: #ea580c;
}

.btn-outline:hover {
  background: #ea580c;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(234, 88, 12, 0.25);
}

.btn-sm {
  padding: 10px 24px;
  font-size: var(--fs-sm);
}

.btn-lg {
  padding: 16px 40px;
  font-size: var(--fs-lg);
}

.btn-white {
  background: var(--white);
  color: var(--navy-dark);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--orange);
  color: var(--navy-dark);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(24, 24, 27, 0.75);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  padding: 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(9, 9, 11, 0.85);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

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

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

.nav-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
  font-weight: 900;
  font-size: var(--fs-xs);
  color: var(--white);
  letter-spacing: 0.5px;
  overflow: hidden;
}

.nav-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text span:first-child {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
}

.nav-logo-text span:last-child {
  font-size: var(--fs-xs);
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links a {
  color: var(--gray-300);
  font-size: var(--fs-sm);
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: var(--transition);
}

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

.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: var(--fs-sm);
  transition: var(--transition);
}

.nav-call:hover {
  background: var(--orange-hover);
  color: var(--white);
  transform: translateY(-1px);
}

.nav-call i {
  font-size: var(--fs-base);
}

/* Auth Navigation Buttons */
.nav-login-btn {
  color: var(--gray-300) !important;
  font-size: var(--fs-sm);
  font-weight: 600;
  transition: var(--transition-fast);
}

.nav-login-btn:hover {
  color: var(--white) !important;
}

.nav-signup-btn {
  background: var(--orange) !important;
  color: var(--white) !important;
  font-size: var(--fs-sm) !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: var(--radius-pill) !important;
  transition: var(--transition) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-signup-btn:hover {
  background: var(--orange-hover) !important;
  transform: translateY(-1px);
}

/* Outline variant for Sign Up button */
.nav-outline-btn {
  background: transparent !important;
  color: var(--orange) !important;
  font-size: var(--fs-sm) !important;
  font-weight: 700 !important;
  padding: 7px 20px !important;
  border-radius: var(--radius-pill) !important;
  border: 2px solid var(--orange) !important;
  transition: var(--transition) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-outline-btn:hover {
  background: var(--orange) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

.nav-signup-btn::after, .nav-login-btn::after, .nav-outline-btn::after {
  display: none !important; /* disable underline style for buttons */
}





.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background-image: linear-gradient(rgba(17, 18, 21, 0.82), rgba(17, 18, 21, 0.88)), url('hero_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 150px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  padding-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(225, 37, 27, 0.15);
  color: var(--orange);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(225, 37, 27, 0.25);
}

.hero-badge i {
  font-size: var(--fs-base);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title .highlight {
  color: var(--orange);
}

.hero-subtitle {
  color: var(--gray-300);
  font-size: var(--fs-lg);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 650px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.btn-get-pricing {
  background-color: #e1251b !important;
  color: #ffffff !important;
  padding: 14px 32px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: 2px solid #e1251b !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  cursor: pointer !important;
  box-shadow: 0 4px 15px rgba(225, 37, 27, 0.3) !important;
}

.btn-get-pricing:hover {
  background-color: #c81e14 !important;
  border-color: #c81e14 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 20px rgba(225, 37, 27, 0.45) !important;
}

.btn-book-online {
  background-color: rgba(39, 46, 54, 0.85) !important;
  color: #ffffff !important;
  padding: 14px 32px !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  cursor: pointer !important;
}

.btn-book-online:hover {
  background-color: rgba(39, 46, 54, 1) !important;
  border-color: rgba(255, 255, 255, 0.45) !important;
  transform: translateY(-2px) !important;
}

.hero-divider {
  width: 100%;
  max-width: 900px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 15px auto 35px;
}

.hero-stats {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 48px !important;
  flex-wrap: wrap !important;
  width: 100% !important;
}

.hero-stats .stat-card {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  text-align: center !important;
  flex: 1 !important;
  min-width: 160px !important;
}

.hero-stats .stat-number {
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 6px !important;
}

.hero-stats .stat-label {
  font-size: 14px !important;
  color: #94a3b8 !important;
  text-transform: none !important;
}

.stat-star {
  color: #ff7a00 !important;
  margin-left: 2px !important;
}

/* Relocation Calculator Card */
.hero-calculator {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.calc-iso-badge {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--orange);
  color: var(--white);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.calc-title {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 24px;
}

.calc-toggle {
  display: flex;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 24px;
}

.calc-toggle-btn {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-500);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.calc-toggle-btn.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(244,121,32,0.3);
}

.calc-field {
  margin-bottom: 20px;
}

.calc-field label {
  display: block;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.calc-field input,
.calc-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--gray-800);
  transition: var(--transition-fast);
  background: var(--white);
}

.calc-field input:focus,
.calc-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

.calc-field .input-icon {
  position: relative;
}

.calc-field .input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--orange);
  font-size: var(--fs-sm);
}

.calc-field .input-icon input {
  padding-left: 40px;
}

.service-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.service-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.service-type-card i {
  font-size: 1.5rem;
  color: var(--gray-500);
  transition: var(--transition);
}

.service-type-card span {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gray-600);
}

.service-type-card.active,
.service-type-card:hover {
  border-color: var(--orange);
  background: var(--orange-light);
}

.service-type-card.active i,
.service-type-card:hover i {
  color: var(--orange);
}

.service-type-card.active span,
.service-type-card:hover span {
  color: var(--orange);
}

.calc-submit {
  width: 100%;
  margin-top: 8px;
}

/* Trust Badge Strip */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 24px 0;
}

.trust-strip .container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--gray-700);
}

.trust-strip-item i {
  font-size: 1.3rem;
  color: var(--orange);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
  background: #111215 !important;
  padding: var(--section-py) 0;
  color: #ffffff;
}

.services .section-title {
  color: #3b82f6 !important;
}

.services .section-title::after {
  display: none !important;
}

.services .section-subtitle {
  color: #94a3b8 !important;
  margin-bottom: 48px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: #18191d !important;
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #272a30 !important;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(234, 88, 12, 0.25);
  border-color: #ea580c !important;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.services .service-icon.bike {
  background: rgba(225, 37, 27, 0.15) !important;
  color: #ff4d4d !important;
}

.services .service-icon.car {
  background: rgba(59, 130, 246, 0.15) !important;
  color: #60a5fa !important;
}

.services .service-icon.house {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #4ade80 !important;
}

.service-card h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 12px;
}

.service-card p {
  color: #94a3b8 !important;
  font-size: var(--fs-sm);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: #cbd5e1 !important;
}

.service-features li i {
  color: var(--green-check);
  font-size: var(--fs-sm);
}

/* Hide hero calculator card and trust badges */
#heroCalc, .hero-trust {
  display: none !important;
}

/* ============================================
   PROTECTION SECTION
   ============================================ */
.protection {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.protection::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.protection .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.protection-title {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.protection-subtitle {
  color: var(--gray-400);
  font-size: var(--fs-lg);
  margin-bottom: 32px;
}

.protection-features {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.protection-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 500;
}

.protection-feature i {
  color: var(--orange);
  font-size: var(--fs-xl);
}

/* ============================================
   ADVANCED PRICING CALCULATOR
   ============================================ */
.pricing-calc {
  background: var(--gray-50);
}

.pricing-calc .container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}

.pricing-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
}

.pricing-form .calc-toggle {
  display: inline-flex;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--gray-700);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: var(--gray-800);
  transition: var(--transition-fast);
  background: var(--white);
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-light);
}

.form-group .slider-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-group input[type="range"] {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--gray-200);
  border-radius: 3px;
  border: none;
  padding: 0;
}

.form-group input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--orange);
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(244,121,32,0.4);
}

.form-group .slider-value {
  font-weight: 700;
  color: var(--gray-700);
  min-width: 50px;
  text-align: right;
  font-size: var(--fs-sm);
}

.inventory-btn {
  width: 100%;
  margin-top: 8px;
}

/* Add-ons */
.addons-section {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 24px;
  border: 1px solid var(--gray-200);
}

.addons-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.addons-title i { color: var(--orange); }

.addons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.addon-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: var(--fs-sm);
  color: var(--gray-700);
}

.addon-item:hover {
  border-color: var(--orange);
}

.addon-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--orange);
  cursor: pointer;
}

/* Floor Details */
.floor-section {
  margin-top: 24px;
  padding: 24px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
}

.floor-title {
  font-size: var(--fs-sm);
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.floor-title i { color: var(--orange); }

/* Estimated Quote Sidebar */
.quote-sidebar {
  position: sticky;
  top: 96px;
}

.quote-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
}

.quote-header {
  padding: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.quote-header h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-header h3 i { color: var(--orange); }

.quote-body {
  padding: 24px;
}

.quote-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.quote-line-label {
  color: var(--gray-400);
  font-size: var(--fs-sm);
}

.quote-line-value {
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-sm);
}

.quote-line-value.included {
  background: var(--teal);
  color: var(--white);
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
}

.quote-line-value.free {
  color: var(--green-check);
}

.quote-total {
  background: var(--orange);
  padding: 24px;
  text-align: center;
}

.quote-total-label {
  color: rgba(255,255,255,0.8);
  font-size: var(--fs-sm);
  margin-bottom: 4px;
}

.quote-total-sublabel {
  color: rgba(255,255,255,0.6);
  font-size: var(--fs-xs);
}

.quote-total-value {
  font-size: var(--fs-4xl);
  font-weight: 900;
  color: var(--white);
}

.quote-book-btn {
  display: block;
  width: calc(100% - 48px);
  margin: 0 24px 24px;
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--fs-base);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}

.quote-book-btn:hover {
  background: var(--orange-hover);
  transform: translateY(-2px);
}

/* ============================================
   RATE CARD SECTION
   ============================================ */
.rate-card {
  background: var(--white);
}

.rate-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
  background: var(--gray-100);
  border-radius: var(--radius-pill);
  padding: 4px;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.rate-tab {
  flex: 1;
  padding: 12px 24px;
  text-align: center;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-500);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.rate-tab.active {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(244,121,32,0.3);
}

.rate-content {
  display: none;
}
.rate-content.active {
  display: block;
}

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

.rate-table {
  background: var(--gray-50);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-200);
}

.rate-table-header {
  background: var(--teal);
  color: var(--white);
  padding: 16px 20px;
  font-weight: 700;
  font-size: var(--fs-sm);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

.rate-table-subheader {
  display: flex;
  justify-content: space-between;
  padding: 12px 20px;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--gray-200);
}

.rate-table-subheader span:last-child {
  color: var(--orange);
}

.rate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: var(--fs-sm);
  transition: var(--transition-fast);
}

.rate-row:hover {
  background: var(--white);
}

.rate-route {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
  font-weight: 500;
}

.rate-route i {
  color: var(--gray-400);
  font-size: var(--fs-xs);
}

.rate-price {
  color: var(--teal);
  font-weight: 700;
  text-align: right;
}

/* ============================================
   BOOKING FORM WIZARD (Modal)
   ============================================ */
.booking-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.booking-modal.active {
  display: flex;
}

.booking-modal-content {
  background: var(--white);
  border-radius: var(--radius);
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.booking-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: var(--fs-xl);
  color: var(--gray-500);
  transition: var(--transition);
  z-index: 10;
}

.booking-close:hover {
  background: var(--gray-200);
  color: var(--gray-800);
}

/* Steps Progress */
.booking-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 24px 32px;
  border-bottom: 1px solid var(--gray-200);
}

.booking-step-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  background: var(--gray-200);
  color: var(--gray-500);
  transition: var(--transition);
}

.step-circle.active {
  background: var(--orange);
  color: var(--white);
}

.step-circle.done {
  background: var(--green-check);
  color: var(--white);
}

.step-line {
  width: 60px;
  height: 2px;
  background: var(--gray-200);
  margin: 0 8px;
}

.step-line.active {
  background: var(--orange);
}

/* Step Content */
.booking-step {
  display: none;
  padding: 32px;
}

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

.booking-step h3 {
  font-size: var(--fs-xl);
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 24px;
}

.booking-step h4 {
  font-size: var(--fs-base);
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.booking-step h4 i {
  color: var(--orange);
}

/* Service Selection Cards */
.service-select-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.service-select-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.service-select-card i {
  font-size: 2rem;
  color: var(--gray-400);
  transition: var(--transition);
}

.service-select-card span {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

.service-select-card.active {
  border-color: var(--orange);
  background: var(--orange-light);
}

.service-select-card.active i {
  color: var(--orange);
}

.service-select-card.active span {
  color: var(--orange);
}

/* Inventory Items */
.inventory-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

.inventory-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition-fast);
}

.inventory-item:hover {
  border-color: var(--gray-300);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.inventory-item-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inventory-item-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.inventory-item-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
}

.inventory-item-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.inventory-item-badge.badge-medium {
  background-color: #f1f5f9;
  color: #475569;
}

.inventory-item-badge.badge-heavy {
  background-color: #fef3c7;
  color: #d97706;
}

.inventory-item-cft {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.inventory-counter {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inventory-counter button {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid #f97316; /* warm orange border */
  color: #f97316;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: var(--transition-fast);
}

.inventory-counter button:hover {
  background: #fff7ed;
  border-color: #ea580c;
  color: #ea580c;
}

.inventory-counter span {
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: var(--gray-800);
}

/* Insurance Card */
.insurance-card {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 20px;
  border: 1px solid var(--gray-200);
  margin-bottom: 20px;
}

.insurance-card h4 {
  margin-bottom: 12px;
}

.insurance-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.insurance-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

.insurance-feature i {
  color: var(--green-check);
  font-size: var(--fs-xs);
}

/* Toggle Switch */
.toggle-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--gray-200);
  margin-bottom: 12px;
}

.toggle-label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--gray-700);
}

.toggle-sublabel {
  font-size: var(--fs-xs);
  color: var(--gray-400);
  margin-top: 2px;
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  cursor: pointer;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-300);
  border-radius: 13px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
}

.toggle-switch input:checked + .toggle-slider {
  background: var(--orange);
}

.toggle-switch input:checked + .toggle-slider::before {
  transform: translateX(22px);
}

/* Booking Summary */
.booking-summary {
  background: var(--gray-50);
  border-radius: var(--radius-sm);
  padding: 24px;
  border: 1px solid var(--gray-200);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: var(--fs-sm);
  color: var(--gray-600);
}

.summary-row.total {
  border-top: 2px solid var(--gray-300);
  margin-top: 8px;
  padding-top: 12px;
  font-weight: 800;
  font-size: var(--fs-lg);
  color: var(--gray-900);
}

/* Booking Navigation */
.booking-nav {
  display: flex;
  justify-content: space-between;
  padding: 24px 32px;
  border-top: 1px solid var(--gray-200);
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery {
  background: var(--gray-50);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.gallery-filter {
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-500);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-filter.active,
.gallery-filter:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.gallery-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--gray-200);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid transparent;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 15px 30px rgba(234, 88, 12, 0.2);
  border-color: #ea580c;
}

.gallery-card:hover img {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: var(--white);
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  font-size: var(--fs-sm);
  font-weight: 600;
}

.gallery-overlay p {
  font-size: var(--fs-xs);
  color: var(--gray-300);
}

.gallery-load-more {
  text-align: center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq {
  background: var(--white);
}

.faq-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.faq-filter {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--gray-500);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  cursor: pointer;
  transition: var(--transition);
}

.faq-filter.active,
.faq-filter:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--gray-50);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  box-shadow: var(--shadow);
  border-color: var(--orange);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-base);
  color: var(--gray-800);
  transition: var(--transition-fast);
}

.faq-item.active .faq-question {
  color: var(--orange);
}

.faq-question i {
  color: var(--orange);
  font-size: var(--fs-xl);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  color: var(--gray-500);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  background: var(--gray-50);
  overflow: hidden;
}

.testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
  margin: 0 -24px;
  padding: 0 24px;
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 15px 35px rgba(234, 88, 12, 0.15);
  border-color: #ea580c !important;
}

.testimonial-quote-icon {
  font-size: 2rem;
  color: var(--orange);
  opacity: 0.3;
  margin-bottom: 12px;
  line-height: 1;
}

.testimonial-text {
  font-size: var(--fs-sm);
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--orange);
}

.testimonial-name {
  font-weight: 700;
  font-size: var(--fs-sm);
  color: var(--gray-800);
}

.testimonial-service {
  font-size: var(--fs-xs);
  color: var(--orange);
}

.testimonials-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.testimonial-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-nav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-light);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 5px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy-light);
  overflow: hidden;
}

.footer-logo-text span:first-child {
  font-size: var(--fs-xl);
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1.2;
}

.footer-logo-text span:last-child {
  font-size: var(--fs-xs);
  color: var(--orange);
  font-weight: 600;
}

.footer-desc {
  color: var(--gray-400);
  font-size: var(--fs-sm);
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--orange);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: var(--fs-base);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col h4 i {
  color: var(--orange);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col ul li a {
  color: var(--gray-400);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--orange);
  padding-left: 4px;
}

.footer-col ul li a i {
  color: var(--gray-500);
  font-size: var(--fs-xs);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-contact-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: rgba(244,121,32,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
}

.footer-contact-label {
  font-size: var(--fs-xs);
  color: var(--gray-500);
}

.footer-contact-value {
  color: var(--white);
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.5;
}

.footer-contact-value a {
  color: var(--white);
}
.footer-contact-value a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--gray-500);
  font-size: var(--fs-sm);
}

.footer-bottom a {
  color: var(--orange);
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
/* WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 100px;
  right: 24px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@keyframes pulse-green {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.6); }
}

/* Scroll to Top */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 24px;
  z-index: 900;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 1.2rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
}

.scroll-top.visible {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-3px);
}

/* Quote Notification Bar */
.quote-bar {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 800;
  background: var(--white);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
}

.quote-bar.hidden {
  transform: translateX(-50%) translateY(120%);
  opacity: 0;
}

.quote-bar-text {
  font-size: var(--fs-sm);
}

.quote-bar-label {
  font-size: var(--fs-xs);
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.quote-bar-desc {
  font-weight: 600;
  color: var(--gray-800);
}

.quote-bar-close {
  padding: 4px;
  cursor: pointer;
  color: var(--gray-400);
  font-size: var(--fs-xl);
}

/* Floating Helpline */
.helpline-float {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 850;
  background: var(--navy);
  padding: 12px 24px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.helpline-float a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: var(--fs-sm);
}

.helpline-call {
  background: var(--orange);
  color: var(--white);
}

.helpline-whatsapp {
  background: #25d366;
  color: var(--white);
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-calculator {
    max-width: 480px;
    margin: 0 auto;
  }

  .pricing-calc .container {
    grid-template-columns: 1fr;
  }

  .quote-sidebar {
    position: static;
  }

  .rate-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-py: 60px;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    z-index: 999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: var(--fs-lg);
    color: var(--white);
  }

  .mobile-toggle {
    display: flex;
  }

  .nav-call {
    display: none;
  }

  .hero {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .hero-title {
    font-size: 2rem;
  }

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

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .testimonial-card {
    min-width: calc(100% - 16px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

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

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

  .booking-modal-content {
    max-height: 95vh;
  }

  .service-select-grid {
    grid-template-columns: 1fr;
  }

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

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

  .helpline-float {
    display: flex;
  }

  .quote-bar {
    bottom: 72px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .trust-strip .container {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

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

  .protection-features {
    flex-direction: column;
    align-items: center;
  }

  .service-type-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ============================================
   INVENTORY TABS (Modal Shifting Items categorization)
   ============================================ */
.inventory-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  overflow-x: auto;
  padding-bottom: 8px;
  border-bottom: 1.5px solid var(--gray-200);
}

.inventory-tabs::-webkit-scrollbar {
  height: 4px;
}

.inventory-tabs::-webkit-scrollbar-thumb {
  background-color: var(--gray-300);
  border-radius: 2px;
}

.inventory-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background-color: var(--gray-100);
  color: var(--gray-600);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid transparent;
  white-space: nowrap;
  transition: all 0.2s ease;
  cursor: pointer;
}

.inventory-tab-btn:hover {
  background-color: var(--gray-200);
  color: var(--gray-800);
}

.inventory-tab-btn.active {
  background-color: var(--orange) !important; /* Red accent color */
  color: var(--white) !important;
  box-shadow: 0 4px 10px rgba(225, 37, 27, 0.2);
}

/* ============================================
   INVENTORY ACCORDIONS
   ============================================ */
.inventory-accordion {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--white);
  transition: var(--transition-fast);
}

.inventory-accordion.active {
  border-color: #f97316;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.05);
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  cursor: pointer;
  background: #ffffff;
  transition: var(--transition-fast);
  user-select: none;
}

.accordion-header:hover {
  background: var(--gray-50);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-800);
}

.accordion-title i {
  color: #f97316; /* warm orange icon */
  font-size: 18px;
}

.accordion-badge {
  background-color: #ffedd5; /* light orange/peach background */
  color: #ea580c; /* dark orange text */
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  margin-left: 6px;
  display: inline-block;
}

.accordion-arrow {
  color: var(--gray-400);
  transition: transform 0.3s ease;
}

.inventory-accordion.active .accordion-arrow {
  transform: rotate(180deg);
  color: #f97316;
}

.accordion-content {
  display: none;
  padding: 16px;
  background: #fafafa;
  border-top: 1px solid var(--gray-100);
  flex-direction: column;
  gap: 12px;
}

.inventory-accordion.active .accordion-content {
  display: flex;
}

/* ============================================
   STEP 3: SHIFTING ESTIMATE LAYOUT STYLES
   ============================================ */
.booking-header {
  padding: 32px 32px 10px 32px;
}

.quick-booking-label {
  font-size: 11px;
  font-weight: 800;
  color: #ea580c;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.shifting-estimate-title {
  font-size: 28px;
  font-weight: 900;
  color: #0f172a;
}

.step3-price-header-card {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.05);
}

.price-header-label {
  font-size: 11px;
  font-weight: 800;
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.price-header-value {
  font-size: 36px;
  font-weight: 900;
  color: #10b981;
  line-height: 1.2;
}

.price-header-subtext {
  font-size: 12px;
  color: #64748b;
  margin-top: 6px;
  font-weight: 500;
}

.step3-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  margin-top: 10px;
}

.step3-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step3-right {
  position: relative;
}

.address-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 20px;
}

.card-header-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.card-header-row h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
}

.map-icon {
  color: #ea580c;
  font-size: 16px;
}

.form-group-custom {
  margin-bottom: 16px;
}

.form-group-custom:last-child {
  margin-bottom: 0;
}

.form-group-custom label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.form-group-custom input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: #334155;
  background: #ffffff;
  transition: var(--transition-fast);
}

.form-group-custom select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  color: #334155;
  background: #ffffff;
  transition: var(--transition-fast);
}

.form-group-custom input:focus,
.form-group-custom select:focus {
  border-color: #f97316;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.pincode-search-wrapper {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pincode-search-input {
  font-family: inherit;
}

/* Optional Transit Insurance Card */
.insurance-card-custom {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 20px;
}

.insurance-header-custom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}

.insurance-title-block {
  display: flex;
  gap: 16px;
}

.insurance-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #fff7ed;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.insurance-title-block h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
}

.insurance-title-block p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

.insurance-header-custom input[type="checkbox"],
.gst-header-custom input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #ea580c;
  cursor: pointer;
  margin-top: 4px;
}

.insurance-benefits-custom {
  border-top: 1px solid #f1f5f9;
  padding-top: 18px;
}

.benefits-title-custom {
  font-size: 12px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.benefits-title-custom i {
  color: #22c55e;
}

.benefits-grid-custom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.benefit-item-custom {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  font-weight: 600;
}

.benefit-item-custom i {
  color: #22c55e;
  font-size: 12px;
}

/* Include GST (18%) Card */
.gst-card-custom {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 20px;
}

.gst-header-custom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gst-title-block {
  display: flex;
  gap: 16px;
}

.gst-icon-box {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: #fff7ed;
  color: #ea580c;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.gst-title-block h4 {
  font-size: 16px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 4px;
}

.gst-title-block p {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
}

/* Dark Shifting Summary Card */
.summary-card-custom {
  background: #0f172a;
  border-radius: var(--radius);
  padding: 28px;
  color: #ffffff;
  position: sticky;
  top: 20px;
}

.summary-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.summary-card-header i {
  color: #f97316;
  font-size: 18px;
}

.summary-card-header h4 {
  font-size: 16px;
  font-weight: 800;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.summary-details-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.5;
}

.summary-detail-row .detail-label {
  color: #94a3b8;
  font-weight: 500;
  flex-shrink: 0;
}

.summary-detail-row .detail-value {
  color: #f8fafc;
  font-weight: 700;
  text-align: right;
  padding-left: 10px;
}

.summary-detail-row .detail-value.highlight-orange {
  color: #f97316;
}

.summary-divider {
  height: 1px;
  background: #334155;
  margin: 24px 0;
}

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

.summary-price-row .price-label {
  font-size: 16px;
  font-weight: 800;
  color: #f97316;
}

.summary-price-row .price-value {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

.summary-price-row .price-value.price-quote-required {
  font-size: 16px;
  color: #ef4444;
  font-weight: 700;
}

/* Custom Buttons style for Step 3 */
.btn-back-custom {
  border: 2px solid #f97316 !important;
  color: #f97316 !important;
  background: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  transition: all 0.2s ease !important;
}

.btn-back-custom:hover {
  background: #fff7ed !important;
}

.btn-submit-custom {
  background: #ea580c !important;
  color: #ffffff !important;
  font-weight: 700 !important;
  border-radius: 8px !important;
  padding: 12px 28px !important;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2) !important;
  transition: all 0.2s ease !important;
}

.btn-submit-custom:hover {
  background: #ea580c !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(234, 88, 12, 0.3) !important;
}

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

/* ============================================
   STEP 2: ADD INVENTORY LAYOUT STYLES
   ============================================ */
.step2-container {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  margin-top: 10px;
}

.step2-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step2-right {
  position: relative;
}

.inventory-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.inventory-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.inventory-header-left i {
  font-size: 18px;
  color: #475569;
}

.inventory-header-left h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1e293b;
}

.inventory-search-box {
  position: relative;
  width: 100%;
}

.inventory-search-box i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 16px;
}

.inventory-search-box input {
  width: 100%;
  padding: 14px 16px 14px 48px;
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  font-size: var(--fs-sm);
  color: #334155;
  background: #f8fafc;
  transition: var(--transition-fast);
}

.inventory-search-box input:focus {
  border-color: #f97316;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.08);
}

.btn-get-call {
  background: #fff7ed;
  color: #ea580c;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px dashed #fdba74;
  text-decoration: none;
}

.btn-get-call:hover {
  background: #ffedd5;
}

/* Truck Space Utilized Card */
.truck-space-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-top: 10px;
}

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

.truck-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
}

.truck-percentage-badge {
  background-color: #ffedd5;
  color: #ea580c;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
}

.truck-body {
  display: flex;
  align-items: center;
  gap: 20px;
}

.circular-progress-container {
  width: 80px;
  height: 80px;
}

.circular-progress {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.circular-progress .bg-circle {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 8;
}

.circular-progress .fg-circle {
  fill: none;
  stroke: #ea580c;
  stroke-width: 8;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.35s;
  transform-origin: 50% 50%;
}

.circular-progress .progress-text {
  fill: #1e293b;
  font-size: 18px;
  font-weight: 800;
  text-anchor: middle;
  transform: rotate(90deg);
  transform-origin: 50% 50%;
}

.truck-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.truck-usage-text {
  font-size: 15px;
  color: #1e293b;
}

.truck-subtitle {
  font-size: 12px;
  color: #94a3b8;
  font-weight: 600;
}

/* Transit Protection Card */
.transit-protection-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  padding: 16px 20px;
}

.protection-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.protection-label {
  font-size: 11px;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
}

.protection-desc {
  font-size: 13px;
  font-weight: 700;
  color: #ea580c;
}

.protection-toggle-pill {
  display: flex;
  background: #e2e8f0;
  border-radius: 20px;
  padding: 3px;
  gap: 4px;
}

.toggle-pill-option {
  padding: 6px 16px;
  border-radius: 18px;
  font-size: 12px;
  font-weight: 700;
  color: #64748b;
  cursor: pointer;
  transition: var(--transition-fast);
  user-select: none;
}

.toggle-pill-option.active {
  background: #ea580c;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(234, 88, 12, 0.2);
}

/* Step 2 Footer Bar */
.step2-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1.5px solid #f1f5f9;
  padding-top: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
  gap: 16px;
}

.added-items-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  color: #475569;
}

.added-items-badge .badge-count {
  background: #ea580c;
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 800;
}

.movers-only-text {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}

.movers-only-text .highlight {
  color: #ea580c;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
}

.step2-nav-buttons {
  display: flex;
  gap: 10px;
}

/* Booking Details Card on Right Side */
.booking-details-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 20px;
}

.booking-details-card h4 {
  font-size: 18px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
}

.booking-route-diagram {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.route-point {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.route-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  z-index: 2;
  flex-shrink: 0;
}

.route-dot.green-dot {
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.2);
}

.route-dot.orange-dot {
  background: #ea580c;
  box-shadow: 0 0 0 4px rgba(234, 88, 12, 0.2);
}

.route-line-vertical {
  width: 2px;
  height: 36px;
  background: #cbd5e1;
  margin-left: 5px;
  z-index: 1;
}

.route-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.route-label {
  font-size: 10px;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.5px;
}

.route-value {
  font-size: 14px;
  font-weight: 700;
  color: #334155;
}

.details-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 20px 0;
}

.details-summary-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.details-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
}

.details-row .label {
  color: #64748b;
}

.details-row .value {
  color: #1e293b;
  font-weight: 800;
  text-align: right;
}

@media (max-width: 768px) {
  .step2-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step2-footer-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .step2-nav-buttons {
    justify-content: flex-end;
  }
}

/* ============================================
   INTERACTIVE TIMELINE SECTION
   ============================================ */
.timeline-section {
  background: var(--gray-50);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.timeline-interactive {
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 50px;
  padding: 0 10px;
}

.timeline-progress-line {
  position: absolute;
  top: 24px;
  left: 50px;
  right: 50px;
  height: 4px;
  background: var(--gray-200);
  z-index: 1;
  border-radius: 2px;
}

.timeline-progress-fill {
  height: 100%;
  width: 0%; /* Dynamic fill based on active step */
  background: linear-gradient(90deg, #e1251b 0%, #ea580c 100%);
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 2px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  width: 100px;
}

.timeline-step .step-number {
  position: absolute;
  top: -10px;
  right: 0;
  background: var(--gray-300);
  color: var(--white);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: var(--transition);
}

.timeline-step .step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gray-300);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 12px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-sm);
}

.timeline-step .step-title {
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--gray-500);
  text-align: center;
  transition: var(--transition);
  white-space: nowrap;
}

/* Active Step Styling */
.timeline-step.active .step-icon {
  background: #ea580c;
  border-color: #ea580c;
  color: var(--white);
  box-shadow: 0 0 15px rgba(234, 88, 12, 0.4);
  transform: scale(1.15);
}

.timeline-step.active .step-number {
  background: #e1251b;
}

.timeline-step.active .step-title {
  color: #ea580c;
  font-size: 13px;
}

/* Visited Step Styling */
.timeline-step.visited .step-icon {
  border-color: #ea580c;
  color: #ea580c;
  background: var(--white);
}

.timeline-step.visited .step-number {
  background: #ea580c;
}

.timeline-step.visited .step-title {
  color: var(--gray-700);
}

/* Timeline Content Card */
.timeline-content-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.timeline-content-left h3 {
  font-size: var(--fs-2xl);
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.timeline-content-left p {
  color: var(--gray-600);
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: 24px;
}

.timeline-step-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--fs-sm);
  color: var(--gray-800);
  font-weight: 600;
}

.timeline-step-features li i {
  color: var(--green-check);
  font-size: 1rem;
}

.timeline-content-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.timeline-visual-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.large-timeline-icon {
  font-size: 4.5rem;
  color: #ea580c;
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glowing-circle {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px dashed rgba(234, 88, 12, 0.3);
  animation: rotateCircle 20s linear infinite;
}

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

/* Responsiveness for timeline */
@media (max-width: 768px) {
  .timeline-steps {
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 15px;
    justify-content: flex-start;
    gap: 30px;
  }
  
  .timeline-progress-line {
    display: none;
  }
  
  .timeline-step {
    flex-shrink: 0;
  }

  .timeline-content-card {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
  
  .timeline-content-right {
    order: -1;
  }
  
  .timeline-visual-wrapper {
    width: 120px;
    height: 120px;
  }
  
  .large-timeline-icon {
    font-size: 3rem;
  }
}

/* ============================================
   VEHICLE & BIKE SHIFTING CARDS
   ============================================ */
.inventory-grid.vehicle-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (max-width: 640px) {
  .inventory-grid.vehicle-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.vehicle-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  padding: 24px;
  transition: var(--transition-fast);
  position: relative;
}

.vehicle-card:hover, .vehicle-card.active {
  border-color: var(--orange);
  box-shadow: 0 6px 20px rgba(225, 37, 27, 0.06);
}

.vehicle-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.vehicle-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vehicle-icon-circle i {
  color: var(--orange);
  font-size: 1.2rem;
}

.vehicle-badge {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.5px;
}

.vehicle-badge.badge-vehicle {
  background-color: #dbeafe;
  color: #2563eb;
}

.vehicle-badge.badge-package {
  background-color: #dcfce7;
  color: #16a34a;
}

.vehicle-badge.badge-fragile {
  background-color: #fee2e2;
  color: #ef4444;
}

.vehicle-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 20px;
}

.vehicle-card-footer {
  margin-top: auto;
}

.btn-add-vehicle {
  width: 100%;
  padding: 11px;
  background-color: var(--orange);
  color: var(--white) !important;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: var(--transition-fast);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-vehicle:hover {
  background-color: var(--orange-hover);
  transform: translateY(-1px);
}

.vehicle-counter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid var(--orange);
  border-radius: var(--radius-sm);
  overflow: hidden;
  padding: 2px;
}

.vehicle-counter button {
  width: 36px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--orange);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.vehicle-counter button:hover {
  background: var(--orange-light);
}

.vehicle-counter span {
  font-weight: 700;
  font-size: var(--fs-base);
  color: var(--gray-800);
}


