:root {
  --bg: #f6f7fb;
  --surface: #ffffff;
  --primary: #1f6feb;
  --primary-dark: #174ea6;
  --accent: #ff7a59;
  --text: #0f172a;
  --muted: #64748b;
  --success: #16a34a;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 20px;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.06);
}

body.dark {
  --bg: #0b1220;
  --surface: #111827;
  --primary: #60a5fa;
  --primary-dark: #3b82f6;
  --accent: #f97316;
  --text: #e2e8f0;
  --muted: #94a3b8;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-soft: 0 12px 30px rgba(0, 0, 0, 0.35);
}

body.gold {
  --bg: #fff5cf;
  --surface: #fff0a0;
  --primary: #d09030;
  --primary-dark: #c08030;
  --accent: #ffd070;
  --text: #3a2b16;
  --muted: #8a6d3b;
  --shadow: 0 20px 50px rgba(120, 76, 20, 0.25);
  --shadow-soft: 0 12px 30px rgba(120, 76, 20, 0.18);
}

* { box-sizing: border-box; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, #eef2ff 0%, #f8fafc 45%, #f6f7fb 100%);
  min-height: 100vh;
  transition: background 0.4s ease, color 0.4s ease;
}

body.dark {
  background: radial-gradient(circle at top, #0f172a 0%, #0b1220 55%, #070b14 100%);
}

body.gold {
  background: radial-gradient(circle at top, #fff7df 0%, #fff0a0 55%, #ffd070 100%);
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background-image:
    radial-gradient(circle, rgba(31,111,235,0.18) 0 6px, transparent 7px),
    radial-gradient(circle, rgba(96,165,250,0.22) 0 5px, transparent 6px),
    radial-gradient(circle, rgba(255,122,89,0.18) 0 7px, transparent 8px),
    radial-gradient(circle at 15% 20%, rgba(31,111,235,0.10) 0 120px, transparent 121px),
    radial-gradient(circle at 80% 15%, rgba(255,122,89,0.12) 0 140px, transparent 141px),
    radial-gradient(circle at 20% 85%, rgba(31,111,235,0.08) 0 160px, transparent 161px);
  background-size: 220px 220px, 260px 260px, 300px 300px, auto, auto, auto;
  background-position: 0 0, 40px 80px, 120px 40px, center, center, center;
  animation: bubbleRise 10s linear infinite, washDrift 18s ease-in-out infinite;
}

body::after {
  background-image:
    radial-gradient(ellipse at 30% 70%, rgba(255,255,255,0.25) 0 40px, transparent 41px),
    radial-gradient(ellipse at 65% 60%, rgba(255,255,255,0.2) 0 55px, transparent 56px),
    radial-gradient(ellipse at 80% 30%, rgba(255,255,255,0.18) 0 35px, transparent 36px),
    radial-gradient(circle at 55% 70%, rgba(99,102,241,0.12) 0 90px, transparent 91px),
    radial-gradient(circle at 85% 80%, rgba(16,185,129,0.12) 0 120px, transparent 121px);
  animation: splashMove 8s ease-in-out infinite, drySteam 22s ease-in-out infinite;
  opacity: 0.8;
}

@keyframes washDrift {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-10px) translateX(8px); }
  100% { transform: translateY(0) translateX(0); }
}

@keyframes drySteam {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(12px) translateX(-6px); }
  100% { transform: translateY(0) translateX(0); }
}

@keyframes bubbleRise {
  0% { background-position: 0 120px, 40px 200px, 120px 180px, center, center, center; }
  50% { background-position: 20px 20px, 80px 60px, 160px 40px, center, center, center; }
  100% { background-position: 0 -80px, 40px -40px, 120px -60px, center, center, center; }
}

@keyframes splashMove {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
  100% { transform: translateY(0) scale(1); }
}

.bg-surface { background: var(--bg); }

.page-transition {
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(31,111,235,0.15), rgba(255,122,89,0.2));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 9999;
}

.page-transition.active { opacity: 1; }

