/* ═══════════════════════════════════════════════════════
   SIDEWALK REPAIR NYC — GLOBAL CSS
   Design System v3 Final · All Pages
   Phone: (718) 682-6680 · 300 Park Avenue, NYC 10022
═══════════════════════════════════════════════════════ */

/* ── RESET & TOKENS ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --orange: #e8640a;
  --orange-dark: #c75508;
  --orange-light: #ff7a1f;
  --navy: #1a2332;
  --navy-mid: #243044;
  --dark: #0f1720;
  --white: #ffffff;
  --light-bg: #f6f6f4;
  --text: #3d3d3d;
  --text-light: #737373;
  --border: #e2e2e2;
  --success: #1a8a4a;
  --red: #c0392b;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

/* ── CONTAINER ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── URGENT BANNER ── */
.urgent-banner {
  background: linear-gradient(135deg, #1a2332 0%, #000000 100%);
  /* background: var(--dark); */
  color: #fff;
  padding: 10px 0;
  text-align: center;
}

.urgent-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.urgent-banner strong {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
}

.urgent-banner span {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
}

.urgent-banner a {
  color: #ffd700;
  font-weight: 700;
  font-size: 13px;
  text-decoration: underline;
  white-space: nowrap;
}

.pulse {
  animation: pulse 1.8s ease-in-out infinite;
  display: inline-block;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: 0.6
  }
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-contacts {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.tc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 12.5px;
}

.tc-item a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.2s;
}

.tc-item a:hover {
  color: var(--orange);
}

.tc-item .ico {
  color: var(--orange);
  font-size: 13px;
}

.top-cta a {
  background: var(--orange);
  color: #fff;
  padding: 7px 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s;
}

.top-cta a:hover {
  background: var(--orange-dark);
}

/* ── NAV ── */
nav {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.09);
  position: sticky;
  top: 0;
  z-index: 200;
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-box {
  width: 38px;
  height: 38px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  flex-shrink: 0;
}

.nav-logo .brand-orange {
  color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
  position: relative;
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a {
  color: var(--navy);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 16px;
  height: 70px;
  display: flex;
  align-items: center;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-links>li>a:hover,
.nav-links>li>a.active {
  border-color: var(--orange);
  color: var(--orange);
}

/* Dropdown */
.nav-links .dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border-top: 2px solid var(--orange);
  z-index: 300;
}

.nav-links>li:hover .dropdown {
  display: block;
}

.dropdown a {
  display: block;
  padding: 11px 18px;
  font-size: 12.5px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}

.dropdown a:last-child {
  border: none;
}

.dropdown a:hover {
  background: var(--light-bg);
  color: var(--orange);
}

.nav-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-phone:hover {
  color: var(--orange);
}

.nav-phone .ico {
  color: var(--orange);
}

.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

/* ── BUTTONS ── */
.btn-orange {
  background: var(--orange);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--orange);
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-navy {
  background: var(--navy);
  color: #fff;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: 2px solid var(--navy);
  transition: background 0.2s;
}

.btn-navy:hover {
  background: var(--navy-mid);
}

.btn-white {
  background: #fff;
  color: var(--orange);
  padding: 14px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}

.btn-white:hover {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid #fff;
  white-space: nowrap;
  transition: background 0.2s;
  display: inline-block;
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, 0.15);
}

.btn-yellow {
  background: #ffd700;
  color: #7a3b00;
  padding: 14px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #ffd700;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-yellow:hover {
  background: #f0c800;
}

.btn-wh {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.45);
  transition: border-color 0.2s, color 0.2s;
}

.btn-wh:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--orange);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.btn-submit:hover {
  background: var(--orange-dark);
}

/* ── SECTION TITLES ── */
.sec-title {
  text-align: center;
  margin-bottom: 52px;
}

.sec-tag {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  position: relative;
  padding-bottom: 14px;
}

.sec-tag::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 2px;
  background: var(--orange);
}

.sec-title h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.02em;
  line-height: 1.15;
}

