/* =============================================================
   TRITCH DOOR & WINDOW — Main Stylesheet
   ============================================================= */

/* ---- CSS Variables ---- */
:root {
  --navy: #1a2744;
  --navy-dark: #0f1830;
  --navy-mid: #243258;
  --red: #c41e1e;
  --red-hover: #a81818;
  --steel: #a5aebf;
  --muted: #6b7a99;
  --light-bg: #f4f6fb;
  --border: #e2e8f0;
  --white: #ffffff;

  --font-heading: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;

  --section-py: 5rem;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.14);
}

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

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--navy);
}

p {
  line-height: 1.75;
  color: var(--steel);
}

a {
  color: var(--red);
  text-decoration: none;
}
a:hover {
  color: var(--red-hover);
}

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

/* ---- Section Shared ---- */
section {
  padding: var(--section-py) 0;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.25rem;
}

.section-divider {
  width: 48px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
  margin: 0.5rem 0 1.25rem;
}

.text-red {
  color: var(--red) !important;
}

/* ---- Buttons ---- */
.btn-red {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 5px;
  border: 2px solid var(--red);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-red:hover {
  background: var(--red-hover);
  border-color: var(--red-hover);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-red.btn-lg {
  font-size: 0.85rem;
  padding: 0.8rem 2rem;
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 5px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white.btn-lg {
  font-size: 0.85rem;
  padding: 0.8rem 2rem;
}

.btn-outline-navy {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 5px;
  border: 2px solid var(--navy);
  transition:
    background 0.2s,
    color 0.2s,
    transform 0.15s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---- Scroll Animation ---- */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   TOP BAR
   ============================================================ */
#top-bar {
  background: var(--navy-dark);
  padding: 0.45rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.top-bar-info {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar-info a,
.top-bar-info span {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.top-bar-info a:hover {
  color: var(--white);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-tritch {
  background: var(--navy) !important;
  padding: 0.75rem 0;
  transition:
    background 0.3s,
    box-shadow 0.3s;
}
.navbar-tritch.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.navbar-brand-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-tritch .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem !important;
  transition: color 0.2s;
}
.navbar-tritch .nav-link:hover,
.navbar-tritch .nav-link.active {
  color: var(--white) !important;
}

/* Dropdown */
.navbar-tritch .dropdown-menu {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
  margin-top: 0.3rem;
  min-width: 200px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.35);
}
.navbar-tritch .dropdown-item {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
}
.navbar-tritch .dropdown-item:hover {
  background: rgba(196, 30, 30, 0.15);
  color: var(--white);
}

/* Nav CTA button */
.navbar-tritch .nav-cta-btn {
  background: var(--red) !important;
  color: var(--white) !important;
  border-radius: 5px;
  padding: 0.45rem 1.1rem !important;
  font-size: 0.75rem !important;
  border: 2px solid var(--red);
  transition:
    background 0.2s,
    border-color 0.2s !important;
}
.navbar-tritch .nav-cta-btn:hover {
  background: var(--red-hover) !important;
  border-color: var(--red-hover) !important;
}

/* Toggler */
.navbar-tritch .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3);
}
.navbar-tritch .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  padding-top: 5.5rem;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

/* Hero background carousel */
.hero-bg-carousel,
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-overlay {
  background: linear-gradient(
    105deg,
    var(--navy-dark) 0%,
    #0f1830de 50%,
    #1e306000 100%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.hero-slide.active {
  opacity: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
}

.hero-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}

#hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Trust bar */
.trust-bar {
  background: rgb(2 3 33 / 55%);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.1rem 0;
  margin-top: 1.5rem;
  z-index: 1;
  position: relative;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-item i {
  color: var(--red);
  font-size: 0.9rem;
}

/* ============================================================
   WHY CHOOSE
   ============================================================ */
#whychoose {
  background: var(--light-bg);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  border: 1px solid var(--border);
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: rgba(196, 30, 30, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--red);
}

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  background: var(--white);
}

.services-sub-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}
.services-sub-label.residential {
  background: rgba(26, 39, 68, 0.08);
  color: var(--navy);
}
.services-sub-label.commercial {
  background: rgba(196, 30, 30, 0.08);
  color: var(--red);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  height: 100%;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
.service-card-link:hover,
.service-card-link:focus {
  color: inherit;
  text-decoration: none;
}
.service-card-link:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}
.service-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.service-card-body {
  padding: 1rem;
}
.service-card-body h5 {
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  color: var(--navy);
}
.service-card-body p {
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* ============================================================
   GALLERY
   ============================================================ */
#gallery {
  background: var(--navy-dark);
  padding: var(--section-py) 0;
}
#gallery h2 {
  color: var(--white);
}