.navbar-glass {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

body.dark .navbar-glass { background: rgba(17,24,39,0.8); }
body.gold .navbar-glass { background: rgba(255, 244, 214, 0.88); }

.navbar {
  padding: 18px 0;
  min-height: 86px;
}

.navbar .container {
  max-width: 1280px;
}

.navbar .container {
  gap: 12px;
}

.navbar-brand {
  margin-right: 12px;
  flex-shrink: 0;
  max-width: none;
}

.navbar-collapse {
  margin-left: auto;
}

.navbar-nav {
  margin-left: auto;
}

.navbar .nav-link {
  color: var(--text);
  font-weight: 600;
}

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

.navbar-nav {
  flex-wrap: nowrap;
  gap: 6px;
}

.navbar .nav-link {
  white-space: nowrap;
}

@media (max-width: 1400px) {
  .navbar .container { flex-wrap: wrap; }
  .navbar-collapse { order: 3; width: 100%; margin-left: 0; }
  .navbar-nav { justify-content: flex-end; }
}

@media (max-width: 1200px) {
  .navbar .nav-link { font-size: 0.92rem; }
}

@media (max-width: 992px) {
  .navbar .nav-link { font-size: 0.95rem; white-space: normal; }
  .navbar-nav { flex-wrap: wrap; }
}

.brand-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  margin-right: 10px;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.navbar-brand {
  gap: 12px;
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(31,111,235,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.navbar-brand .brand-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
}

.navbar-brand .brand-dot {
  width: 14px;
  height: 14px;
}

.brand-logo-lg {
  width: 72px !important;
  height: 56px !important;
  border-radius: 16px !important;
  box-shadow: var(--shadow-soft);
}

.brand-dot-lg {
  width: 18px !important;
  height: 18px !important;
}

.brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  letter-spacing: 0.2px;
  color: var(--text);
}
body.dark .brand-title {
  color: var(--text);
}

.navbar-glass::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(31,111,235,0.15), rgba(255,122,89,0.12));
  opacity: 0.5;
  pointer-events: none;
  mask: linear-gradient(90deg, transparent 0, #000 20%, #000 80%, transparent 100%);
  animation: navShimmer 6s ease-in-out infinite;
}

.navbar-glass {
  animation: navFloat 6s ease-in-out infinite;
}

@keyframes navFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-2px); }
  100% { transform: translateY(0); }
}

@keyframes navShimmer {
  0% { transform: translateX(-10%); opacity: 0.2; }
  50% { transform: translateX(10%); opacity: 0.5; }
  100% { transform: translateX(-10%); opacity: 0.2; }
}

.navbar .nav-link {
  position: relative;
}

.navbar .nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.navbar .nav-link:hover::after {
  width: 100%;
}

.navbar .btn-primary,
.navbar .btn-ghost {
  box-shadow: var(--shadow-soft);
}

body.dark .navbar-brand {
  background: rgba(96,165,250,0.12);
}
body.gold .navbar-brand {
  background: rgba(245,158,11,0.15);
}

.page-content { padding-top: 58px; }
.page-content, .navbar, .footer { position: relative; z-index: 1; }
.modal { z-index: 30000; align-items: center; }
.modal-dialog { z-index: 30001; margin: 1.5rem auto; }
.modal-content { z-index: 30002; }

.hero { padding: 56px 0 50px; }

.washmart-hero .promo-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  background: var(--surface);
  border: 1px dashed rgba(31,111,235,0.25);
  padding: 10px 16px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-soft);
}

.promo-pill {
  display: inline-flex;
  background: rgba(31,111,235,0.12);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.offer-banner-wrap {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.offer-banner-wide {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.work-card {
  background: var(--surface);
  border-radius: 18px;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.work-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(31,111,235,0.12);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--primary);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--surface);
  border-radius: 22px;
  padding: 28px;
  box-shadow: var(--shadow);
}

@media (max-width: 992px) {
  .washmart-hero .promo-bar { flex-direction: column; align-items: flex-start; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 48px;
  box-shadow: var(--shadow);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.booking-focus {
  position: relative;
  overflow: hidden;
}

.focus-badge {
  display: inline-flex;
  background: rgba(31,111,235,0.12);
  color: var(--primary);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 12px;
}

.booking-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(31,111,235,0.08);
  border: 1px dashed rgba(31,111,235,0.3);
  margin-top: 20px;
}

.btn-pickup-main {
  font-size: 1.1rem;
  padding: 14px 34px;
  box-shadow: 0 18px 36px rgba(31,111,235,0.35);
  position: relative;
}

.btn-pickup-main::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(31,111,235,0.25);
  animation: pickupPulse 2s ease-in-out infinite;
}

@keyframes pickupPulse {
  0% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.06); opacity: 0.2; }
  100% { transform: scale(1); opacity: 0.5; }
}