.sec-title p {
  color: var(--text-light);
  max-width: 580px;
  margin: 14px auto 0;
  font-size: 0.92rem;
  line-height: 1.7;
}

.sec-title-left .sec-tag::after {
  left: 0;
  transform: none;
}

.sec-title-left h2,
.sec-title-left p {
  text-align: left;
  margin-left: 0;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 72px 0 60px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(232, 100, 10, 0.03) 60px, rgba(232, 100, 10, 0.03) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(232, 100, 10, 0.03) 60px, rgba(232, 100, 10, 0.03) 61px);
}

.page-hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 45%;
  background: linear-gradient(100deg, transparent 15%, rgba(30, 44, 65, 0.4) 15%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--orange);
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.breadcrumb .current {
  color: var(--orange);
  font-size: 12px;
}

.page-hero h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.6rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.page-hero h1 span {
  color: var(--orange);
}

.page-hero .hero-desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  max-width: 620px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 28px;
}

.page-hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 100, 10, 0.15);
  border: 1px solid rgba(232, 100, 10, 0.4);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 14px;
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 52px 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-col {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.stat-col:last-child {
  border: none;
}

.snum {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}

.slbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  margin-top: 7px;
}

/* ── ICON BOXES ── */
.icon-boxes {
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
  position: relative;
  z-index: 10;
}

.ib-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 3px solid var(--orange);
}

.ib-item {
  padding: 36px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border-right: 1px solid var(--border);
  transition: background 0.25s;
}

.ib-item:last-child {
  border-right: none;
}

.ib-item:hover {
  background: #fff6ef;
}

.ib-icon-sq {
  width: 54px;
  height: 54px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  flex-shrink: 0;
}

.ib-num-bg {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(232, 100, 10, 0.1);
  line-height: 1;
  min-width: 36px;
}

.ib-body h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 7px;
}

.ib-body p {
  font-size: 0.83rem;
  color: var(--text-light);
  line-height: 1.6;
}

.ib-link {
  color: var(--orange);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 10px;
}

/* ── SERVICES GRID ── */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}

.svc-item {
  padding: 34px 26px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.svc-item:hover {
  background: var(--navy);
}

.svc-item:hover h3,
.svc-item:hover p {
  color: rgba(255, 255, 255, 0.88);
}

.svc-item:hover .s-link {
  color: var(--orange-light);
}

.svc-item:hover .s-icon-box {
  background: var(--orange);
}

.s-icon-box {
  width: 56px;
  height: 56px;
  background: var(--light-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: background 0.3s;
}

.svc-item h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 9px;
  transition: color 0.3s;
}

.svc-item p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.65;
  transition: color 0.3s;
}

.s-link {
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 14px;
  transition: color 0.3s;
}

.svc-dark {
  background: var(--navy) !important;
}

.svc-dark h3 {
  color: #fff !important;
}

.svc-dark p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.svc-dark .s-icon-box {
  background: var(--orange) !important;
}

/* ── PROCESS CARDS ── */
.proc-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.proc-card {
  background: var(--white);
  padding: 40px 30px;
  border-top: 4px solid var(--border);
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.proc-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.09);
}

.proc-n {
  font-family: 'Oswald', sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: rgba(232, 100, 10, 0.1);
  line-height: 1;
  margin-bottom: 12px;
}

.proc-icon {
  width: 54px;
  height: 54px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 20px;
}

.proc-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 10px;
}