.gallery-link {
  font-family: var(--font-heading);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: color 0.2s;
}
.gallery-link:hover {
  color: var(--white);
}

.gallery-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 5/3;
  background: var(--navy-mid);
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-img-wrap:hover img {
  transform: scale(1.05);
}

/* ============================================================
   BRANDS
   ============================================================ */
#brands {
  background: var(--white);
  border-top: 1px solid rgb(0 0 0 / 9%);
}

.brands-track {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1rem;
}
.brand-pill {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
}
.brand-pill:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.brand-img-wrap {
  max-width: 240px;
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
}
.brand-img-wrap img {
  max-width: 220px;
  max-height: 60px;
  vertical-align: middle;
  min-width: 210px;
  object-fit: contain;
}

/* ============================================================
   COMMERCIAL
   ============================================================ */
#commercial {
  background: linear-gradient(
    135deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 100%
  );
}

#commercial h2 {
  color: var(--white);
}

.commercial-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.commercial-list li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.commercial-list li:last-child {
  border-bottom: none;
}
.commercial-list li i {
  color: var(--red);
  flex-shrink: 0;
  font-size: 0.95rem;
}

/* ============================================================
   PROCESS
   ============================================================ */
#process {
  background: var(--light-bg);
}

.process-step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  height: 100%;
  border: 1px solid var(--border);
  position: relative;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.process-step-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.step-circle {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(196, 30, 30, 0.4);
}
.step-icon {
  font-size: 2rem;
  color: var(--red);
  margin: 0.75rem 0 0.75rem;
}
.process-step-card h5 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.process-step-card p {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}

/* ============================================================
   REVIEWS
   ============================================================ */
#reviews {
  background: #f5f5f5;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  height: 100%;
  position: relative;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.google-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.1rem;
  color: #4285f4;
}
.review-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
.review-text {
  font-size: 0.88rem;
  color: var(--steel);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}
.reviewer-name {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--navy);
}
.reviewer-city {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* ============================================================
   QUOTE FORM + CONTACT
   ============================================================ */
#quote-form {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
}
#quote-form h2 {
  color: var(--white);
}
#quote-form p {
  color: rgba(255, 255, 255, 0.65);
}

.form-control-tritch {
  width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.72rem 1rem;
  transition:
    border-color 0.2s,
    background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control-tritch::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.form-control-tritch:focus {
  border-color: var(--red);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(196, 30, 30, 0.2);
}
.form-control-tritch option {
  background: var(--navy);
  color: var(--white);
}
textarea.form-control-tritch {
  resize: vertical;
  min-height: 110px;
}
select.form-control-tritch {
  cursor: pointer;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.ci-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(196, 30, 30, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--red);
}
.ci-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.2rem;
}
.ci-value {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}
a.ci-value:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   SERVICE AREA
   ============================================================ */
/*#servicearea { padding: 0; }

.sa-left {
  background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 100%);
  color: var(--white);
  padding: 5rem 3rem 5rem 2rem;
}
.sa-left h2 { color: var(--white); font-size: 1.6rem; }
.sa-left p { color: rgba(255,255,255,.7); }

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.82);
  border-radius: 20px;
  padding: .3rem .8rem;
  font-size: .78rem;
  font-weight: 600;
  margin: .2rem;
  transition: background .2s, color .2s;
}
.city-tag:hover { background: rgba(196,30,30,.2); color: var(--white); }

.sa-right {
  background: var(--light-bg);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: stretch;
}
.sa-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
*/
/* SERVICE AREA */
#servicearea {
  background: var(--navy);
  color: var(--white);
  padding: 0;
}

.sa-left {
  padding: 4rem 3rem 3rem;
}

.sa-intro a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
  text-decoration-color: rgba(196, 30, 30, 0.55);
  text-underline-offset: 3px;
}
.sa-intro a:hover {
  color: var(--white);
  text-decoration-color: var(--red);
}

/* City Cards Grid */
.sa-city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.sa-city-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 0.85rem 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition:
    background 0.2s,
    border-color 0.2s;
}
.sa-city-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.sa-city-name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.sa-city-name i {
  color: var(--red);
  font-size: 0.8rem;
}

.sa-city-county {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.25rem;
}

.sa-services-label {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.35rem;
}

