/* Ron Steele Plumbing — Craftsman Heritage Red */
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@400;500;600;700&family=Nunito+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,400&display=swap');

:root {
  --primary: #CC0000;
  --primary-dark: #A30000;
  --secondary: #3585B3;
  --secondary-dark: #2A6D96;
  --dark: #1A1A1A;
  --charcoal: #333333;
  --gray: #666666;
  --light-gray: #F4F2F0;
  --border: #E0DCD8;
  --white: #FFFFFF;
  --gold: #C8900E;
  --font-heading: 'Domine', Georgia, serif;
  --font-body: 'Nunito Sans', sans-serif;
  --max-width: 1200px;
  --radius: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);
  --transition: .25s ease;
}

*, *::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(--charcoal);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

/* ======== TOPBAR ======== */
.topbar {
  background: var(--dark);
  padding: .5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
}
.topbar a { color: rgba(255,255,255,.85); text-decoration: none; transition: color var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.25rem; }
.topbar-phone {
  color: var(--white) !important;
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
}
.topbar-badge {
  background: var(--primary);
  color: white;
  padding: .15rem .55rem;
  border-radius: 3px;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ======== HEADER ======== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: .75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-logo img {
  height: 60px;
  width: auto;
}
.site-logo .logo-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  line-height: 1.2;
}
.site-logo .logo-text span { color: var(--secondary); }

