@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
  --brand: #0c6b5c;
  --brand-dark: #084c41;
  --brand-mid: #148f7c;
  --brand-soft: #d8efe9;
  --brand-mist: #eef7f4;
  --ink: #14201d;
  --muted: #5a6b66;
  --line: #d5e4df;
  --surface: #f4f8f6;
  --white: #ffffff;
  --danger: #b42318;
  --warn: #b54708;
  --ok: #067647;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(20, 32, 29, .04), 0 12px 32px rgba(20, 32, 29, .06);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", sans-serif;
  --header-h: 76px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; }

a { color: var(--brand); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand-dark); }

h1, h2, h3, h4, .display-font {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--ink);
}

.text-brand { color: var(--brand) !important; }
.bg-brand { background-color: var(--brand) !important; }

/* Buttons */
.btn {
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: 10px;
  padding: .7rem 1.35rem;
  transition: transform .2s var(--ease), background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.btn:active { transform: translateY(1px); }
.btn-lg { padding: .9rem 1.7rem; font-size: 1.05rem; }
.btn-sm { padding: .4rem .9rem; font-size: .85rem; border-radius: 8px; }

.btn-brand {
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
}
.btn-brand:hover, .btn-brand:focus {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff;
  box-shadow: 0 8px 24px rgba(12, 107, 92, .25);
}
.btn-outline-brand {
  color: var(--brand);
  border: 1.5px solid var(--brand);
  background: transparent;
}
.btn-outline-brand:hover {
  background: var(--brand);
  color: #fff;
}
.btn-ghost {
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  background: #fff;
  color: var(--brand-dark);
  border-color: #fff;
}
.btn-light-soft {
  background: #fff;
  color: var(--brand-dark);
  border: 0;
}
.btn-light-soft:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

/* Forms */
.form-control, .form-select {
  border-radius: var(--radius-sm);
  border-color: var(--line);
  padding: .7rem .95rem;
  font-family: var(--font-body);
}
.form-control:focus, .form-select:focus {
  border-color: var(--brand-mid);
  box-shadow: 0 0 0 .2rem rgba(12, 107, 92, .12);
}
.form-label {
  font-weight: 600;
  font-size: .9rem;
  margin-bottom: .4rem;
}

/* Top bar */
.site-topbar {
  background: var(--brand-dark);
  color: rgba(255,255,255,.88);
  font-size: .82rem;
  padding: .45rem 0;
}
.site-topbar a { color: #fff; }
.site-topbar .sep { opacity: .35; margin: 0 .65rem; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s, box-shadow .25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(20,32,29,.06);
}
.site-header .navbar { min-height: var(--header-h); padding-top: .35rem; padding-bottom: .35rem; }
.site-header .navbar-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--brand-dark) !important;
  letter-spacing: -.03em;
}
.site-header .navbar-brand img { height: 40px; width: auto; }
.site-header .nav-link {
  color: var(--ink) !important;
  font-weight: 550;
  font-size: .95rem;
  padding: .5rem .85rem !important;
  position: relative;
}
.site-header .nav-link::after {
  content: "";
  position: absolute;
  left: .85rem;
  right: .85rem;
  bottom: .2rem;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.site-header .nav-link:hover::after,
.site-header .nav-link.active::after { transform: scaleX(1); }
.site-header .nav-link.active { color: var(--brand) !important; }
.navbar-toggler { border: 0; box-shadow: none !important; }

/* Full-bleed hero */
.hero-bleed {
  position: relative;
  min-height: calc(100vh - var(--header-h) - 34px);
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(8, 40, 35, .78) 0%, rgba(8, 40, 35, .45) 48%, rgba(8, 40, 35, .2) 100%),
    url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&w=2000&q=80') center/cover no-repeat;
}
.hero-bleed::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(20, 143, 124, .25), transparent 55%);
  pointer-events: none;
  animation: heroGlow 8s ease-in-out infinite alternate;
}
.hero-bleed .hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 5.5rem 0 4.5rem;
}
.hero-bleed .brand-mark {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  letter-spacing: -.04em;
  margin: 0 0 .85rem;
  max-width: 12ch;
  animation: riseIn .9s var(--ease) both;
}
.hero-bleed .hero-lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  max-width: 36ch;
  opacity: .92;
  margin-bottom: 1.75rem;
  font-weight: 400;
  animation: riseIn .9s var(--ease) .12s both;
}
.hero-bleed .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  animation: riseIn .9s var(--ease) .22s both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes heroGlow {
  from { opacity: .55; }
  to { opacity: 1; }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

/* Sections */
.section {
  padding: 5rem 0;
  position: relative;
}
.section-alt {
  background:
    linear-gradient(180deg, var(--brand-mist), #fff 40%),
    repeating-linear-gradient(90deg, transparent, transparent 48px, rgba(12,107,92,.03) 48px, rgba(12,107,92,.03) 49px);
}
.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  margin-bottom: .55rem;
}
.section-head p {
  color: var(--muted);
  margin: 0;
  font-size: 1.05rem;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.45rem); margin-bottom: .4rem; }
