/* =====================================================
   Deluxe Coating — Main Stylesheet
   Brand color: #0AA8A7 | Phone: 604-839-8072
   ===================================================== */

/* Google Fonts import handled in HTML */

:root {
  --primary: #0AA8A7;
  --primary-dark: #099a99;
  --primary-darker: #087d7c;
  --primary-light: #e6f7f7;
  --dark: #1b2229;
  --dark-alt: #101418;
  --light: #EDF6F5;
  --light-alt: #f8fafa;
  --gray: #6c757d;
  --text: #3a4452;
  --white: #ffffff;
  --border: #dee2e6;
  --shadow: 0 4px 24px rgba(10,168,167,.12);
  --shadow-lg: 0 8px 40px rgba(10,168,167,.18);
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --transition: 0.25s ease;
  --font-body: 'Open Sans', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  /* Bootstrap focus-ring override — replace default blue with brand teal */
  --bs-focus-ring-color: rgba(10, 168, 167, 0.25);
  --bs-btn-focus-shadow-rgb: 10, 168, 167;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  font-size: 1rem;
  line-height: 1.7;
  background: #f7f6f4;
  -webkit-font-smoothing: antialiased;
  padding-top: 76px; /* compensates for fixed-top navbar */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--dark);
  font-weight: 600;
  line-height: 1.3;
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }

img { max-width: 100%; height: auto; }

/* ── Section Spacing ── */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

/* ── Utility ── */
.text-primary { color: var(--primary) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-primary-light { background-color: var(--primary-light) !important; }
.bg-dark-custom { background-color: var(--dark) !important; }
.bg-light-custom { background-color: var(--light) !important; }
.text-dark-custom { color: var(--dark) !important; }

.badge-primary {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35em 0.85em;
  border-radius: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ── Buttons ── */
.btn {
  font-family: var(--font-heading);
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all var(--transition);
  letter-spacing: 0.02em;
  -webkit-tap-highlight-color: rgba(10,168,167,.15);
}

/* Universal teal focus-ring catch-all — overrides Bootstrap's default blue for all .btn variants */
.btn:focus,
.btn:active,
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(10,168,167,.25);
}

.btn-primary {
  /* Override Bootstrap's blue active/hover variables — Bootstrap's (0,3,0)
     active selector uses these, beating our (0,2,0) property overrides */
  --bs-btn-bg: #0AA8A7;
  --bs-btn-color: #fff;
  --bs-btn-border-color: #0AA8A7;
  --bs-btn-hover-bg: #099a99;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: #099a99;
  --bs-btn-active-bg: #099a99;
  --bs-btn-active-color: #fff;
  --bs-btn-active-border-color: #099a99;
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  padding: 0.65rem 1.5rem;
}

/* Override Bootstrap's per-variant blue --bs-btn-focus-shadow-rgb with teal.
   Bootstrap 5.3.2 scopes this variable per variant (.btn-primary: 49,132,253 blue),
   overriding :root. We must re-override at variant level to fix variable-computed rings. */
.btn-primary,
.btn-secondary,
.btn-success,
.btn-danger,
.btn-warning,
.btn-info,
.btn-light,
.btn-dark,
.btn-link,
.btn-outline-primary,
.btn-outline-secondary,
.btn-outline-success,
.btn-outline-danger,
.btn-outline-warning,
.btn-outline-info,
.btn-outline-light,
.btn-outline-dark {
  --bs-btn-focus-shadow-rgb: 10, 168, 167;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:focus-visible {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(10,168,167,.3);
}

.btn-outline-primary {
  /* Override Bootstrap's blue active/hover variables */
  --bs-btn-color: #0AA8A7;
  --bs-btn-border-color: #0AA8A7;
  --bs-btn-hover-bg: #0AA8A7;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-border-color: #0AA8A7;
  --bs-btn-active-bg: #0AA8A7;
  --bs-btn-active-color: #fff;
  --bs-btn-active-border-color: #0AA8A7;
  border-color: var(--primary);
  color: var(--primary);
  padding: 0.65rem 1.5rem;
}
.btn-outline-primary:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-primary:focus,
.btn-outline-primary:active,
.btn-outline-primary:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 0.25rem rgba(10,168,167,.25);
  outline: none;
}

.btn-white {
  /* --bs-btn-active-bg defaults to transparent on unknown variants;
     override to keep white background on click */
  --bs-btn-active-bg: #ffffff;
  --bs-btn-active-color: #0AA8A7;
  --bs-btn-active-border-color: #ffffff;
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--white);
  font-weight: 600;
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-white:focus,
.btn-white:active,
.btn-white:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(255,255,255,.35);
  outline: none;
}

