/* =====================================================
   Carpet Cleaning Baltimore MD — Global Styles
   ===================================================== */

/* 1. Variables */
:root {
  --blue-900:    #1e3a8a;
  --blue-700:    #1d4ed8;
  --blue-600:    #2563eb;
  --blue-100:    #dbeafe;
  --blue-50:     #eff6ff;
  --orange:      #f97316;
  --orange-dark: #ea580c;
  --text-dark:   #0f172a;
  --text-mid:    #475569;
  --text-light:  #94a3b8;
  --border:      #e2e8f0;
  --white:       #ffffff;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --radius:      8px;
  --max-w:       1100px;
  --font:        system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* 2. Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text-dark); background: var(--white); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 3. Utilities */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-align: center;
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.btn-secondary:hover { background: var(--white); color: var(--blue-700); border-color: var(--white); }

.section     { padding: 72px 0; }
.section-alt { background: var(--blue-50); }

.section-title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.section-sub {
  color: var(--text-mid);
  font-size: 1.05rem;
  margin-bottom: 40px;
  max-width: 600px;
}

/* 4. Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.logo { flex-shrink: 0; text-decoration: none; line-height: 1; }
.site-logo { height: 34px; width: auto; display: block; }

.nav-links {
  display: none;
  gap: 24px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { color: var(--blue-700); }

.header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.header-phone {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--orange);
  white-space: nowrap;
}
.header-phone:hover { color: var(--orange-dark); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
}

/* Mobile nav — slide-in panel */
.mobile-nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.46);
  z-index: 400;
}
.mobile-nav-backdrop.open { display: block; }

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 285px;
  max-width: 88vw;
  height: 100vh;
  background: var(--white);
  z-index: 401;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  box-shadow: -4px 0 32px rgba(0,0,0,0.18);
  visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }

.mobile-nav a {
  padding: 15px 20px;
  font-weight: 600;
  font-size: 0.98rem;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
  display: block;
  transition: background 0.15s;
}
.mobile-nav a:hover { color: var(--blue-700); background: var(--blue-50); }

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 2px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-brand {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--blue-700);
  line-height: 1.3;
}
.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-mid);
  padding: 2px 8px;
  border-radius: 4px;
}
.mobile-nav-close:hover { background: var(--blue-50); color: var(--text-dark); }

.mobile-nav-footer {
  margin-top: auto;
  padding: 20px;
  border-top: 2px solid var(--border);
  flex-shrink: 0;
}
.mobile-nav-footer a {
  display: block;
  text-align: center;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: var(--radius);
  border-bottom: none;
}
.mobile-nav-footer a:hover { background: var(--orange-dark) !important; }
.mobile-nav-hours {
  text-align: center;
  font-size: 0.77rem;
  color: var(--text-mid);
  margin-top: 8px;
}

/* Hamburger → X animation */
.nav-toggle span { transition: transform 0.28s, opacity 0.28s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Sticky bottom CTA (mobile only) */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 300;
  box-shadow: 0 -3px 16px rgba(0,0,0,0.14);
}
.sticky-cta-call,
.sticky-cta-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  height: 54px;
  text-decoration: none;
}
.sticky-cta-call { background: var(--orange); color: var(--white); }
.sticky-cta-call:hover { background: var(--orange-dark); }
.sticky-cta-quote { background: var(--blue-700); color: var(--white); }
.sticky-cta-quote:hover { background: var(--blue-900); }

/* 5. Nav Dropdown */
.nav-dropdown { position: relative; display: inline-flex; align-items: center; padding-bottom: 8px; margin-bottom: -8px; }

.nav-dropdown-toggle {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-dropdown-toggle::after {
  content: '▾';
  font-size: 0.7em;
  transition: transform 0.2s;
}
.nav-dropdown:hover .nav-dropdown-toggle,
.nav-dropdown-toggle.active { color: var(--blue-700); }
.nav-dropdown:hover .nav-dropdown-toggle::after { transform: rotate(180deg); }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 230px;
  z-index: 200;
  padding: 8px 0;
  margin-top: 0;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 11px 18px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}