.main-nav { display: flex; align-items: center; gap: .25rem; }
.main-nav a {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--charcoal);
  text-decoration: none;
  padding: .5rem .85rem;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--primary);
  background: rgba(204,0,0,.06);
}
.header-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  padding: .55rem 1.2rem !important;
  border-radius: var(--radius) !important;
}
.header-cta:hover {
  background: var(--primary-dark) !important;
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: .4rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ======== HERO ======== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1657558665549-bd7d82afed8c?w=1400&h=700&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(204,0,0,.88) 0%, rgba(26,26,26,.80) 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
  width: 100%;
}
.hero-content { max-width: 620px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: .3rem .85rem;
  border-radius: 3px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1.1rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: .85rem; margin-bottom: 2rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white);
  color: var(--primary);
  font-weight: 800;
  font-size: 1rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  border: none; cursor: pointer;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: .85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.5);
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.trust-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}
.trust-item svg { color: #FFD700; flex-shrink: 0; }

/* Hero sidebar card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  width: 280px;
  flex-shrink: 0;
  box-shadow: var(--shadow-lg);
}
.hero-card h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--primary);
}
.hero-card-item {
  display: flex; align-items: flex-start; gap: .65rem;
  margin-bottom: .85rem;
  font-size: .88rem;
}
.hero-card-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.hero-card-item strong { display: block; color: var(--dark); font-weight: 700; }
.hero-card-item span { color: var(--gray); }
.hero-card .cta-call {
  display: block; width: 100%;
  background: var(--primary); color: var(--white);
  font-weight: 800; font-size: 1rem;
  text-align: center; padding: .8rem;
  border-radius: var(--radius); text-decoration: none;
  margin-top: 1rem;
  transition: background var(--transition);
}
.hero-card .cta-call:hover { background: var(--primary-dark); }

/* ======== STATS BAND ======== */
.stats-band {
  background: var(--dark);
  padding: 2rem 1.5rem;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  display: block;
  line-height: 1;
}
.stat-number.text-stat { font-size: 2rem; color: #FFD700; }
.stat-label {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.6);
  margin-top: .35rem;
  display: block;
}
.stat-accent { color: var(--primary); }

/* ======== SECTIONS ======== */
section { padding: 5rem 1.5rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-eyebrow {
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--primary);
  margin-bottom: .6rem;
  display: block;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.section-header p { color: var(--gray); max-width: 560px; margin: 0 auto; font-size: .98rem; }
.section-divider {
  width: 48px; height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: .75rem auto 0;
}
.container { max-width: var(--max-width); margin: 0 auto; }

/* ======== SERVICES SECTION ======== */
.services-section { background: var(--light-gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  border-top-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(204,0,0,.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  color: var(--primary);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .4rem;
}
.service-card p { font-size: .87rem; color: var(--gray); line-height: 1.6; }

/* ======== ABOUT SECTION ======== */
.about-section { background: var(--white); }
.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-wrap img { width: 100%; height: 420px; object-fit: cover; display: block; }
.about-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--primary);
  color: white;
  padding: .85rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-badge strong { font-size: 1.6rem; display: block; font-family: var(--font-heading); line-height: 1; }
.about-badge span { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; opacity: .9; }
.about-content .section-eyebrow { text-align: left; }
.about-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}
.about-content p { color: var(--gray); margin-bottom: 1rem; font-size: .97rem; }
.credentials-list { display: flex; flex-direction: column; gap: .75rem; margin-top: 1.5rem; }
.credential-item {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; font-weight: 600; color: var(--dark);
}
.credential-item svg { color: var(--primary); flex-shrink: 0; }
.about-cta { margin-top: 1.75rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* ======== OFFER STRIP ======== */
.offer-strip {
  background: var(--secondary);
  padding: 3rem 1.5rem;
}
.offer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.offer-text h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: .4rem;
}
.offer-text p { color: rgba(255,255,255,.85); font-size: .95rem; }
.offer-badges { display: flex; flex-wrap: wrap; gap: .75rem; }
.offer-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: 4px;
  font-size: .82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.offer-badge.highlight { background: var(--white); color: var(--secondary); }

/* ======== TESTIMONIALS ======== */
.testimonials-section { background: var(--light-gray); }
.tc-carousel { max-width: 780px; margin: 0 auto; }
.tc-track-wrap { overflow: hidden; border-radius: var(--radius); }
.tc-track { display: flex; transition: transform .5s ease; }
.tc-slide {
  min-width: 100%;
  background: var(--white);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.tc-stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.tc-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
  font-weight: 400;
}
.tc-author {
  display: flex; align-items: center; gap: .75rem;
}
.tc-author-icon {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 800; font-size: 1rem;
  font-family: var(--font-heading);
  flex-shrink: 0;
}
.tc-author-name { font-weight: 700; color: var(--dark); font-size: .92rem; }
.tc-author-loc { font-size: .8rem; color: var(--gray); }
.tc-controls {
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  margin-top: 1.5rem;
}
.tc-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.tc-dot.active { background: var(--primary); transform: scale(1.3); }
.tc-arrow {
  background: none; border: 2px solid var(--border); border-radius: 50%;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--gray);
  transition: border-color var(--transition), color var(--transition);
}
.tc-arrow:hover { border-color: var(--primary); color: var(--primary); }

/* ======== SERVICE AREA MAP ======== */
.map-section { background: var(--white); }
.map-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
#service-area-map {
  height: 420px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--border);
}
.area-list { display: flex; flex-direction: column; gap: .6rem; }
.area-tag {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(53,133,179,.08);
  color: var(--secondary-dark);
  border: 1px solid rgba(53,133,179,.2);
  padding: .35rem .8rem;
  border-radius: 4px;
  font-size: .85rem;
  font-weight: 600;
  margin: .2rem;
}
.area-tags { display: flex; flex-wrap: wrap; }
.map-cta { margin-top: 1.5rem; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--secondary);
  color: var(--white);
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background var(--transition);
  border: none; cursor: pointer;
}
.btn-secondary:hover { background: var(--secondary-dark); }
.btn-red {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--primary);
  color: var(--white);
  padding: .8rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  transition: background var(--transition);
  border: none; cursor: pointer;
}
.btn-red:hover { background: var(--primary-dark); }

/* ======== BEFORE/AFTER SLIDER ======== */
.ba-section { background: var(--light-gray); }
.ba-wrap { max-width: 800px; margin: 0 auto; }
.ba-label {
  display: flex; justify-content: space-between;
  margin-bottom: .75rem;
  font-weight: 700;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray);
}
.ba-label span:last-child { color: var(--secondary); }

/* ======== FAQ ======== */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 0;
  font-weight: 700;
  font-size: .98rem;
  color: var(--dark);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item summary:hover { color: var(--primary); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-chevron { transition: transform .3s; flex-shrink: 0; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--primary); }
.faq-answer {
  padding: .25rem 0 1.25rem;
  color: var(--gray);
  font-size: .95rem;
  line-height: 1.75;
}

/* ======== CTA SECTION ======== */
.cta-section {
  background: var(--primary);
  padding: 4rem 1.5rem;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: .75rem;
}
.cta-section p { color: rgba(255,255,255,.85); margin-bottom: 2rem; font-size: 1rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.btn-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white);
  color: var(--primary);
  padding: .9rem 2rem;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1rem;
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.btn-white-outline {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent;
  color: var(--white);
  padding: .9rem 2rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.6);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: border-color var(--transition), background var(--transition);
}
.btn-white-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); }