.sa-services-list {
  list-style: none;
  padding: 0;
  margin: 0.15rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.sa-services-list li {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.7);
  padding-left: 0.85rem;
  position: relative;
  line-height: 1.4;
}
.sa-services-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
}

.sa-city-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
  padding-top: 0.6rem;
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: gap 0.2s;
}
.sa-city-link:hover {
  color: #e83a3a;
  gap: 0.5rem;
}

/* Map panel */
.sa-right {
  position: relative;
  min-height: 480px;
}
.sa-right img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Don't see your city? bar */
.sa-cta-bar {
  background: var(--white);
  border-top: 3px solid var(--red);
  padding: 1.25rem 0;
}
.sa-cta-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.sa-cta-icon {
  font-size: 2rem;
  color: var(--red);
  flex-shrink: 0;
}
.sa-cta-copy {
  flex: 1;
  min-width: 180px;
}
.sa-cta-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
}
.sa-cta-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Responsive */
@media (max-width: 1199.98px) {
  .sa-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 991.98px) {
  .sa-left {
    padding: 2.5rem 1.5rem;
  }
  .sa-right {
    min-height: 320px;
  }
}
@media (max-width: 575.98px) {
  .sa-city-grid {
    grid-template-columns: 1fr;
  }
  .sa-left {
    padding: 2rem 1rem;
  }
}
/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
}

footer h5 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

footer p {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

footer a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
footer a:hover {
  color: var(--white);
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-brand-sub {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-top: 0.1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  transition:
    background 0.2s,
    color 0.2s;
  margin: 0;
}
.footer-social a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.08);
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}
.footer-bottom a {
  display: inline;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8rem;
  margin: 0 0.5rem;
}
.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================================
   PAGE HERO (inner pages — contact, about, gallery, reviews)
   ============================================================ */
#about-hero,
#gallery-hero,
#reviews-hero,
#contact-hero {
  background: linear-gradient(
    105deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 60%,
    #1e3060 100%
  );
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
#contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}

/* ============================================================
   LOCATION PAGES
   ============================================================ */
#location-hero {
  background: linear-gradient(
    105deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 60%,
    #1e3060 100%
  );
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
/*#location-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}*/

#location-content {
  background: var(--white);
}
#location-services {
  background: var(--light-bg);
}
#location-reviews {
  background: var(--white);
  padding-bottom: 55px;
}

/* Popular service cards */
.loc-service-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  text-decoration: none;
  color: var(--navy);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  height: 100%;
}
.loc-service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: var(--navy);
}
.loc-service-card > i {
  font-size: 1.4rem;
  color: var(--red);
  flex-shrink: 0;
}
.loc-svc-title {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
}
.loc-svc-desc {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Contact sidebar card */
.loc-contact-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.loc-contact-header {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.loc-contact-header i {
  color: var(--red);
}
.loc-contact-body {
  padding: 1.25rem;
  background: var(--white);
}
.loc-contact-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  margin-bottom: 0.75rem;
  color: var(--navy);
}
.loc-contact-row i {
  color: var(--red);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.loc-contact-row a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}
.loc-contact-row a:hover {
  color: var(--red);
}

/* Nearby card */
.loc-nearby-card {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.loc-nearby-card h6 {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.loc-nearby-card h6 i {
  color: var(--red);
}
.loc-nearby-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

/* ============================================================
   SERVICE PAGES
   ============================================================ */
#service-hero {
  background: linear-gradient(
    105deg,
    var(--navy-dark) 0%,
    var(--navy-mid) 60%,
    #1e3060 100%
  );
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}
.inner-hero {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  position: relative;
}
.inner-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--navy-dark);
  pointer-events: none;
  opacity: 0.75;
}
.service-breadcrumb,
.breadcrumb {
  position: relative;
  z-index: 1;
  background: rgb(11 21 43 / 86%);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.65rem 0;
  margin-top: 3rem;
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb-list li {
  display: flex;
  align-items: center;
  color: var(--red);
}
.breadcrumb-list a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}
.breadcrumb-list a:hover {
  color: var(--white);
}
.breadcrumb-list .active {
  color: rgba(255, 255, 255, 1);
}
.breadcrumb-list i {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
}

#service-content {
  background: var(--white);
}

.service-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}
.service-benefits-list li:last-child {
  border-bottom: none;
}
.service-benefits-list li i {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
}
.service-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy);
}
.service-trust-item i {
  color: var(--red);
  font-size: 0.9rem;
}

