/* Presidential Plumbing - Presidential Precision Theme */
/* Colors: #F37021 orange (primary), #0072AA blue (secondary), #0A1628 navy (dark), #FFFFFF white */
/* Fonts: Cinzel (headings) + Cabin (body) */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Cabin:wght@400;500;600;700&display=swap');

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

:root {
  --primary: #F37021;
  --primary-dark: #D45F0D;
  --secondary: #0072AA;
  --secondary-dark: #005A87;
  --dark: #0A1628;
  --dark-mid: #1A2E4A;
  --text: #1D1D1D;
  --text-light: #4A4A4A;
  --bg: #FFFFFF;
  --bg-light: #F8F9FB;
  --bg-warm: #FEF5ED;
  --border: #E0E7EE;
  --radius: 6px;
  --shadow: 0 4px 20px rgba(10,22,40,.12);
  --shadow-lg: 0 8px 40px rgba(10,22,40,.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cabin', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
}

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  line-height: 1.2;
  color: var(--dark);
}

a { color: var(--secondary); text-decoration: none; transition: color .2s; }
a:hover { color: var(--primary); }

img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* === TOP BAR === */
.top-bar {
  background: var(--primary);
  color: white;
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem 0;
  letter-spacing: .03em;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.top-bar a { color: white; }
.top-bar a:hover { color: rgba(255,255,255,.8); }
.top-bar .tb-phones { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }
.top-bar .tb-right { display: flex; gap: 1rem; align-items: center; }
.top-bar .badge {
  background: rgba(255,255,255,.2);
  border-radius: 3px;
  padding: .1rem .5rem;
  font-size: .78rem;
}

/* === HEADER === */
.site-header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1rem;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-icon {
  width: 46px;
  height: 46px;
  background: var(--primary);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 26px; height: 26px; fill: white; }
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: white;
  letter-spacing: .08em;
  line-height: 1;
}
.logo-tagline {
  font-size: .68rem;
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  margin-top: .15rem;
}

/* NAV */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 4px;
  padding: .4rem .6rem;
  cursor: pointer;
  color: white;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  margin: 4px 0;
  transition: all .3s;
}
.site-nav ul {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.site-nav a {
  font-family: 'Cinzel', serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: rgba(255,255,255,.85);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  transition: all .2s;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active { color: white; background: rgba(255,255,255,.1); }
.site-nav .nav-cta {
  background: var(--primary);
  color: white;
  padding: .5rem 1.1rem;
}
.site-nav .nav-cta:hover { background: var(--primary-dark); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1585771724684-38269d6639fd?w=1400&h=900&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10,22,40,.96) 55%, rgba(243,112,33,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(243,112,33,.15);
  border: 1px solid rgba(243,112,33,.4);
  border-radius: 100px;
  padding: .35rem 1rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before { content: '★'; font-size: .9rem; }
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: white;
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero h1 span { color: var(--primary); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
  max-width: 540px;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: all .2s;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; }
.btn-primary:hover { background: var(--primary-dark); color: white; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(243,112,33,.4); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.btn-outline:hover { border-color: white; background: rgba(255,255,255,.1); color: white; }
.btn-secondary { background: var(--secondary); color: white; }
.btn-secondary:hover { background: var(--secondary-dark); color: white; }

.hero-trust {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.trust-icon {
  width: 36px;
  height: 36px;
  background: rgba(243,112,33,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
}
.trust-label {
  font-size: .8rem;
  color: rgba(255,255,255,.7);
  line-height: 1.3;
}
.trust-label strong { display: block; color: white; font-size: .9rem; }

/* === STATS BAND === */
.stats-band {
  background: var(--primary);
  padding: 2rem 0;
}
.stats-band .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 900;
  color: white;
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.8);
  margin-top: .25rem;
  font-weight: 600;
}

/* === SECTION TITLES === */
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: .75rem;
}
.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1rem;
}
.section-line {
  width: 50px;
  height: 3px;
  background: var(--primary);
  margin-bottom: 1.5rem;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 620px;
}

/* === SERVICES PREVIEW (HOME) === */
.services-section { padding: 5rem 0; background: var(--bg-light); }
.services-header {
  text-align: center;
  margin-bottom: 3rem;
}
.services-header .section-line { margin: 0 auto 1.5rem; }
.services-header .section-desc { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-warm);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.3rem;
}
.service-card h3 {
  font-family: 'Cinzel', serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: .4rem;
  line-height: 1.3;
}
.service-card p { font-size: .85rem; color: var(--text-light); }
.services-cta { text-align: center; margin-top: 2.5rem; }

/* === ABOUT SECTION === */
.about-section { padding: 5rem 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.about-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--primary);
  color: white;
  padding: .75rem 1.25rem;
  border-radius: 6px;
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: .85rem;
  line-height: 1.3;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge span { display: block; font-size: 1.6rem; }
.about-text p { color: var(--text-light); margin-bottom: 1rem; }
.credentials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.cred-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .5rem .9rem;
  font-size: .82rem;
  font-weight: 600;
  color: var(--dark);
}
.cred-badge .cred-icon { color: var(--primary); font-size: .9rem; }

