/* Charlotte Plumbing - Aqua Heritage Theme
   Libre Baskerville (headers) + Nunito (body)
   Deep teal #0D617A + Warm amber #E8990A
*/

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Nunito:wght@300;400;600;700;800&display=swap');

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

:root {
  --teal:        #0D617A;
  --teal-dark:   #094D61;
  --teal-light:  #1480A0;
  --amber:       #E8990A;
  --amber-dark:  #C07C08;
  --amber-light: #FFF3CC;
  --bg:          #F6FAFB;
  --section-alt: #EAF4F8;
  --dark:        #122430;
  --text:        #374151;
  --text-light:  #6B7280;
  --white:       #FFFFFF;
  --border:      #D1E8EF;
  --shadow-sm:   0 1px 3px rgba(13,97,122,.10);
  --shadow-md:   0 4px 16px rgba(13,97,122,.13);
  --shadow-lg:   0 12px 40px rgba(13,97,122,.18);
  --radius:      8px;
  --radius-lg:   14px;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Libre Baskerville', Georgia, serif;
  color: var(--dark);
  line-height: 1.25;
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); }

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--teal);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: var(--radius);
  z-index: 9999;
  font-weight: 700;
  font-size: .875rem;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ========================
   EMERGENCY BAR
======================== */
.emergency-bar {
  background: var(--amber);
  color: var(--dark);
  text-align: center;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
}
.emergency-bar a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.emergency-bar a:hover { color: var(--teal-dark); }

/* ========================
   HEADER & NAV
======================== */
.site-header {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 900;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Libre Baskerville', serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: -.01em;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark);
}
.logo-tagline {
  font-size: .6875rem;
  color: var(--teal);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.site-nav { display: flex; align-items: center; gap: 2rem; }
.site-nav a {
  font-weight: 700;
  font-size: .9375rem;
  color: var(--text);
  padding: .25rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--teal);
  border-bottom-color: var(--teal);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}
.phone-link {
  font-weight: 800;
  font-size: 1rem;
  color: var(--teal) !important;
  border: none !important;
  display: flex;
  align-items: center;
  gap: .375rem;
}
.phone-link svg { width: 16px; height: 16px; }

/* Nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ========================
   BUTTONS
======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, box-shadow .2s, transform .15s;
  text-decoration: none;
  letter-spacing: .01em;
}
.btn:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(13,97,122,.3);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
}

.btn-amber {
  background: var(--amber);
  color: var(--dark);
  border-color: var(--amber);
}
.btn-amber:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(232,153,10,.35);
  transform: translateY(-1px);
}

.btn-white {
  background: #fff;
  color: var(--teal);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--amber);
  color: var(--dark);
  border-color: var(--amber);
  transform: translateY(-1px);
}

.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }
.btn-lg { padding: .9375rem 2.25rem; font-size: 1.0625rem; }

/* ========================
   HERO
======================== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(9,77,97,.92) 0%, rgba(13,97,122,.75) 60%, rgba(13,97,122,.4) 100%);
}

/* Diagonal clip bottom */
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 70px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 1.5rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(232,153,10,.18);
  border: 1px solid rgba(232,153,10,.45);
  color: var(--amber);
  padding: .375rem 1rem;
  border-radius: 40px;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  animation: fadeDown .6s ease forwards;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1.25rem;
  animation: fadeDown .7s ease .1s both;
  line-height: 1.15;
}
.hero h1 em {
  color: var(--amber);
  font-style: normal;
}

.hero-text {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.85);
  margin-bottom: 2rem;
  animation: fadeDown .7s ease .2s both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeDown .7s ease .3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  animation: fadeDown .7s ease .4s both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .375rem;
  color: rgba(255,255,255,.8);
  font-size: .875rem;
  font-weight: 600;
}
.hero-trust-item svg { color: var(--amber); }

