/* ============================================================
   TOUCHSTONE ELECTRICAL SERVICES — SHARED STYLESHEET
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:        #dc2626;
  --red-dark:   #b91c1c;
  --red-light:  #fef2f2;
  --black:      #0a0a0a;
  --gray-900:   #111827;
  --gray-800:   #1f2937;
  --gray-700:   #374151;
  --gray-600:   #4b5563;
  --gray-400:   #9ca3af;
  --gray-200:   #e5e7eb;
  --gray-100:   #f3f4f6;
  --gray-50:    #f9fafb;
  --white:      #ffffff;
  --font-head:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:  'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:      1200px;
  --radius:     0.5rem;
  --radius-lg:  0.75rem;
  --shadow:     0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.utility-bar {
  background: var(--gray-900);
  color: var(--gray-400);
  font-size: 0.8125rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--gray-800);
}

.utility-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.utility-left a, .utility-right a {
  color: var(--gray-400);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.utility-left a:hover, .utility-right a:hover {
  color: var(--white);
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.utility-phone {
  color: var(--red) !important;
  font-weight: 600;
}

.utility-phone:hover {
  color: #ef4444 !important;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.main-nav {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
}

.nav-logo span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button {
  color: var(--gray-700);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  background: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  white-space: nowrap;
}

.nav-links > li > a:hover,
.nav-links > li > button:hover {
  color: var(--red);
  background: var(--red-light);
}

.nav-links > li > a.active {
  color: var(--red);
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  padding: 0.5rem;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -0.6rem; /* slightly larger to guarantee overlap */
  left: 0;
  right: 0;
  height: 0.6rem;
  pointer-events: auto;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--gray-700);
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu a:hover {
  background: var(--red-light);
  color: var(--red);
}

.dropdown-menu .dropdown-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-400);
  padding: 0.5rem 1rem 0.25rem;
  margin-top: 0.25rem;
}

.dropdown-menu hr {
  border: none;
  border-top: 1px solid var(--gray-200);
  margin: 0.375rem 0;
}

.chevron { font-size: 0.75rem; transition: transform 0.2s; }
.dropdown:hover .chevron { transform: rotate(180deg); }

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.btn-call {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--gray-700);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  transition: color 0.2s;
  background: none;
}

.btn-call:hover { color: var(--red); }

.btn-quote {
  background: var(--red);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.1s;
  white-space: nowrap;
}

.btn-quote:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

/* Mobile menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem 0;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--gray-700);
  font-weight: 500;
  border-bottom: 1px solid var(--gray-100);
}

.mobile-menu a:hover { color: var(--red); background: var(--red-light); }

.mobile-menu .mobile-sub {
  padding-left: 2.5rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.mobile-menu .mobile-cta {
  margin: 1rem 1.5rem 0;
  display: block;
  text-align: center;
  background: var(--red);
  color: var(--white);
  padding: 0.75rem;
  border-radius: var(--radius);
  font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(220,38,38,0.3);
}

.btn-secondary {
  background: var(--white);
  color: var(--gray-900);
  border-color: var(--gray-200);
}

.btn-secondary:hover {
  border-color: var(--gray-400);
  transform: translateY(-1px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-lg {
  font-size: 1.0625rem;
  padding: 0.875rem 2rem;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero {
  position: relative;
  background: var(--gray-900);
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 10, 10, 0.75) 45%, rgba(10, 10, 10, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 5rem 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220,38,38,0.15);
  border: 1px solid rgba(220,38,38,0.3);
  color: #f87171;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.hero h1 span { color: var(--red); }

.hero-desc {
  color: #d1d5db;
  font-size: 1.0625rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--gray-200);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
}

.badge-icon { color: #4ade80; font-size: 0.75rem; }

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Hero Form Card */
.hero-form-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}

.hero-form-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}

.hero-form-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.9375rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--gray-50);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(220,38,38,0.1);
  background: var(--white);
}

.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem;
  border-radius: var(--radius);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.form-submit:hover { background: var(--red-dark); }

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-500);
  margin-top: 0.75rem;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--gray-900);
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--gray-800);
}

.trust-strip .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-icon {
  color: var(--red);
  font-size: 1.1rem;
}

/* ============================================================
   SECTION PATTERNS
   ============================================================ */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-lg { padding: 7rem 0; }