.wash-anim {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.washer {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  background: linear-gradient(140deg, #1f6feb, #60a5fa);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  position: relative;
}

.washer-door {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 3px solid rgba(255,255,255,0.7);
  position: relative;
  overflow: hidden;
}

.washer-water {
  position: absolute;
  bottom: 14px;
  width: 56px;
  height: 20px;
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  animation: washWave 2.4s ease-in-out infinite;
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: bubbleFloat 2.8s ease-in-out infinite;
}

.bubble.b1 { width: 12px; height: 12px; left: 6px; top: 12px; animation-delay: 0s; }
.bubble.b2 { width: 8px; height: 8px; right: 8px; top: 20px; animation-delay: 0.4s; }
.bubble.b3 { width: 10px; height: 10px; left: 20px; bottom: 8px; animation-delay: 0.8s; }

@keyframes washWave {
  0% { transform: translateY(6px); opacity: 0.7; }
  50% { transform: translateY(-2px); opacity: 1; }
  100% { transform: translateY(6px); opacity: 0.7; }
}

@keyframes bubbleFloat {
  0% { transform: translateY(6px); opacity: 0.7; }
  50% { transform: translateY(-8px); opacity: 1; }
  100% { transform: translateY(6px); opacity: 0.7; }
}

.hero-image {
  min-height: 360px;
  border-radius: var(--radius);
  background: linear-gradient(140deg, #1f6feb 0%, #6c63ff 45%, #ff7a59 100%);
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  top: 20px;
  left: 30px;
  filter: blur(2px);
}

.card-glass {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.4);
}

body.dark .card-glass {
  background: rgba(17,24,39,0.92);
  border-color: rgba(255,255,255,0.08);
}
body.gold .card-glass {
  background: rgba(255, 248, 228, 0.92);
  border-color: rgba(120, 76, 20, 0.08);
}

.service-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }

.service-option {
  background: var(--surface);
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-option:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-soft);
}

body.dark .service-option {
  background: #0f172a;
  border-color: rgba(255,255,255,0.08);
}
body.gold .service-option {
  background: #fff7e2;
  border-color: rgba(120,76,20,0.15);
}

.btn {
  border-radius: 999px;
  padding: 10px 22px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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


.btn-ghost { border: 1px solid rgba(15,23,42,0.15); background: transparent; }
.btn-ghost:hover { background: rgba(15,23,42,0.05); }

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.6) 10%, transparent 10%);
  transform: scale(0);
  transition: transform 0.5s ease;
}

.btn:active::after { transform: scale(4); }

.section-title { font-family: 'Playfair Display', serif; }

.counter { font-size: 2rem; font-weight: 700; }

.stepper { display: flex; gap: 16px; }

.step {
  flex: 1;
  background: var(--surface);
  padding: 16px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,0.08);
  position: relative;
}

.step.active { border-color: var(--primary); box-shadow: var(--shadow-soft); }

.badge-status {
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.badge-status.pending { background: rgba(245,158,11,0.15); color: var(--warning); }
.badge-status.processing { background: rgba(31,111,235,0.15); color: var(--primary); }
.badge-status.completed { background: rgba(22,163,74,0.15); color: var(--success); }
.badge-status.delivered { background: rgba(16,185,129,0.15); color: var(--success); }
.badge-status.cancelled { background: rgba(239,68,68,0.15); color: var(--danger); }

.toast-stack {
  position: fixed;
  top: 100px;
  right: 30px;
  display: grid;
  gap: 12px;
  z-index: 9999;
}

.global-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.global-loader.active {
  opacity: 1;
  transform: translateY(0);
}
.global-loader-bar {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  background-size: 200% 100%;
  animation: loaderBar 1.1s linear infinite;
}
.global-loader-label {
  font-size: 12px;
  padding: 6px 12px;
  color: var(--text);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(6px);
  display: inline-block;
  border-bottom-right-radius: 8px;
}
 
.blocking-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9998;
}
.blocking-overlay.active {
  display: flex;
}
.blocking-card {
  background: rgba(20,20,20,0.9);
  color: #fff;
  padding: 18px 22px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.blocking-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
@keyframes loaderBar {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.toast {
  background: var(--surface);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.4s ease;
}

.toast.success { border-left: 4px solid var(--success); }
.toast.error { border-left: 4px solid var(--danger); }

@keyframes slideIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }

.form-control, .form-select {
  border-radius: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(15,23,42,0.12);
  box-shadow: none;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(31,111,235,0.15);
}

.is-locked {
  background: rgba(15,23,42,0.03);
  cursor: not-allowed;
}

body.dark .is-locked {
  background: rgba(255,255,255,0.04);
}
body.gold .is-locked {
  background: rgba(120,76,20,0.06);
}

.loader {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,0.6);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

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

.admin-shell { display: grid; grid-template-columns: 260px 1fr; min-height: 100vh; background: var(--bg); }

.admin-sidebar {
  background: #0f172a;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
}

.admin-sidebar .nav-link {
  color: rgba(255,255,255,0.7);
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 10px 14px;
  transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.admin-sidebar .brand-title { color: #fff; }
.admin-sidebar .text-muted { color: rgba(255,255,255,0.72) !important; }
.admin-sidebar a.small.text-muted { color: rgba(255,255,255,0.88) !important; text-decoration: none; }
.admin-sidebar a.small.text-muted:hover { color: #fff !important; }

.admin-main { padding: 32px 34px 80px; }

.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }

.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(22,163,74,0.15);
  color: var(--success);
  font-weight: 600;
}

.admin-user { display: flex; align-items: center; gap: 12px; margin-top: 24px; }

.avatar-pill {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: grid;
  place-items: center;
}
.avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.table-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
}

.slide-panel {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 24px;
  transition: right 0.4s ease;
  z-index: 1050;
}

.slide-panel.active { right: 0; }

.modal-backdrop { z-index: 19990; }
.modal { z-index: 20000; pointer-events: auto; }
.modal-dialog { pointer-events: auto; }

.rate-list button {
  width: 100%;
  text-align: left;
  background: var(--surface);
  border-radius: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(15,23,42,0.08);
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.rate-list button:hover { border-color: var(--primary); }

.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--primary); }

