/* ==========================================================================
   MoversHub India - Premium Design System (Modern SaaS + Marketplace)
   Inspired by Airbnb, Urban Company, and Modern Enterprise Platforms
   ========================================================================== */

/* --- Import Modern Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  /* Design Colors */
  --primary: #2563EB;
  --primary-rgb: 37, 99, 235;
  --primary-hover: #1D4ED8;
  --secondary: #0F172A;
  --secondary-rgb: 15, 23, 42;
  --accent: #F97316;
  --accent-rgb: 249, 115, 22;
  --accent-hover: #EA580C;
  --background: #F8FAFC;
  --surface: #FFFFFF;
  --success: #22C55E;
  --success-rgb: 34, 197, 94;
  --info: #06B6D4;
  --warning: #F59E0B;
  
  /* Text Colors */
  --text-main: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  
  /* Borders & Shadows */
  --border-light: #E2E8F0;
  --border-dark: #334155;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 16px -6px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 15px 25px -10px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 35px 60px -15px rgba(15, 23, 42, 0.2);
  --shadow-inset: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);

  /* Glassmorphism System */
  --glass-bg: rgba(255, 255, 255, 0.75);
  --glass-bg-dark: rgba(15, 23, 42, 0.75);
  --glass-border: rgba(255, 255, 255, 0.4);
  --glass-border-dark: rgba(255, 255, 255, 0.1);
  --glass-blur: blur(16px);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.06);
}

/* --- Base Customizations --- */
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-main);
  background-color: var(--background);
  overflow-x: hidden;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--secondary);
  font-weight: 700;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--secondary) 0%, #1E293B 100%);
}

.bg-gradient-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #EA580C 100%);
}

.bg-gradient-light {
  background: linear-gradient(135deg, #F8FAFC 0%, #EEF2F6 100%);
}

/* --- Premium Buttons --- */
.btn {
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.75rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.btn-accent {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(249, 115, 22, 0.3);
}

.btn-accent:hover, .btn-accent:focus {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

.btn-outline-secondary {
  border-color: var(--border-light);
  color: var(--secondary);
  background-color: var(--surface);
}

.btn-outline-secondary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* --- Glassmorphism Card Style --- */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: var(--radius-lg);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* --- Section Title Styling --- */
.section-tag {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  letter-spacing: 1px;
  margin-bottom: 1rem;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

/* --- Sticky Header & Navigation --- */
header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 1.5rem 0;
  background: var(--secondary); /* Premium deep dark slate matching footer */
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

header.sticky-header.scrolled {
  background: rgba(15, 23, 42, 0.95) !important; /* Elegant semi-translucent dark glass */
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3), 0 1px 0 0 rgba(255, 255, 255, 0.06);
  padding: 0.85rem 0;
}

header.sticky-header.scrolled .navbar-brand img {
  height: 35px;
}

.navbar-brand {
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  font-size: 1.55rem;
  letter-spacing: -0.5px;
  color: #FFFFFF !important; /* Make text high contrast on dark header background */
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand span {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.navbar-brand i {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-brand:hover {
  transform: scale(1.02);
}

.navbar-brand:hover i {
  transform: scale(1.15) rotate(-8deg);
}

.navbar-nav .nav-link {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85) !important; /* High contrast links on dark background */
  font-size: 0.88rem;
  padding: 0.5rem 0.75rem !important;
  border-radius: var(--radius-md);
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}

.navbar-nav .nav-link:hover {
  color: #FFFFFF !important;
  background-color: rgba(255, 255, 255, 0.08);
}

/* Header Search Bar */
.header-search {
  width: 170px;
  margin-right: 1.5rem;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-search:focus-within {
  width: 250px;
}

.header-search input {
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 0.45rem 1.2rem 0.45rem 2.2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background-color: rgba(255, 255, 255, 0.08) !important; /* Premium dark search input */
  color: #FFFFFF !important;
  width: 100%;
}

.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

.header-search input:focus {
  background-color: rgba(255, 255, 255, 0.15) !important;
  border-color: var(--primary) !important;
  box-shadow: 0 10px 25px -10px rgba(37, 99, 235, 0.25), 0 0 0 3px rgba(37, 99, 235, 0.2) !important;
  outline: none;
}

.header-search .bi-search {
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5) !important;
  font-size: 0.85rem;
  transition: color 0.3s ease;
  z-index: 5;
}

.header-search input:focus ~ .bi-search {
  color: var(--accent) !important;
}

/* Header Custom Button States */
.navbar-nav .btn-outline-secondary {
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  font-weight: 600;
  padding: 0.5rem 1.25rem !important;
  border-radius: var(--radius-md);
  background: transparent !important;
  color: #FFFFFF !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-nav .btn-outline-secondary:hover {
  border-color: #FFFFFF !important;
  color: #FFFFFF !important;
  background: rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1) !important;
}

.navbar-nav .btn-accent {
  padding: 0.5rem 1.35rem !important;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent) 0%, #EA580C 100%) !important;
  border: none;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.25);
  position: relative;
  overflow: hidden;
}

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

.navbar-nav .btn-accent:hover::before {
  left: 100%;
}

.navbar-nav .btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
}

/* --- Hero Section & Custom Search Form --- */
.hero-section {
  padding-top: 11rem;
  padding-bottom: 8rem;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.07) 0%, rgba(249, 115, 22, 0.02) 60%, rgba(255, 255, 255, 0) 100%), 
              linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%) !important;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 15%;
  left: -5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: float-slow 15s infinite alternate ease-in-out;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  animation: float-slow-reverse 20s infinite alternate ease-in-out;
  pointer-events: none;
  z-index: 0;
}