#related-services {
  background: var(--light-bg);
  padding: 3rem 0;
}
#related-services h2 {
  font-size: 1.3rem;
}

.related-service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 0.75rem;
  text-align: center;
  color: var(--navy);
  text-decoration: none;
  height: 100%;
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
}
.related-service-card i {
  font-size: 1.4rem;
  color: var(--red);
}
.related-service-card span {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
}
.related-service-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: var(--navy);
}

#service-faqs {
  background: var(--light-bg);
}

.service-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px !important;
  margin-bottom: 0.5rem;
  overflow: hidden;
}
.service-accordion .accordion-button {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--navy);
  background: var(--white);
  padding: 1.1rem 1.25rem;
  box-shadow: none;
}
.service-accordion .accordion-button:not(.collapsed) {
  color: var(--red);
  background: rgba(196, 30, 30, 0.04);
}
.service-accordion .accordion-button::after {
  filter: none;
}
.service-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(17%) sepia(97%) saturate(2600%)
    hue-rotate(350deg) brightness(90%);
}
.service-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--steel);
  line-height: 1.7;
  padding: 0.75rem 1.25rem 1.25rem;
}

/* ============================================================
   ABOUT — STORY & STATS
   ============================================================ */
#about-story {
  background: var(--white);
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}
.about-stat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ============================================================
   GALLERY FULL
   ============================================================ */
#gallery-full {
  background: var(--white);
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.gf-btn {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 25px;
  padding: 0.45rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.gf-btn:hover,
.gf-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.gallery-item {
  transition:
    opacity 0.25s,
    transform 0.25s;
}
.gallery-item.hidden {
  display: none;
}

.gallery-img-wrap {
  position: relative;
  overflow: hidden;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 48, 0.75);
  display: flex;
  align-items: flex-end;
  padding: 0.75rem;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-img-wrap:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
}

/* ============================================================
   REVIEWS — RATING SUMMARY
   ============================================================ */
#reviews-full {
  background: var(--light-bg);
}

.rating-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem 3rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}
.rating-score {
  text-align: center;
  flex-shrink: 0;
}
.rating-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--navy);
  line-height: 1;
}
.rating-stars-lg {
  color: #f59e0b;
  font-size: 1.2rem;
  margin: 0.4rem 0;
}
.rating-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.rating-divider {
  width: 1px;
  height: 80px;
  background: var(--border);
  flex-shrink: 0;
}
.rating-meta {
  flex: 1;
  min-width: 240px;
}
.rating-meta h2 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.rating-meta p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

/* ============================================================
   CONTACT INFO CARDS
   ============================================================ */
#contact-info {
  background: var(--light-bg);
}

.cinfo-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  height: 100%;
  text-align: center;
  transition:
    box-shadow 0.25s,
    transform 0.25s;
}
.cinfo-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.cinfo-icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(196, 30, 30, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.3rem;
  color: var(--red);
}
.cinfo-card h5 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  color: var(--navy);
}
.cinfo-card p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 0.75rem;
}
.cinfo-card a,
.cinfo-card span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  word-break: break-all;
}
.cinfo-card a:hover {
  color: var(--red);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s,
    visibility 0.3s,
    transform 0.2s;
  z-index: 999;
  text-decoration: none;
}
#back-to-top.visible {
  opacity: 1;
  visibility: visible;
}
#back-to-top:hover {
  background: var(--red-hover);
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   THANK YOU NOTES SLIDER
   ============================================================ */
.notes-slider-wrap {
  position: relative;
  overflow: hidden;
  padding: 0 2.75rem;
}
.notes-track {
  display: flex;
  gap: 1.25rem;
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.note-card {
  flex: 0 0 calc((100% - 2 * 1.25rem) / 3);
  cursor: pointer;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  transition:
    border-color 0.2s,
    box-shadow 0.2s,
    transform 0.2s;
  outline-offset: 3px;
}
.note-card:hover,
.note-card:focus-visible {
  border-color: var(--red);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  outline: 2px solid var(--red);
}
.note-img-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--light-bg);
}
.note-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.note-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 48, 0.62);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  opacity: 0;
  transition: opacity 0.25s;
  color: var(--white);
}
.note-overlay i {
  font-size: 1.85rem;
}
.note-overlay span {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.note-card:hover .note-overlay,
.note-card:focus-visible .note-overlay {
  opacity: 1;
}

.notes-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    box-shadow 0.2s;
  z-index: 2;
  box-shadow: var(--shadow);
}
.notes-nav:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.notes-nav:disabled {
  opacity: 0.3;
  pointer-events: none;
}
.notes-prev {
  left: 0;
}
.notes-next {
  right: 0;
}

