/* Mayur Tours & Travels — Premium Dark Gold Theme */

:root {
  --gold: #f1f0ed;
  --gold-light: #f7f6f2;
  --gold-dark: #a6c9e5;
  --gold-gradient: linear-gradient(180deg,hwb(210 89% 6%) 0%,#d7e4ea 18%,#e5eff0 55%,#e8eaed 100%);
  --bg: #0F1117;
  --bg-elevated: #161922;
  --bg-card: #1A1D27;
  --bg-input: #12151E;
  --text: #FFFFFF;
  --text-muted: #8B93A7;
  --text-dim: #5C6370;
  --border: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(199, 184, 132, 0.35);
  --radius: 24px;
  --radius-sm: 16px;
  --radius-pill: 50px;
  --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.35);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.45);
  --shadow-float: 0 12px 40px rgba(0, 0, 0, 0.55);
  --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.2);
  --glass: rgba(26, 29, 39, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --nav-height: 72px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-bottom: calc(var(--nav-height) + var(--safe-bottom) + 24px);
}

/* Tailwind overrides for dark theme */
.text-slate-900 { color: var(--text) !important; }
.text-slate-800 { color: var(--text) !important; }
.text-slate-700 { color: #C8CDD8 !important; }
.text-slate-600 { color: var(--text-muted) !important; }
.text-slate-500 { color: var(--text-muted) !important; }
.text-slate-400 { color: var(--text-dim) !important; }
.text-primary { color: var(--gold) !important; }
.text-accent { color: var(--gold-light) !important; }
.text-teal-800 { color: var(--gold) !important; }
.bg-white { background: var(--bg-card) !important; }
.bg-slate-50 { background: var(--bg-input) !important; }
.bg-slate-100 { background: var(--bg-elevated) !important; }
.bg-teal-50 { background: rgba(212, 175, 55, 0.1) !important; }
.border-slate-100 { border-color: var(--border) !important; }
.border-slate-200 { border-color: var(--border) !important; }
.border-teal-100 { border-color: var(--border-gold) !important; }
.from-primary { --tw-gradient-from: #D4AF37 !important; }
.to-secondary { --tw-gradient-to: #E8C547 !important; }
.from-teal-400 { --tw-gradient-from: #E8C547 !important; }
.bg-gradient-to-br.from-primary.to-secondary { background: var(--gold-gradient) !important; }
.bg-gradient-to-r.from-primary.to-secondary { background: var(--gold-gradient) !important; }
.bg-accent { background: var(--gold) !important; }
.bg-primary { background: var(--gold-dark) !important; }
.bg-secondary { background: var(--gold) !important; }
.bg-amber-500 { background: var(--gold) !important; }
.text-amber-700 { color: var(--gold) !important; }
.bg-amber-50 { background: rgba(212, 175, 55, 0.12) !important; }

/* Icon system */
.icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm { width: 16px; height: 16px; stroke-width: 2; }
.icon-lg { width: 28px; height: 28px; }
.icon-gold { color: var(--gold); }
.icon-muted { color: var(--text-muted); }

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  transition: all 0.3s ease;
}

.icon-wrap .icon { width: 22px; height: 22px; color: var(--gold); }

.category-card:hover .icon-wrap {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.meta-chip .icon { width: 14px; height: 14px; color: var(--gold); }

/* Logo */
.brand-logo {
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.brand-logo-full {
  height: auto;
  width: 100%;
  max-width: 260px;
  object-fit: contain;
}

.brand-logo-icon {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 14px;
}

/* Loader */
#app-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#app-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-logo 1.5s ease-in-out infinite;
}

.loader-logo img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.loader-bar {
  width: 120px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  margin-top: 24px;
  overflow: hidden;
}

.loader-bar-inner {
  height: 100%;
  width: 40%;
  background: var(--gold-gradient);
  border-radius: 4px;
  animation: loader-slide 1.2s ease-in-out infinite;
}

@keyframes pulse-logo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Glass */
.glass {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
}

/* Cards */
.app-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.app-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.app-card:active { transform: scale(0.98); }

/* Header */
.app-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 12px 16px;
  background: rgba(15, 17, 23, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-btn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  position: relative;
  cursor: pointer;
  transition: border-color 0.2s;
}

.header-btn:hover { border-color: var(--border-gold); }

.header-btn .badge-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid var(--bg-card);
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1A1A1A;
  font-weight: 700;
  font-size: 0.8125rem;
  border: 2px solid rgba(212, 175, 55, 0.4);
}

/* Hero */
.hero-banner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 200px;
  border: 1px solid var(--border);
}

.hero-banner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 17, 23, 0.95) 0%, rgba(15, 17, 23, 0.2) 60%, rgba(15, 17, 23, 0.4) 100%);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  color: white;
}

