/* AAA City Plumbing - Bold Authority Editorial Theme */
/* Brand Colors: Navy #274C6F | Red #DF2229 | Font: Alfa Slab One + Montserrat */

@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

/* =========================================================
   CSS CUSTOM PROPERTIES
   ========================================================= */
:root {
  --primary: #274C6F;
  --primary-dark: #1A3350;
  --primary-light: #3A6690;
  --accent: #DF2229;
  --accent-dark: #B81B21;
  --accent-light: #F04046;
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --light-gray: #EAEDF0;
  --mid-gray: #8A9BB0;
  --text: #1E2D3D;
  --text-light: #4A5B6E;
  --font-display: 'Alfa Slab One', serif;
  --font-body: 'Montserrat', sans-serif;
  --shadow-sm: 0 2px 8px rgba(39, 76, 111, 0.08);
  --shadow-md: 0 6px 24px rgba(39, 76, 111, 0.12);
  --shadow-lg: 0 12px 48px rgba(39, 76, 111, 0.18);
  --radius: 6px;
  --radius-lg: 12px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.9);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .03em;
  padding: .4rem 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}
.top-bar a { color: var(--accent-light); }
.top-bar a:hover { color: #fff; }
.top-bar-left, .top-bar-right { display: flex; align-items: center; gap: 1.25rem; }
.top-bar-item { display: flex; align-items: center; gap: .35rem; }
.top-bar-item svg { flex-shrink: 0; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header {
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1rem;
}
.logo-wrap {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.logo-img {
  height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}
.logo-text-fallback {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: #fff;
  line-height: 1.1;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: .25rem;
  align-items: center;
}
.main-nav a {
  display: block;
  padding: .5rem .85rem;
  color: rgba(255,255,255,0.9);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: var(--radius);
  transition: background .2s, color .2s;
}
.main-nav a:hover,
.main-nav a[aria-current="page"] {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  border-radius: var(--radius) !important;
  padding: .5rem 1.1rem !important;
}
.nav-cta:hover { background: var(--accent-dark) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  padding: .4rem .6rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1;
}
.nav-toggle:focus-visible { outline: 2px solid var(--accent-light); outline-offset: 2px; }

/* =========================================================
   CONTAINER
   ========================================================= */
.container {
  width: min(90%, 1160px);
  margin: 0 auto;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
}
.btn:focus-visible { outline: 3px solid var(--accent-light); outline-offset: 2px; }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(223,34,41,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
  color: #fff;
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.aaacityplumbing.com/wp-content/smush-webp/2024/04/charlotte-nc-plumber.jpg.webp');
  background-size: cover;
  background-position: center 30%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(20,40,65,0.92) 0%, rgba(26,51,80,0.80) 55%, rgba(39,76,111,0.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0 4rem;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .85rem;
  border-radius: 3rem;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.hero h1 span { color: var(--accent-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  line-height: 1.7;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,0.9);
  font-size: .95rem;
  font-weight: 700;
}
.hero-phone a { color: #fff; font-size: 1.25rem; }
.hero-phone a:hover { color: var(--accent-light); }
.hero-trust {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255,255,255,0.8);
  font-size: .8rem;
  font-weight: 600;
}
.hero-trust-item svg { color: var(--accent-light); }

/* =========================================================
   STATS BAR
   ========================================================= */
.stats-bar {
  background: var(--accent);
  padding: 2rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item {
  padding: .5rem;
}
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  margin-bottom: .25rem;
}
.stat-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* =========================================================
   SECTION SHARED
   ========================================================= */
section { padding: 5rem 0; }
.section-label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 600px;
  line-height: 1.7;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* =========================================================
   SPECIALS BANNER
   ========================================================= */
.specials-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 2rem 0;
}
.specials-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.special-badge {
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 2.5rem;
  padding: .6rem 1.25rem;
  border-radius: var(--radius);
  line-height: 1;
  flex-shrink: 0;
}
.specials-text { color: #fff; flex: 1; min-width: 200px; }
.specials-text h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: .3rem;
}
.specials-text p { opacity: .85; font-size: .9rem; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-section { background: var(--off-white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--accent);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
}
.service-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.3;
  margin-bottom: .3rem;
}
.service-card p {
  font-size: .82rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* =========================================================
   WHY CHOOSE US / ABOUT PREVIEW
   ========================================================= */
.about-section { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-accent-card .big-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  display: block;
  line-height: 1;
}
.about-accent-card span { font-size: .8rem; font-weight: 600; opacity: .9; }
.about-features { margin: 1.75rem 0; display: flex; flex-direction: column; gap: .85rem; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
}
.about-feature-icon {
  width: 32px;
  height: 32px;
  background: rgba(39,76,111,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
}
.about-feature-text strong { display: block; font-size: .9rem; color: var(--primary); }
.about-feature-text span { font-size: .82rem; color: var(--text-light); }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials-section { background: var(--primary); }
.testimonials-section .section-title { color: #fff; }
.testimonials-section .section-label { color: var(--accent-light); }
.testimonial-carousel {
  position: relative;
  max-width: 760px;
  margin: 2.5rem auto 0;
  overflow: hidden;
}
.tc-track {
  display: flex;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.tc-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.tc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  text-align: center;
}
.tc-stars {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
  letter-spacing: .1em;
}
.tc-quote {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.25rem;
}
.tc-cite {
  font-size: .85rem;
  font-weight: 700;
  color: var(--accent-light);
  font-style: normal;
  letter-spacing: .05em;
}
.tc-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: background .3s, border-color .3s;
  padding: 0;
}
.tc-dot.active {
  background: var(--accent);
  border-color: var(--accent);
}

/* =========================================================
   AWARDS STRIP
   ========================================================= */
.awards-strip { background: var(--off-white); padding: 3rem 0; }
.awards-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
}
.award-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .75rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  font-size: .85rem;
  font-weight: 700;
  color: var(--primary);
}
.award-item svg { color: var(--accent); }

/* =========================================================
   SERVICE AREA
   ========================================================= */
.service-area-section { background: var(--white); }
.area-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.area-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem .85rem;
  background: var(--off-white);
  border-radius: var(--radius);
  font-size: .82rem;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--light-gray);
}
.area-chip svg { color: var(--accent); flex-shrink: 0; }
#service-area-map {
  height: 380px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 3px solid var(--light-gray);
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-section { background: var(--off-white); }
.faq-wrap { max-width: 720px; margin: 2.5rem auto 0; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: .75rem;
  border: 1px solid var(--light-gray);
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 1.4rem;
  font-weight: 700;
  font-size: .95rem;
  color: var(--primary);
  gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq-chevron {
  flex-shrink: 0;
  transition: transform .3s;
  color: var(--accent);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.75;
  border-top: 1px solid var(--light-gray);
  padding-top: 1rem;
}
.faq-item[open] .faq-answer { display: block; }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 1rem;
}
.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =========================================================
   ABOUT PAGE SPECIFIC
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 4rem 0;
  text-align: center;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.25rem);
  color: #fff;
  margin-bottom: .75rem;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.about-full-text {
  background: var(--white);
}
.about-full-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.about-text-block p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-text-block p:last-child { margin-bottom: 0; }

.about-images-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.about-images-stack img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  width: 100%;
  object-fit: cover;
}
.about-images-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-images-row img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  width: 100%;
  object-fit: cover;
  height: 200px;
}

