/* ============================================================
   SeniorPro Marketplace - Main Stylesheet
   ============================================================ */
:root {
  --primary:        #008000;
  --primary-light:  #355E3B;
  --primary-dark:   #0f2340;
  --accent:         #c8971a;
  --accent-light:   #e0ad2e;
  --success:        #198754;
  --info:           #0dcaf0;
  --warning:        #ffc107;
  --danger:         #dc3545;
  --light-bg:       #f8f5f0;
  --card-shadow:    0 2px 20px rgba(26,60,94,.10);
  --card-radius:    16px;
  --sidebar-width:  260px;
  --header-height:  68px;
  --font-body:      'Inter', sans-serif;
  --font-heading:   'Playfair Display', serif;
}

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font-body); color: #333; background: #fff; font-size: 15px; }
h1,h2,h3,h4,h5 { font-family: var(--font-heading); }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-light); }

/* ── Announcement Bar ──────────────────────────────────── */
.announcement-bar {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  letter-spacing: .3px;
}

/* ── Navbar ────────────────────────────────────────────── */
.navbar-custom {
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26,60,94,.08);
  padding: 12px 0;
}
.brand-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem; flex-shrink: 0;
}
.brand-text { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; color: var(--primary); }
.brand-accent { color: var(--accent); }
.navbar-custom .nav-link { color: #555 !important; font-weight: 500; padding: 8px 14px !important; border-radius: 8px; transition: all .2s; }
.navbar-custom .nav-link:hover { color: var(--primary) !important; background: rgba(26,60,94,.06); }

/* ── Buttons ───────────────────────────────────────────── */
.btn-primary { background: var(--primary); border-color: var(--primary); font-weight: 500; }
.btn-primary:hover, .btn-primary:focus { background: var(--primary-light); border-color: var(--primary-light); }
.btn-outline-primary { color: var(--primary); border-color: var(--primary); font-weight: 500; }
.btn-outline-primary:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ── Hero Section ──────────────────────────────────────── */
.hero-section {
  position: relative;
  overflow: hidden;

  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 60px 0;


  background:
    linear-gradient(
      rgba(0, 0, 0, 0.5),
      rgba(0, 0, 0, 0.5)
    ),
    url('../img/african-woman.jpg');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-badge {
  display: inline-flex; align-items: center;
  background: rgba(200,151,26,.2); color: var(--accent-light);
  border: 1px solid rgba(200,151,26,.4);
  padding: 6px 16px; border-radius: 50px; font-size: .85rem; font-weight: 600;
}
.hero-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.2; }
.text-gradient { background: linear-gradient(135deg, var(--accent-light), #f0d080); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-subtitle { font-size: 1.1rem; opacity: .85; line-height: 1.7; }
.hero-stats { gap: 24px; }
.hero-stat { display: flex; flex-direction: column; }
.stat-number { font-size: 1.6rem; font-weight: 700; color: var(--accent-light); line-height: 1; }
.stat-label { font-size: .8rem; opacity: .75; margin-top: 4px; }
.hero-floating-card {
  background: white; border-radius: 16px; padding: 16px 20px;
  position: absolute; min-width: 220px;
  animation: float 3s ease-in-out infinite;
}
.card-1 { top: 15%; right: 10%; animation-delay: 0s; }
.card-2 { bottom: 20%; right: 5%; animation-delay: 1.5s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
.hero-card-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.hero-card-avatar.gold { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.min-vh-70 { min-height: 70vh; }

/* ── Search Section ────────────────────────────────────── */
.search-section { background: #fff; position: relative; z-index: 10; }
.search-card {
  background: white; border-radius: var(--card-radius);
  padding: 28px 32px; box-shadow: var(--card-shadow);
  border: 1px solid rgba(26,60,94,.08);
}

/* ── Section Styling ───────────────────────────────────── */
.section-header { max-width: 620px; margin: 0 auto; }
.section-badge {
  display: inline-flex; align-items: center;
  background: rgba(26,60,94,.07); color: var(--primary);
  border: 1px solid rgba(26,60,94,.15);
  padding: 6px 16px; border-radius: 50px; font-size: .82rem; font-weight: 600;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; color: var(--primary); }
.section-sub { color: #666; font-size: 1rem; }
.bg-light-subtle { background: var(--light-bg); }

/* ── Category Cards ────────────────────────────────────── */
.category-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 24px 16px; border-radius: var(--card-radius);
  background: white; border: 2px solid rgba(26,60,94,.07);
  transition: all .25s; cursor: pointer;
}
.category-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,60,94,.12); }
.category-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(26,60,94,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary); margin-bottom: 10px;
  transition: all .25s;
}
.category-card:hover .category-icon { background: var(--primary); color: white; }
.category-name { font-weight: 600; color: var(--primary); margin-bottom: 4px; font-size: .95rem; }
.category-count { font-size: .78rem; color: #999; }

/* ── Pro Card ──────────────────────────────────────────── */
.pro-card {
  background: white; border-radius: var(--card-radius); overflow: hidden;
  border: 1px solid rgba(26,60,94,.08); box-shadow: var(--card-shadow);
  transition: all .25s;
}
.pro-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(26,60,94,.14); }
.pro-mini-card {
  background: white; border-radius: var(--card-radius);
  border: 1px solid rgba(26,60,94,.08); box-shadow: var(--card-shadow);
  transition: all .25s;
}
.pro-mini-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(26,60,94,.12); }

/* ── How It Works ──────────────────────────────────────── */
.how-card {
  padding: 36px 28px; border-radius: var(--card-radius);
  background: white; border: 2px solid rgba(26,60,94,.07);
  position: relative; transition: all .25s;
}
.how-card:hover, .how-card-featured { border-color: var(--primary); box-shadow: var(--card-shadow); }
.how-card-featured { background: linear-gradient(135deg, var(--primary), var(--primary-light)) !important; color: white; }
.how-card-featured p { color: rgba(255,255,255,.8) !important; }
.how-step {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--primary); color: white; font-weight: 700;
  display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.how-card-featured .how-step { background: white; color: var(--primary); }
.how-icon { font-size: 2rem; color: var(--primary); }
.how-card-featured .how-icon { color: rgba(255,255,255,.9); }

/* ── CTA Section ───────────────────────────────────────── */
.cta-section { background: var(--light-bg); }
.cta-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--card-radius); padding: 56px 32px; position: relative; overflow: hidden;
}
.cta-icon { font-size: 3rem; opacity: .2; position: absolute; top: 20px; right: 40px; }