.hero-content h2 {
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content p { color: rgba(255, 255, 255, 0.75); }

/* Search */
.search-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-float);
  margin-top: -40px;
  position: relative;
  z-index: 10;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.search-field:focus-within {
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.search-field .field-icon {
  color: var(--gold);
  display: flex;
  align-items: center;
}

.search-field input,
.search-field select {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.9375rem;
  color: var(--text);
  font-family: inherit;
}

.search-field input::placeholder { color: var(--text-dim); }

.search-field select option { background: var(--bg-card); color: var(--text); }

/* Categories — BixRent circular style */
.category-card {
  min-width: 88px;
  padding: 14px 10px;
  text-align: center;
  border-radius: var(--radius);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-card span:last-child {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  display: block;
  line-height: 1.3;
}

.category-card:hover span:last-child { color: var(--gold); }

/* Horizontal scroll */
.h-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0 8px;
}

.h-scroll::-webkit-scrollbar { display: none; }
.h-scroll > * { scroll-snap-align: start; flex-shrink: 0; }

/* Tour card */
.tour-card {
  width: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.tour-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.tour-card img { width: 100%; height: 160px; object-fit: cover; }

.tour-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--gold-gradient);
  color: #1A1A1A;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
}

/* Vehicle card */
.vehicle-card {
  width: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: border-color 0.3s;
}

.vehicle-card:hover { border-color: var(--border-gold); }
.vehicle-card img { width: 100%; height: 150px; object-fit: cover; }

/* Features */
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}

/* Reviews */
.review-card {
  min-width: 300px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border-gold);
}

.stars { color: var(--gold); letter-spacing: 2px; }

/* Filter chips */
.filter-chip {
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-chip.active,
.filter-chip:hover {
  background: var(--gold-gradient);
  color: #1A1A1A;
  border-color: transparent;
  font-weight: 600;
}

/* Package card */
.package-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, border-color 0.3s;
}

.package-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.package-card img { width: 100%; height: 200px; object-fit: cover; }

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: var(--gold-gradient);
  color: #1A1A1A;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  font-size: 0.9375rem;
  text-decoration: none;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(212, 175, 55, 0.35);
}

.btn-primary:active { transform: scale(0.97); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
  font-size: 0.875rem;
  text-decoration: none;
}

.btn-outline:hover {
  background: rgba(212, 175, 55, 0.1);
}

.btn-sm { padding: 10px 16px; font-size: 0.8125rem; }

.link-gold {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: opacity 0.2s;
}

.btn-primary .icon,
.btn-primary [data-icon] svg,
[style*="gold-gradient"] .icon {
  stroke: #1A1A1A;
  color: #1A1A1A;
}

.btn-primary .icon[fill] {
  fill: #1A1A1A;
}

/* Bottom Nav — BixRent floating pill */
.bottom-nav {
  position: fixed;
  bottom: calc(0px + var(--safe-bottom));
  left: 16px;
  right: 16px;
  z-index: 200;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(26, 29, 39, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-float);
  padding:20px;
}

.bottom-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 60px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  text-decoration: none;
  color: var(--text-dim);
  font-size: 0.625rem;
  font-weight: 600;
  transition: all 0.25s ease;
  border-radius: var(--radius-pill);
  min-width: 64px;
}

.nav-item svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: all 0.25s;
}

.nav-item.active {
  color: #1A1A1A;
  background: var(--gold-gradient);
  box-shadow: var(--shadow-gold);
}

