/* =============== Optimus Janitorial — Bootstrap 5 =============== */
:root {
  --brand: #0a1f44;         /* navy */
  --brand-ink: #0d2a5c;
  --brand-2: #1e40af;       /* deep blue */
  --accent: #3b82f6;        /* vivid blue */
  --accent-2: #60a5fa;      /* light blue */
  --muted: #64748b;
  --soft: #eff4fb;
  --line: #dbe4f0;
  --radius: 20px;
}

* { -webkit-font-smoothing: antialiased; }
html { scroll-behavior: smooth; }
/* Wider container */
.container-xxl { max-width: 1440px; }
@media (min-width: 1400px) { .container-xxl { max-width: 1440px; } }
html, body { overflow-x: hidden; max-width: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--brand-ink);
  background: #fff;
}
h1,h2,h3,h4,h5,h6 { font-family: 'Geist', 'Inter', sans-serif; letter-spacing: -0.02em; }
a { text-decoration: none; color: inherit; }
section { scroll-margin-top: 80px; }

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--brand);
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  padding: 10px 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1041;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar-left,
.top-bar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.top-bar-left i { color: var(--accent-2); }
.top-bar-right a {
  color: rgba(255,255,255,.85);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .2s;
}
.top-bar-right a:hover { color: #fff; }
.top-bar-right i { color: var(--accent-2); }
.top-bar-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,.18);
}
.top-bar-socials { display: inline-flex; align-items: center; gap: 12px; }
.top-bar-socials a {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  background: transparent;
  transition: opacity .2s ease;
}
.top-bar-socials a:nth-child(1) { color: #4285f4; }
.top-bar-socials a:nth-child(2) { color: #d32323; }
.top-bar-socials a:hover { opacity: .8; }
@media (max-width: 767.98px) {
  .top-bar { font-size: .78rem; padding: 8px 0; }
  .top-bar-inner { justify-content: center; }
  .top-bar-left, .top-bar-right { gap: 10px; }
  .top-bar-divider { display: none; }
}

/* ========== NAVBAR ========== */
.custom-navbar {
  background: #fff;
  padding: 12px 0;
  transition: all .3s ease;
  z-index: 1040;
  top: 42px;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 20px rgba(0,0,0,.05);
}
@media (max-width: 767.98px) { .custom-navbar { top: 64px; } }
.custom-navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding: 10px 0;
}
.custom-navbar .navbar-brand { font-weight: 700; font-size: 1.2rem; color: var(--brand); display: flex; align-items: center; }
.custom-navbar.scrolled .navbar-brand { color: var(--brand); }

.nav-logo {
  height: 40px;
  width: auto;
  transition: all .3s ease;
}
.custom-navbar.scrolled .nav-logo {
  height: 40px;
}
.footer-logo {
  height: 54px;
  width: auto;
}

.brand-light { font-weight: 400; opacity: .85; }
.custom-navbar .nav-link {
  color: var(--brand-ink);
  font-weight: 500;
  padding: 8px 16px !important;
}
.custom-navbar.scrolled .nav-link { color: var(--brand-ink); }
.custom-navbar .nav-link:hover { color: var(--accent); }
.custom-navbar.scrolled .nav-link:hover { color: var(--accent); }
.custom-navbar .navbar-toggler { border: 0; color: var(--brand); }
.custom-navbar.scrolled .navbar-toggler { color: var(--brand); }

.btn-pill {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 10px;
  transition: all .25s ease;
}
.btn-pill:hover { transform: translateY(-2px); }
.btn-dark { background: var(--brand); border-color: var(--brand); color: #fff; }
.btn-dark:hover { background: var(--brand-2); border-color: var(--brand-2); color: #fff; }
.btn-outline-light { border-width: 2px; }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 140px 0 80px;
  color: #fff;
  overflow: hidden;
}
.hero-image { position: absolute; inset: 0; z-index: 0; }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(10,31,68,.55) 0%,
      rgba(10,31,68,.15) 18%,
      rgba(10,31,68,0) 32%,
      rgba(10,31,68,.85) 58%,
      rgba(10,31,68,.95) 100%);
}
.hero-content { position: relative; z-index: 2; width: 100%; }
.hero-tag {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .03em;
  margin-bottom: 18px;
}
.hero-brand-label {
  text-transform: uppercase;
  letter-spacing: .35em;
  font-size: .85rem;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 10px;
}
.hero-platforms {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 56px;
}
.hero-platforms .platform-badge { width: 40px; height: 40px; font-size: 1rem; }
.hero-platforms-text {
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .02em;
}
.hero-text h1 {
  font-size: clamp(1.9rem, 4.6vw, 4.4rem);
  line-height: 1.05;
  font-weight: 800;
  text-wrap: balance;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.text-white-75 { color: rgba(255,255,255,.85); }

/* Hero form card */
.hero-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
  color: var(--brand-ink);
}
.hero-form-card .form-label { font-size: .82rem; margin-bottom: 4px; }
.hero-form-card .form-control,
.hero-form-card .form-select { padding: 9px 14px; font-size: .9rem; }
.hero-form-card .contact-form {
  /* Reset .contact-form's own card styles (inherited) */
  background: transparent;
  padding: 0;
  border: 0;
  box-shadow: none;
}
.hero-form-head h3 { font-size: 1.5rem; font-weight: 700; margin: 0 0 6px; color: var(--brand); }
.hero-form-head p { color: var(--muted); font-size: .9rem; margin: 0 0 20px; }