.section-sub { color: var(--muted); margin-bottom: 1.75rem; }

/* Category strip — not card clutter */
.cat-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.cat-item {
  display: block;
  padding: 1.35rem 1.1rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  color: inherit;
  transition: border-color .25s, transform .25s var(--ease), background .25s;
  text-decoration: none;
}
.cat-item:hover {
  border-color: var(--brand);
  background: var(--brand-mist);
  color: inherit;
  transform: translateY(-3px);
}
.cat-item .cat-name {
  font-weight: 700;
  font-size: 1.02rem;
  margin-top: .65rem;
}
.cat-item .cat-media {
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--brand-soft);
}
.cat-item .cat-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cat-item .cat-fallback {
  height: 72px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand-soft), #cfe8e1);
  color: var(--brand);
  font-size: 1.6rem;
  border-radius: 10px;
}

/* Service listing — interaction containers OK */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-tile {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  color: inherit;
  text-decoration: none;
}
.service-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #b9d5cd;
  color: inherit;
}
.service-tile .media {
  aspect-ratio: 16/10;
  background: var(--brand-soft);
  overflow: hidden;
}
.service-tile .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.service-tile:hover .media img { transform: scale(1.05); }
.service-tile .body { padding: 1.15rem 1.2rem 1.35rem; display: flex; flex-direction: column; flex: 1; }
.service-tile .meta { font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); font-weight: 600; }
.service-tile h3 { font-size: 1.2rem; margin: .35rem 0 .5rem; font-family: var(--font-display); }
.service-tile .price {
  font-weight: 700;
  color: var(--brand);
  font-size: 1.2rem;
  margin-top: auto;
}
.service-tile .old-price {
  color: var(--muted);
  text-decoration: line-through;
  font-size: .9rem;
  font-weight: 500;
  margin-left: .4rem;
}
.service-tile .dur { color: var(--muted); font-size: .85rem; margin-bottom: .65rem; }

/* Legacy class aliases for existing pages */
.service-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; height: 100%; background: #fff; transition: box-shadow .25s, transform .25s; }
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.service-card img { height: 190px; object-fit: cover; width: 100%; background: var(--brand-soft); }
.service-card .price { color: var(--brand); font-weight: 700; font-size: 1.15rem; }
.service-card .old-price { text-decoration: line-through; color: var(--muted); font-size: .9rem; margin-left: .35rem; }
.category-tile {
  background: var(--brand-mist);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  height: 100%;
  border: 1px solid transparent;
  transition: border-color .2s, background .2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.category-tile:hover { border-color: var(--brand); background: #dff0ed; color: inherit; }
.category-tile .icon-circle {
  width: 56px; height: 56px; border-radius: 50%; background: #fff; color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: .75rem;
}

/* Packages */
.package-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.package-panel {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.package-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--brand-mid));
}
.package-panel h3 { font-size: 1.45rem; margin-bottom: .5rem; }
.package-panel .price { font-size: 1.75rem; color: var(--brand); font-weight: 700; margin: 1rem 0; }
.package-panel ul { padding-left: 1.1rem; color: var(--muted); margin-bottom: 1.25rem; }

/* How it works */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: .25rem;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  margin-bottom: .85rem;
  font-family: var(--font-display);
}
.step p { margin: 0; font-weight: 550; color: var(--ink); }

