/* ===== DESIGN TOKENS — LIGHT THEME ===== */
:root {
  --primary: #1a6edb;
  --primary-dark: #1558b0;
  --primary-light: #2a7de8;
  --primary-glow: rgba(26, 110, 219, 0.15);
  --accent: #f59e0b;
  --accent-light: #fbbf24;
  --success: #22c55e;
  --danger: #ef4444;
  --bg-body: #f8fafc;
  --bg-card: #ffffff;
  --bg-card-hover: #f1f5f9;
  --bg-surface: #f1f5f9;
  --bg-input: #f1f5f9;
  --bg-hero: #0c1a30;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 4px 20px rgba(26, 110, 219, 0.15);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 64px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

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

button,
input,
select,
textarea {
  font-family: var(--font);
  border: none;
  outline: none;
  background: none;
  color: var(--text-primary);
  font-size: 0.95rem;
}

button {
  cursor: pointer;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
}

.logo-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.logo-dot {
  color: var(--primary);
}

.logo-tagline {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 1px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
  background: rgba(26, 110, 219, 0.06);
}

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

.nav-btn-ghost {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
}

.nav-btn-ghost:hover {
  color: var(--primary);
}

.nav-btn-primary {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.nav-btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-glow);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  margin-left: auto;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-toggle:hover {
  background: rgba(26, 110, 219, 0.06);
}

.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition);
  transform-origin: center;
}

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: var(--nav-height);
  right: -100%;
  width: 80%;
  max-width: 320px;
  bottom: 0;
  background: white;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 999;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu-content {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu-content a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  transition: var(--transition);
  letter-spacing: -0.2px;
}

.mobile-menu-content a:hover,
.mobile-menu-content a:active {
  background: rgba(26, 110, 219, 0.06);
  color: var(--primary);
}

.mobile-menu-divider {
  height: 1px;
  background: #f1f5f9;
  margin: 8px 16px;
}

.mobile-cta {
  background: var(--primary) !important;
  color: white !important;
  text-align: center;
  justify-content: center;
  border-radius: var(--radius-md) !important;
  margin-top: 8px;
  font-weight: 700 !important;
}

/* ===== PAGES ===== */
.page {
  display: none;
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.page.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== HERO (keeps dark for contrast) ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26, 110, 219, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
    var(--bg-hero);
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0);
  }

  20% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-400px) scale(1);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  color: white;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(26, 110, 219, 0.2);
  border: 1px solid rgba(26, 110, 219, 0.4);
  font-size: 0.85rem;
  font-weight: 600;
  color: #93c5fd;
  margin-bottom: 24px;
  animation: slideUp 0.6s ease;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
  animation: slideUp 0.7s ease;
  color: white;
}

.gradient-text {
  background: linear-gradient(135deg, #60a5fa, #818cf8, #93c5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto 32px;
  animation: slideUp 0.8s ease;
  line-height: 1.7;
}

/* ===== UBER-STYLE SEARCH (in hero — dark) ===== */
.uber-search {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: 8px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.9s ease;
  max-width: 700px;
  margin: 0 auto;
  backdrop-filter: blur(16px);
  overflow: visible;
  position: relative;
  z-index: 10;
}

.uber-search-row {
  display: flex;
  gap: 4px;
  align-items: stretch;
  overflow: visible;
}

.uber-search-field {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 0 16px;
  min-height: 52px;
  position: relative;
  overflow: visible;
}

.uber-search-field .search-icon {
  color: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}

.uber-search-field input,
.uber-search-field select {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 0;
  font-size: 0.95rem;
  color: white;
  min-width: 0;
}

.uber-search-field input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.uber-search-field select {
  cursor: pointer;
  appearance: none;
}

.uber-search-field select option {
  background: #1e293b;
  color: white;
}

.gps-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition);
  flex-shrink: 0;
}

.gps-btn:hover {
  color: white;
  background: rgba(26, 110, 219, 0.3);
}

.gps-btn.locating {
  animation: pulse 1s infinite;
  color: var(--primary-light);
}

.uber-search-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 14px 28px;
  border-radius: var(--radius-lg);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.uber-search-btn:hover {
  background: var(--primary-dark);
  box-shadow: 0 0 30px rgba(26, 110, 219, 0.4);
}

/* ===== TRUST BADGES (in hero) ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 32px;
  animation: slideUp 1s ease;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: rgba(26, 110, 219, 0.08);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--bg-surface);
}

.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.step-card {
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(26, 110, 219, 0.1);
  position: absolute;
  top: 12px;
  right: 16px;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: rgba(26, 110, 219, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

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

.step-connector {
  color: var(--text-muted);
  padding: 0 8px;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.service-card {
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

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

.service-card .service-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(26, 110, 219, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 14px;
  font-size: 1.3rem;
}

.service-card h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FEATURED SHOPS CAROUSEL ===== */
.shops-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px;
}