.hero-card {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  animation: fadeLeft .8s ease .2s both;
}
.hero-card h3 {
  color: #fff;
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255,255,255,.1);
  border-radius: var(--radius);
}
.stat-num {
  display: block;
  font-family: 'Libre Baskerville', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* ========================
   STATS BAR
======================== */
.stats-bar {
  background: var(--teal);
  padding: 1.25rem 1.5rem;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
}
.stats-bar-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(255,255,255,.9);
}
.stats-bar-item svg { color: var(--amber); flex-shrink: 0; }
.stats-bar-item strong {
  font-size: 1.0625rem;
  color: #fff;
  font-weight: 700;
  display: block;
  line-height: 1.1;
}
.stats-bar-item span { font-size: .8125rem; opacity: .8; }

/* ========================
   SECTIONS
======================== */
.section {
  padding: 5rem 1.5rem;
}
.section-alt {
  background: var(--section-alt);
  position: relative;
}
.section-dark {
  background: var(--dark);
  color: #fff;
}
.section-dark h2,
.section-dark h3 { color: #fff; }

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

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--teal);
  margin-bottom: .75rem;
}
.section-dark .section-label { color: var(--amber); }

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,.7); }

.section-header {
  margin-bottom: 3rem;
}
.section-header.centered {
  text-align: center;
}
.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ========================
   SERVICES GRID
======================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transition: transform .25s;
  transform-origin: left;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--teal);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 52px;
  height: 52px;
  background: var(--section-alt);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.125rem;
  color: var(--teal);
  flex-shrink: 0;
}
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 {
  font-size: 1.0625rem;
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* Services page full grid */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.service-full-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-full-header {
  background: var(--teal);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: .875rem;
}
.service-full-header svg { color: rgba(255,255,255,.85); flex-shrink: 0; }
.service-full-header h3 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}
.service-full-body { padding: 1.5rem; }
.service-full-body p { font-size: .9375rem; color: var(--text); line-height: 1.65; }

/* ========================
   ABOUT SPLIT
======================== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--amber);
  color: var(--dark);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-badge-num {
  font-family: 'Libre Baskerville', serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-badge-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .8;
}

.about-content blockquote {
  border-left: 4px solid var(--teal);
  padding: .875rem 1.25rem;
  background: var(--section-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .9375rem;
}
.trust-list svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: .125rem;
}

/* ========================
   WHY US
======================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.why-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  transition: background .25s, transform .25s;
}
.why-card:hover {
  background: rgba(255,255,255,.12);
  transform: translateY(-3px);
}
.why-icon {
  width: 60px;
  height: 60px;
  background: rgba(232,153,10,.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--amber);
}
.why-card h3 { font-size: 1.0625rem; color: #fff; margin-bottom: .5rem; }
.why-card p { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.6; }

/* ========================
   TESTIMONIALS
======================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow .25s, transform .25s;
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-size: 4rem;
  color: var(--teal);
  opacity: .12;
  font-family: 'Libre Baskerville', serif;
  line-height: 1;
}
.testimonial-stars {
  display: flex;
  gap: .25rem;
  margin-bottom: 1rem;
  color: var(--amber);
}
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-card p {
  font-size: .9375rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.testimonial-attr {
  font-weight: 700;
  font-size: .875rem;
  color: var(--teal);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ========================
   SERVICE AREAS
======================== */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 40px;
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
  transition: border-color .2s, color .2s, background .2s;
}
.area-tag svg { color: var(--teal); width: 14px; height: 14px; }
.area-tag:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--section-alt);
}

/* ========================
   EMERGENCY BANNER
======================== */
.emergency-section {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-light) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.emergency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.emergency-section h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
  position: relative;
}
.emergency-section p {
  color: rgba(255,255,255,.85);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
  position: relative;
}
.emergency-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.emergency-phone {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--amber);
  letter-spacing: .01em;
}