/* Why choose */
.why-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
}
.why-item {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}
.why-item i {
  color: var(--brand);
  font-size: 1.25rem;
  margin-top: .15rem;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: 3.25rem 0 2.75rem;
  background:
    linear-gradient(120deg, rgba(8,76,65,.92), rgba(12,107,92,.78)),
    url('https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1600&q=70') center/cover;
  color: #fff;
  margin-bottom: 0;
  overflow: hidden;
}
.page-hero h1 {
  color: #fff;
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  margin-bottom: .4rem;
}
.page-hero p { color: rgba(255,255,255,.85); margin: 0; max-width: 42ch; }
.page-hero .breadcrumb {
  --bs-breadcrumb-divider-color: rgba(255,255,255,.45);
  margin-bottom: .85rem;
}
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.8); }
.page-hero .breadcrumb-item.active { color: #fff; }

.content-wrap { padding: 3rem 0 4.5rem; background: var(--surface); }
.panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.panel-lg { padding: 1.75rem 1.85rem; }

/* Service details */
.detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--brand-soft);
}
.detail-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-price { font-size: 2rem; font-weight: 700; color: var(--brand); }
.feature-block h3 {
  font-size: 1.05rem;
  margin-bottom: .65rem;
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .8rem;
  color: var(--muted);
}
.feature-block {
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
}

/* FAQ */
.accordion-item {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: .65rem;
  overflow: hidden;
  background: #fff;
}
.accordion-button {
  font-weight: 600;
  font-family: var(--font-body);
  box-shadow: none !important;
}
.accordion-button:not(.collapsed) {
  background: var(--brand-mist);
  color: var(--brand-dark);
}

/* Footer */
.site-footer {
  background:
    linear-gradient(160deg, #062e28 0%, #0a4a40 55%, #0c5c50 100%);
  color: rgba(255,255,255,.78);
  padding: 4rem 0 1.5rem;
  margin-top: 0;
}
.site-footer h5 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 1.1rem;
}
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .footer-brand {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
  display: block;
  margin-bottom: .75rem;
}
.site-footer .copyright {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 2.5rem;
  padding-top: 1.15rem;
  font-size: .88rem;
  color: rgba(255,255,255,.55);
}
.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  margin-right: .4rem;
}
.footer-social a:hover { background: rgba(255,255,255,.1); }

/* Auth shells */
.auth-shell {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--surface);
}
.auth-visual {
  background:
    linear-gradient(160deg, rgba(8,76,65,.85), rgba(12,107,92,.55)),
    url('https://images.unsplash.com/photo-1584622650111-993a426fbf0a?auto=format&fit=crop&w=1400&q=80') center/cover;
  color: #fff;
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.auth-visual h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  max-width: 12ch;
}
.auth-form-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
}
.auth-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* User account layout */
.account-shell {
  background:
    radial-gradient(ellipse at top left, rgba(12,107,92,.08), transparent 45%),
    var(--surface);
  min-height: 70vh;
  padding: 2.25rem 0 4rem;
}
.account-nav {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: .75rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}
.account-nav .user-chip {
  display: flex;
  gap: .85rem;
  align-items: center;
  padding: .85rem .75rem 1rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: .5rem;
}
.account-nav .user-chip img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--brand-soft);
}
.account-nav .user-chip strong {
  display: block;
  font-size: .95rem;
}
.account-nav .user-chip span {
  font-size: .8rem;
  color: var(--muted);
}
.account-nav .nav-link {
  color: var(--ink);
  border-radius: 10px;
  padding: .7rem .9rem;
  font-weight: 550;
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: .15rem;
}
.account-nav .nav-link i { color: var(--muted); width: 1.1rem; }
.account-nav .nav-link:hover {
  background: var(--brand-mist);
  color: var(--brand-dark);
}
.account-nav .nav-link.active {
  background: var(--brand);
  color: #fff;
}
.account-nav .nav-link.active i { color: #fff; }
.account-nav .badge-count {
  margin-left: auto;
  background: #f04438;
  color: #fff;
  border-radius: 999px;
  font-size: .7rem;
  padding: .15rem .45rem;
  font-weight: 700;
}
.account-main > .panel,
.account-main .panel { box-shadow: var(--shadow); }

.page-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.page-toolbar h1 {
  font-size: 1.75rem;
  margin: 0;
}
.page-toolbar p { margin: .25rem 0 0; color: var(--muted); }

/* Booking list */
.booking-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  margin-bottom: .85rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  transition: border-color .2s, box-shadow .2s;
}
.booking-item:hover {
  border-color: #b9d5cd;
  box-shadow: var(--shadow);
}
.status-tabs .nav-link {
  border-radius: 8px !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  background: #fff !important;
  margin-right: .35rem;
  margin-bottom: .35rem;
  padding: .4rem .95rem !important;
  font-size: .88rem;
  font-weight: 600;
}
.status-tabs .nav-link.active {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
  color: #fff !important;
}