.section-bg-gray { background: var(--gray-50); }
.section-bg-dark { background: var(--gray-900); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.section-header.dark h2 { color: var(--white); }
.section-header.dark p { color: var(--gray-400); }

.section-header p {
  font-size: 1.0625rem;
  color: var(--gray-600);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--red);
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.service-card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card-link {
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.2s;
}

.service-card:hover .service-card-link { gap: 0.625rem; }

/* ============================================================
   PORTFOLIO GALLERY
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-label {
  color: var(--white);
}

.gallery-label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f87171;
  margin-bottom: 0.25rem;
}

.gallery-label strong {
  font-size: 1rem;
  font-weight: 700;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  align-items: start;
}

.why-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.why-content { padding: 1rem 0; }

.why-content h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.why-content .lead {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.why-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }

.why-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.why-text strong {
  display: block;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.why-text p { font-size: 0.9375rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   REFERRAL / OFFER SECTION
   ============================================================ */
.offer-section {
  background: var(--red);
  padding: 4rem 0;
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.offer-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

.offer-amount {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.offer-label {
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.75rem;
}

.offer-desc {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.offer-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.offer-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.offer-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.0625rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.testimonial-card {
  flex: 1 1 320px;
  max-width: 370px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.stars { color: #f59e0b; font-size: 1.125rem; letter-spacing: 0.1em; margin-bottom: 1rem; }

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  border-top: 1px solid var(--gray-200);
  padding-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.author-name { font-weight: 700; color: var(--gray-900); font-size: 0.9375rem; }
.author-loc { font-size: 0.8125rem; color: var(--gray-500); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 760px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--gray-200);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-900);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--red); }

.faq-chevron { font-size: 0.875rem; color: var(--gray-400); transition: transform 0.25s; flex-shrink: 0; }
.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--red); }
.faq-item.open .faq-question { color: var(--red); }

.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.faq-item.open .faq-answer { display: block; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--gray-900);
  padding: 4rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.cta-band p {
  color: var(--gray-400);
  font-size: 1rem;
}

.cta-band-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   SERVICE PAGE HERO
   ============================================================ */
.service-hero {
  background: var(--gray-900);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.service-hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.75) 50%, rgba(10, 10, 10, 0.35));
}

.service-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.service-hero .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  margin-bottom: 1.25rem;
}

.breadcrumb a { color: var(--gray-400); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: var(--gray-600); }

.service-hero h1 {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1rem;
}

.service-hero p {
  font-size: 1.0625rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.service-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   SERVICE PAGE — PROBLEMS GRID
   ============================================================ */
.problems-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: box-shadow 0.2s, border-color 0.2s;
  flex: 1 1 260px;
  max-width: 270px;
}

.problem-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
}

.problem-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.problem-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}

.problem-card h3 { font-size: 0.9375rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.25rem; }
.problem-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  position: relative;
  flex: 1 1 220px;
  max-width: 280px;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
}

.step-card h3 { font-size: 1.0625rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.6; }

/* ============================================================
   SERVICE TWO-COL LAYOUT
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  height: 420px;
}

.two-col-text h2 {
  font-size: clamp(1.625rem, 2.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.two-col-text p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.feature-list li::before {
  content: "✓";
  color: var(--red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand img {
  height: 52px;
  width: 52px;
  background: var(--white);
  border-radius: 50%;
  object-fit: contain;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-500);
  max-width: 280px;
  margin-bottom: 1.25rem;
}

.footer-contact-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--gray-400);
}

.footer-contact-list a:hover { color: var(--white); }
.footer-icon { color: var(--red); flex-shrink: 0; margin-top: 0.1em; }

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }

.footer-links a {
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--gray-800);
  padding: 1.5rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8125rem;
  color: var(--gray-600);
}

.footer-bottom a { color: var(--gray-600); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--gray-400); }
.footer-legal { display: flex; gap: 1.5rem; }

/* ============================================================
   SERVICE PAGE INLINE CTA BAND
   ============================================================ */
.inline-cta {
  background: var(--red);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 3rem 0;
}

.inline-cta h3 {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.375rem;
}

.inline-cta p { color: rgba(255,255,255,0.8); font-size: 0.9375rem; }

.inline-cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; flex-shrink: 0; }

/* ============================================================
   CONTACT FORM SECTION
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-detail-list { list-style: none; display: flex; flex-direction: column; gap: 1.25rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-detail-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--red-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail strong { display: block; font-weight: 700; color: var(--gray-900); margin-bottom: 0.125rem; }
.contact-detail span { font-size: 0.9375rem; color: var(--gray-600); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

/* ============================================================
   PRIVACY PAGE
   ============================================================ */
.prose-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.prose-page h1 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.prose-page .updated {
  font-size: 0.875rem;
  color: var(--gray-500);
  margin-bottom: 2.5rem;
}

.prose-page h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin: 2rem 0 0.75rem;
}

.prose-page p, .prose-page li {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.prose-page ul { padding-left: 1.5rem; }
.prose-page a { color: var(--red); }
.prose-page a:hover { text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 560px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-image img { height: 340px; }
  .two-col { grid-template-columns: 1fr; }
  .two-col img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .utility-left { display: none; }
  .nav-links { display: none; }
  .nav-cta-group .btn-call { display: none; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .offer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-buttons { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .inline-cta { flex-direction: column; }
  .two-col { gap: 2rem; }
  .service-hero-buttons { flex-direction: column; }
  .hero-buttons { flex-direction: column; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-strip .container { gap: 1rem; }
}

/* ============================================================
   LIGHTBOX DIALOG MODAL
   ============================================================ */
.lightbox-dialog {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  border: none;
  padding: 0;
  background: transparent;
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-lg);
  overflow: visible;
  outline: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.lightbox-dialog::backdrop {
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.lightbox-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-900);
}

.lightbox-content img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Close Button (Top Right inside Dialog) */
.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: background 0.2s, transform 0.2s;
}

.lightbox-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}