.dropdown-menu a:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

/* Mobile nav services section */
.mobile-nav-label {
  display: block;
  padding: 10px 20px 6px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-light);
  background: var(--blue-50);
  border-bottom: 1px solid var(--border);
}
.mobile-nav-sub {
  padding-left: 32px !important;
  font-size: 0.9rem !important;
  color: var(--text-mid) !important;
  background: var(--blue-50) !important;
}
.mobile-nav-sub:hover { background: var(--blue-100) !important; }

/* 6. Hero */
.hero {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-600) 100%);
  color: var(--white);
  padding: 72px 0 64px;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero h1 em { font-style: normal; color: #93c5fd; }
.hero-sub {
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  opacity: 0.85;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 48px;
}
.trust-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 14px;
  border-radius: 99px;
  white-space: nowrap;
}

/* 6. How It Works */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.step {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.step p  { color: var(--text-mid); font-size: 0.92rem; }

/* 7. Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-icon { font-size: 2rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.service-card p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

/* 8. Before / After */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.ba-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.ba-photos { display: grid; grid-template-columns: 1fr 1fr; }
.ba-photo {
  aspect-ratio: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700;
  color: var(--text-mid); gap: 4px;
  overflow: hidden;
  position: relative;
}
.ba-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-photo .icon { font-size: 1.8rem; }
.ba-photo.before { background: #fef9c3; }
.ba-photo.after  { background: #dcfce7; }
.ba-caption {
  text-align: center;
  padding: 10px 12px;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 600;
  background: var(--white);
  border-top: 1px solid var(--border);
}

/* 9. Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.stars     { color: #f59e0b; font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 16px; line-height: 1.65; font-style: italic; }
.reviewer  { display: flex; align-items: center; gap: 10px; }
.avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--blue-700);
  color: var(--white);
  font-size: 0.8rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.88rem; }
.reviewer-area { font-size: 0.78rem; color: var(--text-light); }

.rating-summary {
  text-align: center;
  padding: 32px 20px;
  background: var(--blue-50);
  border-radius: var(--radius);
  border: 1px solid var(--blue-100);
  margin-bottom: 40px;
}
.big-score  { font-size: 4rem; font-weight: 900; color: var(--blue-700); line-height: 1; }
.big-stars  { color: #f59e0b; font-size: 1.6rem; margin: 6px 0; }
.score-label { color: var(--text-mid); font-size: 0.95rem; }

/* 10. Neighborhoods */
.neighborhood-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.tag {
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
}

/* 11. FAQ Accordion */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 40px; }
details.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
details.faq-item[open] { border-color: var(--blue-600); }
summary.faq-q {
  padding: 17px 20px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  user-select: none;
}
summary.faq-q::-webkit-details-marker { display: none; }
summary.faq-q::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--blue-600);
  flex-shrink: 0;
  margin-left: 12px;
  font-weight: 300;
  line-height: 1;
}
details[open] summary.faq-q::after { content: '−'; }
.faq-a {
  padding: 0 20px 17px;
  color: var(--text-mid);
  font-size: 0.93rem;
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: -1px;
}

/* 12. CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-600) 100%);
  color: var(--white);
  text-align: center;
  padding: 72px 20px;
}
.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 10px; }
.cta-banner p  { opacity: 0.85; margin-bottom: 28px; font-size: 1.05rem; }
.cta-phone {
  display: block;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  color: #93c5fd;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* 13. Contact Form */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: 40px;
}
.contact-info h3  { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; }
.contact-row {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}
.contact-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-row strong { display: block; font-size: 0.8rem; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-row span   { font-weight: 600; font-size: 0.95rem; }

.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.btn-submit { width: 100%; font-size: 1rem; padding: 16px; margin-top: 4px; }

/* 14. Footer */
.site-footer {
  background: #0f172a;
  color: rgba(255,255,255,0.65);
  padding: 52px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  margin-bottom: 36px;
}
.footer-logo { font-size: 1.05rem; font-weight: 800; color: var(--white); margin-bottom: 12px; }
.footer-nap { font-size: 0.88rem; line-height: 1.9; }
.footer-nap strong { color: var(--white); display: block; }
.footer-nap a { color: var(--orange); }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col a  { display: block; font-size: 0.87rem; padding: 3px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  font-size: 0.78rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--white); }