/* ========================
   CONTACT PAGE
======================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info-block {
  background: var(--teal);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.contact-info-block h3 {
  color: #fff;
  font-size: 1.375rem;
  margin-bottom: 2rem;
}
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}
.contact-detail svg { color: var(--amber); flex-shrink: 0; margin-top: .125rem; }
.contact-detail strong {
  display: block;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .7;
  margin-bottom: .25rem;
}
.contact-detail p { color: rgba(255,255,255,.9); font-size: 1rem; line-height: 1.5; }
.contact-detail a { color: rgba(255,255,255,.9); font-weight: 700; }
.contact-detail a:hover { color: var(--amber); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  margin-bottom: 1.5rem;
  font-size: 1.375rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .875rem;
  margin-bottom: .375rem;
  color: var(--dark);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(13,97,122,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit { margin-top: 1.5rem; }
.form-submit .btn { width: 100%; }

/* ========================
   PAGE HERO
======================== */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 4rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}
.page-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  color: #fff;
  margin-bottom: .75rem;
}
.page-hero p {
  color: rgba(255,255,255,.8);
  font-size: 1.0625rem;
  max-width: 600px;
  margin: 0 auto;
}
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .5rem;
  font-size: .875rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,.65);
}
.breadcrumb a { color: var(--amber); font-weight: 600; }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ========================
   FOOTER
======================== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 1.5rem 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.75fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p {
  font-size: .9375rem;
  line-height: 1.7;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.footer-brand .site-logo { margin-bottom: 0; }
.footer-brand .logo-name { color: #fff; }
.footer-brand .logo-tagline { color: var(--amber); }

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: .5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.65);
  transition: background .2s, color .2s;
}
.footer-social a:hover {
  background: var(--teal);
  color: #fff;
}

.footer-col h4 {
  font-family: 'Libre Baskerville', serif;
  font-size: .9375rem;
  color: #fff;
  margin-bottom: 1.25rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .9rem;
  transition: color .2s;
}
.footer-links a:hover { color: var(--amber); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin-bottom: .75rem;
  font-size: .9rem;
  color: rgba(255,255,255,.7);
}
.footer-contact-item svg { color: var(--amber); flex-shrink: 0; margin-top: .125rem; }
.footer-contact-item a { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-contact-item a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
}
.footer-license { display: flex; gap: 1rem; align-items: center; }

/* ========================
   REVEAL ANIMATIONS
======================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: none;
}
.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: .1s; }
.stagger > *:nth-child(3) { transition-delay: .2s; }
.stagger > *:nth-child(4) { transition-delay: .3s; }
.stagger > *:nth-child(5) { transition-delay: .4s; }
.stagger > *:nth-child(6) { transition-delay: .5s; }

/* ========================
   KEYFRAMES
======================== */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: none; }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(24px); }
  to { opacity: 1; transform: none; }
}

/* ========================
   UTILITIES
======================== */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* Rating stars inline */
.stars {
  display: inline-flex;
  gap: .15rem;
  color: var(--amber);
  vertical-align: middle;
}
.stars svg { width: 16px; height: 16px; }

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: .5rem 1rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--teal);
}

/* ========================
   RESPONSIVE
======================== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-badge { right: 0; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .hero::after { height: 40px; }
}

@media (max-width: 768px) {
  .site-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--white); padding: 1.5rem; gap: 1rem; box-shadow: var(--shadow-md); border-top: 1px solid var(--border); }
  .site-nav.open { display: flex; }
  .site-nav a { font-size: 1.125rem; padding: .5rem 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .phone-link { display: none; }
  .hero-inner { padding: 4rem 0 6rem; }
  .stats-bar-inner { gap: .75rem; }
  .stats-bar-item { flex: 1 1 40%; justify-content: center; flex-direction: column; text-align: center; gap: .375rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 1rem; }
  .hero-inner { padding: 3rem 0 5rem; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 3rem 1rem; }
  .page-hero::after { height: 30px; }
  .emergency-actions { flex-direction: column; align-items: center; }
  .contact-info-block, .contact-form-wrap { padding: 1.75rem 1.25rem; }
}

@media (max-width: 320px) {
  .hero h1 { font-size: 1.625rem; }
  .btn { padding: .625rem 1.25rem; font-size: .9375rem; }
}
