/* ============================================
   DRAINS FIX — Master Stylesheet
   ============================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700&family=JetBrains+Mono:wght@500;700&display=swap');

/* --- Variables --- */
:root {
  --blue: #1E5BBF;
  --navy: #0A1628;
  --gray: #6B7280;
  --white: #FFFFFF;
  --red: #DC2626;
  --off-white: #F4F6FA;
  --cyan: #38BDF8;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --header-h: 72px;
  --max-w: 1200px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

/* --- Utilities --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { max-width: 65ch; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  max-width: 100%;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: #174da6; }

.btn-red {
  background: var(--red);
  color: var(--white);
}
.btn-red:hover { background: #b91c1c; }

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

.btn-outline-dark {
  border: 2px solid var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-dark:hover { background: var(--navy); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--navy);
}
.btn-white:hover { background: var(--off-white); }

.btn-lg {
  padding: 18px 36px;
  font-size: 1.125rem;
}

.phone-display {
  font-family: var(--font-mono);
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--navy);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.header-logo img {
  height: 44px;
  width: auto;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-nav a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.header-nav a:hover,
.header-nav a.active { color: var(--white); }

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lang-toggle {
  display: flex;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  padding: 2px;
}
.lang-toggle a {
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all 0.2s;
}
.lang-toggle a.active {
  background: var(--blue);
  color: var(--white);
}
.lang-toggle a:hover:not(.active) { color: var(--white); }

.header-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 20px;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.9375rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.header-cta:hover { background: #174da6; }
.header-cta svg { width: 18px; height: 18px; flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-nav .mobile-lang {
  display: flex;
  gap: 16px;
  padding: 24px 0;
}
.mobile-nav .mobile-lang a {
  border: none;
  font-size: 1rem;
  padding: 0;
  color: rgba(255,255,255,0.6);
}
.mobile-nav .mobile-lang a.active { color: var(--cyan); }

@media (max-width: 900px) {
  .header-nav { display: none; }
  .lang-toggle { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 600px) {
  .header-cta span.cta-label { display: none; }
  .header-cta { padding: 10px 14px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  padding-top: var(--header-h);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(30,91,191,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(56,189,248,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-content { max-width: 680px; }
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 5.5vw, 4rem);
  overflow-wrap: break-word;
}
.hero h1 span { color: var(--cyan); }
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  margin-bottom: 40px;
  max-width: 540px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  font-weight: 500;
}
.trust-strip li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.trust-strip li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Water drop decorative */
.hero-decor {
  position: absolute;
  right: -40px;
  bottom: -40px;
  width: 400px;
  height: 400px;
  opacity: 0.04;
  pointer-events: none;
}

/* ============================================
   SECTIONS — GENERAL
   ============================================ */
.section {
  padding: 96px 0;
}
.section-light { background: var(--white); }
.section-alt { background: var(--off-white); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  color: var(--gray);
  font-size: 1.0625rem;
  margin: 0 auto;
  max-width: 580px;
}
.section-dark .section-header p { color: rgba(255,255,255,0.6); }

/* ============================================
   THREE PILLARS
   ============================================ */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.pillar {
  text-align: center;
  padding: 40px 24px;
}
.pillar-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  border-radius: 50%;
}
.pillar-icon svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
}
.pillar h3 { margin-bottom: 12px; }
.pillar p { color: var(--gray); font-size: 0.9375rem; margin: 0 auto; }

@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: 1fr; gap: 16px; }
  .pillar { padding: 32px 16px; }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(260px, 100%), 1fr));
  gap: 24px;
}
.service-card {
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid #E5E7EB;
  transition: border-color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.section-alt .service-card { background: var(--white); }
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}
.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--blue);
}
.service-card-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.service-card p { color: var(--gray); font-size: 0.9375rem; margin-bottom: 16px; }
.service-card .card-arrow {
  color: var(--blue);
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 6px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.2s, transform 0.2s;
}
.service-card:hover .card-arrow {
  opacity: 1;
  transform: translateX(0);
}