@keyframes float-slow {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(-40px) scale(1.1); }
}

@keyframes float-slow-reverse {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(0.95); }
}

/* Floating Live Shifting Badge Animation */
.animate-pulse-badge {
  animation: float-badge 6s infinite ease-in-out;
  transition: all 0.3s ease;
}

.animate-pulse-badge:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.6) !important;
}

@keyframes float-badge {
  0% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.pulse-glow-btn {
  animation: pulse-glow-green 2s infinite;
}

@keyframes pulse-glow-green {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4); }
  70% { transform: scale(1.08); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-truck-visual {
  position: relative;
  z-index: 1;
}

.hero-truck-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-bg-accent {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 50%;
  height: 60%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: 0;
  pointer-events: none;
}

/* Search Box Container */
.hero-search-container {
  margin-top: 1rem;
  padding: 2.25rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 5;
  transition: all 0.3s ease;
}

.hero-search-container label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
  display: block;
}

.hero-search-container .form-control, 
.hero-search-container .form-select {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--text-main);
}

.hero-search-container .form-control:focus, 
.hero-search-container .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Autocomplete Suggestion List */
.autocomplete-suggestions {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  width: calc(100% - 2rem);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  display: none;
}

.autocomplete-suggestions div {
  padding: 0.75rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.autocomplete-suggestions div:hover {
  background-color: rgba(37, 99, 235, 0.05);
  color: var(--primary);
}

/* --- Trust Section --- */
.trust-section {
  position: relative;
  z-index: 3;
  margin-top: -3rem;
}

.trust-card {
  padding: 1.5rem 1rem;
  text-align: center;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.trust-icon {
  font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.trust-card:hover .trust-icon {
  transform: scale(1.1);
  color: var(--accent);
}

.trust-number {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--secondary);
  font-family: 'Poppins', sans-serif;
  margin-bottom: 0.25rem;
}

.trust-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* --- Popular Cities Grid --- */
.city-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  cursor: pointer;
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

.city-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.city-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  z-index: 2;
  color: #FFFFFF;
}

.city-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: #FFFFFF;
}