/* ── Auth Pages ─────────────────────────────────────────── */
.auth-section { background: var(--light-bg); min-height: calc(100vh - 120px); }
.auth-card {
  background: white; border-radius: var(--card-radius);
  padding: 40px 36px; border: 1px solid rgba(26,60,94,.08);
}
.auth-logo .brand-icon { width: 56px; height: 56px; font-size: 1.4rem; }
.role-tabs {
  display: flex; gap: 0;
  border: 2px solid rgba(26,60,94,.1);
  border-radius: 12px; overflow: hidden;
}
.role-tab {
  flex: 1; text-align: center; padding: 12px 16px;
  font-weight: 600; color: #666; cursor: pointer; transition: all .2s;
  font-size: .9rem;
}
.role-tab.active { background: var(--primary); color: white; }
.role-tab:not(.active):hover { background: rgba(26,60,94,.06); color: var(--primary); }

/* ── Dashboard Layout ──────────────────────────────────── */
.dashboard-body { background: #f0f2f5; overflow-x: hidden; }
.admin-body { background: #0f172a; }
.admin-body .dashboard-main { background: #f0f2f5; }

.sidebar {
  position: fixed; top: 0; left: 0; bottom: 0;
  width: var(--sidebar-width);
  background: linear-gradient(180deg, var(--primary-dark), var(--primary));
  z-index: 1000; overflow-y: auto; transition: transform .3s ease;
  display: flex; flex-direction: column;
}
.admin-sidebar {
  background: linear-gradient(180deg, #0f172a, #1e293b);
}
.sidebar-brand {
  padding: 20px 20px 16px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sidebar-profile {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px; background: rgba(0,0,0,.15);
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.sidebar-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  object-fit: cover; border: 2px solid rgba(255,255,255,.3);
}
.sidebar-nav { padding: 12px 0; flex: 1; }
.sidebar-section-label {
  padding: 8px 20px 4px;
  font-size: .7rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,.4);
}
.sidebar-link {
  display: flex; align-items: center; gap: 12px;
  padding: 11px 20px; color: rgba(255,255,255,.75);
  font-weight: 500; font-size: .88rem; transition: all .2s;
  border-left: 3px solid transparent;
}
.sidebar-link i { width: 18px; text-align: center; font-size: .95rem; flex-shrink: 0; }
.sidebar-link:hover { background: rgba(255,255,255,.08); color: white; border-left-color: rgba(255,255,255,.3); }
.sidebar-link.active { background: rgba(255,255,255,.12); color: white; border-left-color: var(--accent); }
.sidebar-link.text-danger-soft { color: rgba(255,100,100,.75); }
.sidebar-link.text-danger-soft:hover { color: #ff6b6b; }

.dashboard-wrapper {
  margin-left: var(--sidebar-width);
  display: flex; flex-direction: column; min-height: 100vh;
  transition: margin-left .3s ease;
}
.dashboard-header {
  height: var(--header-height);
  background: white; border-bottom: 1px solid rgba(0,0,0,.07);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px; position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.dashboard-main { padding: 28px 24px; flex: 1; }
.sidebar-toggle { padding: 0; color: #666; }
.sidebar-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,.5); z-index: 999;
}

@media (max-width: 991.98px) {
  .sidebar { transform: translateX(-100%); }
  .sidebar.open { transform: translateX(0); }
  .sidebar-overlay.open { display: block; }
  .dashboard-wrapper { margin-left: 0; }
}

/* ── Stat Cards ─────────────────────────────────────────── */
.stat-card {
  background: white; border-radius: var(--card-radius);
  padding: 22px 20px; box-shadow: var(--card-shadow);
  border: 1px solid rgba(0,0,0,.05); position: relative; overflow: hidden;
}
.stat-card::before {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  opacity: .08;
}
.stat-primary::before  { background: var(--primary); }
.stat-success::before  { background: var(--success); }
.stat-warning::before  { background: var(--warning); }
.stat-info::before     { background: var(--info); }
.stat-icon { font-size: 1.5rem; margin-bottom: 10px; }
.stat-primary .stat-icon  { color: var(--primary); }
.stat-success .stat-icon  { color: var(--success); }
.stat-warning .stat-icon  { color: var(--warning); }
.stat-info .stat-icon     { color: var(--info); }
.stat-value { font-size: 1.7rem; font-weight: 700; color: var(--primary); line-height: 1; margin-bottom: 4px; font-family: var(--font-body); }
.stat-label { font-size: .8rem; color: #888; font-weight: 500; }
.stat-sub { font-size: .75rem; margin-top: 4px; }

/* ── Dash Cards ─────────────────────────────────────────── */
.dash-card {
  background: white; border-radius: var(--card-radius);
  box-shadow: var(--card-shadow); border: 1px solid rgba(0,0,0,.05); overflow: hidden;
}
.dash-card-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 20px; border-bottom: 1px solid rgba(0,0,0,.06);
}

/* ── Booking Cards ──────────────────────────────────────── */
.booking-card {
  background: white; border-radius: var(--card-radius);
  box-shadow: var(--card-shadow); border: 1px solid rgba(0,0,0,.05); overflow: hidden;
  transition: box-shadow .2s;
}
.booking-card:hover { box-shadow: 0 8px 28px rgba(26,60,94,.12); }
.booking-card-header {
  padding: 14px 20px; background: rgba(26,60,94,.02);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.booking-card-body { padding: 20px; }
.booking-ref-badge {
  font-family: monospace; font-size: .85rem; font-weight: 700;
  background: rgba(26,60,94,.06); color: var(--primary);
  padding: 4px 12px; border-radius: 6px;
}

/* ── Booking Tabs ───────────────────────────────────────── */
.booking-tabs {
  display: flex; gap: 4px; flex-wrap: wrap;
}
.booking-tab {
  padding: 8px 20px; border-radius: 50px; font-weight: 500; font-size: .88rem;
  color: #666; border: 2px solid rgba(0,0,0,.1); transition: all .2s;
}
.booking-tab:hover { border-color: var(--primary); color: var(--primary); }
.booking-tab.active { background: var(--primary); border-color: var(--primary); color: white; }

/* ── Service Cards ──────────────────────────────────────── */
.service-manage-card {
  background: white; border-radius: var(--card-radius);
  box-shadow: var(--card-shadow); border: 1px solid rgba(0,0,0,.05); overflow: hidden;
  transition: all .25s;
}
.service-manage-card:hover { box-shadow: 0 8px 28px rgba(26,60,94,.14); }
.service-manage-img { height: 160px; overflow: hidden; position: relative; }
.service-manage-img img { width: 100%; height: 100%; object-fit: cover; }
.service-manage-placeholder {
  height: 160px; background: rgba(26,60,94,.04);
  display: flex; align-items: center; justify-content: center; position: relative;
}
.service-manage-body { padding: 16px; }
.service-type-badge { position: absolute; top: 12px; left: 12px; }
.service-img-placeholder {
  height: 140px; background: rgba(26,60,94,.04);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border-radius: 12px; border: 2px dashed rgba(26,60,94,.15);
}

/* ── Service Listing Card (public profile) ──────────────── */
.service-listing-card {
  background: white; border-radius: 12px; padding: 20px;
  border: 1px solid rgba(26,60,94,.1); transition: all .2s;
}
.service-listing-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,60,94,.1); }

/* ── Profile Hero ───────────────────────────────────────── */
.profile-hero { background: var(--light-bg); border-bottom: 1px solid rgba(26,60,94,.1); }
.profile-photo-wrapper { position: relative; display: inline-block; }
.profile-hero-photo { width: 140px; height: 140px; object-fit: cover; border: 4px solid white; box-shadow: var(--card-shadow); }
.availability-dot {
  position: absolute; bottom: 8px; right: 8px;
  width: 18px; height: 18px; border-radius: 50%; border: 3px solid white;
}
.availability-dot.available  { background: var(--success); }
.availability-dot.busy        { background: var(--warning); }
.availability-dot.unavailable { background: var(--danger); }
.booking-summary-card {
  background: white; border-radius: var(--card-radius);
  padding: 24px; border: 2px solid rgba(26,60,94,.1);
}
.booking-summary-features { display: flex; flex-direction: column; gap: 8px; }
.feature-item { font-size: .88rem; color: #555; }
.profile-section { }
.section-title-sm { font-size: 1.2rem; font-weight: 700; color: var(--primary); padding-bottom: 12px; border-bottom: 2px solid rgba(26,60,94,.1); margin-bottom: 20px; }
.profile-bio { line-height: 1.8; color: #555; }
.profile-info-card { background: white; border-radius: var(--card-radius); padding: 20px; box-shadow: var(--card-shadow); border: 1px solid rgba(0,0,0,.06); }
.profile-info-list li { display: flex; align-items: center; gap: 12px; padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,.05); font-size: .9rem; }
.profile-info-list li:last-child { border-bottom: none; }
.review-card { background: rgba(26,60,94,.02); border-radius: 12px; padding: 16px; border: 1px solid rgba(26,60,94,.08); }
.stars-display { display: flex; gap: 3px; }

/* ── Booking Create Page ─────────────────────────────────── */
.booking-steps {
  display: flex; align-items: center; justify-content: center; gap: 0;
}
.step { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.step-num {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(26,60,94,.1); color: #666;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem; transition: all .3s;
}
.step.active .step-num { background: var(--primary); color: white; }
.step-label { font-size: .78rem; color: #999; font-weight: 500; }
.step.active .step-label { color: var(--primary); font-weight: 600; }
.step-line { flex: 1; height: 2px; background: rgba(26,60,94,.15); min-width: 60px; }
.booking-info-box {
  background: rgba(26,60,94,.04); border-radius: 10px; padding: 12px;
}
.payment-method-card { cursor: pointer; }
.payment-method-inner {
  border: 2px solid rgba(0,0,0,.1); border-radius: 14px;
  padding: 20px; text-align: center; transition: all .2s; position: relative;
}
.payment-method-inner:hover { border-color: var(--primary); background: rgba(26,60,94,.02); }
.payment-method-inner.selected { border-color: var(--primary); background: rgba(26,60,94,.05); }
.check-mark {
  position: absolute; top: 10px; right: 10px;
  font-size: 1.1rem; color: var(--primary); opacity: 0; transition: all .2s;
}
.payment-method-inner.selected .check-mark { opacity: 1; }
.order-summary { border: 1px solid rgba(0,0,0,.1); }

/* ── Success Page ───────────────────────────────────────── */
.success-circle {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, #198754, #20c997);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: white; margin: 0 auto;
  box-shadow: 0 8px 24px rgba(25,135,84,.25);
  animation: popIn .5s cubic-bezier(.175,.885,.32,1.275);
}
@keyframes popIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }

/* ── Admin Cards ─────────────────────────────────────────── */
.admin-pro-card {
  background: white; border-radius: var(--card-radius);
  box-shadow: var(--card-shadow); border: 1px solid rgba(0,0,0,.06); overflow: hidden;
}
.admin-pro-card-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  padding: 16px;
}
.admin-pro-card-body { padding: 16px; }

/* ── Category Icon (admin) ──────────────────────────────── */
.category-icon-sm {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(26,60,94,.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 1rem;
}

/* ── Page Header ─────────────────────────────────────────── */
.page-header { margin-bottom: 8px; }

/* ── Empty States ────────────────────────────────────────── */
.empty-state { padding: 48px; }
.empty-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(26,60,94,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: rgba(26,60,94,.3); margin: 0 auto;
}

/* ── Client Dashboard Hero ──────────────────────────────── */
.client-dash-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* ── Photo Upload ────────────────────────────────────────── */
.photo-upload-wrapper { position: relative; display: inline-block; }
.photo-upload-btn {
  position: absolute; bottom: 4px; right: 4px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: white;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .85rem; border: 2px solid white;
  transition: all .2s;
}
.photo-upload-btn:hover { background: var(--primary-light); }

/* ── Star Rating Input ───────────────────────────────────── */
.star-rating-input { display: flex; gap: 6px; }
.star-btn {
  background: none; border: none; cursor: pointer;
  font-size: 1.8rem; color: #ccc; transition: all .15s; padding: 0;
}
.star-btn.active, .star-btn.hover { color: var(--warning); transform: scale(1.15); }

/* ── Notifications Dropdown ──────────────────────────────── */
.notif-dropdown { border-radius: 14px; border: 1px solid rgba(0,0,0,.1); box-shadow: 0 8px 32px rgba(0,0,0,.12); }
.dropdown-header { padding: 12px 16px; border-bottom: 1px solid rgba(0,0,0,.08); font-size: .9rem; }

/* ── Footer ──────────────────────────────────────────────── */
.footer-custom { background: #0d1f35; }
.footer-top { border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-heading { color: var(--accent-light); font-size: .8rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; color: rgba(255,255,255,.55); font-size: .88rem; }
.footer-links a { color: rgba(255,255,255,.55); transition: color .2s; font-size: .88rem; }
.footer-links a:hover { color: var(--accent-light); }
.footer-bottom { background: rgba(0,0,0,.3); }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.1); color: rgba(255,255,255,.7);
  display: flex; align-items: center; justify-content: center;
  font-size: .88rem; transition: all .2s;
}
.social-link:hover { background: var(--accent); color: white; }

/* ── Utilities ───────────────────────────────────────────── */
.font-monospace { font-family: 'Courier New', monospace !important; font-size: .85rem; }
.bg-primary-subtle { background: rgba(26,60,94,.06) !important; }
.bg-success-subtle { background: rgba(25,135,84,.08) !important; }
.bg-warning-subtle { background: rgba(255,193,7,.1) !important; }
.bg-danger-subtle  { background: rgba(220,53,69,.08) !important; }
.bg-info-subtle    { background: rgba(13,202,240,.08) !important; }
.text-primary { color: var(--primary) !important; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767.98px) {
  .hero-section { min-height: auto; padding: 48px 0; }
  .search-card { padding: 20px 16px; }
  .auth-card { padding: 28px 20px; }
  .dashboard-main { padding: 16px; }
  .booking-steps { gap: 4px; }
  .step-line { min-width: 30px; }
  .booking-tabs { gap: 6px; }
  .booking-tab { padding: 6px 14px; font-size: .8rem; }
  .profile-hero-photo { width: 100px; height: 100px; }
  .booking-summary-card { margin-top: 0; }
}
@media (max-width: 575.98px) {
  .hero-title { font-size: 2rem; }
  .stat-card { padding: 16px 14px; }
  .stat-value { font-size: 1.4rem; }
}

/* ── Custom Scrollbar ─────────────────────────────────────── */
.sidebar::-webkit-scrollbar { width: 4px; }
.sidebar::-webkit-scrollbar-track { background: transparent; }
.sidebar::-webkit-scrollbar-thumb { background: rgba(255,255,255,.2); border-radius: 4px; }
