/* ScaldWash — Dark fire theme */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --fire: #E8430A;
  --fire-light: #FF6B35;
  --ember: #FFA62B;
  --dark: #0C0C0C;
  --darker: #060606;
  --smoke: #1A1A1A;
  --ash: #2A2A2A;
  --steel: #8A8A8A;
  --clean: #F5F0EB;
  --white: #FFFFFF;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--darker);
  color: var(--clean);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.2;
}

a { color: var(--fire-light); text-decoration: none; }
a:hover { color: var(--ember); }

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(6,6,6,0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232,67,10,0.12);
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--white);
}
.logo span { color: var(--fire); }

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

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--steel);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-cta {
  background: var(--fire) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--fire-light) !important; }

/* Mobile nav */
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: var(--clean); margin: 5px 0; border-radius: 2px; }

@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 60px; left: 0; right: 0; background: var(--darker); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; border-bottom: 1px solid var(--ash); }
  .nav-links.open { display: flex; }
  .mobile-toggle { display: block; }
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-primary { background: var(--fire); color: var(--white); }
.btn-primary:hover { background: var(--fire-light); color: var(--white); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--fire); color: var(--fire); background: transparent; }
.btn-outline:hover { background: var(--fire); color: var(--white); }
.btn-ghost { color: var(--clean); border: 1px solid var(--ash); }
.btn-ghost:hover { border-color: var(--fire); color: var(--fire); }

/* SECTIONS */
.section {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.1rem;
  color: var(--steel);
  max-width: 560px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fire);
  display: block;
  margin-bottom: 0.75rem;
}

/* GRID */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* CARDS */
.card {
  background: var(--smoke);
  border: 1px solid var(--ash);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
}
.card:hover {
  border-color: var(--fire);
  transform: translateY(-4px);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,67,10,0.1);
  border: 1px solid rgba(232,67,10,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.card p {
  color: var(--steel);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232,67,10,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,166,43,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(232,67,10,0.1);
  border: 1px solid rgba(232,67,10,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  color: var(--fire-light);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.75rem, 7vw, 5rem);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--fire), var(--ember));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--steel);
  max-width: 560px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

/* STATS BAR */
.stats-bar {
  background: var(--smoke);
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  padding: 2.5rem 2rem;
}

.stats-inner {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item { text-align: center; }
.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--fire-light);
  line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--steel); margin-top: 0.25rem; }

/* SERVICES SECTION */
#services {
  background: var(--dark);
}

.service-card {
  background: var(--smoke);
  border: 1px solid var(--ash);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { border-color: var(--fire); transform: translateY(-4px); }

.service-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.service-card-body { padding: 1.75rem; flex: 1; }
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.service-card-body p { color: var(--steel); font-size: 0.9rem; margin-bottom: 1.25rem; }
.service-card-body a { color: var(--fire-light); font-weight: 600; font-size: 0.9rem; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.why-left h2 { font-size: 2.25rem; margin-bottom: 1rem; }
.why-left p { color: var(--steel); font-size: 1rem; }
.why-list { display: flex; flex-direction: column; gap: 1.25rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(232,67,10,0.1);
  border: 1px solid rgba(232,67,10,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.why-item h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.why-item p { color: var(--steel); font-size: 0.875rem; }

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

/* PRICING */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--smoke);
  border: 1px solid var(--ash);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s;
}
.pricing-card.featured {
  border-color: var(--fire);
  position: relative;
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--fire);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.pricing-price { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800; color: var(--fire-light); margin-bottom: 1.5rem; }
.pricing-price span { font-size: 1rem; color: var(--steel); font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li { padding: 0.4rem 0; font-size: 0.9rem; color: var(--steel); border-bottom: 1px solid var(--ash); display: flex; align-items: center; gap: 0.6rem; }
.pricing-features li::before { content: '✓'; color: var(--fire); font-weight: 700; }

/* SERVICE AREA */
.area-map {
  background: var(--smoke);
  border: 1px solid var(--ash);
  border-radius: 14px;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.area-map-placeholder {
  text-align: center; color: var(--steel);
}
.area-map-placeholder svg { width: 64px; height: 64px; margin-bottom: 1rem; opacity: 0.5; }

.area-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.area-city {
  background: var(--smoke);
  border: 1px solid var(--ash);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--steel);
  transition: border-color 0.2s, color 0.2s;
}
.area-city:hover { border-color: var(--fire); color: var(--fire-light); }

/* CTA */
.cta-section {
  background: var(--smoke);
  border-top: 1px solid var(--ash);
  border-bottom: 1px solid var(--ash);
  text-align: center;
  padding: 5rem 2rem;
}
.cta-section h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta-section p { color: var(--steel); margin-bottom: 2rem; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
footer {
  background: var(--darker);
  border-top: 1px solid var(--ash);
  padding: 3rem 2rem 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer-brand .logo { margin-bottom: 0.75rem; display: inline-block; }
.footer-brand p { color: var(--steel); font-size: 0.875rem; max-width: 280px; }
footer h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--steel); margin-bottom: 1rem; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.6rem; }
footer ul li a { color: var(--steel); font-size: 0.875rem; transition: color 0.2s; }
footer ul li a:hover { color: var(--fire-light); }
.footer-bottom {
  border-top: 1px solid var(--ash);
  padding-top: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--steel);
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* QUOTE FORM */
.quote-section {
  padding: 6rem 2rem;
  background: var(--dark);
}
.quote-form {
  background: var(--smoke);
  border: 1px solid var(--ash);
  border-radius: 16px;
  padding: 3rem;
  max-width: 700px;
  margin: 0 auto;
}
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--clean); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--darker);
  border: 1px solid var(--ash);
  border-radius: 8px;
  color: var(--clean);
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fire);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.quote-success {
  text-align: center;
  padding: 3rem;
}
.quote-success h2 { color: var(--fire-light); margin-bottom: 1rem; }
.quote-success p { color: var(--steel); }

/* SERVICE PAGE */
.service-hero {
  padding: 8rem 2rem 4rem;
  text-align: center;
}
.service-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; }
.service-hero p { color: var(--steel); max-width: 600px; margin: 0 auto 2rem; font-size: 1.1rem; }

.service-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 2rem 0;
}
.service-feature {
  background: var(--smoke);
  border: 1px solid var(--ash);
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-feature-icon { font-size: 1.25rem; }
.service-feature-text h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.service-feature-text p { color: var(--steel); font-size: 0.8rem; }
@media (max-width: 768px) { .service-features { grid-template-columns: 1fr; } }

/* PAGE HEADER */
.page-header {
  padding: 8rem 2rem 3rem;
  text-align: center;
}
.page-header h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 0.75rem; }
.page-header p { color: var(--steel); max-width: 560px; margin: 0 auto; }

/* DIVIDER */
.gradient-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--fire), transparent);
  max-width: 800px;
  margin: 0 auto;
}

/* CTA STRIP */
.cta-strip {
  background: linear-gradient(135deg, rgba(232,67,10,0.08), rgba(255,107,53,0.04));
  border: 1px solid rgba(232,67,10,0.15);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin: 3rem auto;
  max-width: 900px;
}
.cta-strip h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.cta-strip p { color: var(--steel); margin-bottom: 1.5rem; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in { animation: fadeInUp 0.6s ease forwards; }