/* Best Rate Plumbing — Trusted Local Professionals */
/* Palette: Charcoal #32373c | Deep Blue #1B5E90 | Sky Blue #0288D1 | Orange #E65C00 | Amber #F5A623 */
/* Fonts: Titillium Web (headings) + Open Sans (body) */

@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  --charcoal: #32373c;
  --charcoal-dark: #22262a;
  --blue: #1B5E90;
  --blue-bright: #0288D1;
  --blue-light: #E3F2FD;
  --orange: #E65C00;
  --orange-hover: #BF4D00;
  --amber: #F5A623;
  --white: #FFFFFF;
  --bg: #F0F5FB;
  --text: #1C1C1E;
  --text-muted: #5A6273;
  --border: #D8E2EF;
  --success: #2E7D32;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.14);
  --transition: 0.22s ease;
}

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

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

/* ─── SKIP LINK ─── */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--orange);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top var(--transition);
}
.skip-link:focus { top: 1rem; }

/* ─── TOP BAR ─── */
.top-bar {
  background: var(--charcoal-dark);
  color: #cdd5e0;
  font-size: 0.82rem;
  padding: 0.45rem 0;
}
.top-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}
.top-bar a { color: #e8edf5; text-decoration: none; }
.top-bar a:hover { color: var(--amber); }
.top-bar .ratings-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.top-bar .star { color: var(--amber); letter-spacing: -1px; }
.top-bar .trust-pill {
  background: var(--blue);
  color: white;
  border-radius: 3px;
  padding: 0.1rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
}

/* ─── HEADER ─── */
header {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.header-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0.7rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.logo img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--blue-bright);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: 0.03em;
}
.logo-sub {
  font-size: 0.7rem;
  color: var(--amber);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

nav { display: flex; align-items: center; gap: 0.25rem; }
nav a {
  color: #cdd5e0;
  text-decoration: none;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: background var(--transition), color var(--transition);
}
nav a:hover, nav a[aria-current="page"] {
  background: rgba(255,255,255,0.1);
  color: white;
}
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 0.45rem 1.1rem !important;
}
.nav-cta:hover { background: var(--orange-hover) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.4rem;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background: var(--charcoal-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://bestrateplumbing.com/wp-content/uploads/2024/07/best-rate-Work-truck-e1720485017369.png');
  background-size: cover;
  background-position: center right;
  opacity: 0.2;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,94,144,0.88) 45%, rgba(50,55,60,0.5) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 4rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  width: 100%;
}
.hero-content {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: white;
  padding: 0.35rem 0.9rem;
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.hero-title span { color: var(--amber); }
.hero-sub {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  max-width: 480px;
  line-height: 1.7;
}
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--orange);
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.03em;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-2px); }
.btn-primary:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: white;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-secondary:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.hero-info-card {
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  color: white;
}
.info-card-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--amber);
  margin-bottom: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.9rem;
}
.info-row svg { flex-shrink: 0; color: var(--blue-bright); margin-top: 2px; }
.info-row a { color: white; text-decoration: none; }
.info-row a:hover { color: var(--amber); }
.promo-pill {
  display: inline-block;
  background: var(--orange);
  color: white;
  border-radius: 3px;
  padding: 0.2rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--blue);
  color: white;
  padding: 2.25rem 0;
}
.stats-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
.stat-block {}
.stat-number {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: 2.6rem;
  color: var(--amber);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.88;
  margin-top: 0.3rem;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.2);
  display: none;
}

/* ─── SECTIONS ─── */
.section {
  padding: 4.5rem 0;
}
.section-alt { background: var(--bg); }
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-label {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 0.75rem;
  border-left: 3px solid var(--blue-bright);
}
.section-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
}

/* ─── EMERGENCY STRIP ─── */
.emergency-strip {
  background: var(--orange);
  color: white;
  text-align: center;
  padding: 0.85rem 1rem;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.emergency-strip a { color: white; text-decoration: underline; }

/* ─── SERVICES GRID ─── */
.service-tabs {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.tab-btn {
  background: var(--white);
  color: var(--charcoal);
  border: 2px solid var(--border);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}
.tab-btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all var(--transition);
  border-top: 3px solid transparent;
}
.service-card:hover {
  border-top-color: var(--blue-bright);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.service-icon {
  width: 42px;
  height: 42px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  color: var(--blue);
}
.service-card h3 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 0.35rem;
}
.service-card p { font-size: 0.83rem; color: var(--text-muted); }

/* ─── ABOUT SECTION ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
  height: 420px;
}
.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--charcoal);
  color: white;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge strong {
  display: block;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--amber);
  line-height: 1;
}
.about-badge span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.8;
}
.about-content .section-title { text-align: left; }
.about-content .section-label { text-align: left; }
.about-body {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.trust-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}
.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}
.trust-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue-bright);
  flex-shrink: 0;
}

/* ─── TEAM ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}
.team-card:hover { transform: translateY(-4px); }
.team-photo-wrap {
  background: var(--bg);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: 2rem;
}
.team-card-body { padding: 1.25rem; }
.team-card h3 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}
.team-card .role {
  font-size: 0.8rem;
  color: var(--blue-bright);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.team-card .bio { font-size: 0.83rem; color: var(--text-muted); }

/* ─── PROMOTIONS ─── */
.promos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.promo-card {
  background: var(--charcoal);
  color: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition), box-shadow var(--transition);
}
.promo-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.promo-dollar {
  background: var(--orange);
  color: white;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
}
.promo-text {
  font-size: 0.92rem;
  line-height: 1.5;
}
.promo-text small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.6;
  margin-top: 0.25rem;
}

