:root {
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fbbf24;
  --navy: #0d1b3e;
  --navy-card: #1a2d5a;
  --navy-deep: #0b1633;
  --bg: #f4efe1;
  --bg-card: #ffffff;
  --text: #0d1b3e;
  --text-muted: #64748b;
  --border: #e2d9c8;
}

body.dark-mode {
  --bg: #0b1633;
  --bg-card: #1a2d5a;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #1e3a6e;
  background: var(--bg) !important;
  color: var(--text) !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f4efe1;
  color: #0d1b3e;
  line-height: 1.6;
  transition: background 0.3s, color 0.3s;
}

.optional-label {
  color: var(--text-muted);
  font-weight: 500;
  text-transform: none;
}

.cost-preview {
  display: grid;
  gap: 3px;
}

.cost-preview span,
.cost-preview small {
  display: block;
}

.coupon-field {
  margin: 14px 0;
}

.rewards-area {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.rewards-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.rewards-heading h2 {
  margin: 0;
}

.eyebrow,
.reward-kicker {
  color: var(--accent-dark);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.rewards-trust-note {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.rewards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.reward-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(13, 27, 62, .07);
  padding: 18px;
  min-width: 0;
}

.reward-card-highlight {
  background: linear-gradient(145deg, #0d1b3e, #1a2d5a);
  color: white;
  border: 0;
}

.reward-card-highlight .reward-kicker,
.reward-card-highlight small {
  color: #fbbf24;
}

.reward-card-wide {
  grid-column: 1 / -1;
}

.reward-value {
  display: block;
  font-size: 2rem;
  line-height: 1.2;
  margin: 7px 0 10px;
}

.reward-progress {
  height: 8px;
  overflow: hidden;
  background: rgba(100, 116, 139, .2);
  border-radius: 999px;
  margin-bottom: 10px;
}

.reward-progress span {
  display: block;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
}

.referral-code,
.coupon-code {
  display: inline-block;
  margin: 8px 0;
  padding: 6px 10px;
  background: #fff7e6;
  border: 1px dashed var(--accent-dark);
  color: #92400e;
  border-radius: 8px;
  letter-spacing: .06em;
}

.available-rewards {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.available-reward {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 11px 12px;
  background: rgba(245, 158, 11, .08);
  border-radius: 10px;
}

.available-reward small {
  flex-basis: 100%;
  color: var(--text-muted);
}

.reward-muted {
  color: var(--text-muted);
  font-size: .82rem;
  margin-top: 8px;
}

.reward-error {
  color: #b91c1c;
}

.btn-cancel-booking {
  border: 1px solid #dc2626;
  color: #b91c1c;
  background: transparent;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
}

@media (max-width: 800px) {
  .rewards-grid {
    grid-template-columns: 1fr;
  }

  .reward-card-wide {
    grid-column: auto;
  }
}

header {
  background: linear-gradient(135deg, #0b1633 0%, #0d1b3e 100%);
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: default;
  user-select: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.logo-text span {
  font-size: 0.6rem;
  font-weight: 700;
  color: #f59e0b;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 4px;
}

.nav-btn {
  background: transparent;
  border: none;
  color: #a0a0b8;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-btn:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}

.nav-btn.active {
  color: #0d1b3e;
  background: #f59e0b;
  font-weight: 600;
}

main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 20px 40px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.search-hero {
  text-align: center;
  padding: 32px 0 24px;
}

.search-hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.search-hero p {
  color: #666;
  font-size: 0.95rem;
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 12px;
}

.filter-bar select,
.filter-bar input {
  flex: 1;
  min-width: 140px;
  padding: 10px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.875rem;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.2s;
}

.filter-bar select:focus,
.filter-bar input:focus {
  outline: none;
  border-color: #f59e0b;
  background: #fff;
}

.amenity-filters {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  padding: 10px 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  margin-bottom: 16px;
  font-size: 0.85rem;
}

.amenity-filters label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #555;
}

.results-count {
  padding: 8px 0;
  font-size: 0.875rem;
  color: #888;
}

.parking-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 16px;
}

.parking-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #eee;
}

.card-body {
  padding: 20px;
}

.card-image-carousel {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #e0e0e0;
}

.carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s;
}

.carousel-img.active {
  opacity: 1;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}

.carousel-nav:hover {
  background: rgba(0,0,0,0.7);
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

.carousel-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  transition: background 0.2s;
}

.carousel-dot.active {
  background: #fff;
}

.card-no-image {
  height: 120px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.modal-gallery {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.modal-gallery img {
  height: 120px;
  width: auto;
  min-width: 160px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.modal-gallery::-webkit-scrollbar {
  height: 4px;
}

.modal-gallery::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 2px;
}

.modal-gallery::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

.image-upload-group {
  margin-bottom: 24px;
}

.image-upload-area {
  border: 2px dashed #d0d0d0;
  border-radius: 12px;
  padding: 20px;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  min-height: 120px;
}

.image-upload-area:hover {
  border-color: #f59e0b;
  background: #fff5f7;
}

.image-preview-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.image-preview {
  position: relative;
  width: 100px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-preview .remove-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 22px;
  height: 22px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.image-preview .remove-btn:hover {
  background: #f59e0b;
}

.upload-placeholder {
  text-align: center;
  color: #aaa;
  width: 100%;
  padding: 16px 0;
}

.upload-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 8px;
}

.upload-placeholder p {
  margin: 4px 0;
  font-size: 0.9rem;
}

.upload-sub {
  font-size: 0.8rem !important;
  color: #bbb;
}

.upload-hint {
  font-size: 0.7rem;
  font-weight: 400;
  color: #999;
  text-transform: none;
  letter-spacing: 0;
}

.image-count {
  font-size: 0.8rem;
  font-weight: 600;
  color: #2e7d32;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

.parking-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

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

.card-name {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1a2e;
}

.card-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f59e0b;
  white-space: nowrap;
}

.card-location {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 12px;
}

.card-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.tag-type {
  background: #e8f4fd;
  color: #1976d2;
}

.tag-amenity {
  background: #f0f7f0;
  color: #2e7d32;
}

.tag-time {
  background: #fff3e0;
  color: #e65100;
}

.card-slots {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.slots-info {
  font-size: 0.85rem;
  color: #555;
}

.slots-bar {
  width: 100px;
  height: 6px;
  background: #eee;
  border-radius: 3px;
  overflow: hidden;
}

.slots-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.3s;
}

.slots-fill.high {
  background: #4caf50;
}

.slots-fill.medium {
  background: #ff9800;
}

.slots-fill.low {
  background: #f44336;
}

.card-rating {
  font-size: 0.85rem;
  color: #ff9800;
  margin-bottom: 14px;
}

.btn-primary {
  background: #f59e0b;
  color: #fff;
  border: none;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-primary:hover {
  background: #d63851;
}

.card-actions {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.btn-book {
  flex: 1;
  padding: 10px;
}

.btn-book:disabled {
  background: #ccc;
  cursor: not-allowed;
}

.btn-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 10px 14px;
  background: #1976d2;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-directions:hover {
  background: #1565c0;
}

.directions-icon {
  font-size: 1rem;
}

.modal-directions-link {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1976d2;
  text-decoration: none;
}

.modal-directions-link:hover {
  text-decoration: underline;
}

.btn-directions-confirm {
  display: block;
  margin-top: 14px;
  padding: 12px 20px;
  background: #1976d2;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-directions-confirm:hover {
  background: #1565c0;
}

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

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.form-container h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.form-subtitle {
  color: #888;
  margin-bottom: 24px;
  font-size: 0.9rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}

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

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select {
  padding: 10px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fafafa;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #f59e0b;
  background: #fff;
}

.amenities-group {
  margin-bottom: 24px;
}

.amenity-options {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.amenity-options label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #555;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.message {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  display: none;
}

.message.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.message.error {
  display: block;
  background: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

.auth-link-button {
  background: none;
  border: 0;
  color: #b46e00;
  cursor: pointer;
  display: inline-block;
  font: inherit;
  font-weight: 700;
  margin-top: 14px;
  padding: 4px 0;
  text-decoration: underline;
}

.account-security-panel {
  background: var(--bg-soft, #f8fafc);
  border: 1px solid var(--border, #dfe3ea);
  border-radius: 12px;
  margin-top: 18px;
  padding: 18px;
}

.account-security-panel h3 {
  margin-bottom: 6px;
}

.account-security-panel p,
.danger-zone p,
.profile-notice {
  color: var(--text-muted, #667085);
  line-height: 1.55;
}

.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.profile-notice {
  background: #fff8e6;
  border: 1px solid #f6cf75;
  border-radius: 10px;
  margin-top: 16px;
  padding: 12px 14px;
}

.danger-zone {
  border: 1px solid #ef9a9a;
  border-radius: 14px;
  margin-top: 26px;
  padding: 20px;
}

.danger-zone h3 {
  color: #b42318;
  margin-bottom: 7px;
}

.btn-danger {
  background: #b42318;
  border: 1px solid #b42318;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  margin-top: 12px;
  padding: 11px 16px;
}

.legal-footer {
  align-items: center;
  color: var(--text-muted, #667085);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: 28px 18px 90px;
}

.legal-footer a {
  color: #8a5700;
  font-weight: 600;
}

.bookings-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.booking-card {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid #4caf50;
}

.booking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.booking-title {
  font-weight: 600;
  font-size: 1rem;
}

.booking-status {
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  background: #e8f5e9;
  color: #2e7d32;
  text-transform: uppercase;
}

.booking-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 8px;
  font-size: 0.85rem;
  color: #666;
}

.booking-detail-label {
  font-weight: 600;
  color: #444;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #aaa;
  font-size: 0.95rem;
}

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

.stat-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #f59e0b;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: #888;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.dashboard-subtitle {
  color: var(--text-muted);
  margin: 4px 0 20px;
  font-size: 0.92rem;
}

.analytics-content {
  margin-top: 28px;
}

.analytics-heading {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 16px;
}

.analytics-heading h3,
.demo-data-tool h3 {
  color: var(--text);
  font-size: 1.08rem;
  margin-top: 2px;
}

.analytics-eyebrow {
  color: var(--accent-dark);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.analytics-chip {
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.32);
  border-radius: 999px;
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 7px 11px;
  white-space: nowrap;
}

.analytics-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.analytics-panel {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(13, 27, 62, 0.07);
  padding: 18px;
  min-width: 0;
}

.panel-title {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.panel-title small,
.rank-details span {
  color: var(--text-muted);
  display: block;
  font-size: 0.73rem;
  font-weight: 500;
  margin-top: 2px;
}

.panel-title > b {
  color: var(--accent-dark);
  font-size: 0.92rem;
  white-space: nowrap;
}

.trend-chart {
  align-items: flex-end;
  display: flex;
  gap: 10px;
  height: 185px;
  padding-top: 25px;
}

.trend-column {
  align-items: center;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
  min-width: 0;
  position: relative;
}

.trend-bar {
  background: linear-gradient(180deg, var(--accent-light), var(--accent-dark));
  border-radius: 7px 7px 2px 2px;
  min-height: 8px;
  transition: height 0.25s ease;
  width: 100%;
}

.trend-column > span {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 600;
}

.trend-value {
  color: var(--text-muted);
  font-size: 0.62rem;
  overflow: hidden;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}

.ranked-item {
  align-items: center;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 9px;
  padding: 11px 0;
}

.ranked-item:last-child {
  padding-bottom: 0;
}

.rank-number {
  align-items: center;
  background: rgba(245, 158, 11, 0.16);
  border-radius: 50%;
  color: var(--accent-dark);
  display: flex;
  flex: 0 0 24px;
  font-size: 0.72rem;
  font-weight: 800;
  height: 24px;
  justify-content: center;
}

.rank-details {
  min-width: 0;
  flex: 1;
}

.rank-details strong {
  color: var(--text);
  display: block;
  font-size: 0.77rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ranked-item > b {
  color: var(--accent-dark);
  font-size: 0.75rem;
  white-space: nowrap;
}

.bar-row {
  border-top: 1px solid var(--border);
  padding: 10px 0;
}

.bar-row:last-child {
  padding-bottom: 0;
}

.bar-row-label {
  color: var(--text);
  display: flex;
  font-size: 0.78rem;
  justify-content: space-between;
  margin-bottom: 6px;
}

.bar-row-label b {
  color: var(--accent-dark);
}

.bar-track {
  background: rgba(13, 27, 62, 0.08);
  border-radius: 999px;
  height: 7px;
  overflow: hidden;
}

.bar-track span {
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  border-radius: inherit;
  display: block;
  height: 100%;
}

.analytics-empty {
  color: var(--text-muted);
  font-size: 0.84rem;
  padding: 12px 0 2px;
}

.demo-data-tool {
  align-items: center;
  background: linear-gradient(120deg, rgba(13, 27, 62, 0.98), rgba(26, 45, 90, 0.98));
  border-radius: 14px;
  color: #fff;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 18px 20px;
}

.demo-data-tool h3 {
  color: #fff;
}

.demo-data-tool p {
  color: #cbd5e1;
  font-size: 0.8rem;
  margin-top: 3px;
  max-width: 590px;
}

.demo-data-tool .analytics-eyebrow {
  color: var(--accent-light);
}

.demo-data-tool .btn-primary[disabled] {
  cursor: wait;
  opacity: 0.7;
}

@media (max-width: 980px) {
  .analytics-layout {
    grid-template-columns: 1fr 1fr;
  }
  .trend-panel {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .analytics-layout {
    grid-template-columns: 1fr;
  }
  .trend-panel {
    grid-column: auto;
  }
  .analytics-heading,
  .demo-data-tool {
    align-items: flex-start;
    flex-direction: column;
  }
  .demo-data-tool .btn-primary {
    width: 100%;
  }
  .trend-chart {
    gap: 6px;
  }
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  padding: 20px;
}

.modal {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
}

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

.modal-header h3 {
  font-size: 1.2rem;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #aaa;
  line-height: 1;
}

.modal-close:hover {
  color: #333;
}

.modal-parking-info {
  background: #f8f9fa;
  padding: 14px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.modal-parking-info strong {
  display: block;
  margin-bottom: 4px;
}

.cost-preview {
  background: #fff3e0;
  padding: 14px;
  border-radius: 8px;
  margin: 16px 0;
  font-weight: 600;
  text-align: center;
  font-size: 1.05rem;
  color: #e65100;
}

.confirmation-modal {
  text-align: center;
}

.confirmation-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4caf50;
  color: #fff;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.confirmation-details {
  text-align: left;
  background: #f8f9fa;
  padding: 16px;
  border-radius: 8px;
  margin: 16px 0;
  font-size: 0.9rem;
  line-height: 1.8;
}

.user-greeting {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.auth-container {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.auth-container h2 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.auth-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1.5px solid #e0e0e0;
}

.auth-tab {
  flex: 1;
  padding: 10px 20px;
  border: none;
  background: #fafafa;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  color: #888;
  transition: all 0.2s;
}

.auth-tab.active {
  background: #f59e0b;
  color: #fff;
}

.auth-tab:hover:not(.active) {
  background: #f0f0f0;
}

.profile-card {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.profile-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #e8e8e8;
}

.profile-field:last-child {
  border-bottom: none;
}

.profile-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.profile-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: #1a1a2e;
}

.profile-actions {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.btn-secondary {
  background: transparent;
  color: #1a1a2e;
  border: 1.5px solid #e0e0e0;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-secondary:hover {
  border-color: #1a1a2e;
  background: #f8f9fa;
}

.btn-logout {
  color: #f59e0b;
  border-color: #f59e0b;
}

.btn-logout:hover {
  background: #fff0f3;
}

.location-access-section {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-location {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: #fff;
  color: #1976d2;
  border: 2px solid #1976d2;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.btn-location:hover {
  background: #e8f4fd;
}

.location-icon {
  font-size: 1.1rem;
}

.location-status {
  font-size: 0.8rem;
  font-weight: 500;
}

.location-loading {
  color: #1976d2;
}

.location-success {
  color: #2e7d32;
}

.location-warning {
  color: #e65100;
}

.location-error {
  color: #c62828;
}

.guest-notice {
  background: #e8f4fd;
  padding: 12px 16px;
  border-radius: 8px;
  margin-bottom: 12px;
  font-size: 0.85rem;
  color: #1976d2;
}

.guest-notice a {
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
}

.guest-notice a:hover {
  text-decoration: underline;
}

.support-container {
  max-width: 900px;
  margin: 0 auto;
}

.support-hero {
  text-align: center;
  padding: 20px 0 28px;
}

.support-hero h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.support-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 1px solid #eee;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.support-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
}

.support-card > p {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 16px;
  line-height: 1.5;
}

.support-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 16px;
}

.support-icon-call {
  background: #e8f5e9;
  color: #2e7d32;
}

.support-icon-whatsapp {
  background: #e8f5e9;
  color: #25d366;
}

.support-icon-email {
  background: #e8f4fd;
  color: #1976d2;
}

.support-icon-faq {
  background: #fff3e0;
  color: #e65100;
}

.support-link {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f59e0b;
  text-decoration: none;
  margin-bottom: 8px;
}

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

.support-detail {
  font-size: 0.75rem;
  color: #aaa;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.faq-list {
  text-align: left;
  margin-top: 8px;
}

.faq-item {
  border-bottom: 1px solid #f0f0f0;
  padding: 12px 0;
}

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

.faq-item summary {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.2rem;
  font-weight: 400;
  color: #f59e0b;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  font-size: 0.85rem;
  color: #666;
  margin-top: 10px;
  line-height: 1.6;
  padding-right: 20px;
}

.support-footer {
  text-align: center;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.support-footer p {
  font-weight: 600;
  color: #1a1a2e;
  font-size: 0.95rem;
}

.support-hours {
  font-weight: 400 !important;
  color: #888 !important;
  font-size: 0.85rem !important;
  margin-top: 4px;
}

.support-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(233,69,96,0.4);
  z-index: 150;
  transition: transform 0.2s, box-shadow 0.2s;
  font-size: 1rem;
}

.support-fab:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(233,69,96,0.5);
}

.fab-label {
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}

.dinepark-hero {
  text-align: center;
  padding: 32px 0 24px;
}

.dinepark-hero h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.dinepark-hero p {
  color: #666;
  font-size: 0.95rem;
}

.restaurant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 16px;
}

.restaurant-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid #eee;
  position: relative;
}

.restaurant-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.restaurant-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 8px;
  margin-top: 4px;
}

.restaurant-cuisine {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  background: #ede9fe;
  color: #7c3aed;
  margin-bottom: 10px;
}

.restaurant-location {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 8px;
}

.restaurant-rating {
  font-size: 0.85rem;
  color: #ff9800;
  margin-bottom: 14px;
}

.btn-find-parking {
  width: 100%;
  padding: 10px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-find-parking:hover {
  background: #43a047;
}

.nearby-parking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0 16px;
  padding: 16px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nearby-parking-header h2 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1a1a2e;
}

.partner-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 600;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.save-location-section {
  margin: 16px 0;
  padding: 16px;
  background: #f0f7ff;
  border-radius: 8px;
  border: 1px solid #d0e4f7;
}

.save-location-section .form-group {
  margin-bottom: 12px;
}

.location-info {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.location-modal-body .location-status,
.save-location-section .location-status {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 12px;
}

.location-found {
  background: #e8f5e9;
  color: #2e7d32;
}

.btn-find-car {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #4caf50;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
  text-decoration: none;
}

.btn-find-car:hover {
  background: #43a047;
}

.btn-mark-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #0097a7;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-mark-location:hover {
  background: #00838f;
}

.btn-valet-upload {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #7c3aed;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}

.btn-valet-upload:hover {
  background: #6d28d9;
}

.location-note {
  font-size: 0.8rem;
  font-style: italic;
  color: #888;
  margin-top: 4px;
}

.valet-info {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 16px;
  line-height: 1.5;
}

.valet-photos-gallery {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.valet-photos-gallery img {
  width: 80px;
  height: 60px;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: transform 0.2s;
}

.valet-photos-gallery img:hover {
  transform: scale(1.05);
}

.booking-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.booking-car-location {
  margin-top: 10px;
  padding: 10px 14px;
  background: #e8f5e9;
  border-radius: 8px;
  font-size: 0.85rem;
  color: #2e7d32;
}

.booking-car-location .location-coords {
  font-size: 0.75rem;
  color: #666;
  margin-top: 2px;
}

.valet-modal-body {
  padding-top: 4px;
}

.location-modal-body {
  padding-top: 4px;
}

@media (max-width: 768px) {
  .filter-bar {
    flex-direction: column;
  }

  .filter-bar select,
  .filter-bar input {
    min-width: 100%;
  }

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

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

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

  .nearby-parking-header {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .card-image-carousel {
    height: 160px;
  }

  .image-preview {
    width: 80px;
    height: 64px;
  }

  .modal-gallery img {
    height: 100px;
    min-width: 130px;
  }
}

.payment-method-section {
  margin: 20px 0;
}

.payment-label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1a1a2e;
  display: block;
  margin-bottom: 6px;
}

.payment-timing-note {
  margin: 0 0 12px;
  color: #5f6675;
  font-size: 0.86rem;
  line-height: 1.45;
}

.payment-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.payment-option {
  cursor: pointer;
}

.payment-option input[type="radio"] {
  display: none;
}

.payment-option-content {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  transition: all 0.2s;
  background: #fafafa;
}

.payment-option input[type="radio"]:checked + .payment-option-content {
  border-color: #e74c6f;
  background: #fef0f4;
}

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

.payment-option-content div {
  display: flex;
  flex-direction: column;
}

.payment-option-content strong {
  font-size: 0.85rem;
  color: #1a1a2e;
}

.payment-option-content small {
  font-size: 0.72rem;
  color: #888;
  margin-top: 2px;
}

.wallet-section,
.fastag-section {
  margin-top: 32px;
}

.wallet-section h3,
.fastag-section h3 {
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 16px;
}

.wallet-card {
  background: linear-gradient(135deg, #1a1a2e 0%, #2d2d5e 100%);
  border-radius: 16px;
  padding: 24px;
  color: white;
}

.wallet-balance-display {
  text-align: center;
  margin-bottom: 20px;
}

.wallet-balance-label {
  display: block;
  font-size: 0.85rem;
  opacity: 0.8;
  margin-bottom: 4px;
}

.wallet-balance-amount {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #4ade80;
}

.wallet-actions {
  margin-top: 16px;
}

.topup-row {
  display: flex;
  gap: 10px;
}

.topup-input {
  flex: 1;
  padding: 10px 14px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  background: rgba(255,255,255,0.15);
  color: white;
}

.topup-input::placeholder {
  color: rgba(255,255,255,0.5);
}

.btn-topup {
  padding: 10px 20px;
  white-space: nowrap;
}

.topup-presets {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}

.preset-btn {
  flex: 1;
  padding: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.2s;
}

.preset-btn:hover {
  background: rgba(255,255,255,0.25);
}

.wallet-transactions {
  margin-top: 20px;
}

.wallet-transactions h4 {
  font-size: 1rem;
  color: #1a1a2e;
  margin-bottom: 12px;
}

.transaction-list {
  max-height: 300px;
  overflow-y: auto;
}

.transaction-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 8px;
  border-left: 3px solid #ddd;
}

.transaction-item.credit {
  border-left-color: #4ade80;
}

.transaction-item.debit {
  border-left-color: #fb923c;
}

.transaction-item.info {
  border-left-color: #60a5fa;
}

.transaction-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.transaction-desc {
  font-size: 0.85rem;
  color: #333;
  font-weight: 500;
}

.transaction-date {
  font-size: 0.75rem;
  color: #999;
}

.transaction-amount {
  font-weight: 700;
  font-size: 0.95rem;
}

.transaction-amount.credit {
  color: #16a34a;
}

.transaction-amount.debit {
  color: #ea580c;
}

.fastag-card {
  background: white;
  border: 2px solid #e8e8e8;
  border-radius: 16px;
  padding: 24px;
}

.fastag-info p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.fastag-status {
  margin-bottom: 16px;
}

.fastag-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.fastag-badge.not-linked {
  background: #fef3c7;
  color: #92400e;
}

.fastag-badge.linked {
  background: #d1fae5;
  color: #065f46;
}

.fastag-form .form-group {
  margin-bottom: 12px;
}

.fastag-linked-display {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.fastag-number {
  font-family: monospace;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a2e;
  letter-spacing: 1px;
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.8rem;
}

.empty-state {
  text-align: center;
  color: #999;
  padding: 20px;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .payment-options {
    grid-template-columns: 1fr;
  }

  .topup-presets {
    flex-wrap: wrap;
  }

  .preset-btn {
    flex: 0 0 calc(50% - 4px);
  }
}

.mobile-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  z-index: 200;
  padding: 4px 0;
  padding-bottom: max(4px, env(safe-area-inset-bottom));
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
}

.mobile-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 6px 4px;
  background: none;
  border: none;
  color: #999;
  font-size: 0.65rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-btn.active {
  color: #e74c6f;
}

.mobile-nav-btn svg {
  width: 22px;
  height: 22px;
}

.mobile-more-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: flex-end;
}

.more-menu-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.more-menu-sheet {
  position: relative;
  width: 100%;
  background: white;
  border-radius: 20px 20px 0 0;
  padding: 12px 20px;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  animation: slideUp 0.25s ease;
}

@keyframes slideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.more-menu-handle {
  width: 40px;
  height: 4px;
  background: #ddd;
  border-radius: 4px;
  margin: 0 auto 16px;
}

.more-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 14px 8px;
  background: none;
  border: none;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;
  color: #333;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

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

.more-menu-item svg {
  color: #666;
  flex-shrink: 0;
}

.install-prompt {
  position: fixed;
  bottom: 70px;
  left: 12px;
  right: 12px;
  z-index: 250;
  display: flex;
  justify-content: center;
}

.install-prompt-content {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 12px 16px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  max-width: 420px;
  width: 100%;
}

.install-prompt-content img {
  border-radius: 10px;
  flex-shrink: 0;
}

.install-prompt-content div {
  flex: 1;
  min-width: 0;
}

.install-prompt-content strong {
  font-size: 0.9rem;
  color: #1a1a2e;
  display: block;
}

.install-prompt-content p {
  font-size: 0.75rem;
  color: #888;
  margin-top: 2px;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
  white-space: nowrap;
}

.btn-text {
  background: none;
  border: none;
  color: #999;
  font-size: 0.75rem;
  cursor: pointer;
  padding: 4px 8px;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }

  header nav {
    display: none;
  }

  body {
    padding-bottom: 68px;
  }

  main {
    padding-bottom: 20px;
  }

  .header-inner {
    flex-direction: row;
    height: 52px;
    padding: 0;
  }

  .user-greeting {
    font-size: 0.75rem;
  }

  .search-hero h1 {
    font-size: 1.3rem;
  }

  .search-hero p {
    font-size: 0.85rem;
  }

  .modal {
    border-radius: 20px 20px 0 0;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    max-height: 90vh;
    overflow-y: auto;
    transform: none;
    margin: 0;
    padding: 24px 20px;
    padding-bottom: max(24px, env(safe-area-inset-bottom));
  }

  .modal-overlay {
    align-items: flex-end;
  }

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

  input, select, textarea {
    font-size: 16px !important;
  }
}

/* ── Header Actions ────────────────────────────── */
.header-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.theme-toggle {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  font-size: 1.1rem;
  cursor: pointer;
  color: #f59e0b;
  padding: 5px 9px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
  line-height: 1;
}
.theme-toggle:hover {
  background: rgba(245,158,11,0.15);
  transform: rotate(15deg);
}

/* ── Dark Mode overrides ────────────────────────── */
body.dark-mode .parking-card,
body.dark-mode .filter-bar,
body.dark-mode .amenity-filters,
body.dark-mode main .card,
body.dark-mode .booking-card,
body.dark-mode .wallet-card,
body.dark-mode .fastag-card,
body.dark-mode .transaction-item,
body.dark-mode .support-card,
body.dark-mode .admin-card,
body.dark-mode .form-section,
body.dark-mode .provider-form {
  background: #1a2d5a !important;
  border-color: #1e3a6e !important;
  color: #f1f5f9 !important;
}
body.dark-mode .filter-bar select,
body.dark-mode .filter-bar input,
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
  background: #0d1b3e !important;
  border-color: #1e3a6e !important;
  color: #f1f5f9 !important;
}
body.dark-mode .search-hero h1,
body.dark-mode h2, body.dark-mode h3, body.dark-mode h4 {
  color: #f1f5f9 !important;
}
body.dark-mode p, body.dark-mode label, body.dark-mode span:not(.notif-dot):not(.logo-text span):not(.verified-badge) {
  color: #94a3b8;
}
body.dark-mode .nav-btn {
  color: #94a3b8;
}
body.dark-mode .nav-btn.active {
  color: #0d1b3e;
  background: #f59e0b;
}

/* ── Notification Bell ─────────────────────────── */
.notif-bell {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  position: relative;
  color: #fff;
  padding: 4px 8px;
  margin-left: 8px;
}
.notif-dot {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
}
.notif-panel {
  position: fixed;
  top: 60px;
  right: 16px;
  width: 300px;
  background: #16213e;
  border: 1px solid #0f3460;
  border-radius: 12px;
  z-index: 999;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.notif-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid #0f3460;
  color: #fff;
}
.notif-panel-body {
  padding: 16px;
}

/* ── Verified Badge ────────────────────────────── */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  background: #1565c0;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ── WhatsApp Location Button ──────────────────── */
.btn-whatsapp-location {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 16px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
}
.btn-whatsapp-location:hover { background: #1ebe5d; }

/* ── Admin Panel ───────────────────────────────── */
.admin-container { max-width: 900px; margin: 0 auto; padding: 24px 16px; }
.admin-listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 16px;
}
.admin-listing-card {
  background: #16213e;
  border: 1px solid #0f3460;
  border-radius: 12px;
  padding: 16px;
}
.admin-listing-card.admin-verified { border-color: #1565c0; }
.admin-listing-name { font-weight: 700; font-size: 1rem; margin-bottom: 6px; }
.admin-listing-meta { font-size: 0.82rem; color: #aaa; margin-bottom: 3px; }
.admin-actions { margin-top: 12px; }
