/* =====================================================
   WARRENVILLE PLUMBING & CO. — GLOBAL STYLES
   Single stylesheet for all pages (homepage + about)
   GoBoost: inject this as an inline <style> block
===================================================== */


/* =====================================================
   FONTS
===================================================== */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=Inter:wght@400;500;600;700;800&display=swap');


/* =====================================================
   BASE RESET
   Scoped to #gbPage to avoid Bootstrap conflicts
===================================================== */
*, *::before, *::after { box-sizing: border-box; }
#gbPage *, #gbPage *::before, #gbPage *::after { box-sizing: border-box; }
body { margin: 0; padding: 0; }
body,
#gbPage { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.6; color: #222; -webkit-font-smoothing: antialiased; }
a, #gbPage a { text-decoration: none; }
a:hover, #gbPage a:hover { text-decoration: none; }
ul, ol, #gbPage ul, #gbPage ol { list-style: none; margin: 0; padding: 0; }
img, #gbPage img { display: block; max-width: 100%; }

.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: #0D2342;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 0 0 4px 4px;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-nav:focus { top: 0; }


/* =====================================================
   SHARED UTILITIES
===================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #D91E25;
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #0D2342;
  line-height: 1.1;
  margin-bottom: 40px;
}
.hero-accent-line {
  width: 48px;
  height: 4px;
  background: #D91E25;
  border-radius: 2px;
  margin-bottom: 22px;
}


/* =====================================================
   BUTTONS
===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  padding: 13px 24px;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

/* Red buttons — resting */
.btn-red,
.btn-phone-cta {
  background: #D91E25 !important;
  color: #fff !important;
  border-color: #D91E25 !important;
}

/* Red buttons — hover (identical across all red buttons, !important beats Bootstrap) */
.btn-red:hover,
.btn-phone-cta:hover {
  background: #b31920 !important;
  border-color: #b31920 !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.btn-outline-navy {
  background: transparent;
  color: #0D2342;
  border-color: #0D2342;
}
.btn-outline-navy:hover { background: #0D2342; color: #fff; }
.btn-lg {
  font-size: 13px;
  padding: 15px 32px;
  letter-spacing: 0.1em;
}
.btn-wide { padding-left: 48px; padding-right: 48px; }
.btn-phone-cta {
  font-size: 20px;
  font-weight: 800;
  padding: 16px 52px;
  gap: 12px;
  border-radius: 4px;
  border: 2px solid #D91E25;
  display: inline-flex;
  align-items: center;
  letter-spacing: 0.02em;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
  cursor: pointer;
  white-space: nowrap;
}
.btn-phone-cta .fa { font-size: 18px; }


/* =====================================================
   HEADER
===================================================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 #e4e7eb, 0 2px 12px rgba(0,0,0,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.site-logo {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
  width: 250px;
  max-width: 100%;
}
.logo-line {
  display: block;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.logo-line-1 { font-size: 15px; }
.logo-line-2 { font-size: 12px; letter-spacing: 0.06em; opacity: 0.85; margin-top: 2px; }
.site-nav ul {
  display: flex;
  gap: 8px;
  align-items: center;
}
.site-nav ul li a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #374151;
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.15s, background 0.15s;
}
.site-nav ul li a:hover { color: #D91E25; background: #fef2f2; }
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  color: #0D2342;
  cursor: pointer;
  padding: 4px;
  line-height: 1;
}


/* =====================================================
   HOMEPAGE HERO
===================================================== */
.hero {
  margin-top: 66px;
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #071525;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,21,37,0.78) 0%, rgba(7,21,37,0.50) 45%, rgba(7,21,37,0.10) 100%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 40px;
}
.hero-content {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  z-index: 2;
}
.hero-content h1 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 74px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.hero-content .hero-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: rgba(255,255,255,0.72);
  max-width: 400px;
  margin-bottom: 20px;
}
.hero-plain-badges {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
}
.hero-phone-link {
  display: block;
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 58px;
  font-weight: 900;
  color: #D91E25;
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.hero-phone-link:hover { color: #ff3a40; }
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* =====================================================
   TRUST BAR
===================================================== */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #e4e7eb;
}
.trust-bar-inner {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}
.trust-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid #e4e7eb;
  gap: 10px;
}
.trust-item:last-child { border-right: none; }
.trust-img {
  height: 64px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.trust-value {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #D91E25;
}
.trust-value--sm {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 900;
  color: #D91E25;
}
.trust-label {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0D2342;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.35;
  text-align: center;
}


/* =====================================================
   HOMEPAGE ABOUT SECTION
===================================================== */
.about-section {
  padding: 90px 0;
  background: #fff;
}
.about-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.about-photo {
  flex: 0 0 45%;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.about-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}
.about-content { flex: 1; }
.about-content .section-title {
  font-size: 38px;
  margin-bottom: 18px;
}
.about-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #6b7280;
  margin-bottom: 30px;
}