/* ========== TRUST STRIP ========== */
.trust-strip {
  background: transparent;
  color: #fff;
  padding: 0;
  position: relative;
  margin-top: -60px;
  z-index: 5;
}
.trust-strip .container-xxl {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: var(--radius);
  padding: 32px 40px;
  box-shadow: 0 24px 60px rgba(10,31,68,.35);
  position: relative;
  overflow: hidden;
}
.trust-strip .container-xxl::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(96,165,250,.25) 0%, transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(59,130,246,.15) 0%, transparent 50%);
  pointer-events: none;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.trust-item {
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -16px; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 40px;
  background: rgba(255,255,255,.15);
}
.trust-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: rgba(255,255,255,.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--accent-2);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.trust-title { font-weight: 600; font-size: .95rem; line-height: 1.3; }
.trust-sub { font-size: .78rem; color: rgba(255,255,255,.65); margin-top: 2px; }
@media (max-width: 991.98px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2)::after { display: none; }
}
@media (max-width: 575.98px) {
  .trust-strip { margin-top: -20px; }
  .trust-strip .container-xxl { padding: 24px; }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-item::after { display: none; }
}

/* ========== SECTIONS ========== */
.section { padding: 100px 0; }
.section-caption {
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--accent);
  font-size: .82rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(1.8rem, 3.6vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
}

/* ========== ABOUT ========== */
.why-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 24px; }
.why-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--brand-ink); }
.why-list li i { color: var(--accent); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
@media (max-width: 767px) { .why-list { grid-template-columns: 1fr; } }

/* ========== SERVICES ========== */
.services-section { background: var(--soft); }
.services-list { display: flex; flex-direction: column; gap: 80px; }
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.service-row.reverse .service-media { order: 2; }
.service-row.reverse .service-content { order: 1; }
.service-media {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 24px 60px rgba(10,31,68,.12);
}
.service-media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s ease;
}
.service-row:hover .service-media img { transform: scale(1.04); }
.service-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #fff;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid var(--line);
}
.service-content h3 {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--brand);
}
.service-content p { color: var(--muted); margin-bottom: 14px; }
.service-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.btn-outline-dark {
  border: 2px solid var(--brand);
  color: var(--brand);
  background: transparent;
}
.btn-outline-dark:hover {
  background: var(--brand);
  color: #fff;
}
@media (max-width: 991.98px) {
  .service-row { grid-template-columns: 1fr; gap: 24px; }
  .service-row.reverse .service-media { order: 0; }
  .service-row.reverse .service-content { order: 0; }
  .services-list { gap: 56px; }
}