.theme-toggle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  display: grid;
  place-items: center;
  transition: transform 0.3s ease;
}

.theme-toggle:hover { transform: rotate(10deg) scale(1.05); }

.theme-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(120deg, #ffb703, #fb8500);
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.6);
}

body.dark .theme-icon {
  background: linear-gradient(120deg, #60a5fa, #3b82f6);
  box-shadow: inset 0 0 0 4px rgba(15,23,42,0.6);
}
body.gold .theme-icon {
  background: linear-gradient(120deg, #f59e0b, #b45309);
  box-shadow: inset 0 0 0 4px rgba(255,246,218,0.7);
}

.contact-inline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
}

.carousel-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-slider {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
}

.hero-slider .carousel-item img {
  height: 480px;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transform: scale(1.02);
  animation: slowZoom 8s ease-in-out infinite;
}

.hero-slider .carousel-caption {
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: 36px;
  background: rgba(15,23,42,0.65);
  color: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  backdrop-filter: blur(6px);
  text-align: left;
  animation: floatUp 1s ease;
}

.hero-slider .caption-pill {
  display: inline-flex;
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

@keyframes slowZoom {
  0% { transform: scale(1.02); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1.02); }
}

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

@media (max-width: 992px) {
  .hero-slider .carousel-item img { height: 360px; }
  .hero-slider .carousel-caption { left: 20px; right: 20px; bottom: 20px; }
}

@media (max-width: 992px) {
  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; }
  .admin-main { padding: 24px; }
  .booking-cta { flex-direction: column; align-items: flex-start; }
}

.glass-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow); }