.services-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   WHY DRAINS FIX (TRUST)
   ============================================ */
.trust-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.trust-image {
  aspect-ratio: 4/3;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}
.trust-image img { width: 100%; height: 100%; object-fit: cover; }
.trust-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  color: rgba(255,255,255,0.15);
  font-size: 6rem;
}
.trust-content h2 { margin-bottom: 24px; }
.trust-content > p { color: var(--gray); margin-bottom: 32px; }
.trust-list { display: flex; flex-direction: column; gap: 16px; }
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
}
.trust-list li svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (max-width: 768px) {
  .trust-section { grid-template-columns: 1fr; gap: 40px; }
  .trust-image { max-height: 300px; }
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.area-group h3 {
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue);
}
.area-group ul { display: flex; flex-direction: column; gap: 6px; }
.area-group li {
  color: var(--gray);
  font-size: 0.9375rem;
  padding-left: 16px;
  position: relative;
}
.area-group li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

.section-dark .area-group h3 { border-bottom-color: var(--cyan); }
.section-dark .area-group li { color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .areas-columns { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================
   PROCESS / STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: var(--cyan);
  opacity: 0.3;
}
.step { text-align: center; position: relative; }
.step-number {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--cyan);
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  border: 2px solid var(--cyan);
  border-radius: 50%;
  position: relative;
  z-index: 1;
}
.section-dark .step-number { background: var(--white); color: var(--navy); border-color: var(--white); }
.step h3 { margin-bottom: 12px; }
.step p { color: var(--gray); font-size: 0.9375rem; margin: 0 auto; max-width: 300px; }
.section-dark .step p { color: rgba(255,255,255,0.6); }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; gap: 48px; }
  .steps-grid::before { display: none; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(300px, 100%), 1fr));
  gap: 24px;
}
.testimonial-card {
  padding: 32px;
  background: var(--white);
  border: 1px solid #E5E7EB;
}
.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
  color: #FBBF24;
}
.testimonial-stars svg { width: 18px; height: 18px; }
.testimonial-quote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--navy);
  font-style: italic;
}
.testimonial-author {
  font-weight: 700;
  font-size: 0.875rem;
}
.testimonial-location {
  color: var(--gray);
  font-size: 0.8125rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(30,91,191,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 24px;
  font-size: clamp(1.75rem, 4vw, 3rem);
}
.cta-banner .phone-huge {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 32px;
  display: block;
}
.cta-banner .phone-huge a { color: inherit; }
.cta-banner .phone-huge a:hover { text-decoration: underline; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  padding-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand img { height: 40px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  margin-bottom: 12px;
}
.footer-contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--cyan);
}
.footer-contact-item a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: var(--white); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   MOBILE CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--navy);
  padding: 12px 16px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-cta-bar-inner {
  display: flex;
  gap: 12px;
}
.mobile-cta-bar .btn { flex: 1; justify-content: center; padding: 14px 12px; font-size: 0.9375rem; }

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
  body { padding-bottom: 72px; }
  .site-footer { padding-bottom: 72px; }
}