.shop-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.shop-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.shop-card-header {
  padding: 20px 20px 0;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.shop-avatar {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(26, 110, 219, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  overflow: hidden;
}

.shop-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-info {
  flex: 1;
  min-width: 0;
}

.shop-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary);
}

.shop-address {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
}

.shop-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--accent);
  font-weight: 600;
}

.shop-distance {
  color: var(--text-muted);
}

.shop-status {
  display: flex;
  align-items: center;
  gap: 4px;
}

.shop-status .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.shop-status .dot.open {
  background: var(--success);
}

.shop-status .dot.closed {
  background: var(--danger);
}

.shop-card-body {
  padding: 14px 20px;
}

.shop-services {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shop-service-tag {
  padding: 3px 10px;
  border-radius: var(--radius-full);
  background: rgba(26, 110, 219, 0.07);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 500;
}

.shop-card-footer {
  padding: 14px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.shop-price strong {
  color: var(--text-primary);
}

.shop-book-btn {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.8rem;
  transition: var(--transition);
}

.shop-book-btn:hover {
  background: var(--primary-dark);
}

/* ===== STATS ===== */
.stats-section {
  background: var(--bg-card);
}

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

.stat-card {
  text-align: center;
  padding: 32px 16px;
}

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 4px;
  font-weight: 500;
}

/* ===== CTA SECTION ===== */
.cta-card {
  background: linear-gradient(135deg, var(--primary), #4f46e5);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.cta-content {
  max-width: 500px;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 24px;
  line-height: 1.7;
}

.btn-primary-lg {
  display: inline-flex;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  background: white;
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
}

.btn-primary-lg:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cta-graphic {
  width: 200px;
  height: 200px;
  opacity: 0.4;
  flex-shrink: 0;
}

/* ===== SEARCH PAGE (UBER LAYOUT) ===== */
.search-page {
  display: flex;
  height: calc(100vh - var(--nav-height));
}

.search-panel {
  width: 440px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  overflow: hidden;
}

.search-panel-header {
  padding: 20px;
  border-bottom: 1px solid var(--border);
}

.search-panel-header h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.search-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-row {
  display: flex;
  gap: 8px;
}

.filter-input {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-primary);
}

.filter-input:focus {
  border-color: var(--primary);
}

.filter-gps {
  width: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  transition: var(--transition);
}

.filter-gps:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.filter-select {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  appearance: none;
  cursor: pointer;
  color: var(--text-primary);
}

.filter-chips {
  display: flex;
  gap: 6px;
}

.chip {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--bg-input);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition);
}

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

.chip.active {
  background: rgba(26, 110, 219, 0.08);
  border-color: var(--primary);
  color: var(--primary);
}

.search-results {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
}

.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

/* Search result cards */
.result-card {
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.result-card:hover,
.result-card.active {
  border-color: var(--primary);
  background: rgba(26, 110, 219, 0.03);
}

.result-card-top {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.result-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(26, 110, 219, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.result-info {
  flex: 1;
  min-width: 0;
}

.result-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 2px;
  color: var(--text-primary);
}

.result-addr {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.result-meta {
  display: flex;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.result-rating {
  color: var(--accent);
  font-weight: 600;
}

.result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}

.result-tag {
  padding: 2px 8px;
  font-size: 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(26, 110, 219, 0.06);
  color: var(--primary);
}

.result-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.result-btn {
  flex: 1;
  padding: 8px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  text-align: center;
  transition: var(--transition);
}

.result-btn.primary {
  background: var(--primary);
  color: white;
}

.result-btn.primary:hover {
  background: var(--primary-dark);
}

.result-btn.outline {
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.result-btn.outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

/* Map */
.search-map {
  flex: 1;
  position: relative;
}

.map-view {
  width: 100%;
  height: 100%;
}

.map-recenter {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.map-recenter:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.map-toggle-mobile {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 600;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--primary);
  color: white;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  gap: 8px;
  align-items: center;
}

/* ===== SHOP DETAIL ===== */
.shop-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 32px 24px;
}

.shop-detail-header {
  margin-bottom: 32px;
}

.shop-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition);
}

.shop-detail-back:hover {
  color: var(--primary);
}

.shop-detail-top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.shop-detail-avatar {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-lg);
  background: rgba(26, 110, 219, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.shop-detail-info {
  flex: 1;
}

.shop-detail-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.shop-detail-addr {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.shop-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.shop-detail-section {
  margin-bottom: 32px;
}

.shop-detail-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text-primary);
}

/* ===== BOOKING PAGE ===== */
.booking-page {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px 24px;
}

.booking-header {
  margin-bottom: 32px;
}

.booking-shop-mini {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.booking-step {
  margin-bottom: 32px;
}

.booking-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
}

.booking-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}