.btn-outline-secondary:focus,
.btn-outline-secondary:active,
.btn-outline-secondary:focus-visible {
  box-shadow: 0 0 0 0.25rem rgba(10,168,167,.20);
  outline: none;
}

.btn-lg { padding: 0.85rem 2rem; font-size: 1.05rem; }
.btn-sm { padding: 0.45rem 1.1rem; font-size: 0.875rem; }

/* ── Headroom.js ── */
.navbar.headroom {
  will-change: transform;
  transition: transform 200ms linear, padding var(--transition), box-shadow var(--transition);
}
.navbar.headroom--pinned  { transform: translateY(0%); }
.navbar.headroom--unpinned { transform: translateY(-100%); }

/* ── Navbar ── */
.navbar {
  background: var(--dark);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
  padding: 0.75rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,.1);
}

.navbar-brand img { height: 52px; width: auto; }

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.6rem 1rem;
  transition: color var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--primary); }

.navbar-toggler { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.2); }

/* Dropdown */
.navbar .dropdown-menu {
  background: #232c35;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
  border-radius: var(--radius);
  padding: 0.5rem;
  min-width: 220px;
}
.navbar .dropdown-item {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  border-radius: 0.4rem;
  color: rgba(255,255,255,0.85);
  transition: all var(--transition);
}
.navbar .dropdown-item:hover {
  background: rgba(10,168,167,0.18);
  color: var(--primary);
}
.navbar .dropdown-item.active,
.navbar .dropdown-item.active:hover,
.navbar .dropdown-item.active:focus {
  background: rgba(10,168,167,0.22);
  color: var(--primary);
  font-weight: 600;
}
.navbar .dropdown-item i { width: 1.25rem; color: var(--primary); margin-right: 0.5rem; }
.navbar .dropdown-menu .dropdown-divider { border-color: rgba(255,255,255,0.10); }

/* Phone in navbar */
.navbar-phone {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: color var(--transition);
}
.navbar-phone:hover { color: var(--primary-dark); }
.navbar-phone i { font-size: 0.85rem; }

/* Mobile sticky CTA bar */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  background: var(--white);
  box-shadow: 0 -2px 16px rgba(0,0,0,.12);
  padding: 0.65rem 1rem;
  gap: 0.5rem;
}
.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 0.5rem;
  padding: 0.65rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}
.mobile-cta-bar .cta-call {
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--primary);
}
.mobile-cta-bar .cta-estimate {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.mobile-cta-bar a {
  -webkit-tap-highlight-color: rgba(10,168,167,.15);
}
.mobile-cta-bar a:focus,
.mobile-cta-bar a:active,
.mobile-cta-bar a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(10,168,167,.3);
}

@media (max-width: 991.98px) {
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 72px; }
  .navbar-collapse { background: var(--dark); padding: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1e2d3a 100%);
  min-height: 92vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(10,168,167,.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(10,168,167,.2);
  color: #5dd5d4;
  border: 1px solid rgba(10,168,167,.35);
  border-radius: 2rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35em 1em;
  margin-bottom: 1.25rem;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--primary); }