body.dark .table { color: var(--text); }
body.dark .table thead th { color: var(--muted); }
body.dark .table td, body.dark .table th { border-color: rgba(255,255,255,0.08); }
body.dark .form-control, body.dark .form-select { background: #0f172a; color: var(--text); border-color: rgba(255,255,255,0.1); }
body.dark .modal-content { background: #0f172a; color: var(--text); }
body.dark .navbar-toggler { background: rgba(255,255,255,0.1); }
body.dark .footer { background: #0b1220; }
.nav-note { color: var(--muted); font-size: 0.9rem; margin-left: 12px; }


body.dark .navbar-toggler-icon { filter: invert(1); }
body.dark .toast { background: #0f172a; color: var(--text); }


body.dark .rate-list button { background: #0f172a; color: var(--text); border-color: rgba(255,255,255,0.08); }
body.dark .rate-list button:hover { border-color: var(--primary); }


.rate-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.rate-card { background: var(--surface); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 20px; }
.rate-card__title { font-weight: 700; margin-bottom: 12px; }
.rate-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px dashed rgba(15,23,42,0.1); }
.rate-row:last-child { border-bottom: none; }
.rate-item { color: var(--text); }
.rate-price { font-weight: 600; color: var(--primary); }
body.dark .rate-card { background: #0f172a; }
body.dark .rate-row { border-bottom-color: rgba(255,255,255,0.08); }
body.gold .rate-card { background: #fff7e2; }
body.gold .rate-row { border-bottom-color: rgba(120,76,20,0.18); }

.invoice-sheet {
  background: var(--surface);
  border-radius: 16px;
  padding: 24px;
  border: 1px dashed rgba(15,23,42,0.12);
}

body.dark .invoice-sheet {
  background: #0f172a;
  border-color: rgba(255,255,255,0.08);
}
body.gold .invoice-sheet {
  background: #fff7e2;
  border-color: rgba(120,76,20,0.18);
}

.qr-block {
  page-break-inside: avoid;
}

.qr-img {
  max-width: 150px;
  display: block;
  margin-top: 8px;
}

.qr-note {
  font-weight: 600;
  color: var(--text);
}

.qr-cta {
  color: var(--primary);
  font-weight: 700;
  text-decoration: underline;
}

.upi-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(31,111,235,0.1);
}

.upi-link a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.upi-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 20px;
  border-radius: 6px;
  background: linear-gradient(90deg, #1f6feb, #16a34a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.fab-btn {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fab-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 16px 30px rgba(15,23,42,0.25);
}

body.dark .navbar .nav-link { color: var(--text); }
body.dark .table-card { background: #0f172a; }
body.dark .hero-card { background: #0f172a; }
body.dark .card-glass p, body.dark .card-glass h1, body.dark .card-glass h2, body.dark .card-glass h3, body.dark .card-glass h4, body.dark .card-glass h5, body.dark .card-glass h6 { color: var(--text); }
body.dark .form-control::placeholder, body.dark .form-select::placeholder { color: var(--muted); }

body.dark .text-muted { color: var(--muted) !important; }
body.dark a { color: var(--text); }
body.dark a:hover { color: var(--primary); }
body.dark .footer a { color: var(--muted); }
body.dark .footer a:hover { color: var(--primary); }
body.dark .table { color: var(--text); }
body.dark .card-glass { color: var(--text); }
body.dark .hero-slider .carousel-caption { color: #fff; }
body.dark .badge-status { color: var(--text); }
body.dark .bg-white { background: #0b1220 !important; }

body.gold .table-card { background: #fff7e2; }
body.gold .hero-card { background: #fff7e2; }
body.gold .form-control, body.gold .form-select { background: #fff7e2; color: var(--text); border-color: rgba(120,76,20,0.18); }
body.gold .text-muted { color: var(--muted) !important; }
body.gold .footer { background: #fff1c1; }
body.gold .footer a { color: var(--muted); }
body.gold .footer a:hover { color: var(--primary); }
body.gold .table { color: var(--text); }
body.gold .badge-status { color: var(--text); }
body.gold .bg-white { background: #fff1c1 !important; }

.brand-hero {
  position: relative;
  overflow: hidden;
}

.brand-hero::after {
  content: '';
  position: absolute;
  inset: -40% -80%;
  background: conic-gradient(from 120deg, rgba(31,111,235,0.25), rgba(255,122,89,0.35), rgba(31,111,235,0.25));
  animation: brandGlow 6s linear infinite;
  opacity: 0.45;
  z-index: 0;
}

.brand-hero > * { position: relative; z-index: 1; }

@keyframes brandGlow {
  0% { transform: translateX(-10%) rotate(0deg); }
  50% { transform: translateX(10%) rotate(180deg); }
  100% { transform: translateX(-10%) rotate(360deg); }
}

.app-download-strip {
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(199,155,52,0.25);
  background: linear-gradient(135deg, rgba(255,255,255,0.78), rgba(248,240,222,0.85));
}

.app-download-block {
  background: transparent;
}

.app-download-strip-lg {
  padding: 22px 24px;
  border-radius: 18px;
}

.app-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 10px;
  border: 1px solid rgba(18,23,37,0.14);
  color: #1c2333;
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.app-download-btn-lg {
  padding: 12px 16px;
  font-weight: 700;
}

.app-download-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(9,16,30,0.12);
}

.app-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: #f4ead2;
}

.app-icon-wrap-lg {
  width: 30px;
  height: 30px;
  border-radius: 9px;
}

body.dark .app-download-strip {
  background: linear-gradient(135deg, rgba(17,24,39,0.95), rgba(12,17,30,0.95));
  border-color: rgba(193,160,84,0.35);
}

body.dark .app-download-btn {
  background: #111827;
  color: #f8f4e8;
  border-color: rgba(245,220,162,0.24);
}

body.dark .app-icon-wrap {
  background: rgba(245,220,162,0.14);
}