/* Date picker */
.date-picker {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.date-cell {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  color: var(--text-primary);
}

.date-cell.header {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  cursor: default;
}

.date-cell.disabled {
  color: var(--text-muted);
  opacity: 0.3;
  cursor: not-allowed;
}

.date-cell:not(.header):not(.disabled):hover {
  background: rgba(26, 110, 219, 0.06);
  border-color: var(--primary);
}

.date-cell.selected {
  background: var(--primary);
  color: white;
}

.date-cell.today {
  border-color: var(--primary);
}

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

.date-nav button {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-primary);
}

.date-nav span {
  font-weight: 600;
  color: var(--text-primary);
}

/* Time slots */
.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.time-slot {
  padding: 10px;
  text-align: center;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-primary);
}

.time-slot:hover {
  border-color: var(--primary);
}

.time-slot.selected {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}

.time-slot.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  background: var(--primary);
  color: white;
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-glow);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-weight: 600;
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

/* ===== FORMS ===== */
.page-header {
  text-align: center;
  padding: 40px 0;
}

.page-header h1 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.page-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.quote-form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.quote-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.form-progress {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}

.progress-step {
  flex: 1;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.progress-step span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-input);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.progress-step.active {
  background: rgba(26, 110, 219, 0.08);
  color: var(--primary);
}

.progress-step.active span {
  background: var(--primary);
  color: white;
}

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

.progress-step.completed span {
  background: var(--success);
  color: white;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.form-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 110, 219, 0.08);
}

.form-group textarea {
  resize: vertical;
}

.form-btn-row {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-top: 20px;
}

.form-next {
  margin-top: 20px;
}

.service-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.service-chip {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition);
}

.service-chip:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.service-chip.selected {
  background: rgba(26, 110, 219, 0.08);
  border-color: var(--primary);
  color: var(--primary);
}

/* ===== SERVICES PAGE ===== */
.all-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  padding-bottom: 60px;
}

/* ===== CITIES PAGE ===== */
.cities-search-bar {
  max-width: 500px;
  margin: 0 auto 40px;
}

.cities-search-bar input {
  width: 100%;
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 1rem;
  transition: var(--transition);
  color: var(--text-primary);
}

.cities-search-bar input:focus {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.provinces-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 60px;
}

.province-section h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  color: var(--primary);
}

.province-cities {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px;
}

.city-link {
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: var(--transition);
  display: block;
}

.city-link:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: rgba(26, 110, 219, 0.03);
}

/* ===== CONFIRMATION PAGE ===== */
.confirmation-page {
  max-width: 600px;
  margin: 0 auto;
  padding: 60px 24px;
  text-align: center;
}

.confirm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.confirm-icon svg {
  width: 40px;
  height: 40px;
  color: var(--success);
}

.confirm-details {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 24px 0;
  text-align: left;
}

.confirm-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

.confirm-row:last-child {
  border-bottom: none;
}

.confirm-row .label {
  color: var(--text-muted);
}

.confirm-row .value {
  font-weight: 600;
  color: var(--text-primary);
}

/* ===== FOOTER ===== */
.footer {
  background: #0f172a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 60px 0 24px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-top: 12px;
  line-height: 1.6;
}

.footer .nav-logo {
  color: white;
}

.footer .logo-text {
  color: white;
}

.footer .logo-tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
  transition: var(--transition);
}

.footer-col a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

/* ===== LEAFLET CUSTOM ===== */
.custom-marker {
  background: none;
  border: none;
}

.marker-pin {
  width: 36px;
  height: 36px;
  border-radius: 50% 50% 50% 0;
  background: var(--primary);
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(26, 110, 219, 0.4);
  border: 2px solid white;
}

.marker-pin span {
  transform: rotate(45deg);
  color: white;
  font-weight: 700;
  font-size: 0.7rem;
}

.marker-pin.active {
  background: var(--accent);
}

.leaflet-popup-content-wrapper {
  background: var(--bg-card) !important;
  color: var(--text-primary) !important;
  border-radius: var(--radius-md) !important;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg) !important;
}

.leaflet-popup-tip {
  background: var(--bg-card) !important;
}

.leaflet-popup-content {
  margin: 12px 16px !important;
  font-family: var(--font) !important;
}