.hero-sub {
  color: rgba(255,255,255,.8);
  font-size: 1.15rem;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-phone {
  color: rgba(255,255,255,.9);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-phone i { color: var(--primary); }
.hero-phone a { color: inherit; }
.hero-phone a:hover { color: var(--primary); }

.hero-trust-bar {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}
.hero-trust-item {
  color: rgba(255,255,255,.75);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.hero-trust-item i { color: var(--primary); }
/* Trust items when used on light/white section backgrounds */
.hero-trust-bar.trust-bar-light .hero-trust-item { color: var(--gray); }

.hero-image-col {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-img-wrapper img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

/* Hero variant for inner pages */
.hero-inner {
  background: linear-gradient(135deg, var(--dark) 0%, #1e2d3a 100%);
  padding: 4rem 0 3.5rem;
}
.hero-inner h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.75rem); }
.hero-inner .breadcrumb { background: transparent; padding: 0; margin-bottom: 0.75rem; --bs-breadcrumb-divider-color: rgba(255,255,255,.35); }
.hero-inner .breadcrumb-item a { color: rgba(255,255,255,.65); font-size: 0.85rem; }
.hero-inner .breadcrumb-item { color: rgba(255,255,255,.4); font-size: 0.85rem; }
.hero-inner .breadcrumb-item.active { color: rgba(255,255,255,.85); }

/* ── Cards ── */
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: all var(--transition);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(10,168,167,.2);
}

.card-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  flex-shrink: 0;
}

.feature-card { background: var(--white); border: 1px solid rgba(0,0,0,.07); }
.feature-card:hover { background: var(--white); border-color: rgba(10,168,167,.2); }

/* Service track cards */
.track-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  transition: all var(--transition);
}
.track-card.residential {
  background: linear-gradient(135deg, #f0fafa 0%, #e6f7f7 100%);
  border: 1px solid rgba(10,168,167,.15);
}
.track-card.commercial {
  background: linear-gradient(135deg, var(--dark) 0%, #1e2d3a 100%);
  color: var(--white);
}
.track-card.commercial h3,
.track-card.commercial p { color: rgba(255,255,255,.9); }
.track-card.commercial h3 { color: var(--white); }
.track-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

/* ── Stats bar ── */
.stats-bar {
  background: var(--dark);
  padding: 1.5rem 0;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  display: block;
}
.stat-label {
  color: rgba(255,255,255,.65);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (max-width: 576px) {
  .stats-bar .col-6 { border-bottom: 1px solid rgba(255,255,255,.15); padding: 1rem 0; }
}

/* ── Testimonials ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  border: 1px solid var(--border);
  height: 100%;
}

.stars { color: #f59e0b; font-size: 1rem; letter-spacing: 0.05em; }

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-light);
}

.testimonial-quote {
  font-size: 0.975rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.75;
}

/* Swiper testimonials */
.swiper-testimonial .swiper-slide { padding: 1rem 0.5rem 2rem; }
.swiper-pagination-bullet-active { background: var(--primary) !important; }
.swiper-pagination-bullet { background: rgba(10,168,167,.35); opacity: 1; }

/* ── Process steps ── */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}
.process-number {
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}
.process-connector {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--primary), transparent);
  margin: 0.25rem auto;
  min-height: 2rem;
}

/* ── FAQ accordion ── */
.accordion-item {
  border: 1px solid var(--border);
  border-radius: var(--radius) !important;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  box-shadow: none !important;
  padding: 1.1rem 1.25rem;
}
.accordion-button:not(.collapsed) {
  color: var(--primary);
  background: var(--primary-light);
}
.accordion-button::after {
  filter: none;
}
.accordion-button:not(.collapsed)::after {
  filter: invert(55%) sepia(78%) saturate(500%) hue-rotate(157deg);
}
.accordion-button:focus,
.accordion-button:focus-visible {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(10,168,167,.2);
}
.accordion-body {
  font-size: 0.925rem;
  color: var(--text);
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid var(--border);
}

/* ── Location cards ── */
.location-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.location-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(10,168,167,.25);
}
.location-card-body {
  padding: 1.25rem;
}

/* ── Gallery ── */
.gallery-filter-btn {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 0.45rem 1.25rem;
  border-radius: 2rem;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--gray);
  cursor: pointer;
  transition: all var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}
.gallery-filter-btn:focus,
.gallery-filter-btn:active,
.gallery-filter-btn:focus-visible {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  box-shadow: 0 0 0 0.2rem rgba(10,168,167,.25);
  outline: none;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  padding: 1.25rem;
  color: var(--white);
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay span { font-size: 0.85rem; font-weight: 600; }

/* ── Multi-step form ── */
.form-wizard { max-width: 640px; margin: 0 auto; }
.form-wizard-steps {
  display: flex;
  gap: 0;
  margin-bottom: 2.5rem;
  position: relative;
}
.form-wizard-steps::before {
  content: '';
  position: absolute;
  top: 1.1rem;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.form-wizard-step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}
.step-bubble {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--border);
  color: var(--gray);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.4rem;
  transition: all var(--transition);
}
.form-wizard-step.active .step-bubble {
  background: var(--primary);
  color: var(--white);
}
.form-wizard-step.completed .step-bubble {
  background: var(--primary-dark);
  color: var(--white);
}
.step-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-wizard-step.active .step-label { color: var(--primary); }

.form-pane { display: none; }
.form-pane.active { display: block; }