/* ============================================
   FORMS
   ============================================ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E5E7EB;
  font-size: 1rem;
  transition: border-color 0.2s;
  background: var(--white);
  color: var(--navy);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus { border-color: var(--blue); }
.form-input::placeholder,
.form-textarea::placeholder { color: #9CA3AF; }
.form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-radio-group {
  display: flex;
  gap: 24px;
  padding-top: 4px;
}
.form-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.9375rem;
}
.form-radio input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
}
.form-error {
  color: var(--red);
  font-size: 0.8125rem;
  display: none;
}
.form-group.error .form-input,
.form-group.error .form-select,
.form-group.error .form-textarea { border-color: var(--red); }
.form-group.error .form-error { display: block; }

.form-submit { margin-top: 12px; }
.form-note { color: var(--gray); font-size: 0.8125rem; margin-top: 16px; }

@media (max-width: 600px) {
  .form-grid { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 32px; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}
.contact-method-icon svg { width: 22px; height: 22px; color: var(--blue); }
.contact-method h3 { font-size: 0.875rem; color: var(--gray); font-weight: 600; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.05em; }
.contact-method p { font-size: 1.125rem; font-weight: 600; }
.contact-method a:hover { color: var(--blue); }
.contact-phone-big {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================
   INNER PAGE HEROES
   ============================================ */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 64px) 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(30,91,191,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p {
  color: rgba(255,255,255,0.6);
  font-size: 1.125rem;
  max-width: 600px;
}

/* ============================================
   SERVICES DETAIL (SERVICES PAGE)
   ============================================ */
.service-detail {
  padding: 48px 0;
  border-bottom: 1px solid #E5E7EB;
}
.service-detail:last-child { border-bottom: none; }
.service-detail h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.service-detail h3 svg { width: 28px; height: 28px; color: var(--blue); }
.service-detail > p { color: var(--gray); margin-bottom: 20px; font-size: 1rem; line-height: 1.7; }
.service-detail ul {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(240px, 100%), 1fr));
  gap: 8px 24px;
  margin-bottom: 24px;
}
.service-detail li {
  padding-left: 20px;
  position: relative;
  color: var(--gray);
  font-size: 0.9375rem;
}
.service-detail li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
}
.service-detail .service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
  font-size: 0.9375rem;
}
.service-detail .service-cta:hover { text-decoration: underline; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.value-card {
  padding: 32px;
  background: var(--off-white);
}
.value-card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.value-card h3 svg { width: 24px; height: 24px; color: var(--blue); }
.value-card p { color: var(--gray); font-size: 0.9375rem; }

@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ============================================
   SERVICE AREAS PAGE — DETAILED
   ============================================ */
.area-detail {
  padding: 48px 0;
  border-bottom: 1px solid #E5E7EB;
}
.area-detail:last-child { border-bottom: none; }
.area-detail h3 { font-size: 1.5rem; margin-bottom: 12px; }
.area-detail > p { color: var(--gray); margin-bottom: 20px; line-height: 1.7; }
.area-neighborhoods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.area-neighborhoods span {
  padding: 6px 14px;
  background: var(--off-white);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid #E5E7EB;
}

/* ============================================
   EMERGENCY CALLOUT
   ============================================ */
.emergency-callout {
  background: rgba(220, 38, 38, 0.06);
  border-left: 4px solid var(--red);
  padding: 20px 24px;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.emergency-callout svg { width: 24px; height: 24px; color: var(--red); flex-shrink: 0; }
.emergency-callout p { font-weight: 600; flex: 1; min-width: 200px; }
.emergency-callout a { color: var(--red); font-family: var(--font-mono); font-weight: 700; }

/* ============================================
   ESTIMATE PAGE
   ============================================ */
.estimate-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: start;
}
.estimate-sidebar {
  padding: 32px;
  background: var(--off-white);
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.estimate-sidebar h3 { margin-bottom: 16px; }
.estimate-sidebar ul { display: flex; flex-direction: column; gap: 12px; }
.estimate-sidebar li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--gray);
}
.estimate-sidebar li svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; margin-top: 2px; }

@media (max-width: 900px) {
  .estimate-layout { grid-template-columns: 1fr; }
  .estimate-sidebar { position: static; }
}

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.9375rem;
  border: 2px dashed #E5E7EB;
}

/* ============================================
   SUCCESS MESSAGE
   ============================================ */
.form-success {
  display: none;
  text-align: center;
  padding: 48px 24px;
}
.form-success.show { display: block; }
.form-success svg { width: 64px; height: 64px; color: #10B981; margin: 0 auto 24px; }
.form-success h3 { margin-bottom: 12px; }
.form-success p { color: var(--gray); margin: 0 auto; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PRINT
   ============================================ */
@media print {
  .site-header, .mobile-cta-bar, .site-footer { display: none; }
  body { padding: 0; }
  .hero { min-height: auto; padding: 24px 0; }
}