.proc-card p {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── CTA STRIP ── */
.cta-strip {
  background: var(--orange);
  padding: 56px 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-inner h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.3rem, 2.8vw, 1.9rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  margin-top: 6px;
}

.cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── PRICING CARDS ── */
.price-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.price-card {
  background: var(--white);
  border-top: 4px solid var(--border);
  padding: 44px 34px;
  text-align: center;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.price-card:hover,
.price-card.feat {
  border-color: var(--orange);
  box-shadow: 0 14px 52px rgba(0, 0, 0, 0.11);
  transform: translateY(-6px);
}

.pop-badge {
  position: absolute;
  top: -1px;
  right: 22px;
  background: var(--orange);
  color: #fff;
  padding: 5px 14px;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.p-title {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-bottom: 18px;
}

.p-price {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.p-unit {
  font-size: 12px;
  color: var(--text-light);
  margin: 7px 0 26px;
}

.p-feats {
  list-style: none;
  margin-bottom: 28px;
  text-align: left;
}

.p-feats li {
  font-size: 0.86rem;
  color: var(--text);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 9px;
}

.p-feats li:last-child {
  border: none;
}

.p-feats li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
}

.p-btn {
  display: block;
  padding: 13px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--navy);
  transition: background 0.2s;
}

.p-btn:hover,
.price-card.feat .p-btn {
  background: var(--orange);
  border-color: var(--orange);
}

/* ── TESTIMONIALS ── */
.testi-section {
  background: var(--navy);
  padding: 90px 0;
}

.testi-section .sec-tag {
  color: var(--orange);
}

.testi-section .sec-title h2 {
  color: #fff;
}

.testi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testi-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 34px;
  position: relative;
  transition: background 0.3s, border-color 0.3s;
}

.testi-card:hover {
  /* background: rgba(255, 255, 255, 0.08);
  border-color: rgba(232, 100, 10, 0.4); */
}

.t-quote {
  font-size: 3.8rem;
  line-height: 1;
  color: var(--orange);
  font-family: Georgia, serif;
  position: absolute;
  top: 18px;
  left: 26px;
  opacity: 0.35;
}

.t-stars {
  color: var(--orange);
  letter-spacing: 3px;
  font-size: 13px;
  margin-bottom: 14px;
}

.t-text {
  font-size: 0.89rem;
  color: rgba(255, 255, 255, 0.73);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 22px;
  padding-top: 8px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 18px;
}

.t-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.t-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.t-loc {
  font-size: 11.5px;
  color: var(--orange);
  margin-top: 3px;
  letter-spacing: 0.04em;
}

/* ── FAQ ── */
.faq-section {
  background: var(--light-bg);
  padding: 90px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border-left: 3px solid var(--border);
  transition: border-color 0.3s;
}

.faq-q {
  padding: 20px 22px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}

.faq-item.open {
  border-color: var(--orange);
}

.faq-item.open .faq-q {
  color: var(--orange);
}

.faq-toggle {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--orange);
  flex-shrink: 0;
}

.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.faq-item.open .faq-a {
  max-height: 500px;
  padding: 0 22px 18px;
}

.faq-a p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
}

.faq-a a {
  color: var(--orange);
}

/* ── LEAD FORM (hero) ── */
.hero-form-card {
  background: #fff;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange);
}

.hf-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 4px;
}

.hf-sub {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.hf-urgency {
  background: #fff8f0;
  border: 1px solid rgba(232, 100, 10, 0.25);
  border-left: 3px solid var(--orange);
  padding: 10px 14px;
  margin-bottom: 18px;
  font-size: 12px;
  color: var(--text);
  line-height: 1.5;
}

.hf-urgency strong {
  color: var(--orange);
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  color: var(--text);
  border: 1px solid var(--border);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
}

.form-group textarea {
  height: 80px;
  resize: vertical;
}

.form-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--text-light);
  margin: 14px 0;
}

.form-guarantee .icon {
  color: var(--success);
  font-size: 14px;
}

.hf-or {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin: 14px 0 10px;
  position: relative;
}

.hf-or::before,
.hf-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 42%;
  height: 1px;
  background: var(--border);
}

.hf-or::before {
  left: 0;
}

.hf-or::after {
  right: 0;
}

.hf-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}

.hf-call:hover {
  background: var(--navy-mid);
}

.hf-call .ico {
  color: var(--orange);
}

