/* ═══════════════════════════════════════════════════════════════
   DPS Landscaping Solutions — Global Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── Brand tokens ─────────────────────────────────────────────── */
:root {
  --navy:        #0d1b2a;
  --dark-navy:   #071221;
  --green:       #5cb800;
  --green-light: #7ed321;
  --cyan:        #00bcd4;
  --white:       #ffffff;
  --light-bg:    #f4f6f3;
  --text-dark:   #1a1a2e;
  --text-muted:  #6c757d;
  --card-shadow: 0 4px 24px rgba(0,0,0,0.08);
  --transition:  0.25s ease;
}

/* ── Reset & base ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', 'Helvetica Neue', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-light); }

/* ── Layout shell ─────────────────────────────────────────────── */
.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ── Sticky Navbar ────────────────────────────────────────────── */
.dps-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 2px solid var(--green);
}

.dps-navbar .navbar-brand img {
  height: 64px;
  width: auto;
}

.dps-navbar .navbar-brand-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green);
  letter-spacing: -0.5px;
  text-decoration: none;
}

.dps-navbar .nav-link {
  color: rgba(255,255,255,0.85) !important;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem !important;
  transition: color var(--transition);
  cursor: pointer;
}

.dps-navbar .nav-link:hover {
  color: var(--green) !important;
}

.dps-navbar .navbar-toggler {
  border-color: rgba(255,255,255,0.3);
  padding: 4px 8px;
}

.dps-navbar .navbar-toggler:focus {
  box-shadow: none;
}

.dps-navbar .navbar-toggler-icon {
  filter: invert(1);
}

/* Phone link in navbar */
.nav-phone-mobile {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.5rem;
  color: var(--green);
}

.nav-phone-mobile a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.78rem;
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-phone-mobile a:hover { color: var(--green); }
.nav-phone-mobile svg { flex-shrink: 0; }

.nav-phone-desktop {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-phone-desktop a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-phone-desktop a:hover { color: var(--green) !important; }
.nav-phone-desktop svg  { color: var(--green); flex-shrink: 0; }

.btn-quote {
  background: var(--green);
  color: var(--dark-navy) !important;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
  text-decoration: none;
  display: inline-block;
}

.btn-quote:hover {
  background: var(--green-light);
  transform: translateY(-1px);
  color: var(--dark-navy) !important;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(7,18,33,0.78) 0%, rgba(7,18,33,0.55) 50%, rgba(7,18,33,0.82) 100%),
    url('/images/hero-bg.jpg') center center / cover no-repeat;
  background-color: var(--dark-navy);
  color: var(--white);
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1rem;
  max-width: 820px;
  width: 100%;
}

.hero-company-name {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin: 0 0 1rem 0;
}

.hero-badge {
  display: inline-block;
  background: rgba(92,184,0,0.18);
  border: 1px solid var(--green);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero h1 .text-green { color: var(--green); }

.hero .hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: var(--green);
  color: var(--dark-navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(92,184,0,0.35);
}

.btn-hero-primary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(92,184,0,0.5);
}

.btn-hero-secondary {
  background: transparent;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 4px;
  border: 2px solid rgba(255,255,255,0.6);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.btn-hero-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
}

.hero-scroll-indicator {
  display: none;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: heroScroll 2.2s ease-in-out infinite;
}

@keyframes heroScroll {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.45; }
  50%       { transform: translateX(-50%) translateY(8px); opacity: 0.8; }
}

@media (max-width: 767.98px) {
  .hero-scroll-indicator { display: flex; }
}

/* ── Section shared ───────────────────────────────────────────── */
.section-pad { padding: 5rem 0; }
.section-light { background: var(--light-bg); }
.section-dark  { background: var(--navy); color: var(--white); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.75rem;
}

.section-header .lead-text {
  max-width: 580px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.section-dark .section-header .lead-text { color: rgba(255,255,255,0.7); }

/* ── Service cards ────────────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-top-color var(--transition);
  height: 100%;
  border-top: 3px solid transparent;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  border-top-color: var(--green);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(92,184,0,0.15), rgba(0,188,212,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
  color: var(--green);
}

.service-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}

.service-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* ── About section ────────────────────────────────────────────── */
.about-text h2 { color: var(--navy); margin-bottom: 1rem; }

.about-text p {
  color: #444;
  line-height: 1.8;
  font-size: 1.02rem;
  margin-bottom: 1rem;
}

.stat-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.stat-badge {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 1.25rem 1rem;
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--green);
  display: block;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.72);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-about-cta {
  background: var(--green);
  color: var(--dark-navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 1.5rem;
  transition: background var(--transition);
  font-size: 0.95rem;
}

.btn-about-cta:hover { background: var(--green-light); }

.about-image-placeholder {
  background: linear-gradient(135deg, #1a2d42, #0d1b2a);
  border-radius: 16px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.25);
  font-size: 0.85rem;
  gap: 1rem;
}

/* ── Gallery ──────────────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem;
}

.btn-load-more {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  border-radius: 8px;
  padding: 0.65rem 2rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.btn-load-more:hover {
  background: var(--green);
  color: var(--dark-navy);
}

@media (min-width: 576px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 992px) {
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--navy);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2d42, #0d1b2a);
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  gap: 0.4rem;
  padding: 0.5rem;
  text-align: center;
}

/* ── Reviews ──────────────────────────────────────────────────── */
.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  height: 100%;
  border-left: 3px solid var(--green);
}