/* ─── TESTIMONIALS ─── */
.testimonial-carousel { position: relative; max-width: 780px; margin: 0 auto; }
.tc-track {
  display: flex;
  transition: transform 0.5s ease;
  overflow: hidden;
}
.tc-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
}
.tc-stars { color: var(--amber); font-size: 1.25rem; letter-spacing: 2px; margin-bottom: 1rem; }
.tc-quote {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-style: italic;
  margin-bottom: 1.25rem;
}
.tc-author {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.tc-source { font-size: 0.75rem; color: var(--text-muted); }
.tc-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.tc-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.25;
  border: none;
  cursor: pointer;
  transition: opacity var(--transition);
}
.tc-dot.active { opacity: 1; }

/* ─── FAQ ─── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.1rem 0;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; content: ''; }
.faq-item summary:hover { color: var(--blue); }
.faq-chevron { flex-shrink: 0; transition: transform 0.3s; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--blue); }
.faq-body {
  padding: 0 0 1.25rem;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ─── MAP ─── */
#service-area-map {
  height: 380px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

/* ─── SERVICE AREAS CHIPS ─── */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.75rem;
}
.area-chip {
  background: var(--white);
  border: 1px solid var(--blue);
  color: var(--blue);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: 'Titillium Web', sans-serif;
}

/* ─── BEFORE/AFTER SLIDER ─── */
.ba-slider {
  position: relative;
  overflow: hidden;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  aspect-ratio: 16/9;
  user-select: none;
  box-shadow: var(--shadow-lg);
}
.ba-before {
  position: absolute;
  top: 0; left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}
.ba-before img {
  height: 100%;
  object-fit: cover;
  display: block;
}
.ba-handle {
  position: absolute;
  top: 0; left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 0 12px rgba(0,0,0,.4);
}
.ba-handle-circle {
  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);
  color: var(--blue);
  font-size: 1.1rem;
  font-weight: 900;
}
.ba-label {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ba-label-before { left: 0.75rem; background: rgba(0,0,0,.55); color: white; }
.ba-label-after { right: 0.75rem; background: var(--blue); color: white; }

/* ─── TRUST BADGES ─── */
.badges-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.badge-item img {
  height: 48px;
  width: auto;
  object-fit: contain;
}
.badge-text {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--charcoal);
  text-align: left;
}
.badge-text strong {
  display: block;
  font-size: 1.05rem;
  color: var(--blue);
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
}
.contact-info h2 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}
.phone-region {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.phone-region .region-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.phone-region .region-number {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--blue);
  text-decoration: none;
}
.phone-region .region-number:hover { color: var(--orange); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.contact-form-wrap h2 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.87rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.92rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-bright);
  box-shadow: 0 0 0 3px rgba(2,136,209,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success {
  display: none;
  background: #E8F5E9;
  border: 1px solid #A5D6A7;
  color: var(--success);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  margin-top: 1rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--charcoal-dark);
  color: #a8b4c4;
  padding: 3.5rem 0 0;
}
.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
}
.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a8b4c4;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--blue); color: white; border-color: var(--blue); }
.footer-col h4 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue);
  display: inline-block;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.45rem; }
.footer-col ul li a {
  color: #a8b4c4;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--amber); }
.footer-col address { font-style: normal; font-size: 0.85rem; line-height: 1.7; }
.footer-col address a { color: #a8b4c4; text-decoration: none; }
.footer-col address a:hover { color: var(--amber); }
.footer-phones { margin-top: 0.5rem; }
.footer-phones dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #7a8fa8;
  margin-top: 0.5rem;
}
.footer-phones dd { font-weight: 600; font-size: 0.88rem; }
.footer-phones dd a { color: white; text-decoration: none; }
.footer-phones dd a:hover { color: var(--amber); }
.footer-bottom {
  margin-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.25rem 1.25rem;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
}
.footer-bottom a { color: #a8b4c4; text-decoration: none; }
.footer-bottom a:hover { color: var(--amber); }

/* ─── FLOATING CTA ─── */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 500;
  background: var(--orange);
  color: white;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.floating-cta:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.floating-cta:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }
.reveal:nth-child(7) { transition-delay: 0.6s; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(105deg, var(--charcoal) 60%, var(--blue) 100%);
  color: white;
  padding: 3.5rem 0 3rem;
}
.page-hero h1 {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 0.5rem;
}
.page-hero p { opacity: 0.85; font-size: 1rem; }
.breadcrumb {
  font-size: 0.8rem;
  opacity: 0.65;
  margin-bottom: 0.75rem;
}
.breadcrumb a { color: var(--amber); text-decoration: none; }

/* ─── SERVICES ALL PAGE ─── */
.services-all-section { padding: 2rem 0; }
.services-category-title {
  font-family: 'Titillium Web', sans-serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--charcoal);
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 4px solid var(--blue-bright);
  margin: 2rem 0 1.25rem;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-info-card { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  nav { display: none; }
  nav.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--charcoal); padding: 1rem; gap: 0.25rem; }
  .menu-toggle { display: flex; }
  header { position: relative; }
  .footer-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .trust-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; }
  * { transition-duration: 0.01ms !important; }
}