.notes-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}
.notes-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  padding: 0;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
}
.notes-dot.active {
  background: var(--red);
  transform: scale(1.4);
}

/* Note Modal */
.note-modal-content {
  background: #111;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}
.note-modal-header {
  background: #111;
  border: none;
  padding: 0.85rem 1.25rem 0.3rem;
  display: flex;
  align-items: center;
}
.note-modal-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.note-modal-body {
  background: #111;
  padding: 0.5rem 1.25rem 1.25rem;
  text-align: center;
}
.note-modal-img {
  max-height: 82vh;
  object-fit: contain;
  border-radius: 6px;
}

@media (max-width: 991.98px) {
  .note-card {
    flex: 0 0 calc((100% - 1.25rem) / 2);
  }
}
@media (max-width: 575.98px) {
  .note-card {
    flex: 0 0 100%;
  }
  .notes-slider-wrap {
    padding: 0 2.25rem;
  }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  :root {
    --section-py: 3.5rem;
  }

  .sa-left {
    padding: 3rem 1.5rem;
  }
  .sa-right {
    min-height: 260px;
  }

  .navbar-tritch .dropdown-menu {
    background: rgba(255, 255, 255, 0.05);
    border: none;
  }
  .navbar-tritch .dropdown-item {
    padding: 0.4rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    --bs-gutter-x: 2.5rem;
  }

  :root {
    --section-py: 3rem;
  }

  #hero {
    padding-top: 2.5rem;
  }
  .hero-content {
    padding: 2rem 20px 2rem;
  }
  #hero h1 {
    font-size: 1.8rem;
  }

  .trust-bar-inner {
    gap: 1rem 1.5rem;
    justify-content: flex-start;
    overflow: auto;
    flex-wrap: nowrap;
  }
  .trust-item {
    font-size: 0.65rem;
    white-space: nowrap;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
  .btn-red.btn-lg {
    font-size: 0.7rem;
    padding: 0.8rem 1rem;
  }
  .brand-img-wrap {
    max-width: 160px;
  }
  .brand-img-wrap img {
    max-width: 160px;
    max-height: 60px;
    min-width: 130px;
  }
  body .ps-4 {
    padding-left: 0 !important;
  }
  #quote-form .row.g-5 {
    --bs-gutter-x: 1rem;
  }
  .inner-hero {
    padding-top: 50px !important;
  }
}

/* Manufacturer partner cards */
.brand-link-card {
  display: flex;
  min-height: 125px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  text-decoration: none !important;
  padding: 1rem;
  transition:
    transform 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.brand-link-card:hover {
  transform: translateY(-3px);
  border-color: var(--red);
  box-shadow: var(--shadow);
}
.brand-view-link {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  opacity: 0;
  transition: opacity 0.2s;
}
.brand-link-card:hover .brand-view-link,
.brand-link-card:focus .brand-view-link {
  opacity: 1;
}
.brand-text-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--navy);
}

/* ============================================================
   SERVICE PAGE POLISH — 2026-08-25
   Tighten transitions between service-page sections and keep
   in-page anchor targets clear of the sticky navigation.
   ============================================================ */
body:has(#service-hero) #service-content {
  padding-bottom: 4rem;
}

body:has(#service-hero) #related-services {
  padding-top: 3.25rem;
  padding-bottom: 3.25rem;
}

body:has(#service-hero) #manufacturer-options,
body:has(#service-hero) #service-faqs {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Bootstrap's sticky nav is about 60px tall on desktop. Leave a little
   breathing room so #quote-form and other service anchors do not land
   underneath it. */
body:has(#service-hero) section[id] {
  scroll-margin-top: 5rem;
}

@media (max-width: 991.98px) {
  body:has(#service-hero) #service-content,
  body:has(#service-hero) #manufacturer-options,
  body:has(#service-hero) #service-faqs {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }

  body:has(#service-hero) #related-services {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  body:has(#service-hero) section[id] {
    scroll-margin-top: 4.5rem;
  }
}

/* reCAPTCHA */
.grecaptcha-badge {
  visibility: hidden !important;
}

.recaptcha-notice {
  font-size: 0.75rem;
  line-height: 1.5;
  opacity: 0.7;
}

.recaptcha-notice a {
  color: inherit;
  text-decoration: underline;
}

.recaptcha-notice a:hover,
.recaptcha-notice a:focus {
  opacity: 0.8;
}