.review-stars { font-size: 1.05rem; margin-bottom: 0.6rem; color: #f5c518; }

.review-text {
  font-size: 0.93rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}

.review-author {
  font-weight: 700;
  color: var(--navy);
  font-size: 0.875rem;
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-toggle-form {
  background: transparent;
  border: 2px solid var(--green);
  color: var(--green);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  font-size: 0.9rem;
}

.btn-toggle-form:hover {
  background: var(--green);
  color: var(--dark-navy);
}

.review-form-wrap {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--card-shadow);
  max-width: 600px;
  margin: 1.5rem auto 0;
}

.review-form-wrap h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.star-picker {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 0.25rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  color: #ccc;
  transition: color var(--transition), transform var(--transition);
}

.star-btn:hover,
.star-btn.star-active { color: #f5c518; }

.star-btn:hover { transform: scale(1.15); }

.form-control:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 0.2rem rgba(92,184,0,0.22);
}

.btn-submit-review {
  background: var(--green);
  color: var(--dark-navy);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  padding: 0.7rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 0.95rem;
}

.btn-submit-review:hover { background: var(--green-light); }
.btn-submit-review:disabled { opacity: 0.6; cursor: not-allowed; }

.alert-dps-success {
  background: rgba(92,184,0,0.1);
  border: 1px solid var(--green);
  color: #2a5200;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

/* ── Contact / Footer ─────────────────────────────────────────── */
.footer {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.82);
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--green);
}

.footer-brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--green);
  display: block;
}

.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.2rem;
  display: block;
}

.footer h5 {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.25rem;
}

.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
}

.footer-contact-row svg {
  flex-shrink: 0;
  color: var(--green);
}

.footer-contact-row a {
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
}

.footer-contact-row a:hover { color: var(--green); }
.footer-contact-row span { color: rgba(255,255,255,0.78); }
.footer-contact-row .map-link { color: rgba(255,255,255,0.78); text-decoration: none; transition: color var(--transition); }
.footer-contact-row .map-link:hover { color: var(--green); }

.social-row { display: flex; gap: 0.75rem; margin-top: 1.25rem; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.social-link:hover {
  background: var(--green);
  border-color: var(--green);
  color: var(--dark-navy);
}

.footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 2.5rem 0 1.5rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
}

.footer-copy a { color: var(--green); }

/* ── Admin page ───────────────────────────────────────────────── */
.admin-wrap {
  min-height: 100vh;
  background: var(--light-bg);
}

.admin-topbar {
  background: var(--navy);
  border-bottom: 3px solid var(--green);
  padding: 1.25rem 0;
  margin-bottom: 2rem;
}

.admin-topbar h1 {
  font-size: 1.4rem;
  margin: 0;
  color: var(--white);
}

.admin-topbar h1 span { color: var(--green); }

.admin-stat-row {
  display: flex;
  gap: 1rem;
}

.admin-stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid var(--green);
  border-radius: 10px;
  padding: 1rem 1.5rem;
  min-width: 200px;
}

.admin-stat-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin-bottom: 0.35rem;
}

.admin-stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1;
}

.admin-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-badge {
  background: var(--cyan);
  color: var(--dark-navy);
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 20px;
  padding: 0.1rem 0.55rem;
  line-height: 1.6;
}

.admin-badge-green { background: var(--green); }

.admin-pending-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--card-shadow);
  margin-bottom: 1rem;
  border-left: 4px solid var(--cyan);
}

.btn-approve {
  background: var(--green);
  color: var(--dark-navy);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background var(--transition);
}

.btn-approve:hover { background: var(--green-light); }

.btn-reject {
  background: #dc3545;
  color: #fff;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background var(--transition);
}

.btn-reject:hover { background: #b02a37; }

/* ── Blazor error UI ──────────────────────────────────────────── */
#blazor-error-ui {
  background: var(--navy);
  color: var(--white);
  border-top: 2px solid var(--green);
  bottom: 0;
  box-shadow: 0 -1px 0 rgba(255,255,255,0.08);
  display: none;
  left: 0;
  padding: 0.6rem 1.25rem 0.7rem 1.25rem;
  position: fixed;
  width: 100%;
  z-index: 1000;
}

#blazor-error-ui .dismiss {
  cursor: pointer;
  position: absolute;
  right: 0.75rem;
  top: 0.5rem;
}

.valid.modified:not([type=checkbox]) { outline: 1px solid var(--green); }
.invalid { outline: 1px solid #dc3545; }
.validation-message { color: #dc3545; font-size: 0.875rem; }

/* ── Gallery lightbox ────────────────────────────────────────── */
.gallery-item img  { cursor: zoom-in; }

.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.93);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: lbFadeIn 0.2s ease;
  outline: none;
}

@keyframes lbFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.lightbox-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 4rem 4.5rem;
}

.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 6px;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 12px 60px rgba(0,0,0,0.7);
  animation: lbImgIn 0.18s ease;
}

@keyframes lbImgIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 10;
}

.lightbox-close:hover { background: rgba(255,255,255,0.25); }

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  z-index: 10;
}

.lightbox-prev { left: 0.75rem; }
.lightbox-next { right: 0.75rem; }

.lightbox-prev:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) translateX(-2px); }
.lightbox-next:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) translateX(2px); }

.lightbox-counter {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-family: 'Poppins', sans-serif;
  background: rgba(0,0,0,0.45);
  padding: 0.25rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .lightbox-inner   { padding: 4rem 3.5rem; }
  .lightbox-prev    { left: 0.25rem; }
  .lightbox-next    { right: 0.25rem; }
  .lightbox-prev,
  .lightbox-next    { width: 40px; height: 40px; }
}

/* ── Utilities ────────────────────────────────────────────────── */
.text-green { color: var(--green) !important; }
.bg-navy    { background: var(--navy) !important; }
.fw-800     { font-weight: 800 !important; }