/* ========== FORM SUBMIT LOADING ========== */
.btn.is-loading {
  position: relative;
  pointer-events: none;
  opacity: .85;
  padding-left: 44px !important;
}
.btn.is-loading::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 50%;
  width: 16px; height: 16px;
  margin-top: -8px;
  border-radius: 50%;
  border: 2px solid currentColor;
  border-right-color: transparent;
  animation: btn-spin .7s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }

/* ========== FORM TOAST ========== */
.form-toast {
  position: fixed;
  top: 100px; right: 20px;
  max-width: 360px;
  padding: 14px 18px;
  border-radius: 12px;
  background: var(--brand);
  color: #fff;
  font-size: .9rem;
  font-weight: 500;
  box-shadow: 0 14px 40px rgba(10,31,68,.25);
  opacity: 0;
  transform: translateX(20px);
  pointer-events: none;
  transition: all .35s ease;
  z-index: 1050;
}
.form-toast.show { opacity: 1; transform: translateX(0); }
.form-toast.success { background: #16a34a; }
.form-toast.error   { background: #dc2626; }

/* ========== STICKY ACTIONS ========== */
.sticky-actions {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 1030;
  display: flex; flex-direction: column; gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all .3s ease;
}
.sticky-actions.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sticky-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 0;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
  transition: all .25s ease;
}
.sticky-btn.whatsapp { background: #25d366; }
.sticky-btn.whatsapp:hover { background: #1ebe57; color: #fff; transform: translateY(-3px); }
.sticky-btn.top { background: var(--brand); }
.sticky-btn.top:hover { background: var(--brand-2); transform: translateY(-3px); }
@media (max-width: 575.98px) {
  .sticky-actions { right: 14px; bottom: 14px; }
  .sticky-btn { width: 46px; height: 46px; font-size: 1.2rem; }
}

/* ========== BEFORE / AFTER (Gallery slider) ========== */
.ba-section { background: #fff; }
.ba-controls { display: flex; gap: 10px; }
.ba-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.ba-figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.ba-figure img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.ba-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,.95);
  color: var(--brand);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.ba-tag.after { background: var(--brand); color: #fff; }
.ba-caption {
  margin-top: 18px;
  font-weight: 600;
  color: var(--brand-ink);
  text-align: center;
}
@media (max-width: 575.98px) {
  .ba-pair { grid-template-columns: 1fr; gap: 12px; }
}

/* ========== REVIEWS ========== */
.review-section { background: var(--soft); }
.review-platforms { display: flex; gap: 12px; flex-wrap: wrap; }
.platform-badge {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 1.2rem;
  transition: all .25s ease;
  box-shadow: 0 6px 16px rgba(10,31,68,.12);
}
.platform-badge:hover { transform: translateY(-3px); color: #fff; }
.platform-badge.google { background: #4285f4; }
.platform-badge.yelp   { background: #d32323; }

/* Footer socials */
.footer-socials { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
  transition: all .25s ease;
}
.social-icon:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.review-card {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  height: 100%;
  border: 1px solid var(--line);
}
.stars { color: #f59e0b; font-size: 1.05rem; display: flex; gap: 3px; }
.review-card h6 { font-size: 1.2rem; line-height: 1.5; font-weight: 500; }
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.review-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.review-controls { display: flex; gap: 12px; justify-content: flex-end; }
.btn-circle {
  width: 48px; height: 48px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0;
}

/* ========== FAQ ========== */
.faq-accordion .accordion-item {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px !important;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  font-size: 1.05rem;
  padding: 20px 24px;
  background: #fff !important;
  color: var(--brand-ink) !important;
  box-shadow: none !important;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--brand) !important; }
.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\2b';
  font-family: 'bootstrap-icons';
  transform: none;
  font-size: 1.4rem;
  color: var(--accent);
}
.faq-accordion .accordion-button:not(.collapsed)::after { content: '\2212'; }
.faq-accordion .accordion-body {
  padding: 0 24px 24px;
  color: var(--muted);
}

/* ========== CONTACT ========== */
.contact-section { background: var(--soft); }
.contact-image { width: 100%; border-radius: var(--radius); aspect-ratio: 4/3; object-fit: cover; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-info-item { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact-info-item i {
  width: 40px; height: 40px; border-radius: 10px;
  background: #fff; color: var(--brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.contact-info-item a { color: var(--brand); }
.contact-info-item a:hover { color: var(--accent); }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 20px 50px rgba(10,31,68,.06);
  border: 1px solid var(--line);
}
.contact-form .form-label { font-weight: 600; font-size: .9rem; margin-bottom: 6px; }
.contact-form .form-control,
.contact-form .form-select {
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: .95rem;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12);
  background: #fff;
}
.btn-primary-brand {
  background: var(--brand);
  color: #fff;
  border: 0;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all .25s ease;
}
.btn-primary-brand:hover { background: var(--brand-2); color: #fff; transform: translateY(-2px); }

/* ========== FOOTER ========== */
.footer {
  background: linear-gradient(180deg, var(--brand) 0%, #071633 100%);
  color: #fff;
  padding: 80px 0 40px;
}
.footer .brand-text { color: #fff; }
.footer-top {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
}
.footer-link { color: #fff; }
.footer-link:hover { color: var(--accent-2); }
.footer-divider { border-color: rgba(255,255,255,.1); margin: 32px 0; }
.footer-title {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-bottom: 16px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; color: rgba(255,255,255,.85); }
.footer-list a { color: rgba(255,255,255,.85); }
.footer-list a:hover { color: var(--accent-2); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 991.98px) {
  .section { padding: 70px 0; }
  .hero { padding: 120px 0 50px; min-height: auto; }
  .hero-text h1 { font-size: clamp(2.2rem, 9vw, 3.6rem); }
}
@media (max-width: 575.98px) {
  .contact-form { padding: 24px; }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .ba-label { font-size: .72rem; padding: 4px 10px; }
}

/* =====================================================
   MOBILE-ONLY REFINEMENTS (desktop layout untouched)
   ===================================================== */

/* Tablet & below */
@media (max-width: 991.98px) {
  /* Prevent Bootstrap row negative margins from overflowing the container.
     Bootstrap default: g-5 = 3rem (-24px each side), g-4 = 1.5rem (-12px).
     Reduce horizontal gutter so it stays within container padding. */
  .row.g-5, .row.gx-5 { --bs-gutter-x: 1.5rem; }
  .row.g-4, .row.gx-4 { --bs-gutter-x: 1rem; }

  /* Top bar: compact, no fixed overflow */
  .top-bar { font-size: .8rem; padding: 6px 0; }
  .top-bar-inner { gap: 6px 14px; justify-content: center; text-align: center; }
  .top-bar-right { gap: 10px; }
  .top-bar-divider { display: none; }

  /* Navbar: keep below top-bar; auto-spacing via JS not needed */
  .custom-navbar { top: 36px; }

  /* Hero: ensure image stays anchored and overlay covers people */
  .hero { min-height: auto; padding: 110px 0 56px; }
  .hero-image img { object-position: center center; }
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(10,31,68,.65) 0%,
        rgba(10,31,68,.35) 30%,
        rgba(10,31,68,.75) 70%,
        rgba(10,31,68,.95) 100%);
  }
  .hero-content .row { row-gap: 32px !important; }

  /* Hero form card breathing room */
  .hero-form-card { padding: 22px 20px; }

  /* Services: ensure consistent image sizing */
  .service-media { aspect-ratio: 16/10; }
}

/* Phones */
@media (max-width: 767.98px) {
  /* Top bar: hidden on mobile */
  .top-bar { display: none; }

  /* Navbar pinned to top, no gap */
  .custom-navbar { top: 0; padding: 8px 0; }
  .nav-logo { height: 34px; }
  .custom-navbar.scrolled .nav-logo { height: 34px; }

  /* Offcanvas (mobile menu) logo smaller */
  .offcanvas .offcanvas-header img { height: 26px !important; width: auto; }
  .offcanvas .offcanvas-header { padding: 14px 18px; }

  /* Container horizontal padding on mobile */
  .container-xxl { padding-left: 20px; padding-right: 20px; }

  /* Section spacing */
  .section { padding: 56px 0; }

  /* ---- HERO: navbar + image unified, full image (no crop) ---- */
  .hero {
    display: block;
    min-height: 0;
    padding: 0 0 40px;
    background: linear-gradient(180deg, var(--brand) 0%, #071633 100%);
    color: #fff;
  }
  /* Image flush right under navbar (no white gap) */
  .hero-image {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    z-index: 0;
    margin-top: 58px; /* exact navbar height on mobile */
  }
  .hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    object-position: center;
  }
  .hero-overlay { display: none; }
  .hero-content {
    position: relative;
    z-index: 2;
    padding-top: 24px;
  }
  .hero-text h1 { font-size: clamp(2rem, 8.5vw, 2.6rem); margin-bottom: 8px; }
  .hero-text .lead { font-size: .95rem; }
  .hero .btn-pill { padding: 10px 18px; font-size: .92rem; }

  /* ---- HERO FORM: horizontal 2-col, minimal ---- */
  .hero-form-card {
    padding: 14px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(0,0,0,.18);
  }
  .hero-form-head { margin-bottom: 10px; }
  .hero-form-head h3 { font-size: 1.05rem; margin: 0 0 2px; }
  .hero-form-head p { font-size: .78rem; margin: 0; }
  /* Force 2-column grid (don't collapse to full width) */
  .hero-form-card .contact-form .row { --bs-gutter-x: .4rem; --bs-gutter-y: .25rem; }
  .hero-form-card .contact-form .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .hero-form-card .form-label {
    font-size: .7rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--muted);
  }
  .hero-form-card .form-control,
  .hero-form-card .form-select {
    padding: 8px 10px;
    font-size: .82rem;
    border-radius: 8px;
  }
  .hero-form-card textarea.form-control { min-height: 56px; }
  .hero-form-card .btn-primary-brand {
    padding: 10px 16px;
    font-size: .9rem;
    border-radius: 10px;
    width: 100%;
  }

  /* Trust strip */
  .trust-strip .container-xxl { padding: 22px 20px; border-radius: 16px; }
  .trust-icon { width: 42px; height: 42px; font-size: 1.15rem; border-radius: 10px; }
  .trust-title { font-size: .9rem; }
  .trust-sub { font-size: .74rem; }

  /* About / Why list */
  .about-section .row { row-gap: 28px !important; }
  .why-list { gap: 12px; }
  .why-list li { font-size: .95rem; }

  /* Services */
  .services-list { gap: 40px; }
  .service-media { aspect-ratio: 16/11; border-radius: 16px; box-shadow: 0 14px 30px rgba(10,31,68,.12); }
  .service-content h3 { font-size: 1.5rem; margin-bottom: 12px; }
  .service-content p { font-size: .95rem; }
  .service-actions { gap: 10px; }
  .service-actions .btn-pill { padding: 10px 16px; font-size: .9rem; }

  /* Reviews */
  .review-card { padding: 22px; border-radius: 16px; }
  .review-card h6 { font-size: 1rem; }
  .review-section .row { row-gap: 16px !important; }

  /* FAQ */
  .faq-accordion .accordion-button { font-size: .98rem; padding: 16px 18px; }
  .faq-accordion .accordion-body { padding: 0 18px 18px; font-size: .92rem; }
  .faq-section .row { row-gap: 24px !important; }

  /* Contact — match hero form's compact horizontal language */
  .contact-section .row { row-gap: 20px !important; }
  .contact-image { aspect-ratio: 16/10; }
  .contact-section .contact-form {
    padding: 16px;
    border-radius: 14px;
    box-shadow: 0 14px 30px rgba(10,31,68,.08);
  }
  .contact-section .contact-form .row {
    --bs-gutter-x: .4rem;
    --bs-gutter-y: .35rem;
  }
  /* Make Email + Subject sit on one row (both are col-12 by default) */
  .contact-section .contact-form .row > .col-12:nth-of-type(1),
  .contact-section .contact-form .row > .col-12:nth-of-type(2) {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .contact-section .contact-form .form-label {
    font-size: .7rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--muted);
  }
  .contact-section .contact-form .form-control,
  .contact-section .contact-form .form-select {
    padding: 8px 10px;
    font-size: .82rem;
    border-radius: 8px;
  }
  .contact-section .contact-form textarea.form-control {
    min-height: 80px;
  }
  .contact-section .contact-form .btn-primary-brand {
    padding: 10px 16px;
    font-size: .9rem;
    border-radius: 10px;
    width: 100%;
  }

  /* Footer */
  .footer { padding: 56px 0 32px; }
  .footer-top { gap: 14px; }
  .footer-top .d-flex { gap: 10px 18px !important; }
  .footer-link.fs-5 { font-size: 1rem !important; }
  .footer-divider { margin: 22px 0; }
  .footer .row { row-gap: 28px !important; }
  .footer-bottom { margin-top: 28px; padding-top: 18px; flex-direction: column; align-items: flex-start; text-align: left; }

  /* Form toast - keep inside viewport */
  .form-toast { left: 12px; right: 12px; top: auto; bottom: 80px; max-width: none; }
  .form-toast.show { transform: translateY(0); }
  .form-toast { transform: translateY(20px); }
}

/* Small phones */
@media (max-width: 480px) {
  .hero { padding: 0 0 32px; }
  .hero-text h1 { font-size: clamp(1.8rem, 9vw, 2.3rem); line-height: 1.1; }
  .hero .d-flex.flex-wrap { gap: 10px !important; }
  .hero .btn-pill { width: 100%; justify-content: center; }
  .section-heading { font-size: clamp(1.6rem, 7vw, 2rem); }
  .service-media { aspect-ratio: 4/3; }
  .service-actions .btn-pill { width: 100%; justify-content: center; }
  .review-platforms .platform-badge { width: 42px; height: 42px; font-size: 1rem; }
}

/* ========== MOBILE OFFCANVAS CONTACT CARD ========== */
.mobile-nav-links a {
  color: var(--brand-ink);
  font-weight: 600;
  transition: color .2s ease;
}
.mobile-nav-links a:hover { color: var(--accent); }

.mobile-contact-card {
  background: linear-gradient(160deg, var(--brand) 0%, var(--brand-2) 100%);
  border-radius: 18px;
  padding: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.mobile-contact-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(96,165,250,.28) 0%, transparent 55%),
    radial-gradient(circle at 0% 100%, rgba(59,130,246,.18) 0%, transparent 55%);
  pointer-events: none;
}
.mobile-contact-card > * { position: relative; z-index: 1; }

.mobile-contact-location {
  display: flex; align-items: center; gap: 8px;
  font-size: .78rem;
  color: rgba(255,255,255,.78);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 14px;
}
.mobile-contact-location i { color: var(--accent-2); font-size: .95rem; }

.mobile-contact-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  color: #fff;
  margin-bottom: 10px;
  transition: all .2s ease;
}
.mobile-contact-item:hover,
.mobile-contact-item:active {
  background: rgba(255,255,255,.14);
  color: #fff;
  transform: translateY(-1px);
}
.mc-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(96,165,250,.18);
  color: var(--accent-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.mc-text {
  display: flex; flex-direction: column; line-height: 1.2;
  flex: 1; min-width: 0;
}
.mc-text small {
  font-size: .68rem;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 600;
  margin-bottom: 2px;
}
.mc-text strong {
  font-size: .92rem;
  font-weight: 600;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mc-arrow {
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}
.mobile-contact-item:hover .mc-arrow { color: #fff; transform: translate(2px,-2px); }

.mobile-contact-socials {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.mc-socials-label {
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  font-weight: 600;
}
.mc-socials { display: flex; gap: 8px; }
.mc-social {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem;
  transition: all .2s ease;
}
.mc-social:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.mc-social.google:hover   { background: #4285f4; }
.mc-social.yelp:hover     { background: #d32323; }
.mc-social.facebook:hover { background: #1877f2; }
.mc-social.instagram:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }

/* Safety: prevent any horizontal scroll and stretched images */
img { max-width: 100%; height: auto; }
/* Preserve cover behavior for media that fills its container.
   NOTE: .hero-image img is intentionally excluded so the mobile hero
   can render the full image (height:auto) without cropping. */
@media (min-width: 768px) {
  .hero-image img { height: 100%; }
}
.service-media img,
.contact-image,
.ba-figure img { height: 100%; }