/* =====================================================
   HOMEPAGE SERVICES SECTION
===================================================== */
.services-section {
  padding: 90px 0;
  background: #f7f8fa;
}
.services-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.services-inner .section-title,
.services-inner .section-eyebrow {
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.service-card {
  background: #fff;
  border: 1.5px solid #e4e7eb;
  border-radius: 6px;
  padding: 30px 14px 24px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.service-card:hover {
  border-color: #0D2342;
  box-shadow: 0 6px 24px rgba(13,35,66,0.1);
  transform: translateY(-3px);
}
.svc-icon {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-icon img {
  height: 64px;
  width: auto;
  display: block;
  object-fit: contain;
}
.svc-name {
  font-size: 11.5px;
  font-weight: 800;
  color: #0D2342;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.45;
}
.services-cta { text-align: center; }


/* =====================================================
   SERVICES PAGE — DETAIL CARDS
===================================================== */
.sv-section {
  padding: 80px 0;
  background: #fff;
}
.sv-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.sv-accent-line {
  width: 36px;
  height: 3px;
  background: #D91E25;
  border-radius: 2px;
  margin: -28px auto 24px;
}
.sv-subtitle {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.sv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.sv-card {
  background: #fff;
  border: 2.5px solid #e4e7eb;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.sv-card:hover {
  box-shadow: 0 6px 24px rgba(13,35,66,0.1);
  transform: translateY(-3px);
}
.sv-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #e4e7eb;
}
.sv-card-icon {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}
.sv-card-name {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: #0D2342;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin: 0;
}
.sv-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}
.sv-card-body {
  padding: 20px;
  flex: 1;
}
.sv-card-body p {
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}


/* =====================================================
   SERVICES PAGE — SERVICE LIST SECTION
===================================================== */
.sv-list-section {
  padding: 80px 0;
  background: #f7f8fa;
}
.sv-list-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.sv-list-top {
  display: flex;
  gap: 60px;
  align-items: center;
  margin-bottom: 56px;
}
.sv-list-heading {
  flex: 1;
}
.sv-list-heading .section-title {
  font-size: 32px;
  margin-bottom: 16px;
}
.sv-list-heading > p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}
.sv-list-photo {
  flex: 0 0 44%;
}
.sv-list-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.sv-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 48px;
}
.sv-list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.sv-list-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: #D91E25;
  color: #fff;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
  flex-shrink: 0;
}
.sv-list-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0D2342;
  margin: 0 0 3px;
  line-height: 1.35;
}
.sv-list-item p {
  font-size: 12px;
  color: #6b7280;
  line-height: 1.5;
  margin: 0;
}
.sv-list-item--emergency {
  border: 2px solid #D91E25;
  border-radius: 6px;
  padding: 10px 12px;
  animation: pulse-border 2s ease-in-out infinite;
}
.sv-list-item--emergency h4 { color: #D91E25; }
.sv-list-check--emergency { background: #D91E25; }

@keyframes pulse-border {
  0%   { border-color: #D91E25; box-shadow: 0 0 0 0 rgba(217, 30, 37, 0.35); }
  50%  { border-color: #D91E25; box-shadow: 0 0 0 6px rgba(217, 30, 37, 0); }
  100% { border-color: #D91E25; box-shadow: 0 0 0 0 rgba(217, 30, 37, 0); }
}


/* =====================================================
   CTA BANNER
===================================================== */
.cta-banner {
  background: #0D2342;
  padding: 70px 0;
  text-align: center;
}
.cta-inner {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 40px;
}
.cta-accent {
  width: 36px;
  height: 3px;
  background: #D91E25;
  border-radius: 2px;
  margin: 0 auto 24px;
}
.cta-banner h2 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.cta-banner p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
}


/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  background: #fff;
  border-top: 1px solid #e4e7eb;
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 40px 48px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-col .footer-logo-box {
  background: #0D2342;
  display: inline-flex;
  flex-direction: column;
  padding: 9px 14px;
  border-radius: 4px;
  margin-bottom: 16px;
}
.footer-col .footer-logo-box .logo-line { color: #fff; }
.footer-col > p {
  font-size: 13px;
  line-height: 1.75;
  color: #4b5563;
}
.footer-col h3 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0D2342;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: #374151;
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: #D91E25; }
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-contact-row .fa {
  color: #D91E25;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  width: 16px;
}
.footer-contact-row span,
.footer-contact-row a {
  font-size: 13px;
  color: #374151;
  line-height: 1.55;
  transition: color 0.15s;
}
.footer-contact-row a:hover { color: #D91E25; }
.footer-bottom {
  border-top: 1px solid #e4e7eb;
  background: #fff;
}
.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom-inner p {
  font-size: 12px;
  color: #6b7280;
}
.footer-bottom-right {
  font-size: 12px;
  color: #6b7280;
}


/* =====================================================
   ABOUT PAGE — HERO
===================================================== */
.au-hero {
  margin-top: 66px;
  position: relative;
  background: #071525;
  max-height: 600px;
  overflow: hidden;
}
.au-hero-bg-img {
  display: block;
  width: 100%;
  height: auto;
  object-position: center top;
}
.au-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(7,21,37,0.82) 0%, rgba(7,21,37,0.55) 50%, rgba(7,21,37,0.15) 100%);
  z-index: 1;
}
.au-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 15%;
}
.au-hero-content {
  max-width: 520px;
  padding: 40px;
  width: 100%;
}
.au-hero-content .section-eyebrow { color: #D91E25; }
.au-hero-content h1 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 56px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.au-hero-content .hero-accent-line { margin-bottom: 24px; }
.au-hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 12px;
}
.au-hero-content p:last-child { margin-bottom: 0; }


/* =====================================================
   ABOUT PAGE — OUR STORY
===================================================== */
.au-story-section {
  padding: 80px 0;
  background: #fff;
}
.au-story-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.au-story-text { flex: 1; }
.au-story-text .section-title { font-size: 30px; max-width: 400px; }
.au-story-text p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 16px;
}
.au-story-text p:last-child { margin-bottom: 0; }
.au-value-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.au-value-card {
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-right: 1px solid #e4e7eb;
  border-bottom: 1px solid #e4e7eb;
}
.au-value-card:nth-child(even) { border-right: none; }
.au-value-card:nth-child(3),
.au-value-card:nth-child(4) { border-bottom: none; }
.au-value-icon {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}
.au-value-card h3 {
  font-size: 12px;
  font-weight: 800;
  color: #0D2342;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 6px;
  line-height: 1.3;
}
.au-value-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.55;
  margin: 0;
}


/* =====================================================
   ABOUT PAGE — ABOUT WARRENVILLE
===================================================== */
.au-company-section {
  padding: 80px 0;
  background: #f7f8fa;
}
.au-company-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.au-company-text { flex: 1.2; }
.au-company-text .section-title { font-size: 30px; }
.au-company-text p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 16px;
}
.au-company-text p:last-child { margin-bottom: 0; }
.au-cert-box {
  flex: 0 0 300px;
  background: #0D2342;
  padding: 28px;
  border-radius: 8px;
  align-self: flex-start;
}
.au-cert-eyebrow {
  font-size: 10px;
  font-weight: 700;
  color: #D91E25;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.au-cert-box > p {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 18px;
}
.au-cert-box strong { color: #fff; }
.au-cert-tags {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.au-cert-tag {
  display: block;
  width: 100%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 10px 12px;
  border-radius: 4px;
  text-align: center;
}


/* =====================================================
   ABOUT PAGE — WHAT WE DO
===================================================== */
.au-services-section {
  padding: 80px 0;
  background: #fff;
}
.au-services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.au-services-inner > p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 680px;
}
.au-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.au-svc-card {
  background: #fff;
  border: 1px solid #e4e7eb;
  border-left: 3px solid #D91E25;
  border-radius: 6px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
}
.au-svc-card span {
  font-size: 13px;
  font-weight: 600;
  color: #0D2342;
  line-height: 1.4;
}


/* =====================================================
   ABOUT PAGE — WHY CHOOSE US + SERVING NJ
===================================================== */
.au-why-section {
  padding: 80px 0;
  background: #f7f8fa;
}
.au-why-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
.au-why-content { flex: 1; }
.au-why-content .section-title { margin-bottom: 32px; }
.au-why-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.au-why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.au-why-check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: #D91E25;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-top: 2px;
}
.au-why-item p {
  font-size: 15px;
  color: #374151;
  line-height: 1.6;
  margin: 0;
}
.au-why-item strong { color: #0D2342; }
.au-serving-box {
  flex: 0 0 320px;
  background: #fff;
  border-top: 4px solid #D91E25;
  border-radius: 0 0 8px 8px;
  padding: 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  align-self: center;
}
.au-serving-box h3 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #0D2342;
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0 0 14px;
}
.au-serving-box p {
  font-size: 14px;
  color: #374151;
  line-height: 1.65;
  margin: 0;
}