.team-section { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}
.team-card-info { padding: 1.25rem 1rem; }
.team-card-info h3 { color: var(--primary); font-size: 1rem; font-weight: 700; margin-bottom: .2rem; }
.team-card-info p { color: var(--text-light); font-size: .82rem; }

/* =========================================================
   SERVICES PAGE
   ========================================================= */
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-full-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--accent);
  transition: transform .25s, box-shadow .25s;
}
.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-full-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin-bottom: 1rem;
}
.service-full-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .6rem;
  line-height: 1.3;
}
.service-full-card p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* =========================================================
   CONTACT PAGE
   ========================================================= */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.contact-card h3 svg { color: var(--accent); }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  margin-bottom: .85rem;
}
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail svg { color: var(--accent); flex-shrink: 0; margin-top: .1rem; }
.contact-detail-text strong { display: block; font-size: .8rem; font-weight: 700; color: var(--primary); letter-spacing: .04em; text-transform: uppercase; margin-bottom: .15rem; }
.contact-detail-text span, .contact-detail-text a { font-size: .9rem; color: var(--text-light); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(39,76,111,0.12);
  outline: none;
  background: #fff;
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: .9rem;
  margin-top: 1rem;
  border: 1px solid #a5d6a7;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-brand .logo-img {
  height: 50px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}
.footer-brand p { font-size: .85rem; line-height: 1.7; }
.footer-brand .social-links {
  display: flex;
  gap: .6rem;
  margin-top: 1.25rem;
}
.footer-brand .social-links a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: background .2s, color .2s;
}
.footer-brand .social-links a:hover { background: var(--accent); color: #fff; }
.footer-col h4 {
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul li a {
  font-size: .85rem;
  color: rgba(255,255,255,0.65);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--accent-light); }
.footer-contact-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  margin-bottom: .75rem;
  font-size: .85rem;
  line-height: 1.5;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--accent-light); margin-top: .1rem; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .78rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* =========================================================
   FLOATING CTA
   ========================================================= */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  background: var(--accent);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(223,34,41,0.4);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(223,34,41,0.5);
  color: #fff;
}
.floating-cta:focus-visible { outline: 3px solid var(--accent-light); outline-offset: 3px; }

/* =========================================================
   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; }

/* =========================================================
   BEFORE/AFTER SLIDER
   ========================================================= */
.ba-section { background: var(--off-white); }
.ba-wrap { max-width: 700px; margin: 2.5rem auto 0; }
.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/10;
  user-select: none;
  box-shadow: var(--shadow-lg);
  cursor: ew-resize;
}
.ba-before {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 8px rgba(0,0,0,.3);
}
.ba-handle-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.25);
  font-size: 1.1rem;
  color: var(--primary);
  font-weight: 700;
}
.ba-label {
  position: absolute;
  top: 1rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .65rem;
  border-radius: 3rem;
  z-index: 3;
}
.ba-label-before { left: 1rem; }
.ba-label-after { right: 1rem; }

/* =========================================================
   LEAFLET MAP OVERRIDES
   ========================================================= */
.leaflet-container { font-family: var(--font-body); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 2.5rem; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }

  .top-bar-left { flex-direction: column; gap: .25rem; align-items: flex-start; }
  .top-bar .container { flex-direction: column; align-items: flex-start; }

  .nav-toggle { display: flex; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--primary-dark);
    padding: 1rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: .25rem; }
  .main-nav a { padding: .65rem 1rem; }

  .hero-content { padding: 3rem 0 3rem; }

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

  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .about-full-grid { grid-template-columns: 1fr; }
  .about-images-stack { display: none; }

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

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

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

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

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-number { font-size: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .area-list { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .tc-track { transition: none; }
}