/* === WHY US === */
.why-section {
  padding: 5rem 0;
  background: var(--dark);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  padding: 2rem 1.5rem;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .25s;
}
.why-card:hover { background: rgba(243,112,33,.1); border-color: rgba(243,112,33,.3); }
.why-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--primary);
}
.why-card h3 {
  font-family: 'Cinzel', serif;
  font-size: .95rem;
  color: white;
  margin-bottom: .5rem;
}
.why-card p { font-size: .88rem; color: rgba(255,255,255,.65); line-height: 1.6; }
.why-header { text-align: center; }
.why-header .section-title { color: white; }
.why-header .section-desc { color: rgba(255,255,255,.7); margin: 0 auto; }

/* === TESTIMONIALS === */
.testimonials-section { padding: 5rem 0; background: var(--bg-light); }
.testimonials-header { text-align: center; margin-bottom: 3rem; }
.testimonials-header .section-line { margin: 0 auto 1.5rem; }
.tc-wrapper { max-width: 720px; margin: 0 auto; }
.tc-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.tc-stars { color: var(--primary); font-size: 1.1rem; letter-spacing: .15em; margin-bottom: 1.25rem; }
.tc-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.5rem;
}
.tc-quote::before { content: '\201C'; color: var(--primary); font-size: 3rem; line-height: 0; vertical-align: -1rem; font-family: 'Cinzel', serif; margin-right: .1rem; }
.tc-attribution { font-weight: 700; color: var(--dark); font-size: .9rem; }
.tc-nav {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: all .3s;
  padding: 0;
}
.tc-dot.active { background: var(--primary); transform: scale(1.3); }
.tc-arrows {
  display: flex;
  justify-content: center;
  gap: .75rem;
  margin-top: 1rem;
}
.tc-arrow {
  background: none;
  border: 2px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all .2s;
}
.tc-arrow:hover { border-color: var(--primary); color: var(--primary); }
.review-sources {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.review-source {
  text-align: center;
  padding: .75rem 1.5rem;
  background: white;
  border-radius: 8px;
  border: 1px solid var(--border);
  min-width: 120px;
}
.review-source .rs-score {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
}
.review-source .rs-stars { color: var(--primary); font-size: .75rem; }
.review-source .rs-name { font-size: .75rem; color: var(--text-light); font-weight: 600; margin-top: .2rem; }

/* === BEFORE/AFTER SLIDER === */
.ba-section { padding: 5rem 0; }
.ba-header { text-align: center; margin-bottom: 2.5rem; }

/* === MAP SECTION === */
.map-section { padding: 5rem 0; background: var(--bg-light); }
.map-header { margin-bottom: 2rem; }
.map-areas {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.5rem;
}
.area-tag {
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: .3rem .85rem;
  font-size: .82rem;
  color: var(--dark);
  font-weight: 500;
}

/* === FAQ === */
.faq-section { padding: 5rem 0; }
.faq-header { margin-bottom: 2.5rem; }
.faq-list { max-width: 740px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  padding: 1.25rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
  transition: color .2s;
}
.faq-item summary:hover { color: var(--primary); }
.faq-chevron { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; color: var(--primary); }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item summary::-webkit-details-marker, .faq-item summary::marker { display: none; content: ''; }
.faq-body {
  padding: 0 0 1.25rem;
  color: var(--text-light);
  line-height: 1.75;
  font-size: .95rem;
}

/* === CTA BAND === */
.cta-band {
  padding: 4.5rem 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  text-align: center;
}
.cta-band h2 {
  color: white;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: .75rem;
}
.cta-band p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === CONTACT PAGE === */
.contact-hero {
  background: var(--dark);
  padding: 4rem 0;
  text-align: center;
}
.contact-hero h1 { color: white; margin-bottom: .75rem; }
.contact-hero p { color: rgba(255,255,255,.75); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  padding: 4rem 0;
}
.contact-info h2 { margin-bottom: 1.5rem; }
.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.ci-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-warm);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.ci-text h4 { font-family: 'Cinzel', serif; font-size: .85rem; margin-bottom: .2rem; }
.ci-text p, .ci-text a { font-size: .92rem; color: var(--text-light); }