/* Address cards */
.address-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  background: #fff;
  margin-bottom: .85rem;
}
.address-item.is-default { border-color: var(--brand); background: linear-gradient(180deg, var(--brand-mist), #fff); }

/* Timeline */
.track-steps {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.track-steps .pill {
  padding: .4rem .85rem;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
}
.track-steps .pill.done {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Badges keep bootstrap, soft overrides */
.badge { font-weight: 600; letter-spacing: .02em; }

/* CTA band */
.cta-band {
  margin: 0;
  padding: 4rem 0;
  background:
    linear-gradient(120deg, #084c41, #0c6b5c 55%, #148f7c);
  color: #fff;
  text-align: center;
}
.cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 36rem; margin: 0 auto 1.5rem; }

/* Admin leftovers */
.admin-body { background: #f0f4f3; }
.admin-sidebar {
  width: 260px;
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  background: #123d38;
  color: #c9e0dc;
  position: fixed;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: 1040;
  display: flex;
  flex-direction: column;
}
.admin-sidebar .brand {
  padding: 1.25rem; font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255,255,255,.1);
  display: block; text-decoration: none; font-family: var(--font-display);
}
.admin-sidebar .nav-link {
  color: #c9e0dc; padding: .55rem 1.25rem; font-size: .92rem; border-left: 3px solid transparent;
}
.admin-sidebar .nav-link:hover, .admin-sidebar .nav-link.active {
  color: #fff; background: rgba(255,255,255,.08); border-left-color: #f0a500;
}
.admin-sidebar .nav-section {
  font-size: .7rem; text-transform: uppercase; letter-spacing: .06em; color: #7aa8a1;
  padding: 1rem 1.25rem .35rem;
}
.admin-main { margin-left: 260px; min-height: 100vh; }
.admin-topbar { background: #fff; border-bottom: 1px solid #e5eeee; padding: .85rem 1.5rem; }
.stat-card {
  background: #fff; border-radius: 12px; padding: 1.25rem; border: 1px solid #e5eeee; height: 100%;
}
.stat-card .stat-value { font-size: 1.75rem; font-weight: 700; color: var(--brand); }
.stat-card .stat-label { color: var(--muted); font-size: .9rem; }
.card-soft { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.table-soft th { background: var(--brand-mist); font-weight: 600; font-size: .85rem; white-space: nowrap; }
.user-sidebar {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: .5rem 0;
}
.user-sidebar .nav-link {
  color: var(--ink); padding: .65rem 1.25rem; border-left: 3px solid transparent;
}
.user-sidebar .nav-link:hover, .user-sidebar .nav-link.active {
  color: var(--brand); background: var(--brand-mist); border-left-color: var(--brand);
}

.alert { border-radius: var(--radius-sm); border: 0; }

@media (max-width: 1199.98px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .cat-rail, .service-grid, .package-row, .why-list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .auth-shell { grid-template-columns: 1fr; }
  .auth-visual { min-height: 220px; padding: 2rem; }
  .admin-sidebar { transform: translateX(-100%); transition: transform .25s; }
  .admin-sidebar.show { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .hero-bleed { min-height: 520px; align-items: center; }
  .hero-bleed .hero-inner { padding: 4rem 0 3.5rem; }
}
@media (max-width: 575.98px) {
  .cat-rail, .service-grid, .package-row, .why-list, .steps { grid-template-columns: 1fr; }
  .site-topbar { display: none; }
}