/* ── VIOLATION ALERT ── */
.violation-alert {
  background: linear-gradient(135deg, #1a2332 0%, #000000 100%);
  /* background: linear-gradient(135deg, #c0392b 0%, #962d22 100%); */
  padding: 48px 0;
}

.va-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}

.va-icon {
  font-size: 3.5rem;
}

.va-text h3 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.va-text p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  line-height: 1.65;
}

.va-text strong {
  color: #ffd700;
}

.va-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.va-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* ── ABOUT GRID ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
}

.ap {
  background: linear-gradient(150deg, #c8c8c8, #989898);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.4);
}

.ap.tall {
  min-height: 290px;
  grid-row: span 2;
}

.ap.short {
  min-height: 145px;
}

.ap-badge {
  position: absolute;
  bottom: -14px;
  right: -14px;
  background: var(--orange);
  padding: 20px 22px;
  text-align: center;
}

.ap-badge .n {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.ap-badge .l {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.a-tag {
  font-family: 'Oswald', sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 14px;
}

.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 14px;
}

.about-text .lead {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-text p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-checks {
  list-style: none;
  margin-bottom: 28px;
}

.about-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.about-checks li:last-child {
  border: none;
}

.about-checks li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
}

/* ── CRED CARDS ── */
.cred-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.cred-card {
  background: var(--light-bg);
  padding: 22px 20px;
  border-left: 4px solid var(--orange);
}

.cred-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 7px;
}

.cred-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
}

.cred-full {
  grid-column: span 2;
}

/* ── TEAM CARDS ── */
.team-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.t-card {
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.t-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.t-photo {
  aspect-ratio: 3/3.5;
  background: linear-gradient(150deg, #c0c0c0, #909090);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: rgba(255, 255, 255, 0.45);
  position: relative;
  overflow: hidden;
}

.t-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(232, 100, 10, 0.85) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.3s;
}

.t-card:hover .t-overlay {
  opacity: 1;
}

.t-info {
  background: var(--light-bg);
  padding: 18px 20px;
  border-top: 3px solid var(--border);
  transition: border-color 0.3s;
}

.t-card:hover .t-info {
  border-color: var(--orange);
}

.t-name {
  font-family: 'Oswald', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.t-role {
  font-size: 11.5px;
  color: var(--orange);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
}

/* ── SERVICE AREA CARDS ── */
.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--border);
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  display: block;
}

.area-card:hover {
  border-color: var(--orange);
  border-top-color: var(--orange);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.area-icon {
  width: 64px;
  height: 64px;
  background: var(--light-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
  transition: background 0.3s;
}

.area-card:hover .area-icon {
  background: var(--orange);
}

.area-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin-bottom: 8px;
}

.area-card p {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 16px;
}

.area-link {
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── FOOTER ── */
footer {
  background: var(--dark);
}

.footer-main {
  padding: 72px 0 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.f-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.f-logo .lb {
  background: var(--orange);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.f-logo span {
  color: var(--orange);
}

.f-brand p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
  line-height: 1.75;
  margin-bottom: 20px;
}

.f-socials {
  display: flex;
  gap: 12px;
}

.f-social {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.f-social:hover {
  background: var(--orange);
  color: #fff;
}

.f-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.f-col ul {
  list-style: none;
}

.f-col ul li {
  margin-bottom: 9px;
}

.f-col ul a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: 0.86rem;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}

.f-col ul a:hover {
  color: var(--orange);
}

.f-col ul a::before {
  content: '›';
  color: var(--orange);
}

.f-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 15px;
}

.f-ico {
  color: var(--orange);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 1px;
}

.f-contact-row p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.84rem;
  line-height: 1.6;
}

.f-contact-row a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.f-contact-row a:hover {
  color: var(--orange);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.35);
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.fb-inner p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12.5px;
}

.fb-links {
  display: flex;
  gap: 18px;
}