/* =====================================================
   ABOUT PAGE — OUR PROMISE
===================================================== */
.au-promise-section {
  padding: 80px 0;
  background: #fff;
}
.au-promise-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  gap: 60px;
  align-items: center;
}
.au-promise-content { flex: 1; }
.au-promise-content .section-title { font-size: 32px; margin-bottom: 20px; }
.au-promise-content > p {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin: 0;
}
.au-promise-quote {
  flex: 1;
  border: 2px solid #0D2342;
  border-radius: 8px;
  padding: 36px 40px;
}
.au-promise-quote-inner {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.au-quote-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 64px;
  color: #D91E25;
  line-height: 0.85;
  flex-shrink: 0;
  margin-top: 4px;
}
.au-promise-quote blockquote { margin: 0; padding: 0; }
.au-promise-quote blockquote p {
  font-style: italic;
  font-size: 18px;
  color: #0D2342;
  line-height: 1.55;
  margin: 0 0 16px;
}
.au-promise-quote cite {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: #D91E25;
}


/* =====================================================
   RESPONSIVE — 1100px
===================================================== */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .sv-inner { padding: 0 28px; }

  .au-story-inner,
  .au-company-inner,
  .au-why-inner,
  .au-promise-inner { padding: 0 28px; gap: 40px; }
  .au-services-inner { padding: 0 28px; }
  .au-cert-box { flex: 0 0 260px; }
  .au-serving-box { flex: 0 0 280px; }
}