.type-option {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.type-option:hover {
  border-color: var(--primary);
  background: var(--primary-light);
}
.type-option.selected {
  border-color: var(--primary);
  background: var(--primary-light);
}
.type-option i { font-size: 2rem; color: var(--primary); display: block; margin-bottom: 0.5rem; }
.type-option strong { font-family: var(--font-heading); font-size: 0.95rem; display: block; color: var(--dark); }
.type-option small { color: var(--gray); font-size: 0.8rem; }

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 0.5rem;
  padding: 0.7rem 1rem;
  font-size: 0.925rem;
  color: var(--dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,168,167,.12);
  outline: none;
}

.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

/* Response promise bar */
.response-promise {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--primary-dark);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
  background: var(--primary-light);
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.response-promise i { font-size: 1rem; }

/* ── Contact info block ── */
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}
.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--primary-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

/* ── Warranty badge ── */
.warranty-badge {
  background: var(--primary);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}
.warranty-badge .warranty-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--white);
}
.warranty-badge .warranty-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,.85);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── CTA sections ── */
.cta-section {
  background: linear-gradient(135deg, #0b3e3e 0%, var(--dark) 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--white); }
.cta-section p { color: rgba(255,255,255,.85); max-width: 520px; margin: 0 auto 1.75rem; }

/* ── Footer ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
}
.footer-top { padding: 4rem 0 2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,.45);
  text-align: center;
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--primary); }

.footer-heading {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:not(.btn):hover { color: var(--primary); }

.footer-contact a { color: rgba(255,255,255,.7); }
.footer-contact a:not(.btn):hover { color: var(--primary); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  margin-right: 0.4rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-tagline { color: rgba(255,255,255,.5); font-size: 0.85rem; margin-top: 0.35rem; }
.footer-top img { max-width: 180px; }

/* ── Schema / SEO helpers ── */
.visually-hidden-seo {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ── Certifications / badges row ── */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}
.trust-badge i { color: var(--primary); font-size: 1.1rem; }

/* ── Responsive tweaks ── */
@media (max-width: 1199.98px) {
  .section { padding: 4rem 0; }
}
@media (max-width: 767.98px) {
  .section { padding: 3rem 0; }
  .hero { min-height: auto; padding: 4rem 0 3rem; }
  .hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .stats-bar .col-6:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.15); }
}
@media (max-width: 575.98px) {
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .form-wizard-steps::before { display: none; }
}

/* =====================================================
   Inner page hero background photo overlay
   ===================================================== */
.hero-inner {
  position: relative;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.10;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero-inner .container {
  position: relative;
  z-index: 1;
}

/* Gallery card image */
.gallery-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: .5rem .5rem 0 0;
  display: block;
}

/* Our Work project card */
.project-card-cover { overflow: hidden; border-radius: 0.75rem 0.75rem 0 0; }
.project-card-cover img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .35s; display: block; }
.project-card-cover:hover img { transform: scale(1.04); }

/* Specialty photo-card section */
.specialty-section { background: var(--dark); padding: 4rem 0; }

.specialty-photo-card {
  display: block;
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  text-decoration: none;
  transition: outline .15s;
  outline: 2px solid transparent;
}
.specialty-photo-card:hover { outline: 2px solid var(--primary); outline-offset: 2px; }
.specialty-photo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.specialty-photo-card:hover img { transform: scale(1.06); }

.specialty-photo-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.95) 0%, rgba(0,0,0,.65) 45%, rgba(0,0,0,.1) 75%, transparent 100%);
  padding: 1.25rem .9rem .9rem;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,.9);
}
.specialty-photo-title { font-weight: 700; font-size: 1rem; line-height: 1.25; }
.specialty-photo-sub   { font-size: .78rem; color: rgba(255,255,255,.82); margin-top: .2rem; }
.specialty-photo-arrow {
  display: inline-flex; align-items: center; gap: .3rem;
  font-size: .72rem; font-weight: 700;
  color: #fff;
  background: var(--primary);
  padding: .22rem .65rem;
  border-radius: 2rem;
  margin-top: .55rem;
  transition: background .2s, gap .2s;
}
.specialty-photo-card:hover .specialty-photo-arrow {
  background: #08908f;
  gap: .45rem;
}

/* GLightbox custom overlay */
.glightbox-clean .gslide-description { background: rgba(0,0,0,.75); }

/* ── Back to top ── */
#back-to-top {
  position: fixed;
  bottom: 90px; /* above mobile-cta-bar on small screens */
  right: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, background var(--transition);
  z-index: 1040;
  box-shadow: 0 2px 10px rgba(0,0,0,.2);
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover { background: #088e8d; }
@media (min-width: 992px) {
  #back-to-top { bottom: 30px; }
}