.fb-links a {
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.fb-links a:hover {
  color: var(--orange);
}

/* ── STICKY MOBILE CTA ── */
.sticky-cta {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
}

.sticky-cta a {
  flex: 1;
  padding: 14px 8px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.sticky-cta .sc-call {
  background: var(--orange);
  color: #fff;
}

.sticky-cta .sc-form {
  background: var(--navy);
  color: #fff;
}

/* ── REVEAL ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 1024px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proc-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-phone {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .ib-row {
    grid-template-columns: 1fr;
  }

  .ib-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .proc-row,
  .price-row,
  .testi-row,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .va-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .cred-cards {
    grid-template-columns: 1fr;
  }

  .cred-full {
    grid-column: span 1;
  }

  .tc-item:nth-child(2),
  .tc-item:nth-child(3) {
    display: none;
  }

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

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 56px;
  }

  .area-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ap-badge {
    display: none;
  }

  .about-photos {
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .proc-row {
    grid-template-columns: 1fr;
  }

  .area-grid {
    grid-template-columns: 1fr;
  }

  .team-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ═══════════════════════════════════════════════════════
   EXTENDED CLASSES — added to eliminate all inline styles
═══════════════════════════════════════════════════════ */

/* ── HERO (homepage) ── */
.hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(10, 18, 30, 0.97) 0%, rgba(20, 32, 50, 0.88) 45%, rgba(10, 18, 30, 0.65) 100%), repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(232, 100, 10, 0.03) 60px, rgba(232, 100, 10, 0.03) 61px), repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(232, 100, 10, 0.03) 60px, rgba(232, 100, 10, 0.03) 61px);
}

.hero-deco {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background: linear-gradient(100deg, transparent 20%, rgba(30, 44, 65, 0.5) 20%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.hero-badge-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(232, 100, 10, 0.15);
  border: 1px solid rgba(232, 100, 10, 0.4);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 14px;
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.h-badge-green {
  background: rgba(26, 138, 74, 0.15);
  border-color: rgba(26, 138, 74, 0.4);
}

.hero-h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.6rem, 5.5vw, 4.8rem);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.hero-h1 span {
  color: var(--orange);
  display: block;
}

.hero-h1 em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58em;
  display: block;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
}

.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.97rem;
  max-width: 540px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.75;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-trust-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(232, 100, 10, 0.15);
  border: 1px solid rgba(232, 100, 10, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.trust-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.trust-sub {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

/* ── SECTIONS with padding shorthand classes ── */
.section-white {
  background: var(--white);
  padding: 90px 0;
}

.section-light {
  background: var(--light-bg);
  padding: 90px 0;
}

.section-navy {
  background: var(--navy);
  padding: 90px 0;
}

/* ── SERVICE DETAIL two-col layout ── */
.svc-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 72px;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--border);
}

.svc-detail-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.svc-detail-img {
  background: linear-gradient(150deg, #c8c8c8, #989898);
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.svc-detail-num {
  position: absolute;
  bottom: 16px;
  right: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.svc-detail-img-dark {
  background: linear-gradient(150deg, #c0392b, #8b2218);
}

.svc-price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: var(--light-bg);
  border-left: 4px solid var(--orange);
  padding: 12px 20px;
  margin-bottom: 20px;
}

.svc-price-tag .price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}

.svc-price-tag .unit {
  font-size: 0.8rem;
  color: var(--text-light);
}

.svc-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── ABOUT two-col layout (inner pages) ── */
.about-detail-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-detail-row.align-center {
  align-items: center;
}

/* ── CREDENTIALS GRID variants ── */
.cred-cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cred-cards-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* ── CREDENTIALS 5-col (about page) ── */
.auth-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}

.auth-card {
  background: var(--white);
  padding: 28px 18px;
  text-align: center;
  border-top: 4px solid var(--orange);
}

.auth-card .auth-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.auth-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy);
  letter-spacing: 0.04em;
}

.auth-card p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.5;
}

/* ── CONTACT two-col layout ── */
.contact-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 64px;
  align-items: start;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-info-block {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--light-bg);
  margin-bottom: 14px;
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-value {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  display: block;
}

.contact-info-value:hover {
  color: var(--orange);
}