.nav-item.active svg { stroke: #1A1A1A; }

.nav-item:not(.active):hover { color: var(--gold); }

.nav-item:active { transform: scale(0.92); }

/* FAB */
.fab-group {
  position: fixed;
  bottom: calc(var(--nav-height) + var(--safe-bottom) + 28px);
  right: 16px;
  z-index: 150;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-float);
  transition: transform 0.2s;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.fab:hover { transform: scale(1.08); }
.fab:active { transform: scale(0.95); }
.fab-whatsapp { background: rgb(6, 59, 26); color: white; }
.fab-call { background: var(--gold-gradient); color: #1A1A1A; }

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.modal-overlay.open { opacity: 1; visibility: visible; }

.modal-sheet {
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  background: var(--bg-card);
  border-radius: var(--radius) var(--radius) 0 0;
  border-top: 1px solid var(--border-gold);
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
}

.modal-overlay.open .modal-sheet { transform: translateY(0); }

.modal-handle {
  width: 40px;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  margin: 12px auto;
}

.modal-close {
  background: var(--bg-elevated) !important;
  border: 1px solid var(--border);
  color: var(--text-muted);
}

/* Install popup */
.install-popup {
  position: fixed;
  bottom: calc(var(--nav-height) + var(--safe-bottom) + 90px);
  left: 16px;
  right: 16px;
  z-index: 180;
  max-width: 448px;
  margin: 0 auto;
  padding: 16px 20px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-float);
  transform: translateY(120%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}

.install-popup.show { transform: translateY(0); }

/* Animations */
.fade-in { opacity: 0; animation: fadeIn 0.6s ease forwards; }
.slide-up { opacity: 0; transform: translateY(24px); animation: slideUp 0.6s ease forwards; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }

.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }

.page-content { animation: pageEnter 0.4s ease; }

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

.section-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.section-subtitle {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Forms */
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--bg-input);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  outline: none;
  border-color: var(--border-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-input option { background: var(--bg-card); }

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}

.map-container iframe { width: 100%; height: 100%; border: 0; }

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.spec-item {
  padding: 12px;
  background: var(--bg-input);
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border);
}

.spec-item .value {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold);
}

.spec-item .label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.feature-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  background: rgba(212, 175, 55, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid var(--border-gold);
}

.contact-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.promo-banner {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  position: relative;
}

.hidden-filter { display: none !important; }

/* Desktop */
@media (min-width: 768px) {
  body {
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
    min-height: 100vh;
  }

  .bottom-nav {
    max-width: 448px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: calc(100% - 32px);
  }

  .fab-group { right: calc(50% - 240px + 16px); }

  .install-popup {
    left: 50%;
    transform: translateX(-50%) translateY(120%);
    width: calc(480px - 32px);
  }

  .install-popup.show { transform: translateX(-50%) translateY(0); }

  .modal-overlay { align-items: center; }
  .modal-sheet { border-radius: var(--radius); max-height: 85vh; }
}

@media (min-width: 1024px) {
  body { max-width: 520px; }
  .fab-group { right: calc(50% - 260px + 16px); }
}


/* ===== Premium Glossy Override ===== */

body{
background:
radial-gradient(circle at top right,#2D6BFF 0%,transparent 35%),
radial-gradient(circle at top left,#0D5EFF 0%,transparent 30%),
radial-gradient(circle at bottom,#10294F 0%,transparent 45%),
linear-gradient(180deg,#08111F 0%,#0A1526 35%,#070B13 100%);
background-attachment:fixed;
}

.btn-primary,
.filter-chip.active,
.nav-item.active,
.tour-badge{
background:var(--gold-gradient)!important;
box-shadow:
inset 0 2px 2px rgba(255,255,255,.55),
inset 0 -2px 6px rgba(0,0,0,.18),
0 12px 28px rgba(244,180,0,.35)!important;
}

.package-card,
.vehicle-card,
.review-card,
.search-card,
.app-card{
background:rgba(18,27,43,.70)!important;
backdrop-filter:blur(28px);
-webkit-backdrop-filter:blur(28px);
border:1px solid rgba(255,255,255,.08)!important;
border-radius:28px!important;
box-shadow:0 20px 60px rgba(0,0,0,.45)!important;
}

.bottom-nav{
background:rgba(20,28,44,.72)!important;
backdrop-filter:blur(30px);
-webkit-backdrop-filter:blur(30px);
}

.app-header{
background:rgba(10,16,28,.65)!important;
backdrop-filter:blur(22px);
-webkit-backdrop-filter:blur(22px);
}
.hero-banner {
    position: relative;
    width: 100%;
    height: 300px; /* Change as needed */
    overflow: hidden;
    border-radius: 20px;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.2)
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    z-index: 2;
}