.popup-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.popup-addr {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.popup-btn {
  display: block;
  padding: 6px 12px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .search-panel {
    width: 360px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .uber-search-row {
    flex-direction: column;
  }

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

  .step-connector {
    transform: rotate(90deg);
  }

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

  .cta-card {
    flex-direction: column;
    padding: 40px 24px;
    text-align: center;
  }

  .cta-graphic {
    display: none;
  }

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

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

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

  .search-page {
    flex-direction: column;
  }

  .search-panel {
    width: 100%;
    height: auto;
  }

  /* Hide map on mobile to prevent overlap */
  .search-map {
    display: none !important;
  }

  .map-toggle-mobile {
    display: none;
  }

  .shops-carousel {
    grid-template-columns: 1fr;
  }

  /* Full width results on mobile */
  .search-results {
    padding: 0 8px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 60px 16px 40px;
    min-height: 500px;
  }

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

  .trust-badges {
    gap: 12px;
  }

  .trust-badge {
    font-size: 0.75rem;
  }

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

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

/* ===== LOADING SKELETON ===== */
.skeleton {
  background: linear-gradient(90deg, var(--bg-surface) 25%, var(--bg-card) 50%, var(--bg-surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  padding: 14px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(120%);
  transition: var(--transition);
  color: var(--text-primary);
}

.toast.show {
  transform: translateY(0);
}

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

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

/* ===== CITY AUTOCOMPLETE DROPDOWN ===== */
.city-autocomplete-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  max-height: 320px;
  overflow-y: auto;
  display: none;
  margin-top: 4px;
}

.city-autocomplete-dropdown::-webkit-scrollbar {
  width: 6px;
}

.city-autocomplete-dropdown::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.city-ac-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}

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

.city-ac-item:hover {
  background: rgba(26, 110, 219, 0.06);
}

.city-ac-name {
  flex: 1;
  color: var(--text-primary);
}

.city-ac-name strong {
  color: var(--primary);
  font-weight: 700;
}

.city-ac-prov {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  background: rgba(26, 110, 219, 0.08);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 8px;
}

/* Hero autocomplete (dark background) */
.uber-search-field .city-autocomplete-dropdown {
  background: #1e293b;
  border-color: rgba(255, 255, 255, 0.15);
}

.uber-search-field .city-ac-item {
  border-color: rgba(255, 255, 255, 0.08);
}

.uber-search-field .city-ac-item:hover {
  background: rgba(26, 110, 219, 0.2);
}

.uber-search-field .city-ac-name {
  color: white;
}

.uber-search-field .city-ac-name strong {
  color: #60a5fa;
}

.uber-search-field .city-ac-prov {
  background: rgba(96, 165, 250, 0.2);
  color: #93c5fd;
}

/* ===== AUTH PAGES (LOGIN / REGISTER) ===== */
.auth-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--nav-height));
  padding: 40px 24px;
  background: var(--bg-surface);
}

.auth-card {
  width: 100%;
  max-width: 440px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.auth-logo {
  margin-bottom: 24px;
}

.auth-logo img {
  width: 64px;
  height: 64px;
  margin: 0 auto;
  object-fit: contain;
}

.auth-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.auth-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 28px;
}

.auth-card .form-group {
  text-align: left;
  margin-bottom: 16px;
}

.auth-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.auth-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.auth-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--primary);
}

.auth-link {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.85rem;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-submit {
  margin-top: 4px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius-md);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.auth-divider span {
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.auth-social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
  background: var(--bg-card);
}

.social-btn:hover {
  border-color: var(--primary);
  background: rgba(26, 110, 219, 0.03);
}

.social-btn.apple {
  color: var(--text-primary);
}

.auth-footer-text {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.auth-footer-text a {
  color: var(--primary);
  font-weight: 600;
}

.auth-footer-text a:hover {
  text-decoration: underline;
}

/* ===== SMS VERIFICATION MODAL ===== */
.verify-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: fadeIn 0.3s ease;
}

.verify-modal {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  max-width: 420px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.verify-modal h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.verify-modal p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.verify-code-inputs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
}

.verify-code-inputs input {
  width: 48px;
  height: 56px;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  color: var(--text-primary);
  transition: var(--transition);
}

.verify-code-inputs input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 110, 219, 0.1);
}

.verify-resend {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.verify-resend a {
  color: var(--primary);
  font-weight: 600;
  cursor: pointer;
}

.verify-phone-display {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(26, 110, 219, 0.06);
  border-radius: var(--radius-full);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.verify-modal .btn-block {
  margin-top: 8px;
}