/* ── RESET & BASE ── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  background: #f9fafb;
  color: #111827;
}

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

/* ── BUTTONS ── */
.btn-primary {
  background: #1a56db;
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.2s;
  display: inline-block;
}
.btn-primary:hover { background: #1440a8; }

.btn-outline {
  border: 2px solid #1a56db;
  color: #1a56db;
  padding: 10px 22px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: #1a56db; color: white; }

.btn-large { padding: 14px 32px; font-size: 16px; }

/* ── NAVBAR ── */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 60px;
  background: white;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
}
.nav-brand span { color: #1a56db; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
  font-size: 14px;
}

/* ── HERO ── */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 60px;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a4a 100%);
  min-height: 88vh;
  gap: 60px;
}

.hero-content { flex: 1; max-width: 560px; }

.hero-badge {
  display: inline-block;
  background: rgba(26, 86, 219, 0.2);
  color: #93c5fd;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(26, 86, 219, 0.3);
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 span { color: #60a5fa; }

.hero-content p {
  font-size: 17px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-buttons { display: flex; gap: 16px; margin-bottom: 48px; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat { display: flex; flex-direction: column; }
.stat-num { font-size: 24px; font-weight: 800; color: white; }
.stat-label { font-size: 12px; color: #64748b; margin-top: 2px; }
.stat-divider { width: 1px; height: 36px; background: #334155; }

/* ── HERO VISUAL ── */
.hero-visual {
  flex: 1;
  position: relative;
  max-width: 420px;
  height: 400px;
}

.hero-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  width: 260px;
}

.hero-card:nth-child(1) { top: 0; left: 0; }
.hero-card-2 { top: 140px; right: 0; }
.hero-card-3 { bottom: 0; left: 40px; }

.hero-card-img {
  font-size: 32px;
  width: 56px;
  height: 56px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-title { font-weight: 700; font-size: 14px; color: #111827; }
.hero-card-meta { font-size: 12px; color: #6b7280; margin-top: 2px; }
.hero-card-badge {
  font-size: 11px;
  color: #059669;
  font-weight: 600;
  margin-top: 4px;
}

/* ── SECTIONS SHARED ── */
section { padding: 80px 60px; }
section h2 {
  font-size: 32px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: #6b7280;
  font-size: 16px;
  margin-bottom: 52px;
}

/* ── HOW IT WORKS ── */
.how-it-works { background: white; }

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

.step {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  max-width: 240px;
  flex: 1;
}

.step-icon { font-size: 36px; margin-bottom: 8px; }
.step-num {
  font-size: 11px;
  font-weight: 700;
  color: #1a56db;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 13px; color: #6b7280; line-height: 1.6; }
.step-arrow { font-size: 24px; color: #d1d5db; }

/* ── AMENITIES ── */
.amenities { background: #f9fafb; }

.amenity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.amenity-card {
  background: white;
  border-radius: 16px;
  padding: 28px 24px;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s, transform 0.2s;
}
.amenity-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}

.amenity-icon { font-size: 36px; margin-bottom: 14px; }
.amenity-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.amenity-card p { font-size: 13px; color: #6b7280; line-height: 1.6; }

/* ── TRUST ── */
.trust { background: white; }

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.trust-card {
  background: #f0f4ff;
  border-radius: 16px;
  padding: 32px 24px;
  border: 1px solid #dbeafe;
}

.trust-icon { font-size: 36px; margin-bottom: 16px; }
.trust-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: #1e3a8a; }
.trust-card p { font-size: 13px; color: #374151; line-height: 1.7; }

/* ── FOOTER ── */
.footer {
  background: #0d1b2a;
  color: white;
  text-align: center;
  padding: 48px 60px;
}

.footer-brand {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}
.footer-brand span { color: #1a56db; }

.footer p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #94a3b8;
}
.footer-links a:hover { color: white; }

.footer-copy { font-size: 12px; color: #374151; }
/* ── AUTH PAGES (login, signup) ── */
.auth-body { background: #f3f4f6; min-height: 100vh; }

.auth-container {
  display: flex;
  min-height: calc(100vh - 65px);
}

.auth-card {
  flex: 1;
  max-width: 480px;
  background: white;
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.auth-header { text-align: center; margin-bottom: 28px; }

.auth-logo {
  font-size: 40px;
  margin-bottom: 14px;
}

.auth-header h1 {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}

.auth-header p {
  font-size: 14px;
  color: #6b7280;
}

/* GOOGLE BUTTON */
.btn-google {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: white;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  font-family: 'Inter', sans-serif;
}
.btn-google:hover { background: #f9fafb; border-color: #d1d5db; }

/* DIVIDER */
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
  color: #9ca3af;
  font-size: 12px;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* FORM */
.auth-form { display: flex; flex-direction: column; gap: 16px; }

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

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #111827;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1a56db;
}

/* PASSWORD TOGGLE */
.input-wrapper { position: relative; }
.input-wrapper input { padding-right: 44px; }
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  color: #9ca3af;
}

/* REMEMBER ME ROW */
.form-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #374151;
  cursor: pointer;
}

.forgot-link { color: #1a56db; font-weight: 600; }
.forgot-link:hover { text-decoration: underline; }

/* ERROR */
.auth-error {
  color: #dc2626;
  font-size: 13px;
  font-weight: 500;
  min-height: 18px;
  text-align: center;
}

/* FULL WIDTH BUTTON */
.btn-full {
  width: 100%;
  padding: 13px;
  font-size: 15px;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.auth-footer-text {
  text-align: center;
  font-size: 13px;
  color: #6b7280;
  margin-top: 20px;
}
.auth-footer-text a { color: #1a56db; font-weight: 600; }
.auth-footer-text a:hover { text-decoration: underline; }

/* SIDE PANEL */
.auth-side {
  flex: 1;
  background: linear-gradient(135deg, #0d1b2a 0%, #1b2a4a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 52px;
}

.auth-side-content { max-width: 380px; }

.auth-side-badge {
  display: inline-block;
  background: rgba(26, 86, 219, 0.25);
  color: #93c5fd;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(26, 86, 219, 0.3);
}

.auth-side-content h2 {
  font-size: 28px;
  font-weight: 800;
  color: white;
  line-height: 1.3;
  margin-bottom: 14px;
}

.auth-side-content p {
  font-size: 15px;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 32px;
}

.auth-side-features { display: flex; flex-direction: column; gap: 14px; }

.auth-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #e2e8f0;
  font-size: 14px;
}

.auth-feature-icon {
  width: 22px;
  height: 22px;
  background: #1a56db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: white;
  font-weight: 700;
  flex-shrink: 0;
}
/* ── SIGNUP EXTRAS ── */
.role-selector {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.role-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 14px 12px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.role-btn:hover {
  border-color: #1a56db;
  background: #f0f4ff;
}

.role-btn.active {
  border-color: #1a56db;
  background: #f0f4ff;
}

.role-icon { font-size: 24px; }

.role-label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.role-btn.active .role-label { color: #1a56db; }

/* TWO COLUMN FORM ROW */
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* PHONE INPUT */
.phone-input {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.phone-input:focus-within { border-color: #1a56db; }

.phone-prefix {
  padding: 11px 12px;
  background: #f3f4f6;
  font-size: 14px;
  font-weight: 600;
  color: #374151;
  border-right: 1.5px solid #e5e7eb;
}

.phone-input input {
  border: none !important;
  border-radius: 0 !important;
  flex: 1;
}

.phone-input input:focus { border-color: transparent !important; }

/* PASSWORD STRENGTH */
.password-strength {
  display: flex;
  align-items: center;
  gap: 10px;
}

.strength-bar {
  flex: 1;
  height: 5px;
  background: #e5e7eb;
  border-radius: 100px;
  overflow: hidden;
}

.strength-fill {
  height: 100%;
  width: 0%;
  border-radius: 100px;
  transition: all 0.3s;
}

.strength-label {
  font-size: 12px;
  font-weight: 600;
  min-width: 60px;
  color: #9ca3af;
}
/* ── KYC PAGE ── */
.kyc-container {
  max-width: 640px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.kyc-nav-status {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  background: #f3f4f6;
  padding: 6px 14px;
  border-radius: 100px;
}

/* PROGRESS BAR */
.kyc-progress {
  height: 4px;
  background: #e5e7eb;
  border-radius: 100px;
  margin-bottom: 32px;
  overflow: hidden;
}

.kyc-progress-bar {
  height: 100%;
  width: 0%;
  background: #1a56db;
  border-radius: 100px;
  transition: width 0.4s ease;
}

/* STEP DOTS */
.kyc-steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 36px;
}

.kyc-step-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
}

.dot-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.kyc-step-dot.active .dot-num {
  background: #1a56db;
  color: white;
}

.kyc-step-dot.done .dot-num {
  background: #059669;
  color: white;
}

.dot-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  white-space: nowrap;
}

.kyc-step-dot.active .dot-label { color: #1a56db; }
.kyc-step-dot.done .dot-label { color: #059669; }

.kyc-step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 8px;
  margin-bottom: 20px;
  min-width: 60px;
  transition: background 0.3s;
}

.kyc-step-line.done { background: #059669; }

/* KYC CARD */
.kyc-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.kyc-card-header {
  text-align: center;
  margin-bottom: 28px;
}

.kyc-icon {
  font-size: 48px;
  margin-bottom: 14px;
}

.kyc-card-header h2 {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.kyc-card-header p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

/* ID TYPE SELECTOR */
.id-type-selector {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.id-type-btn {
  flex: 1;
  padding: 10px 8px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
}

.id-type-btn:hover { border-color: #1a56db; color: #1a56db; }
.id-type-btn.active { border-color: #1a56db; background: #f0f4ff; color: #1a56db; }

/* UPLOAD AREA */
.upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: #f9fafb;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.upload-area:hover { border-color: #1a56db; background: #f0f4ff; }
.upload-area.drag-over { border-color: #1a56db; background: #dbeafe; }

.upload-icon { font-size: 36px; }

.upload-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.upload-text span { font-size: 13px; color: #6b7280; }
.upload-hint { font-size: 12px; color: #9ca3af; margin-top: 4px; }

/* UPLOAD PREVIEW */
.upload-preview {
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.upload-preview img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

.preview-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  background: #f9fafb;
  font-size: 13px;
  color: #374151;
}

.remove-file {
  background: none;
  border: none;
  color: #ef4444;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

/* SELFIE TIPS */
.selfie-tips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  justify-content: center;
}

.selfie-tip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: #f3f4f6;
  border-radius: 100px;
  color: #374151;
}

/* CAMERA */
.camera-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #111827;
  margin-bottom: 20px;
  aspect-ratio: 4/3;
}

.camera-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.camera-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.face-guide {
  width: 180px;
  height: 220px;
  border: 3px solid rgba(26, 86, 219, 0.8);
  border-radius: 50%;
  box-shadow: 0 0 0 9999px rgba(0,0,0,0.4);
}

.selfie-preview img {
  width: 100%;
  border-radius: 16px;
  transform: scaleX(-1);
  margin-bottom: 12px;
}

/* VERIFICATION STEPS */
.verification-progress {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.verify-step {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: #f0f9ff;
  border-radius: 12px;
  border: 1.5px solid #bae6fd;
  font-size: 14px;
  font-weight: 500;
  color: #0369a1;
  transition: all 0.3s;
}

.verify-step.pending {
  background: #f9fafb;
  border-color: #e5e7eb;
  color: #9ca3af;
}

.verify-step.done {
  background: #f0fdf4;
  border-color: #86efac;
  color: #15803d;
}

.verify-spinner {
  width: 24px;
  height: 24px;
  border: 3px solid #bae6fd;
  border-top-color: #0369a1;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

.verify-step.pending .verify-spinner {
  border-color: #e5e7eb;
  border-top-color: #9ca3af;
}

.verify-step.done .verify-spinner {
  border: none;
  color: #15803d;
  animation: none;
  font-size: 18px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* VERIFY RESULT */
.verify-result {
  text-align: center;
  padding: 20px 0;
}

.result-icon { font-size: 56px; margin-bottom: 16px; }

.verify-result h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
}

.verify-result.success h3 { color: #059669; }
.verify-result.failed h3 { color: #dc2626; }

.verify-result p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

.verified-badge-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0fdf4;
  border: 2px solid #86efac;
  color: #059669;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
}

.kyc-actions { margin-top: 24px; }
/* ── DASHBOARD ── */
.dashboard-body { background: #f3f4f6; min-height: 100vh; }

.dashboard-layout {
  display: flex;
  min-height: calc(100vh - 65px);
}

/* SIDEBAR */
.sidebar {
  width: 240px;
  background: #0d1b2a;
  display: flex;
  flex-direction: column;
  padding: 24px 16px;
  position: sticky;
  top: 65px;
  height: calc(100vh - 65px);
  overflow-y: auto;
  flex-shrink: 0;
}

.sidebar-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  margin-bottom: 24px;
}

.sidebar-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1a56db;
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sidebar-name {
  font-size: 13px;
  font-weight: 700;
  color: white;
  margin-bottom: 2px;
}

.sidebar-role {
  font-size: 11px;
  color: #10b981;
  font-weight: 600;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  transition: all 0.2s;
  cursor: pointer;
}

.sidebar-link:hover { background: rgba(255,255,255,0.07); color: white; }
.sidebar-link.active { background: #1a56db; color: white; }

.sidebar-logout {
  margin-top: 16px;
  padding: 11px 14px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 10px;
  color: #f87171;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.sidebar-logout:hover { background: rgba(239,68,68,0.2); }

/* MAIN */
.dashboard-main {
  flex: 1;
  padding: 32px;
  overflow-y: auto;
}

.dash-section { display: none; }
.dash-section.active { display: block; }

.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.dash-header h1 {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.dash-header p { font-size: 14px; color: #6b7280; }

/* STATS GRID */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.stat-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.stat-card-value {
  font-size: 22px;
  font-weight: 800;
  color: #111827;
}

.stat-card-label {
  font-size: 12px;
  color: #6b7280;
  margin-top: 2px;
}

.stat-card-trend {
  margin-left: auto;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 100px;
}

.stat-card-trend.up { background: #dcfce7; color: #15803d; }
.stat-card-trend.down { background: #fee2e2; color: #dc2626; }

/* DASH CARD */
.dash-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

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

.dash-card-header h2 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.dash-card-link {
  font-size: 13px;
  color: #1a56db;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
}

/* BOOKINGS TABLE */
.bookings-table-wrapper { overflow-x: auto; }

.bookings-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.bookings-table th {
  text-align: left;
  padding: 10px 14px;
  background: #f9fafb;
  color: #6b7280;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid #e5e7eb;
}

.bookings-table td {
  padding: 14px;
  border-bottom: 1px solid #f3f4f6;
  color: #374151;
  vertical-align: middle;
}

.bookings-table tr:last-child td { border-bottom: none; }
.bookings-table tr:hover td { background: #f9fafb; }

.empty-row td {
  text-align: center;
  color: #9ca3af;
  padding: 32px;
  font-size: 14px;
}

/* STATUS BADGES */
.status-badge {
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.badge-held { background: #dbeafe; color: #1d4ed8; }
.badge-released { background: #dcfce7; color: #15803d; }
.badge-refunded { background: #fee2e2; color: #dc2626; }

/* FILTER TABS */
.filter-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 8px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.filter-tab:hover { border-color: #1a56db; color: #1a56db; }
.filter-tab.active { background: #1a56db; border-color: #1a56db; color: white; }

/* EMPTY STATES */
.empty-listings {
  text-align: center;
  padding: 48px 24px;
}

.empty-icon { font-size: 48px; margin-bottom: 14px; }
.empty-listings h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.empty-listings p { font-size: 14px; color: #6b7280; }

/* PROFILE */
.profile-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}

.profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #1a56db;
  color: white;
  font-size: 28px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.profile-info h2 { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.profile-info p { font-size: 13px; color: #6b7280; margin-bottom: 8px; }

.verified-badge-small {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  color: #059669;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
}

.profile-form { display: flex; flex-direction: column; gap: 16px; }

.profile-form textarea {
  padding: 11px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #111827;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s;
  width: 100%;
}

.profile-form textarea:focus { border-color: #1a56db; }

/* NAV EXTRAS */
.nav-verified-badge {
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  padding: 5px 12px;
  border-radius: 100px;
}

.nav-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a56db;
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* LISTINGS GRID */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

/* EARNINGS */
.earnings-empty {
  text-align: center;
  padding: 48px 24px;
}
/* ── CREATE LISTING ── */
.create-listing-container {
  display: flex;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  align-items: flex-start;
}

/* PROGRESS STEPS */
.cl-progress {
  display: flex;
  align-items: center;
  margin-bottom: 32px;
}

.cl-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.cl-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.cl-step.active .cl-step-num { background: #1a56db; color: white; }
.cl-step.done .cl-step-num { background: #059669; color: white; }

.cl-step-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
  white-space: nowrap;
}

.cl-step.active .cl-step-label { color: #1a56db; }
.cl-step.done .cl-step-label { color: #059669; }

.cl-step-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 8px;
  margin-bottom: 18px;
  min-width: 30px;
  transition: background 0.3s;
}

/* FORM CARD */
.cl-card {
  background: white;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  flex: 1;
}

.cl-card-header { margin-bottom: 24px; }
.cl-card-header h2 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}
.cl-card-header p { font-size: 14px; color: #6b7280; }

/* AMENITY TYPE GRID */
.amenity-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.amenity-type-btn {
  padding: 12px 8px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  background: white;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.amenity-type-btn:hover { border-color: #1a56db; color: #1a56db; }
.amenity-type-btn.active {
  border-color: #1a56db;
  background: #f0f4ff;
  color: #1a56db;
}

/* AMENITIES CHECKLIST */
.amenities-check-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: #374151;
  cursor: pointer;
  font-weight: 500;
}

/* INPUT HINTS */
.input-hint {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
  display: block;
}

/* GPS BOX */
.gps-capture-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #f0f4ff;
  border: 1.5px solid #dbeafe;
  border-radius: 12px;
}

.gps-icon { font-size: 28px; }

.gps-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gps-info strong { font-size: 13px; color: #111827; }
.gps-info span { font-size: 12px; color: #6b7280; }

/* LOCATION NOTE */
.location-note {
  display: flex;
  gap: 10px;
  padding: 12px 14px;
  background: #fef9c3;
  border-radius: 10px;
  font-size: 12px;
  color: #854d0e;
  line-height: 1.5;
}

/* PHOTO GRID */
.photo-upload-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 10px;
  margin-bottom: 16px;
}

.photo-slot {
  aspect-ratio: 1;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
}

.photo-slot:hover { border-color: #1a56db; }

.main-photo {
  grid-column: span 2;
  aspect-ratio: 16/10;
}

.photo-slot-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: #f9fafb;
}

.photo-plus { font-size: 24px; color: #9ca3af; }
.photo-label { font-size: 11px; color: #9ca3af; font-weight: 600; }

.photo-tips {
  background: #f0f4ff;
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 12px;
  color: #374151;
  line-height: 1.5;
}

/* PRICE INPUT */
.price-input-wrapper {
  display: flex;
  align-items: center;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.price-input-wrapper:focus-within { border-color: #1a56db; }

.price-prefix {
  padding: 11px 14px;
  background: #f3f4f6;
  font-size: 16px;
  font-weight: 700;
  color: #374151;
  border-right: 1.5px solid #e5e7eb;
}

.price-input-wrapper input {
  border: none !important;
  border-radius: 0 !important;
}

/* EARNINGS PREVIEW */
.earnings-preview {
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.earnings-preview-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #374151;
}

.earnings-preview-row.total {
  font-weight: 800;
  font-size: 15px;
  color: #059669;
  padding-top: 10px;
  border-top: 1.5px solid #e5e7eb;
}

/* DAYS SELECTOR */
.days-selector {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.day-btn {
  padding: 8px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  background: white;
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.day-btn.active {
  background: #1a56db;
  border-color: #1a56db;
  color: white;
}

/* TOGGLE SWITCH */
.toggle-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: #f9fafb;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #d1d5db;
  border-radius: 100px;
  transition: 0.3s;
}

.toggle-slider:before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

.toggle-switch input:checked + .toggle-slider { background: #1a56db; }
.toggle-switch input:checked + .toggle-slider:before { transform: translateX(20px); }

/* PREVIEW PANEL */
.listing-preview-panel {
  width: 280px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
}

.preview-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.listing-preview-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  border: 1px solid #e5e7eb;
}

.preview-photo {
  height: 160px;
  background: #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 32px;
  overflow: hidden;
}

.preview-photo p { font-size: 12px; margin-top: 8px; }

.preview-body { padding: 16px; }

.preview-type {
  font-size: 11px;
  font-weight: 700;
  color: #1a56db;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.preview-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  line-height: 1.3;
}

.preview-location {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 10px;
}

.preview-price {
  font-size: 18px;
  font-weight: 800;
  color: #1a56db;
  margin-bottom: 10px;
}

.preview-badges { display: flex; gap: 6px; flex-wrap: wrap; }

.preview-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  background: #f0fdf4;
  color: #059669;
  border-radius: 100px;
  border: 1px solid #86efac;
}

.preview-note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}
/* CUSTOM AMENITY TYPE */
.custom-type-wrapper {
  margin-top: 4px;
  animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ── MAP PAGE ── */
.map-body { overflow: hidden; }

.map-layout {
  display: flex;
  height: calc(100vh - 65px);
}

/* SIDEBAR */
.map-sidebar {
  width: 380px;
  flex-shrink: 0;
  background: white;
  border-right: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* SEARCH */
.map-search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #f3f4f6;
}

.map-search-icon { font-size: 16px; }

.map-search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #111827;
}

.map-search-box input::placeholder { color: #9ca3af; }

/* FILTERS */
.map-filters {
  padding: 10px 16px;
  border-bottom: 1px solid #f3f4f6;
}

.filter-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.filter-scroll::-webkit-scrollbar { display: none; }

.map-filter-btn {
  padding: 6px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  background: white;
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}

.map-filter-btn:hover { border-color: #1a56db; color: #1a56db; }
.map-filter-btn.active {
  background: #1a56db;
  border-color: #1a56db;
  color: white;
}

/* PRICE FILTER */
.price-filter-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-bottom: 1px solid #f3f4f6;
}

.price-filter-label {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  white-space: nowrap;
}

.price-filter-row input[type="range"] {
  flex: 1;
  accent-color: #1a56db;
}

.price-filter-value {
  font-size: 12px;
  font-weight: 700;
  color: #1a56db;
  white-space: nowrap;
  min-width: 70px;
  text-align: right;
}

/* RESULTS COUNT */
.results-count {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  font-size: 13px;
  color: #6b7280;
  border-bottom: 1px solid #f3f4f6;
}

.results-count span { font-weight: 700; color: #111827; }

.sort-btn {
  background: none;
  border: 1.5px solid #e5e7eb;
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.sort-btn:hover { border-color: #1a56db; color: #1a56db; }

/* LISTINGS LIST */
.map-listings-list {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* LOADING */
.map-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  gap: 14px;
  color: #6b7280;
  font-size: 14px;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #e5e7eb;
  border-top-color: #1a56db;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

/* MAP LISTING CARD */
.map-listing-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  border: 1.5px solid #f3f4f6;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.2s;
  background: white;
}

.map-listing-card:hover {
  border-color: #1a56db;
  box-shadow: 0 2px 12px rgba(26,86,219,0.1);
}

.map-listing-card.selected {
  border-color: #1a56db;
  background: #f0f4ff;
}

.mlc-photo {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.mlc-body { flex: 1; min-width: 0; }

.mlc-type {
  font-size: 10px;
  font-weight: 700;
  color: #1a56db;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.mlc-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mlc-meta {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 6px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

.mlc-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.mlc-price {
  font-size: 15px;
  font-weight: 800;
  color: #1a56db;
}

.mlc-price span {
  font-size: 11px;
  font-weight: 500;
  color: #6b7280;
}

.mlc-rating {
  font-size: 12px;
  font-weight: 600;
  color: #374151;
}

.mlc-badges { display: flex; gap: 5px; flex-wrap: wrap; }

.mlc-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.mlc-badge.verified {
  background: #f0fdf4;
  color: #059669;
  border: 1px solid #86efac;
}

.mlc-badge.instant {
  background: #fef9c3;
  color: #854d0e;
  border: 1px solid #fde68a;
}

/* MAP CONTAINER */
.map-container {
  flex: 1;
  position: relative;
}

#googleMap {
  width: 100%;
  height: 100%;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  gap: 12px;
  color: #6b7280;
}

.map-placeholder h3 {
  font-size: 18px;
  font-weight: 700;
  color: #374151;
}

.map-placeholder p { font-size: 13px; }

/* MAP CONTROLS */
.map-controls {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.map-control-btn {
  width: 40px;
  height: 40px;
  background: white;
  border: none;
  border-radius: 10px;
  font-size: 18px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-control-btn:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: translateY(-1px);
}

/* MAP POPUP */
.map-popup {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 280px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: slideUp 0.2s ease;
}

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

.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.popup-photo {
  height: 120px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.popup-body { padding: 14px; }

.popup-type {
  font-size: 10px;
  font-weight: 700;
  color: #1a56db;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.popup-title {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.popup-meta {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 8px;
  display: flex;
  gap: 4px;
}

.popup-price {
  font-size: 20px;
  font-weight: 800;
  color: #1a56db;
  margin-bottom: 8px;
}

.popup-badges {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.popup-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 100px;
}

.popup-badge.verified {
  background: #f0fdf4;
  color: #059669;
  border: 1px solid #86efac;
}

.popup-badge.instant {
  background: #fef9c3;
  color: #854d0e;
  border: 1px solid #fde68a;
}

.popup-btn { text-align: center; font-size: 13px; }

/* EMPTY STATE */
.map-empty {
  text-align: center;
  padding: 40px 20px;
  color: #6b7280;
}

.map-empty h3 {
  font-size: 16px;
  font-weight: 700;
  color: #374151;
  margin: 10px 0 6px;
}

.map-empty p { font-size: 13px; }

/* NAV LINK */
.nav-link-plain {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
}

.nav-link-plain:hover { color: #1a56db; }
/* ── LISTING DETAIL ── */
.detail-container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  align-items: flex-start;
}

/* GALLERY */
.gallery { margin-bottom: 28px; }

.gallery-main {
  height: 340px;
  background: #f3f4f6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  margin-bottom: 10px;
  overflow: hidden;
}

.gallery-thumbs {
  display: flex;
  gap: 8px;
}

.gallery-thumb {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
}

.gallery-thumb.active { border-color: #1a56db; }
.gallery-thumb:hover { border-color: #93c5fd; }

/* DETAIL HEADER */
.detail-header {
  margin-bottom: 24px;
}

.detail-type {
  font-size: 12px;
  font-weight: 700;
  color: #1a56db;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.detail-title {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  line-height: 1.2;
  margin-bottom: 12px;
}

.detail-meta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 12px;
}

.detail-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.detail-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}

.detail-badge.verified {
  background: #f0fdf4;
  color: #059669;
  border: 1px solid #86efac;
}

.detail-badge.instant {
  background: #fef9c3;
  color: #854d0e;
  border: 1px solid #fde68a;
}

.detail-badge.safe {
  background: #dbeafe;
  color: #1d4ed8;
  border: 1px solid #93c5fd;
}

/* DIVIDER */
.detail-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 24px 0;
}

/* OWNER */
.owner-section {
  display: flex;
  align-items: center;
  gap: 14px;
}

.owner-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1a56db;
  color: white;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.owner-info { flex: 1; }

.owner-name {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.owner-meta {
  font-size: 12px;
  color: #6b7280;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.owner-verified {
  color: #059669;
  font-weight: 600;
}

.owner-contact-btn {
  font-size: 13px;
  padding: 8px 16px;
  white-space: nowrap;
}

/* DETAIL SECTION */
.detail-section { margin-bottom: 4px; }

.detail-section h2 {
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 14px;
}

.detail-desc {
  font-size: 14px;
  color: #374151;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.show-more-btn {
  background: none;
  border: none;
  color: #1a56db;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0;
  font-family: 'Inter', sans-serif;
}

/* INCLUDED GRID */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.included-item {
  font-size: 13px;
  color: #374151;
  font-weight: 500;
  padding: 8px 0;
}

/* AVAILABILITY */
.availability-days {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.avail-day {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  background: #f3f4f6;
  color: #9ca3af;
}

.avail-day.active {
  background: #dbeafe;
  color: #1d4ed8;
}

.avail-time {
  font-size: 13px;
  color: #6b7280;
}

/* LOCATION MAP PREVIEW */
.location-note-text {
  font-size: 13px;
  color: #374151;
  margin-bottom: 14px;
  line-height: 1.6;
}

.location-map-preview {
  height: 200px;
  background: #f3f4f6;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #9ca3af;
  gap: 8px;
}

.location-map-preview p { font-size: 13px; }

/* REVIEWS */
.review-count {
  font-size: 16px;
  font-weight: 500;
  color: #6b7280;
}

.reviews-summary {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
  align-items: center;
}

.reviews-score {
  font-size: 52px;
  font-weight: 800;
  color: #111827;
  line-height: 1;
}

.reviews-breakdown {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #374151;
}

.review-bar-row span:first-child { min-width: 80px; }
.review-bar-row span:last-child { min-width: 24px; font-weight: 700; }

.review-bar {
  flex: 1;
  height: 6px;
  background: #e5e7eb;
  border-radius: 100px;
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: #f59e0b;
  border-radius: 100px;
}

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

.review-card {
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a56db;
  color: white;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.review-date {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 2px;
}

.review-stars {
  margin-left: auto;
  font-size: 12px;
}

.review-text {
  font-size: 13px;
  color: #374151;
  line-height: 1.6;
}

/* DETAIL SIDEBAR */
.detail-main { flex: 1; min-width: 0; }

.detail-sidebar {
  width: 340px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* BOOKING WIDGET */
.booking-widget {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
  border: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bw-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.bw-price-amount {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
}

.bw-price-unit {
  font-size: 14px;
  color: #6b7280;
}

/* SLOTS */
.slots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  max-height: 200px;
  overflow-y: auto;
}

.slot-placeholder {
  grid-column: span 3;
  text-align: center;
  padding: 16px;
  font-size: 13px;
  color: #9ca3af;
  background: #f9fafb;
  border-radius: 8px;
}

.slot-btn {
  padding: 8px 4px;
  border: 1.5px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  text-align: center;
  position: relative;
}

.slot-btn:hover { border-color: #1a56db; color: #1a56db; }
.slot-btn.selected { background: #1a56db; border-color: #1a56db; color: white; }
.slot-btn.booked { background: #f3f4f6; color: #d1d5db; cursor: not-allowed; }

.slot-booked-label {
  display: block;
  font-size: 9px;
  color: #ef4444;
  font-weight: 600;
}

/* DURATION & GUESTS */
.duration-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
}

.duration-selector button {
  width: 40px;
  height: 40px;
  border: none;
  background: #f9fafb;
  font-size: 20px;
  cursor: pointer;
  color: #374151;
  transition: background 0.2s;
  font-family: 'Inter', sans-serif;
}

.duration-selector button:hover { background: #e5e7eb; }

.duration-selector span {
  flex: 1;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

/* PRICE BREAKDOWN */
.bw-breakdown {
  background: #f9fafb;
  border-radius: 12px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bw-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #374151;
}

.bw-row.total {
  font-weight: 800;
  font-size: 15px;
  color: #111827;
  padding-top: 8px;
  border-top: 1.5px solid #e5e7eb;
}

/* ESCROW NOTE */
.bw-escrow-note {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  padding: 12px;
  font-size: 12px;
  color: #15803d;
  line-height: 1.5;
}

.bw-book-btn { font-size: 15px; padding: 14px; }

.bw-note {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: -8px;
}

/* SAFETY CARD */
.safety-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #e5e7eb;
}

.safety-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 14px;
}

.safety-item {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
  align-items: flex-start;
}

.safety-item span {
  color: #059669;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}

.safety-item p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
}
/* ── BOOKING PAGE ── */
.booking-container {
  display: flex;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  align-items: flex-start;
}

.booking-main { flex: 1; }

/* PROGRESS */
.booking-progress {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}

.bp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.bp-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.bp-step.active .bp-num { background: #1a56db; color: white; }
.bp-step.done .bp-num { background: #059669; color: white; }

.bp-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
}

.bp-step.active .bp-label { color: #1a56db; }
.bp-step.done .bp-label { color: #059669; }

.bp-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  margin: 0 8px;
  margin-bottom: 18px;
  transition: background 0.3s;
}

/* BOOKING CARD */
.booking-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.booking-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.booking-card-sub {
  font-size: 14px;
  color: #6b7280;
  margin-top: -12px;
}

/* LISTING SUMMARY */
.booking-listing-summary {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  background: #f9fafb;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
}

.bls-emoji {
  font-size: 40px;
  width: 64px;
  height: 64px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bls-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}

.bls-meta {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 8px;
}

.bls-badges { display: flex; gap: 6px; }

/* BOOKING DETAILS GRID */
.booking-details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bdg-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.bdg-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.bdg-value {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

/* PRICE BREAKDOWN */
.booking-price-breakdown {
  background: #f9fafb;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5e7eb;
}

.bpb-row {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #374151;
}

.bpb-row.total {
  font-weight: 800;
  font-size: 16px;
  color: #111827;
  padding-top: 10px;
  border-top: 1.5px solid #e5e7eb;
}

/* ESCROW EXPLAINER */
.escrow-explainer {
  background: #f0f4ff;
  border: 1.5px solid #dbeafe;
  border-radius: 14px;
  padding: 20px;
}

.escrow-steps {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.escrow-step {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 140px;
}

.escrow-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.escrow-step-info strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 2px;
}

.escrow-step-info p {
  font-size: 11px;
  color: #6b7280;
  line-height: 1.4;
}

.escrow-arrow {
  font-size: 18px;
  color: #93c5fd;
  flex-shrink: 0;
}

.escrow-refund-note {
  font-size: 12px;
  color: #374151;
  background: white;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #dbeafe;
}

/* RULES */
.booking-rules {
  background: #fef9c3;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #fde68a;
}

.booking-rules h3 {
  font-size: 14px;
  font-weight: 700;
  color: #854d0e;
  margin-bottom: 10px;
}

.rules-list { display: flex; flex-direction: column; gap: 6px; }

.rule-item {
  font-size: 13px;
  color: #374151;
  padding: 4px 0;
}

/* PAYMENT METHODS */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 14px;
  background: white;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.payment-method:hover { border-color: #1a56db; }
.payment-method.active { border-color: #1a56db; background: #f0f4ff; }

.pm-icon { font-size: 24px; flex-shrink: 0; }

.pm-info { flex: 1; }
.pm-info strong { display: block; font-size: 14px; color: #111827; }
.pm-info span { font-size: 12px; color: #6b7280; }

.pm-check { color: #1a56db; font-weight: 700; font-size: 16px; }

/* RAZORPAY SECTION */
.razorpay-section {
  background: #f9fafb;
  border-radius: 12px;
  padding: 16px;
  border: 1px solid #e5e7eb;
}

.razorpay-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.razorpay-features {
  display: flex;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: #059669;
  flex-wrap: wrap;
}

/* SECURITY BADGES */
.security-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.security-badge {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  background: #f0fdf4;
  color: #059669;
  border-radius: 100px;
  border: 1px solid #86efac;
}

.pay-btn { font-size: 16px; padding: 15px; }

/* AMOUNT DUE */
.amount-due-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #0d1b2a;
  border-radius: 14px;
  color: white;
}

.amount-due-label { font-size: 14px; color: #94a3b8; }
.amount-due-value { font-size: 24px; font-weight: 800; }

/* CONFIRMED CARD */
.confirmed-card { text-align: center; }

.confirmed-animation { margin-bottom: 16px; }

.confirmed-circle {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto;
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  0%   { transform: scale(0); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.confirmed-title {
  font-size: 24px;
  font-weight: 800;
  color: #059669;
  margin-bottom: 8px;
}

.confirmed-sub {
  font-size: 14px;
  color: #6b7280;
}

/* BOOKING ID */
.booking-id-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f9fafb;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

.bid-label { font-size: 12px; color: #9ca3af; font-weight: 600; }
.bid-value { font-size: 14px; font-weight: 800; color: #111827; font-family: 'Courier New', monospace; }

/* CONFIRMED DETAILS */
.confirmed-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  text-align: left;
}

.cd-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  background: #f9fafb;
  border-radius: 10px;
}

.cd-label { font-size: 11px; color: #9ca3af; font-weight: 600; }
.cd-value { font-size: 14px; font-weight: 700; color: #111827; }

/* ESCROW STATUS BOX */
.escrow-status-box {
  background: #f0f4ff;
  border: 1.5px solid #dbeafe;
  border-radius: 14px;
  padding: 18px;
  text-align: left;
}

.esb-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #1d4ed8;
  margin-bottom: 14px;
}

.esb-dot {
  width: 8px;
  height: 8px;
  background: #1a56db;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

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

.esb-states {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.esb-state {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f9fafb;
  transition: all 0.3s;
}

.esb-state.active {
  background: #dbeafe;
  border: 1px solid #93c5fd;
}

.esb-state.done {
  background: #dcfce7;
  border: 1px solid #86efac;
}

.esb-state.pending { opacity: 0.5; }

.esb-state span { font-size: 20px; }
.esb-state strong { display: block; font-size: 13px; color: #111827; }
.esb-state p { font-size: 11px; color: #6b7280; margin-top: 2px; }

.esb-state-arrow {
  text-align: center;
  color: #9ca3af;
  font-size: 16px;
  padding: 2px 0;
}

/* CONFIRMED ACTIONS */
.confirmed-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.confirm-arrival-btn { font-size: 15px; padding: 14px; }

.report-fake-btn {
  font-size: 13px;
  color: #dc2626;
  border-color: #fca5a5;
  padding: 10px;
}

.report-fake-btn:hover { background: #fee2e2; }

/* SUMMARY PANEL */
.booking-summary-panel {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bsp-card {
  background: white;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border: 1px solid #e5e7eb;
}

.bsp-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 16px;
}

.bsp-listing {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.bsp-emoji {
  font-size: 28px;
  width: 48px;
  height: 48px;
  background: #f0f4ff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bsp-title {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}

.bsp-meta { font-size: 12px; color: #6b7280; }

.bsp-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bsp-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: #374151;
}

.bsp-row.total {
  font-weight: 800;
  font-size: 15px;
  color: #111827;
  padding-top: 8px;
  border-top: 1.5px solid #e5e7eb;
}

.bsp-divider { height: 1px; background: #e5e7eb; margin: 12px 0; }

.bsp-escrow {
  margin-top: 14px;
  font-size: 12px;
  color: #059669;
  background: #f0fdf4;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #86efac;
}

/* HELP CARD */
.bsp-help {
  background: white;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #e5e7eb;
}

.bsp-help h4 {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

.bsp-help p { font-size: 13px; color: #6b7280; line-height: 1.5; }

/* TOAST */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #111827;
  color: white;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: all 0.3s;
  z-index: 9999;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.history-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.history-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 28px;
}

.history-header h1 {
  font-size: 26px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.history-header p {
  font-size: 14px;
  color: #6b7280;
}

/* STATS ROW */
.history-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.hs-card {
  background: white;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
}

.hs-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.hs-value {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.hs-label {
  font-size: 11px;
  color: #6b7280;
  margin-top: 2px;
}

/* BOOKING HISTORY CARD */
.booking-history-card {
  background: white;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s;
}

.booking-history-card:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

/* LEFT */
.bhc-left {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  flex: 1;
}

.bhc-emoji {
  font-size: 32px;
  width: 56px;
  height: 56px;
  background: #f0f4ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bhc-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 5px;
}

.bhc-meta {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
  line-height: 1.5;
}

.bhc-sub {
  font-size: 12px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.bhc-id {
  font-size: 11px;
  color: #9ca3af;
  font-family: 'Courier New', monospace;
}

/* RIGHT */
.bhc-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}

.bhc-amount {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.bhc-actions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}

.bhc-btn {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}

.bhc-btn.confirm {
  background: #dcfce7;
  color: #15803d;
}

.bhc-btn.confirm:hover { background: #bbf7d0; }

.bhc-btn.report {
  background: #fee2e2;
  color: #dc2626;
}

.bhc-btn.report:hover { background: #fecaca; }

.bhc-btn.review {
  background: #fef9c3;
  color: #854d0e;
}

.bhc-btn.review:hover { background: #fef08a; }

.bhc-btn.rebook {
  background: #dbeafe;
  color: #1d4ed8;
}

.bhc-btn.rebook:hover { background: #bfdbfe; }

.bhc-refund-note {
  font-size: 11px;
  color: #9ca3af;
  text-align: right;
  max-width: 160px;
  line-height: 1.4;
}

/* EMPTY STATE */
.history-empty {
  text-align: center;
  padding: 64px 24px;
  background: white;
  border-radius: 20px;
  border: 1px solid #e5e7eb;
}

.history-empty-icon {
  font-size: 52px;
  margin-bottom: 16px;
}

.history-empty h2 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
}

.history-empty p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto;
}

.admin-badge {
  font-size: 12px;
  font-weight: 700;
  color: #dc2626;
  background: #fee2e2;
  border: 1.5px solid #fca5a5;
  padding: 5px 12px;
  border-radius: 100px;
}

.admin-live-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  color: #059669;
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  padding: 6px 14px;
  border-radius: 100px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #059669;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* SIDEBAR BADGE */
.sidebar-badge {
  margin-left: auto;
  background: #dc2626;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}

/* ACTIVITY FEED */
.activity-feed {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.activity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f3f4f6;
}

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

.activity-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.new-user      { background: #dbeafe; }
.new-booking   { background: #dcfce7; }
.kyc-submitted { background: #fef9c3; }
.fraud-report  { background: #fee2e2; }
.payment-released { background: #f0fdf4; }

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

.activity-info strong {
  font-size: 13px;
  color: #111827;
}

.activity-info span {
  font-size: 12px;
  color: #6b7280;
}

.activity-time {
  font-size: 11px;
  color: #9ca3af;
  white-space: nowrap;
}

/* ADMIN SEARCH */
.admin-search input {
  padding: 9px 14px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  width: 220px;
  transition: border-color 0.2s;
}

.admin-search input:focus { border-color: #1a56db; }

/* USER TABLE */
.user-table-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #1a56db;
  color: white;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.role-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.role-pill.owner {
  background: #dbeafe;
  color: #1d4ed8;
}

.role-pill.user {
  background: #f3f4f6;
  color: #374151;
}

/* REPORT CARDS */
.report-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 16px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.report-card.urgent {
  border-color: #fca5a5;
  background: #fff8f8;
}

.report-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.report-priority {
  font-size: 12px;
  font-weight: 700;
}

.urgent-badge { color: #dc2626; }

.report-id {
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  font-family: 'Courier New', monospace;
}

.report-time {
  font-size: 12px;
  color: #9ca3af;
  margin-left: auto;
}

.report-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  padding: 14px;
  background: #f9fafb;
  border-radius: 10px;
}

.report-detail {
  display: flex;
  gap: 12px;
  font-size: 13px;
}

.rd-label {
  font-weight: 700;
  color: #6b7280;
  min-width: 120px;
  flex-shrink: 0;
}

.rd-value { color: #374151; line-height: 1.5; }

.report-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ADMIN ACTION BUTTONS */
.admin-action-btn {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}

.admin-action-btn.refund {
  background: #fee2e2;
  color: #dc2626;
}

.admin-action-btn.refund:hover { background: #fecaca; }

.admin-action-btn.investigate {
  background: #dbeafe;
  color: #1d4ed8;
}

.admin-action-btn.investigate:hover { background: #bfdbfe; }

.admin-action-btn.dismiss {
  background: #f3f4f6;
  color: #6b7280;
}

.admin-action-btn.dismiss:hover { background: #e5e7eb; }

.admin-action-btn.approve {
  background: #dcfce7;
  color: #15803d;
}

.admin-action-btn.approve:hover { background: #bbf7d0; }

.admin-action-btn.reject {
  background: #fee2e2;
  color: #dc2626;
}

.admin-action-btn.reject:hover { background: #fecaca; }

/* KYC REVIEW CARDS */
.kyc-review-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kyc-review-card {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: all 0.3s;
}

.kyc-review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.kyc-review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #1a56db;
  color: white;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kyc-review-name {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 3px;
}

.kyc-review-meta {
  font-size: 12px;
  color: #6b7280;
}

.kyc-docs-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  padding: 16px;
  background: #f9fafb;
  border-radius: 12px;
}

.kyc-doc-preview {
  flex: 1;
  text-align: center;
}

.kdp-label {
  font-size: 11px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.kdp-img {
  height: 90px;
  background: #e5e7eb;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  gap: 4px;
  color: #374151;
}

.kdp-img small {
  font-size: 10px;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
}

.kyc-match-arrow {
  font-size: 24px;
  flex-shrink: 0;
}

.kyc-match-result {
  text-align: center;
  min-width: 120px;
}

.kmr-score {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 4px;
}

.kmr-label {
  font-size: 11px;
  color: #9ca3af;
  margin-bottom: 6px;
}

.kmr-status {
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.kmr-status.good {
  background: #dcfce7;
  color: #15803d;
}

.kmr-status.warning {
  background: #fef9c3;
  color: #854d0e;
}

.kyc-review-actions {
  display: flex;
  gap: 10px;
}

.kyc-approved-msg {
  font-size: 13px;
  font-weight: 700;
  color: #059669;
  padding: 10px 14px;
  background: #f0fdf4;
  border-radius: 10px;
  border: 1px solid #86efac;
}

.kyc-rejected-msg {
  font-size: 13px;
  font-weight: 700;
  color: #dc2626;
  padding: 10px 14px;
  background: #fef2f2;
  border-radius: 10px;
  border: 1px solid #fca5a5;
}
/* ── KYC REWRITE ── */
.kyc-container {
  max-width: 560px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.kyc-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  gap: 0;
}

.kyc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.ks-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e5e7eb;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.kyc-step.active .ks-num { background: #1a56db; color: white; }
.kyc-step.done .ks-num { background: #059669; color: white; }

.ks-label {
  font-size: 11px;
  font-weight: 600;
  color: #9ca3af;
}

.kyc-step.active .ks-label { color: #1a56db; }
.kyc-step.done .ks-label { color: #059669; }

.ks-line {
  flex: 1;
  height: 2px;
  background: #e5e7eb;
  width: 60px;
  margin: 0 4px 18px;
}

.kyc-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.kyc-card-icon { font-size: 44px; }

.kyc-card h2 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  text-align: center;
}

.kyc-card-sub {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  line-height: 1.6;
  max-width: 420px;
}

.kyc-format-note {
  font-size: 12px;
  font-weight: 600;
  padding: 10px 14px;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 10px;
  color: #15803d;
  text-align: center;
  width: 100%;
}

/* DROP ZONE */
.kyc-drop-zone {
  width: 100%;
  border: 2px dashed #d1d5db;
  border-radius: 16px;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  overflow: hidden;
}

.kyc-drop-zone.drag-over {
  border-color: #1a56db;
  background: #f0f4ff;
}

.dz-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  text-align: center;
}

.dz-icon { font-size: 36px; }

.dz-text {
  font-size: 14px;
  font-weight: 600;
  color: #374151;
}

.dz-sub { font-size: 12px; color: #9ca3af; }

.dz-btn {
  cursor: pointer;
  font-size: 13px;
  padding: 10px 20px;
}

.dz-hint {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

.dz-preview {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  width: 100%;
}

.dz-preview img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid #e5e7eb;
  flex-shrink: 0;
}

.dz-preview-info { flex: 1; }

.dz-file-name {
  font-size: 12px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
  word-break: break-all;
}

.dz-face-status {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
}

.dz-remove-btn {
  background: none;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  color: #dc2626;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}

/* ID TYPE */
.id-type-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  flex-wrap: wrap;
}

.id-type-label {
  font-size: 12px;
  font-weight: 700;
  color: #6b7280;
  white-space: nowrap;
}

.id-type-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.id-type-opt {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
}

/* SELFIE */
.selfie-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  flex-shrink: 0;
}

#selfieVideo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.face-guide-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}

.face-guide-overlay svg {
  width: 100%; height: 100%;
}

.face-detect-badge {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  background: #fee2e2;
  color: #dc2626;
  white-space: nowrap;
  transition: all 0.3s;
}

.selfie-instructions {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 100%;
}

.si-item {
  font-size: 12px;
  font-weight: 600;
  color: #6b7280;
  padding: 6px 10px;
  background: #f9fafb;
  border-radius: 8px;
  transition: all 0.3s;
}

.kyc-next-btn {
  width: 100%;
  font-size: 15px;
  padding: 14px;
}

/* VERIFICATION ANIM */
.verification-anim {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.va-photos {
  display: flex;
  align-items: center;
  gap: 16px;
}

.va-photo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.va-photo-box img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid #e5e7eb;
}

.va-photo-box span {
  font-size: 11px;
  font-weight: 600;
  color: #6b7280;
}

.va-compare-icon { font-size: 24px; }

.va-progress-bar {
  width: 100%;
  height: 8px;
  background: #e5e7eb;
  border-radius: 100px;
  overflow: hidden;
}

.va-progress-fill {
  height: 100%;
  background: #1a56db;
  border-radius: 100px;
  width: 0%;
  transition: width 0.6s ease;
}

.va-status {
  font-size: 13px;
  color: #6b7280;
  font-weight: 500;
  text-align: center;
}

/* RESULT */
.vr-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 12px;
}

.vr-circle.success { background: #dcfce7; }
.vr-circle.failure { background: #fee2e2; }

.vr-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 12px;
}

.success-text { color: #059669; }
.failure-text { color: #dc2626; }

.vr-score-box {
  text-align: center;
  padding: 16px;
  background: #f0fdf4;
  border-radius: 14px;
  border: 1px solid #86efac;
  width: 100%;
}

.vr-score {
  font-size: 42px;
  font-weight: 800;
  color: #059669;
}

.vr-score-label {
  font-size: 12px;
  color: #6b7280;
  margin-top: 4px;
}

.vr-breakdown {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.vr-row {
  font-size: 13px;
  color: #374151;
  padding: 8px 12px;
  background: #f9fafb;
  border-radius: 8px;
}

.vr-pending-note {
  font-size: 12px;
  color: #1d4ed8;
  background: #dbeafe;
  border: 1px solid #93c5fd;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  line-height: 1.5;
  width: 100%;
}

.vr-fail-reason {
  font-size: 13px;
  color: #dc2626;
  background: #fee2e2;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  width: 100%;
}

.vr-tips {
  font-size: 12px;
  color: #374151;
  background: #f9fafb;
  border-radius: 10px;
  padding: 14px;
  width: 100%;
  line-height: 1.8;
}
/* ============================================================
   NAVBAR AVATAR DROPDOWN  (Phase 3)
   ============================================================ */
.nav-dropdown {
  position: fixed;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 12px 32px rgba(0,0,0,.12), 0 2px 8px rgba(0,0,0,.06);
  z-index: 9999;
  min-width: 200px;
  animation: dropdownIn .15s ease;
}
@keyframes dropdownIn {
  from { opacity:0; transform:translateY(-6px); }
  to   { opacity:1; transform:translateY(0); }
}
.nav-dropdown-name {
  padding: 8px 12px 6px;
  font-weight: 600;
  font-size: 14px;
  color: #0d1b2a;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nav-dropdown-divider {
  border: none;
  border-top: 1px solid #f3f4f6;
  margin: 4px 0;
}
.nav-dropdown-item {
  display: block;
  width: 100%;
  padding: 9px 12px;
  font-size: 14px;
  color: #374151;
  text-decoration: none;
  background: none;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  transition: background .12s;
  box-sizing: border-box;
}
.nav-dropdown-item:hover {
  background: #f9fafb;
  color: #0d1b2a;
}
.nav-dropdown-signout {
  color: #dc2626 !important;
}
.nav-dropdown-signout:hover {
  background: #fef2f2 !important;
}

/* Avatar pulse on hover */
.nav-avatar:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 3px rgba(26,86,219,.25);
}

/* ============================================================
   RESPONSIVE STYLES (Phase 4)
   ============================================================ */

/* TABLETS & SMALL LAPTOPS (1024px) */
@media (max-width: 1024px) {
  .navbar { padding: 18px 40px; }
  .hero { padding: 80px 40px; }
  section { padding: 80px 40px; }
  .amenity-grid, .trust-grid { 
    grid-template-columns: repeat(2, 1fr); 
    max-width: 800px;
  }
}

/* Hide toggle on desktop by default */
.mobile-view-toggle { display: none; }

/* MOBILE LANDSCAPE & LARGE PHONES (768px) */
@media (max-width: 768px) {
  .navbar { padding: 16px 20px; }
  .nav-brand { font-size: 20px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.btn-primary):not(.btn-outline) { font-size: 13px; }

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 60px 20px;
    gap: 40px;
    min-height: auto;
  }
  .hero-content { 
    max-width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-content h1 { font-size: 34px; }
  .hero-content p { font-size: 15px; margin-bottom: 28px; }
  .hero-buttons { justify-content: center; width: 100%; }
  .hero-stats { justify-content: center; width: 100%; }

  .hero-visual {
    max-width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hero-card { 
    position: static !important; 
    width: 100%; 
    max-width: 320px;
    transform: none !important;
  }
  .hero-card-2, .hero-card-3 { display: none; } /* Simplified for mobile */

  section { padding: 50px 20px; }
  section h2 { font-size: 26px; }
  .section-sub { margin-bottom: 32px; font-size: 14px; }
  
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0; color: #1a56db; font-size: 20px; }
  .step { max-width: 100%; width: 100%; padding: 24px; }

  .amenity-grid, .trust-grid { 
    grid-template-columns: 1fr; 
    max-width: 100%;
  }

  .footer { padding: 40px 20px; }
  .footer-links { gap: 15px; flex-wrap: wrap; }
  
  /* Auth Pages */
  .auth-container { flex-direction: column; }
  .auth-side { display: none; } 
  .auth-card { max-width: 100%; padding: 32px 20px; }

  /* Booking & Layouts */
  .booking-container { 
    flex-direction: column; 
    padding: 0 16px;
  }
  .booking-main { width: 100% !important; }
  .booking-summary-panel { 
    width: 100% !important; 
    order: -1; 
    margin-bottom: 24px; 
    position: static !important;
  }
  
  .kyc-container { padding: 20px 16px; }
  .kyc-card { padding: 24px; }
  .kyc-steps-indicator { gap: 4px; overflow-x: auto; padding-bottom: 10px; justify-content: flex-start; }
  .kyc-step-line { min-width: 30px; }

  .id-type-selector { display: grid; grid-template-columns: 1fr 1fr; }

  /* Map Page Improvements — Robust Hide/Show Toggle */
  .map-layout { 
    position: relative; 
    height: calc(100vh - 65px); 
    width: 100%; 
    overflow: hidden;
  }
  .map-sidebar { 
    display: flex; /* Default: Show List */
    flex-direction: column;
    width: 100%; height: 100%; 
    background: white;
  }
  .map-container { 
    display: none; /* Default: Hide Map */
    width: 100%; height: 100%; 
  }
  #leafletMap { height: 100%; width: 100%; display: block; }

  /* Switch State for Mobile */
  .map-layout.show-map-view .map-sidebar {
    display: none;
  }
  .map-layout.show-map-view .map-container {
    display: block;
  }

  /* Floating Toggle Button */
  .mobile-view-toggle {
    display: flex;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: #1a56db;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    cursor: pointer;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
  }
  .mobile-view-toggle:active { transform: translateX(-50%) scale(0.95); }
  
  .map-controls { bottom: 85px; right: 12px; top: auto; }
}

/* PORTRAIT MOBILE (480px) */
@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn-large { width: 100%; text-align: center; }
  
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .stat-divider { display: none; }
  
  .nav-links .btn-primary { padding: 8px 14px; font-size: 12px; }
  .nav-link-plain { display: none; } 

  .booking-progress { gap: 4px; }
  .bp-label { display: none; } /* Icons only on very small screens */
  
  .form-row-2 { grid-template-columns: 1fr; }
}