.contact-info-small {
  font-size: 12px;
  color: var(--text-light);
  margin-top: 3px;
}

.payment-box {
  background: var(--navy);
  padding: 20px;
  margin-top: 4px;
}

.payment-box h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.payment-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pay-tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.06em;
}

.social-follow {
  margin-top: 16px;
  padding: 16px;
  background: var(--light-bg);
  border-left: 3px solid var(--success);
}

.social-follow p {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.6;
}

.social-follow a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
}

.social-follow a:hover {
  color: var(--orange);
}

/* ── BOROUGH "Other Areas" cards ── */
.other-areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.other-area-card {
  display: block;
  text-align: center;
  padding: 36px 20px;
  background: var(--white);
  border-top: 4px solid var(--border);
  text-decoration: none;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.other-area-card:hover {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.other-area-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
}

.other-area-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}

.other-area-card p {
  font-size: 0.83rem;
  color: var(--text-light);
  margin-bottom: 14px;
}

.other-area-link {
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ── BOROUGH HERO stats strip ── */
.borough-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 0;
}

.borough-stat {
  text-align: center;
  padding: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.borough-stat:last-child {
  border: none;
}

/* ── VIOLATION URGENCY 3-col ── */
.violation-urgency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.vu-block {
  padding: 28px;
  background: rgba(0, 0, 0, 0.15);
}

.vu-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #ffd700;
  line-height: 1;
}

.vu-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.vu-text {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  line-height: 1.6;
}

/* ── OWNERSHIP NOTICE ── */
.ownership-notice {
  background: var(--light-bg);
  border-left: 4px solid var(--orange);
  padding: 32px;
}

.ownership-notice h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.ownership-notice p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

.ownership-notice p:last-child {
  margin-bottom: 0;
}

/* ── CONTACT SECTION (homepage bottom) ── */
.contact-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-split-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.contact-split-info .a-tag {
  margin-bottom: 14px;
}

.contact-split-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.3rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-split-info p.intro {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 24px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail-item:last-child {
  border-bottom: none;
}

.contact-detail-item .f-ico {
  font-size: 16px;
  margin-top: 2px;
}

.contact-detail-item .cd-label {
  font-size: 11px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light);
  margin-bottom: 3px;
}

.contact-detail-item .cd-value {
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 600;
}

.contact-detail-item a {
  color: var(--navy);
  text-decoration: none;
}

.contact-detail-item a:hover {
  color: var(--orange);
}

.payment-inline {
  margin-top: 20px;
  padding: 16px 20px;
  background: var(--white);
  border-left: 4px solid var(--orange);
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.7;
}

.payment-inline strong {
  color: var(--navy);
}

/* ── DOT violation info box ── */
.violation-info-box {
  background: var(--navy);
  padding: 24px;
}

.violation-info-box .warn-title {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 8px;
}

.violation-info-box p {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

/* ── RESPONSIVE additions ── */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .svc-detail-row {
    grid-template-columns: 1fr;
  }

  .about-detail-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-split-row {
    grid-template-columns: 1fr;
  }

  .auth-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cred-cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    gap: 28px;
  }

  .hero-trust-row {
    gap: 14px;
  }

  .violation-urgency-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .other-areas-grid {
    grid-template-columns: 1fr;
  }

  .auth-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cred-cards-4 {
    grid-template-columns: 1fr;
  }

  .cred-cards-2 {
    grid-template-columns: 1fr;
  }

  .svc-detail-row {
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .auth-grid {
    grid-template-columns: 1fr 1fr;
  }
}



/* custom style for new sections */