.city-card-subtitle {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

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

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

/* --- Featured Mover Cards --- */
.mover-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

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

.mover-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 10;
  background-color: var(--success);
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 8px rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.mover-card-compare {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
}

.compare-badge-label {
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border-light);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.compare-badge-label:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.mover-compare-chk {
  width: 0.95rem;
  height: 0.95rem;
  cursor: pointer;
  accent-color: var(--primary);
  border-radius: 3px;
  border: 1px solid var(--text-light);
  margin: 0;
  transition: all 0.2s ease;
}

.mover-header {
  padding: 3.25rem 1.5rem 1.5rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mover-logo-wrapper {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #F8FAFC;
  flex-shrink: 0;
}

.mover-logo-wrapper img {
  width: 80%;
  height: 80%;
  object-fit: contain;
}

.mover-title-box h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.mover-ratings {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
}

.mover-rating-badge {
  background-color: #FEF3C7;
  color: #D97706;
  font-weight: 700;
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.mover-body {
  padding: 1.25rem 1.5rem;
}

.mover-meta-item {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mover-meta-item i {
  color: var(--primary);
  font-size: 1rem;
}

.mover-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
}

.mover-tag {
  background-color: #F1F5F9;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
}

.mover-footer {
  padding: 1.25rem 1.5rem;
  background-color: #F8FAFC;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.mover-footer .btn-book {
  grid-column: span 2;
  margin-top: 0.25rem;
}

.mover-footer .btn-icon-only {
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

/* --- Services Icons --- */
.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-md);
  background-color: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card {
  padding: 2.25rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card:hover .service-icon-box {
  background-color: var(--primary);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

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

/* --- Cost Calculator Widget --- */
.calculator-card {
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.calculator-left {
  padding: 2.5rem;
  background-color: #FFFFFF;
}

.calculator-right {
  padding: 2.5rem;
  background-color: var(--secondary);
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.calculator-right::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.calculator-right h3 {
  color: #FFFFFF;
}

.calc-result-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 1.5rem;
  backdrop-filter: blur(8px);
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}

.calc-result-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.calc-result-total {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 2px solid rgba(255, 255, 255, 0.15);
}

/* --- Double Pulse Verified Badge --- */
.pulse-green {
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.pulse-green::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--success);
  border-radius: 50%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  animation: pulse-ring 1.5s infinite ease-in-out;
}

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* --- Custom Testimonial Card --- */
.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  margin: 1rem 0;
}

.testimonial-text {
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '\201C';
  font-size: 4rem;
  font-family: serif;
  color: rgba(37, 99, 235, 0.15);
  position: absolute;
  top: -1.5rem;
  left: -1rem;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 0.95rem;
  margin-bottom: 0.1rem;
}

.testimonial-route {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Blog Cards --- */
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.blog-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.blog-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.blog-card-title a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card-title a:hover {
  color: var(--primary);
}

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

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

/* --- Mobile App Banner --- */
.app-banner {
  background: linear-gradient(135deg, var(--secondary) 0%, #1e293b 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.app-banner::before {
  content: '';
  position: absolute;
  left: -10%;
  bottom: -20%;
  width: 40%;
  height: 80%;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, rgba(0,0,0,0) 70%);
  pointer-events: none;
}

.app-banner h2 {
  color: #FFFFFF;
  font-size: 2.25rem;
}

.app-mockup-wrapper {
  position: relative;
}

.app-mockup-wrapper img {
  max-width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

.qr-box {
  background: #FFFFFF;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  display: inline-block;
}

/* --- Floating Comparison Drawer --- */
.compare-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
  z-index: 1040;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  color: #FFFFFF;
}

.compare-drawer.active {
  transform: translateY(0);
}

.compare-item-thumb {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  position: relative;
}

.compare-item-thumb img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: 4px;
}

.compare-item-thumb .btn-remove {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  cursor: pointer;
  transition: background 0.2s ease;
}

.compare-item-thumb .btn-remove:hover {
  background: var(--accent-hover);
}

/* --- Floating Actions Widget (WhatsApp & Chat) --- */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1045;
}

.btn-float {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  color: #FFFFFF;
  border: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.btn-float:hover {
  transform: scale(1.1) translateY(-3px);
}

.btn-float-whatsapp {
  background-color: #25D366;
}

.btn-float-whatsapp:hover {
  background-color: #20BA5A;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
}

.btn-float-chat {
  background-color: var(--primary);
}

.btn-float-chat:hover {
  background-color: var(--primary-hover);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

.btn-float .chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: var(--accent);
  color: white;
  font-size: 0.7rem;
  padding: 0.2rem 0.45rem;
  border-radius: 50%;
  font-weight: 700;
  border: 2px solid white;
}

/* --- Custom Chat Panel Widget --- */
.chat-panel {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  width: 380px;
  height: 500px;
  background: #FFFFFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 1045;
  transform: translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.chat-header {
  background: var(--secondary);
  color: #FFFFFF;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chat-header-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chat-avatar-box {
  position: relative;
}

.chat-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.chat-status-dot {
  width: 10px;
  height: 10px;
  background-color: var(--success);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  border: 2px solid var(--secondary);
}

.chat-body {
  flex-grow: 1;
  padding: 1.25rem;
  overflow-y: auto;
  background-color: #F8FAFC;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-msg {
  max-width: 80%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  line-height: 1.4;
}

.chat-msg-bot {
  background-color: #FFFFFF;
  color: var(--text-main);
  border-top-left-radius: 0;
  border: 1px solid var(--border-light);
  align-self: flex-start;
}

.chat-msg-user {
  background-color: var(--primary);
  color: #FFFFFF;
  border-top-right-radius: 0;
  align-self: flex-end;
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}

.chat-chip {
  background: #FFFFFF;
  border: 1px solid var(--primary);
  color: var(--primary);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-chip:hover {
  background: var(--primary);
  color: #FFFFFF;
}

.chat-footer {
  padding: 0.75rem 1rem;
  background: #FFFFFF;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chat-footer input {
  flex-grow: 1;
  border: none;
  font-size: 0.9rem;
  outline: none;
  padding: 0.5rem 0;
}

.chat-footer .btn-send {
  color: var(--primary);
  background: none;
  border: none;
  font-size: 1.25rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.chat-footer .btn-send:hover {
  color: var(--primary-hover);
}

/* --- FAQ Custom Accordion Style --- */
.faq-accordion .accordion-item {
  border: 1px solid var(--border-light) !important;
  border-radius: var(--radius-md) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background-color: #FFFFFF;
}

.faq-accordion .accordion-button {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--secondary);
  padding: 1.25rem 1.5rem;
  background-color: #FFFFFF;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(37, 99, 235, 0.03);
  color: var(--primary);
  box-shadow: none;
}

.faq-accordion .accordion-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-muted);
  background-color: #FFFFFF;
  padding: 1.25rem 1.5rem;
}

/* --- Custom Testimonial Navigation Style --- */
.carousel-indicators [data-bs-target] {
  background-color: var(--primary);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* --- Footer --- */
footer.modern-footer {
  background-color: var(--secondary);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

footer.modern-footer h4, footer.modern-footer h5 {
  color: #FFFFFF;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

footer.modern-footer ul {
  padding-left: 0;
  list-style: none;
}

footer.modern-footer ul li {
  margin-bottom: 0.75rem;
}

footer.modern-footer ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.2s ease;
}

footer.modern-footer ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

footer.modern-footer .social-icons {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

footer.modern-footer .social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-decoration: none;
}

footer.modern-footer .social-btn:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

footer.modern-footer .newsletter-form {
  position: relative;
}

footer.modern-footer .newsletter-form input {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #FFFFFF;
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  padding-right: 3rem;
  font-size: 0.85rem;
  width: 100%;
}

footer.modern-footer .newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

footer.modern-footer .newsletter-form button {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: var(--accent);
  color: #FFFFFF;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

footer.modern-footer .newsletter-form button:hover {
  background: var(--accent-hover);
}

footer.modern-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 2rem;
  margin-top: 4rem;
  font-size: 0.8rem;
}

/* --- Mobile Responsiveness Adjustments --- */
@media (max-width: 991.98px) {
  header.sticky-header {
    background: var(--secondary) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    padding: 0.45rem 0.65rem !important;
    border-radius: var(--radius-md) !important;
  }
  
  .navbar-toggler-icon {
    filter: invert(1) grayscale(100%) brightness(200%) !important;
  }
  
  .navbar-nav {
    padding-top: 1rem;
    gap: 0.35rem; /* Clean vertical spacing on mobile navbar */
  }
  
  .navbar-nav .nav-link::after {
    display: none;
  }
  
  .header-search {
    max-width: 100%;
    margin: 1rem 0;
  }
  
  .header-search input:focus {
    max-width: 100%;
  }
  
  .hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    text-align: center;
  }
  
  .hero-search-container {
    text-align: left;
  }
  
  .trust-section {
    margin-top: 1rem;
  }
  
  .calculator-left, .calculator-right {
    padding: 1.75rem;
  }
  
  .chat-panel {
    width: calc(100vw - 4rem);
    right: 2rem;
    left: 2rem;
    height: 450px;
  }

  /* Center flex columns in centered mobile app banner */
  .app-banner .d-flex {
    justify-content: center !important;
    flex-wrap: wrap;
  }
}

@media (max-width: 767.98px) {
  /* Prevent packaging standard flex radio cards from overflowing horizontally on tablets/phones */
  .calculator-left .d-flex.gap-4 {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  /* Make comparison bottom drawer fully responsive and stack columns centered */
  .compare-drawer {
    padding: 1rem 0;
  }
  .compare-drawer h5 {
    font-size: 1rem !important;
    text-align: center;
    width: 100%;
  }
  #compareThumbs {
    justify-content: center !important;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .compare-drawer .col-md-5 {
    display: flex;
    justify-content: center !important;
    width: 100%;
    margin-top: 0.75rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section h1 {
    font-size: 2rem;
  }

  .animate-pulse-badge {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem !important;
    padding: 1rem !important;
  }
  
  .trust-card {
    padding: 1rem 0.5rem;
  }
  
  .trust-number {
    font-size: 1.35rem;
  }
  
  .trust-icon {
    font-size: 1.8rem;
  }
  
  .city-card {
    height: 220px;
  }
  
  .testimonial-card {
    padding: 1.5rem 1rem;
  }
  
  .testimonial-text {
    font-size: 0.92rem;
    line-height: 1.6;
  }
  
  .faq-accordion .accordion-button {
    font-size: 0.95rem;
    padding: 1rem;
  }
  
  .faq-accordion .accordion-body {
    font-size: 0.88rem;
    padding: 1rem;
  }
  
  .app-banner {
    padding: 2.5rem 1.5rem;
    text-align: center;
  }
  
  .app-banner h2 {
    font-size: 1.75rem;
  }
  
  .app-mockup-wrapper {
    margin-top: 2rem;
  }
  
  .floating-actions {
    bottom: 1.5rem;
    right: 1.5rem;
  }
  
  .chat-panel {
    width: calc(100vw - 2rem);
    right: 1rem;
    left: 1rem;
    bottom: 5.5rem;
  }

  .carousel-control-prev, .carousel-control-next {
    width: 8%; /* Make spotlight arrows smaller to prevent tap overlaps */
  }
}

@media (max-width: 375.98px) {
  /* Prevent call/whatsapp mover-footer buttons from clipping/wrapping on ultra-narrow viewports */
  .mover-footer {
    grid-template-columns: 1fr;
  }
  .mover-footer .btn-book {
    grid-column: span 1;
  }
  .mover-footer .btn {
    width: 100% !important;
    white-space: nowrap !important;
  }
}

/* --- Ultra-Attractive Section Background System --- */

/* Base overrides for Bootstrap's plain .bg-light on our sections */
#featured, #calculator, #testimonials, #faq {
  background-color: transparent !important; /* remove default flat gray */
}

/* 1. Cities Grid Section */
#cities {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%) !important;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

/* 2. Featured Movers Section (Sleek Slate Blue-Grey Gradient) */
#featured {
  background: linear-gradient(180deg, #EDF2F7 0%, #E2E8F0 100%) !important;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
#featured::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

/* 3. Services Catalog Section */
#services {
  background: #FFFFFF !important;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

/* 4. Shifting Calculator Section (Stunning Dark SaaS Theme!) */
#calculator {
  background: linear-gradient(135deg, #0B0F19 0%, #1E293B 100%) !important;
  position: relative;
  padding: 5rem 0 !important;
}
#calculator .section-tag {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--accent) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}
#calculator h2 {
  color: #FFFFFF !important;
}
#calculator p.text-muted {
  color: #94A3B8 !important;
}

/* 5. Spotlight Spotlight Section (Light Cold Grey) */
#carousel {
  background: linear-gradient(180deg, #F8FAFC 0%, #EEF2F6 100%) !important;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

/* 6. Testimonials Shifting Section (Warm Trust Cream Gradient) */
#testimonials {
  background: linear-gradient(135deg, #FFFDF0 0%, #FFF5D6 100%) !important;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}
#testimonials::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

/* 7. Shifting Blog Guides Section */
#blog {
  background: #FFFFFF !important;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

/* 8. Helpdesk FAQ Section (Sleek Slate Grey) */
#faq {
  background: linear-gradient(180deg, #F1F5F9 0%, #E2E8F0 100%) !important;
  position: relative;
  border-bottom: 1px solid var(--border-light);
}

/* 9. Mobile App Download Section Wrapper */
#app {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F5F9 100%) !important;
  position: relative;
  padding: 5rem 0 !important;
  border-bottom: 1px solid var(--border-light);
}

/* Compare Modal Styles */
.modal-compare-logo {
  height: 48px;
  object-fit: contain;
}

.table-compare th, .table-compare td {
  padding: 1rem 0.75rem;
  font-size: 0.9rem;
}

.table-compare th {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* --- Premium Modal & Form Field Overrides --- */
.modal-backdrop {
  background-color: rgba(15, 23, 42, 0.4) !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  transition: all 0.3s ease;
}

.modal-content {
  border-radius: 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 30px 70px -10px rgba(15, 23, 42, 0.25) !important;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-header {
  border-bottom: 1px solid var(--border-light) !important;
  padding: 1.5rem 2rem !important;
}

.modal-body {
  padding: 2rem 2rem !important;
}

.modal .form-label {
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.modal .form-control, .modal .form-select {
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border-light) !important;
  padding: 0.8rem 1rem !important;
  font-size: 0.95rem !important;
  font-weight: 500 !important;
  color: var(--text-main);
  background-color: #F8FAFC !important;
  transition: all 0.3s ease !important;
}

.modal .form-control:focus, .modal .form-select:focus {
  background-color: #FFFFFF !important;
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12) !important;
}

/* Social Logins inside Modal */
.social-login-separator {
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  margin: 1.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-login-separator::before, .social-login-separator::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid var(--border-light);
}

.social-login-separator:not(:empty)::before {
  margin-right: .75em;
}

.social-login-separator:not(:empty)::after {
  margin-left: .75em;
}

.btn-social-login {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary);
  background: #FFFFFF;
  transition: all 0.2s ease;
  width: 100%;
}

.btn-social-login:hover {
  background: #F8FAFC;
  border-color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.btn-social-login-google i {
  color: #DB4437;
}

.btn-social-login-whatsapp {
  border-color: rgba(34, 197, 94, 0.3);
}

.btn-social-login-whatsapp i {
  color: #22C55E;
}

.btn-social-login-whatsapp:hover {
  background: rgba(34, 197, 94, 0.04);
  border-color: var(--success);
}

/* Autocomplete Suggestion Dropdowns Premium Overlay */
.autocomplete-suggestions {
  position: absolute;
  top: calc(100% + 6px) !important;
  left: 0 !important;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border: 1px solid rgba(226, 232, 240, 0.8) !important;
  border-radius: var(--radius-md) !important;
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.12), 0 5px 15px -5px rgba(15, 23, 42, 0.04) !important;
  width: 100% !important;
  z-index: 1060 !important;
  max-height: 240px !important;
  overflow-y: auto !important;
  padding: 0.4rem 0 !important;
  animation: slide-up-suggest 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slide-up-suggest {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.autocomplete-suggestions div {
  padding: 0.7rem 1.2rem !important;
  cursor: pointer;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: var(--secondary) !important;
  transition: all 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
}

.autocomplete-suggestions div::before {
  content: '\F4E3'; /* Bootstrap Icon location pin */
  font-family: 'bootstrap-icons';
  color: var(--text-light);
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.autocomplete-suggestions div:hover {
  background-color: rgba(37, 99, 235, 0.05) !important;
  color: var(--primary) !important;
  padding-left: 1.4rem !important;
}

.autocomplete-suggestions div:hover::before {
  color: var(--primary);
}

/* --- Visual Fixes for Header & Footer Layouts --- */
.navbar-nav .btn {
  white-space: nowrap !important;
  width: auto !important; /* overrides w-100 container squishing */
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

footer .navbar-brand {
  color: #FFFFFF !important; /* ensures My is visible against dark slate bg */
}
