/* ============================================
   PHILLY ABATEMENT — Shared Stylesheet
   ============================================ */

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

:root {
  --navy:    #152340;
  --navy-dk: #0d1829;
  --orange:  #D95F0E;
  --orange-lt: #F07030;
  --white:   #FFFFFF;
  --off-white: #F5F4F0;
  --gray-lt: #E8E6E0;
  --gray-mid: #8A8880;
  --text:    #1C1B18;
  --text-lt: #4A4845;
  --green:   #1A6B3A;
  --radius:  4px;
  --shadow:  0 2px 16px rgba(21,35,64,0.10);
  --shadow-lg: 0 8px 40px rgba(21,35,64,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ——— NAVIGATION ——— */
.site-nav {
  background: var(--navy-dk);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--orange);
}

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

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--orange); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 700 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--orange-lt) !important; }

.nav-phone {
  color: var(--white) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}

/* ——— TOP BAR ——— */
.top-bar {
  background: var(--orange);
  padding: 9px 0;
  text-align: center;
}

.top-bar p {
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.top-bar a { color: var(--white); text-decoration: underline; }

/* ——— TRUST BAR ——— */
.trust-bar {
  background: var(--navy);
  padding: 14px 0;
}

.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item .icon {
  color: var(--orange);
  font-size: 16px;
}

/* ——— HERO ——— */
.hero {
  background: var(--navy);
  padding: 72px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(135deg, var(--orange) 0%, #8B2E00 100%);
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.15;
}

.hero-content {
  position: relative;
  max-width: 680px;
}

.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 64px);
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

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

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.80);
  margin-bottom: 36px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--orange-lt);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.hero-note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ——— SECTION BASICS ——— */
.section { padding: 72px 0; }
.section-alt { background: var(--off-white); }
.section-dark { background: var(--navy); }

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--text);
}

.section-title.light { color: var(--white); }

.section-sub {
  font-size: 17px;
  color: var(--text-lt);
  max-width: 620px;
  margin-bottom: 48px;
}

.section-sub.light { color: rgba(255,255,255,0.70); }

/* ——— SERVICE CARDS ——— */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: 6px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card-top {
  background: var(--navy);
  padding: 28px 28px 24px;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.service-card h3 {
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.service-card-top p {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
}

.service-card-body {
  padding: 24px 28px 28px;
}

.service-card-body ul {
  list-style: none;
  margin-bottom: 20px;
}

.service-card-body ul li {
  padding: 5px 0;
  font-size: 14px;
  color: var(--text-lt);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.service-card-body ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.card-link:hover { gap: 10px; }

/* ——— WHY US ——— */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: var(--white);
}

.why-item h4 {
  font-size: 18px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 4px;
}

.why-item p {
  font-size: 14px;
  color: var(--text-lt);
  line-height: 1.55;
}

.why-callout {
  background: var(--navy);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
}

.why-callout .big-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.why-callout p {
  font-size: 15px;
  color: rgba(255,255,255,0.70);
}

.why-callout h3 {
  font-size: 22px;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.stat-row {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  justify-content: center;
}

.stat {
  text-align: center;
}

.stat .num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat .lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ——— PROCESS ——— */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--gray-lt);
}

.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.step-num {
  width: 64px;
  height: 64px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.process-step h4 {
  font-size: 17px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13px;
  color: var(--text-lt);
}

/* ——— SERVICE AREAS ——— */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.area-tag {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-lt);
  text-align: center;
  transition: all 0.15s;
}

.area-tag:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff8f4;
}

/* ——— FAQ ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 820px;
}

.faq-item {
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 24px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}

.faq-q:hover { background: var(--off-white); }
.faq-q.open { background: var(--navy); color: var(--white); }

.faq-icon {
  font-size: 22px;
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
  color: var(--orange);
}

.faq-q.open .faq-icon { transform: rotate(45deg); color: var(--white); }

.faq-a {
  display: none;
  padding: 20px 24px;
  background: #f9f8f5;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-lt);
  border-top: 1px solid var(--gray-lt);
}

.faq-a.open { display: block; }

/* ——— CTA BAND ——— */
.cta-band {
  background: var(--orange);
  padding: 56px 0;
}

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

.cta-band h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  color: var(--white);
  text-transform: uppercase;
}

.cta-band p {
  font-size: 15px;
  color: rgba(255,255,255,0.85);
  margin-top: 6px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--orange);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.20);
}

/* ——— CONTACT FORM ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}

.contact-info h3 {
  font-size: 26px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: var(--orange);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: var(--white);
}

.contact-detail h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-lt);
  margin-bottom: 3px;
}

.contact-detail p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.contact-detail a {
  font-size: 22px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  color: var(--orange);
}

.form-wrap {
  background: var(--off-white);
  border-radius: 8px;
  padding: 36px;
}

.form-wrap h3 {
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

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

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

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

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}

.form-submit:hover { background: var(--orange-lt); }

.form-note {
  font-size: 12px;
  color: var(--text-lt);
  text-align: center;
  margin-top: 10px;
}

/* ——— FOOTER ——— */
.site-footer {
  background: var(--navy-dk);
  padding: 48px 0 24px;
  border-top: 3px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .nav-logo {
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  line-height: 1.6;
  max-width: 260px;
}

.footer-col h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.50);
  transition: color 0.15s;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 700px;
  text-align: center;
  margin: 16px auto 0;
  line-height: 1.5;
}

/* ——— PAGE HERO (inner pages) ——— */
.page-hero {
  background: var(--navy);
  padding: 52px 0 48px;
  border-bottom: 3px solid var(--orange);
}

.page-hero .breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.page-hero .breadcrumb a { color: var(--orange); }
.page-hero .breadcrumb a:hover { text-decoration: underline; }

.page-hero h1 {
  font-size: clamp(30px, 4vw, 50px);
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.70);
  max-width: 600px;
}

/* ——— CONTENT BODY ——— */
.content-body {
  max-width: 820px;
}

.content-body h2 {
  font-size: 26px;
  text-transform: uppercase;
  margin: 40px 0 14px;
  color: var(--text);
}

.content-body h3 {
  font-size: 20px;
  text-transform: uppercase;
  margin: 28px 0 10px;
  color: var(--text);
}

.content-body p {
  font-size: 16px;
  color: var(--text-lt);
  margin-bottom: 16px;
  line-height: 1.75;
}

.content-body ul, .content-body ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.content-body li {
  font-size: 15px;
  color: var(--text-lt);
  margin-bottom: 6px;
  line-height: 1.6;
}

.callout-box {
  background: #fff8f4;
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
}

.callout-box p {
  margin: 0;
  font-size: 15px;
  color: var(--text);
}

.callout-box strong { color: var(--orange); }

/* ——— MOBILE ——— */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .trust-bar-inner { gap: 16px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
}