/* =====================================================
   RESPONSIVE — 900px
===================================================== */
@media (max-width: 900px) {
  .hero-inner { padding: 60px 32px; }
  .hero-content h1 { font-size: 56px; }
  .hero-phone-link { font-size: 44px; }

  .about-inner { gap: 40px; }
  .about-photo { flex: 0 0 42%; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }

  .au-hero { min-height: 420px; }
  .au-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .au-hero-inner { padding: 48px 28px; padding-left: 10%; }
  .au-hero-content { max-width: 100%; }
  .au-hero-content h1 { font-size: 44px; }

  .au-story-inner,
  .au-company-inner,
  .au-why-inner,
  .au-promise-inner { flex-direction: column; gap: 32px; }

  .au-story-text .section-title { max-width: none; }
  .au-cert-box { flex: none; width: 100%; }
  .au-serving-box { flex: none; width: 100%; }

  .au-services-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-list-grid { grid-template-columns: repeat(2, 1fr); }
  .sv-list-top { gap: 40px; }
  .sv-list-photo { flex: 0 0 40%; }

  .au-promise-quote { padding: 28px; }
  .au-promise-quote blockquote p { font-size: 16px; }
}


/* =====================================================
   RESPONSIVE — 768px (mobile)
===================================================== */
@media (max-width: 768px) {
  /* Header */
  .header-inner { padding: 10px 16px; }
  .mobile-toggle { display: block !important; order: 3; }
  .header-phone-btn { display: none !important; }
  .site-logo { order: 1; max-width: 160px; }
  .site-logo img { max-height: 44px; width: auto; }
  .site-nav { display: none; order: 2; }
  .site-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #fff;
    border-top: 1px solid #e4e7eb;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 16px 0;
    z-index: 999;
  }
  .site-nav.open ul { flex-direction: column; gap: 0; }
  .site-nav.open ul li a { display: block; padding: 10px 24px; border-radius: 0; }

  /* Homepage / Services hero — solid navy on mobile */
  .hero { margin-top: 58px; min-height: 480px; background: #0D2342 !important; }
  .hero-bg-img { display: none !important; }
  .hero-overlay { display: none !important; }
  .hero-inner { padding: 48px 20px; }
  .hero-content h1 { font-size: 44px; }
  .hero-phone-link { font-size: 34px; }
  .hero-content .hero-desc {
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
  }
  .hero-plain-badges {
    color: #fff !important;
    font-size: 12px !important;
    font-weight: 800 !important;
  }

  /* Trust bar */
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid #e4e7eb;
  }
  .trust-item:nth-child(odd) { border-right: 1px solid #e4e7eb; }
  .trust-item:last-child:nth-child(odd) { flex: 0 0 100%; border-right: none; }

  /* Homepage about */
  .about-section { padding: 60px 0; }
  .about-inner { flex-direction: column; padding: 0 20px; gap: 32px; }
  .about-photo { flex: none; width: 100%; }
  .about-photo img { height: 260px; }
  .about-content .section-title { font-size: 28px; }

  /* Homepage services */
  .services-section { padding: 60px 0; }
  .services-inner { padding: 0 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Shared */
  .section-title { font-size: 26px; }

  /* CTA */
  .cta-banner { padding: 56px 0; }
  .cta-inner { padding: 0 20px; }
  .cta-banner h2 { font-size: 26px; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 20px 32px; }
  .footer-bottom-inner { padding: 16px 20px; flex-direction: column; text-align: center; }

  /* About page hero — overlay approach, content determines height */
  .au-hero {
    min-height: unset;
    max-height: unset;
    display: flex;
    align-items: stretch;
  }
  .au-hero { background: #0D2342 !important; }
  .au-hero picture,
  .au-hero-bg-img { display: none !important; }
  .au-hero-overlay { display: none !important; }
  .au-hero-inner {
    position: relative !important;
    inset: unset !important;
    background: transparent;
    padding: 56px 24px;
    display: flex;
    align-items: center;
    width: 100%;
  }
  .au-hero-content { max-width: 100%; padding: 0; }
  .au-hero-content h1 { font-size: 34px; }
  .au-hero-content p {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
  }

  /* About page sections */
  .au-story-section,
  .au-company-section,
  .au-services-section,
  .au-why-section,
  .au-promise-section { padding: 56px 0; }

  .au-story-inner,
  .au-company-inner,
  .au-why-inner,
  .au-promise-inner { padding: 0 20px; }
  .au-services-inner { padding: 0 20px; }

  .au-value-grid { grid-template-columns: 1fr; }
  .au-value-card { border-right: none !important; }
  .au-value-card:nth-child(3) { border-bottom: 1px solid #e4e7eb; }
  .au-value-card:last-child { border-bottom: none; }

  .au-services-grid { grid-template-columns: 1fr; }
  .sv-section { padding: 56px 0; }
  .sv-inner { padding: 0 20px; }
  .sv-grid { grid-template-columns: 1fr; }
  .sv-card-img { height: 180px; }

  .sv-list-section { padding: 56px 0; }
  .sv-list-inner { padding: 0 20px; }
  .sv-list-top { flex-direction: column; gap: 32px; margin-bottom: 36px; }
  .sv-list-photo { flex: none; width: 100%; }
  .sv-list-photo img { height: 220px; }
  .sv-list-grid { grid-template-columns: 1fr; gap: 20px; }

  .au-promise-content .section-title { font-size: 26px; }
  .au-quote-mark { font-size: 60px; }
  .au-promise-quote blockquote p { font-size: 15px; }
}


/* =====================================================
   RESPONSIVE — 480px
===================================================== */
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-content h1 { font-size: 34px; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { flex: 0 0 100%; border-right: none !important; }
  .footer-top { grid-template-columns: 1fr; }
  .au-cert-tags { flex-direction: column; }
}