/* === FORM === */
.contact-form-wrap { background: white; border-radius: 12px; padding: 2rem; box-shadow: var(--shadow); }
.contact-form-wrap h2 { margin-bottom: 1.5rem; font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: .35rem; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Cabin', sans-serif;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s;
  background: var(--bg-light);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 1rem; }
.form-note { font-size: .8rem; color: var(--text-light); margin-top: .75rem; text-align: center; }
#form-success {
  display: none;
  background: #ECFDF5;
  border: 1px solid #6EE7B7;
  border-radius: 8px;
  padding: 1.25rem;
  text-align: center;
  color: #065F46;
  font-weight: 600;
  margin-top: 1rem;
}

/* === ABOUT PAGE === */
.about-hero {
  background: var(--dark);
  padding: 4rem 0;
  text-align: center;
}
.about-hero h1 { color: white; margin-bottom: .75rem; }
.about-hero p { color: rgba(255,255,255,.75); }
.about-full { padding: 4rem 0; }
.about-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.about-full-img img { width: 100%; border-radius: 8px; height: 380px; object-fit: cover; }
.timeline { margin-top: 3rem; }
.timeline-item { display: flex; gap: 1.25rem; margin-bottom: 2rem; }
.tl-marker {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Cinzel', serif;
  font-size: .75rem;
  font-weight: 700;
  flex-shrink: 0;
}
.tl-content h4 { font-family: 'Cinzel', serif; font-size: .9rem; margin-bottom: .3rem; }
.tl-content p { font-size: .9rem; color: var(--text-light); }

/* === SERVICES PAGE === */
.services-hero {
  background: var(--dark);
  padding: 4rem 0;
  text-align: center;
}
.services-hero h1 { color: white; margin-bottom: .75rem; }
.services-hero p { color: rgba(255,255,255,.75); }
.services-full { padding: 4rem 0; }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.sf-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: all .25s;
}
.sf-card:hover { box-shadow: var(--shadow); border-color: var(--primary); transform: translateY(-2px); }
.sf-card-icon {
  width: 52px;
  height: 52px;
  background: var(--bg-warm);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.sf-card h3 { font-family: 'Cinzel', serif; font-size: .95rem; margin-bottom: .6rem; }
.sf-card p { font-size: .88rem; color: var(--text-light); line-height: 1.6; }
.emergency-band {
  background: var(--primary);
  padding: 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}
.eb-icon { font-size: 2.5rem; }
.eb-text h3 { font-family: 'Cinzel', serif; color: white; margin-bottom: .25rem; }
.eb-text p { color: rgba(255,255,255,.85); font-size: .9rem; }
.eb-action { margin-left: auto; }
.eb-action a {
  background: white;
  color: var(--primary);
  padding: .875rem 1.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
.eb-action a:hover { background: var(--dark); color: white; }

/* === FOOTER === */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand .logo-name { color: white; font-size: 1.1rem; }
.footer-brand .logo-tagline { color: var(--primary); }
.footer-brand p { font-size: .88rem; color: rgba(255,255,255,.6); margin-top: 1rem; line-height: 1.7; }
.footer-socials { display: flex; gap: .75rem; margin-top: 1.25rem; }
.social-link {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  transition: all .2s;
  text-decoration: none;
}
.social-link:hover { background: var(--primary); color: white; }
.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: .82rem;
  color: white;
  letter-spacing: .1em;
  margin-bottom: 1rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-col ul li a:hover { color: var(--primary); }
.footer-contact-item { display: flex; gap: .5rem; font-size: .88rem; margin-bottom: .6rem; color: rgba(255,255,255,.6); }
.footer-contact-item a { color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: var(--primary); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--primary); }

/* === FLOATING CTA === */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--primary);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(243,112,33,.45);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(243,112,33,.6); color: white; }
@media (min-width: 768px) { .floating-cta { bottom: 2rem; right: 2rem; width: 64px; height: 64px; } }

/* === SCROLL REVEAL === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* === FOCUS STATES === */
:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .about-full-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; flex-direction: column; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--dark-mid);
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.3);
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: .25rem; }
  .site-nav a { display: block; padding: .75rem 1rem; }
  .hero-content { max-width: 100%; }
  .hero { min-height: 75vh; }
  .form-row { grid-template-columns: 1fr; }
  .emergency-band { flex-direction: column; gap: 1rem; }
  .eb-action { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-band .container { grid-template-columns: repeat(2, 1fr); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .cta-band-actions { flex-direction: column; align-items: center; }
  .review-sources { gap: .75rem; }
  .review-source { min-width: 100px; }
  .top-bar .tb-phones { gap: .75rem; }
}
@media (max-width: 360px) {
  .top-bar .container { flex-direction: column; align-items: flex-start; }
}