/* 15. Inner page hero */
.page-hero {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-600));
  color: var(--white);
  padding: 56px 20px 48px;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; margin-bottom: 8px; }
.page-hero p  { opacity: 0.82; font-size: 1.05rem; }

/* 16. About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-img {
  aspect-ratio: 4/3;
  background: var(--blue-100);
  border-radius: var(--radius);
  display: block;
  width: 100%;
  border: 1px solid var(--border);
  object-fit: cover;
}
.about-text h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; }
.about-text p  { color: var(--text-mid); margin-bottom: 14px; line-height: 1.7; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat { text-align: center; }
.stat-n { font-size: 2.2rem; font-weight: 900; color: var(--blue-700); line-height: 1; }
.stat-l { font-size: 0.75rem; color: var(--text-mid); font-weight: 600; margin-top: 4px; }

/* 17. Responsive */
@media (min-width: 640px) {
  .contact-wrap { grid-template-columns: 1fr 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  body { padding-bottom: 54px; }
}

@media (min-width: 768px) {
  .nav-links  { display: flex; }
  .nav-toggle { display: none; }
  .footer-grid  { grid-template-columns: 2fr 1fr 1fr; }
  .about-grid   { grid-template-columns: 1fr 1fr; }
  .mobile-nav, .mobile-nav-backdrop { display: none !important; }
  .sticky-cta { display: none; }
}

/* Video jobs grid */
.xc-jobs { background: var(--white); padding: 56px 0; }
.xc-jobs-title { font-size: 1.6rem; font-weight: 900; text-align: center; margin-bottom: 6px; color: var(--text-dark); }
.xc-jobs-sub { text-align: center; font-size: 0.85rem; color: var(--text-mid); font-weight: 600; margin-bottom: 32px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.xc-jobs-grid { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 480px)  { .xc-jobs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px)  { .xc-jobs-grid { grid-template-columns: repeat(4, 1fr); } }
.xc-job-card { position: relative; border-radius: 10px; overflow: hidden; cursor: pointer; background: #000; box-shadow: 0 2px 12px rgba(0,0,0,0.12); }
.xc-job-card:hover .xc-job-play { transform: translate(-50%,-50%) scale(1.1); }
.xc-job-thumb { width: 100%; aspect-ratio: 9/16; object-fit: cover; display: block; opacity: 0.88; transition: opacity 0.2s; }
.xc-job-card:hover .xc-job-thumb { opacity: 0.7; }
.xc-job-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; background: rgba(255,255,255,0.93); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; pointer-events: none; }
.xc-job-play::after { content: ''; border-left: 18px solid #1a2332; border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 4px; }
.xc-job-desc { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: #fff; font-size: 0.75rem; font-weight: 600; padding: 24px 10px 10px; }
/* Video modal */
#xc-video-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.9); z-index: 2000; align-items: center; justify-content: center; }
#xc-video-modal.active { display: flex; }
#xc-modal-inner { position: relative; width: 92vw; max-width: 820px; }
#xc-modal-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; padding: 4px 10px; }
#xc-modal-video { width: 100%; border-radius: 10px; display: block; max-height: 88vh; background: #000; }

/* Before & After results grid */
.ba-result-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 32px;
}
@media (min-width: 640px) {
  .ba-result-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Hero background image */
.hero-bg {
  background-image: linear-gradient(rgba(0,0,0,0.52), rgba(0,0,0,0.52)),
    url('https://xtremecleans.com/wp-content/uploads/2025/01/Professional-Carpet-Cleaning-4.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