/* ======== FOOTER ======== */
.site-footer {
  background: var(--dark);
  color: rgba(255,255,255,.75);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 55px; margin-bottom: 1rem; filter: brightness(1.2); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-social { display: flex; gap: .6rem; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
  font-size: .85rem; font-weight: 700;
}
.social-link:hover { background: var(--primary); color: white; }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: .95rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.1rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .55rem; }
.footer-col ul li a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .88rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: .6rem;
  margin-bottom: .75rem; font-size: .88rem;
}
.footer-contact-item svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.45); text-decoration: none; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.8); }

/* ======== PAGE HERO ======== */
.page-hero {
  background: var(--dark);
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, rgba(26,26,26,1) 60%);
  opacity: .9;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-width); margin: 0 auto;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: .5rem;
}
.page-hero p { color: rgba(255,255,255,.75); font-size: 1rem; }
.breadcrumb {
  display: flex; align-items: center; gap: .4rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,.65); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: .5; }

/* ======== SERVICES PAGE ======== */
.services-tabs { max-width: var(--max-width); margin: 0 auto; }
.tab-nav {
  display: flex; gap: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  max-width: fit-content;
  margin: 0 auto 2.5rem;
}
.tab-btn {
  padding: .75rem 2rem;
  font-weight: 700;
  font-size: .9rem;
  cursor: pointer;
  border: none;
  background: var(--white);
  color: var(--gray);
  transition: background var(--transition), color var(--transition);
}
.tab-btn.active {
  background: var(--primary);
  color: var(--white);
}
.tab-btn:hover:not(.active) { background: var(--light-gray); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 1rem;
}
.svc-item {
  display: flex; align-items: center; gap: .75rem;
  background: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 3px solid var(--primary);
  font-weight: 600;
  font-size: .9rem;
  color: var(--dark);
}
.svc-item svg { color: var(--primary); flex-shrink: 0; }

/* ======== CONTACT PAGE ======== */
.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: .4rem;
}
.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: var(--font-body);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background var(--transition);
}
.submit-btn:hover { background: var(--primary-dark); }
.form-success {
  display: none;
  background: #d4edda;
  border: 1px solid #28a745;
  color: #155724;
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-weight: 600;
}
.contact-info-card {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 2rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.5rem;
}
.contact-info-card h3 {
  font-family: var(--font-heading);
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--primary);
}
.info-row {
  display: flex; align-items: flex-start; gap: .75rem;
  margin-bottom: 1rem;
  font-size: .9rem;
}
.info-row svg { color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.info-row a { color: rgba(255,255,255,.8); text-decoration: none; }
.info-row a:hover { color: var(--white); }
.hours-table { width: 100%; font-size: .88rem; border-collapse: collapse; }
.hours-table td { padding: .35rem 0; color: rgba(255,255,255,.75); }
.hours-table td:first-child { font-weight: 600; color: var(--white); }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid rgba(255,255,255,.08); }
.hours-table .closed { color: rgba(255,255,255,.4); }

/* ======== REVEAL ANIMATIONS ======== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s 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; }
.reveal:nth-child(7) { transition-delay: .6s; }
.reveal:nth-child(8) { transition-delay: .5s; }

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

/* ======== FOCUS STYLES ======== */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-grid { gap: 2.5rem; }
  .map-grid { grid-template-columns: 1fr; }
  #service-area-map { height: 340px; }
}
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .main-nav { display: none; flex-direction: column; background: var(--white); position: absolute; top: 100%; left: 0; right: 0; padding: 1rem 1.5rem; box-shadow: 0 8px 24px rgba(0,0,0,.12); border-top: 1px solid var(--border); gap: .25rem; }
  .main-nav.open { display: flex; }
  .nav-toggle { display: flex; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap img { height: 280px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-inner { gap: 2rem; }
  .stat-number { font-size: 2rem; }
  .offer-inner { flex-direction: column; }
  section { padding: 3.5rem 1.25rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: .75rem; }
  .cta-btns { flex-direction: column; align-items: center; }
  .tab-nav { width: 100%; }
  .tab-btn { flex: 1; padding: .7rem .5rem; font-size: .82rem; }
  .services-full-grid { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 1.5rem; }
}