.climate-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.climate-section .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.climate-section .section-title {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.climate-section .section-subtitle {
  font-size: 18px;
  color: #666;
}

.climate-table-wrapper {
  max-width: 1100px;
  margin: auto;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.climate-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.climate-table thead {
  background: #1a1a1a;
  color: #fff;
}

.climate-table th {
  padding: 18px;
  text-align: left;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.climate-table td {
  padding: 18px;
  border-bottom: 1px solid #eee;
  font-size: 15px;
  color: #333;
}

.climate-table tbody tr:hover {
  background: #f2f2f2;
  transition: 0.3s;
}

.climate-table td:nth-child(2) {
  font-weight: 700;
  color: #ff4d2d;
}

/* Districts Section */
.districts-section {
  padding: 5rem 1.5rem;
  background: #f6f6f4;

}

.section-header {
  max-width: 880px;
  margin: 0 auto 4rem;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.districts-container {
  max-width: 1280px;
  margin: 0 auto;
}

.district-group-title {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

.districts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.district-card {
  background: #fff;
  border: 1px solid var(--border-light);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.2s ease;
  cursor: pointer;
}

.district-card:hover {
  border-color: var(--heritage-gold);
  background: #FFFBEB;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .districts-section {
    padding: 3rem 1.5rem;
  }

  .districts-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
  }

  .district-card {
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
  }

  .district-group-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.concrete-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.concrete-section .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.concrete-section .section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #ff4d2d;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.concrete-section .section-title {
  font-size: 42px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.concrete-section .section-subtitle {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: auto;
}

.concrete-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: auto;
}

.concrete-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  position: relative;
  overflow: hidden;
}

.concrete-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.concrete-card .num {
  font-size: 18px;
  font-weight: 800;
  color: #ff4d2d;
  margin-bottom: 10px;
}

.concrete-card .icon {
  font-size: 26px;
  margin-bottom: 10px;
}

.concrete-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.concrete-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.concrete-card span {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 600;
  color: #222;
}

.concrete-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.concrete-cta h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.concrete-cta p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

.cta-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #ff4d2d;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #e63e1f;
}

/* Responsive */
@media(max-width: 992px) {
  .concrete-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 600px) {
  .concrete-grid {
    grid-template-columns: 1fr;
  }

  .concrete-section .section-title {
    font-size: 28px;
  }
}







.viz-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.viz-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  color: #ffd700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
}

.section-title {
  font-size: 46px;
  font-weight: 900;
  letter-spacing: 1px;
}

/* STATS */
.viz-stats {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-bottom: 70px;
  flex-wrap: wrap;
}

.viz-stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #ffd700;
}

.viz-stat-label {
  font-size: 16px;
  opacity: 1;
}

/* BOTTOM SECTION */
.viz-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* DONUT */
.donut-chart {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: conic-gradient(#2e7d32 0% 60%,
      #ffd700 60% 85%,
      #1565c0 85% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.data-viz-section {
  background: #1a2332;
  padding: 90px 20px;
  color: #fff;
}

.donut-chart::before {
  content: "";
  width: 170px;
  height: 170px;
  background: #1b2635;
  border-radius: 50%;
  position: absolute;
}

.donut-inner {
  position: relative;
  text-align: center;
}

.donut-number {
  font-size: 34px;
  font-weight: 900;
}

.donut-text {
  font-size: 12px;
  opacity: 0.7;
  letter-spacing: 1px;
}

/* LEGEND */
.viz-legend {
  flex: 1;
  min-width: 320px;
}

.legend-item {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 3px;
  margin-top: 6px;
}

.green {
  background: #2e7d32;
}

.gold {
  background: #ffd700;
}

.blue {
  background: #1565c0;
}

.legend-item h4 {
  margin: 0 0 6px;
  font-size: 24px;
  font-weight: 900;
}

.legend-item p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .viz-content {
    flex-direction: column;
    text-align: center;
  }

  .viz-stats {
    justify-content: center;
    gap: 30px;
  }
}




#scrollTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;

  background: #e8640a;
  color: #fff;
  border: none;
  outline: none;

  width: 45px;
  height: 45px;
  border-radius: 50%;

  font-size: 20px;
  cursor: pointer;

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
}

/* Show button */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* Hover effect */
#scrollTopBtn:hover {
  background: #333;
  transform: translateY(-3px);
}