/* ============================================
   Steel City Waterproofing — Lightweight Theme
   ============================================ */

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

:root {
  --dark: #1a1a1a;
  --darker: #111;
  --charcoal: #2a2a2a;
  --gold: #d4a017;
  --gold-hover: #e6b422;
  --white: #fff;
  --light: #f5f5f5;
  --gray: #ccc;
  --text: #ddd;
  --text-muted: #999;
  --radius: 6px;
  --max-width: 1100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--darker);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-hover); }

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--gold);
  color: var(--dark);
  text-align: center;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* --- Header / Nav --- */
.site-header {
  background: var(--dark);
  border-bottom: 1px solid var(--charcoal);
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.site-header .logo {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.site-header .logo span { color: var(--gold); }

.site-nav { display: flex; align-items: center; gap: 20px; }
.site-nav a {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--white); }
.site-nav a.btn { color: #000; }
.site-nav a.btn:hover { color: #000; }

.btn {
  display: inline-block;
  background: var(--gold);
  color: #000;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--gold-hover); color: #000; }

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

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
}

.hero .container { position: relative; z-index: 1; padding: 60px 0; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-grid .form-wrap {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 16px;
  backdrop-filter: blur(4px);
}

.hero-grid .form-wrap iframe { height: 460px; }

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  max-width: 650px;
  margin-bottom: 16px;
}

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

.hero p {
  font-size: 1.15rem;
  color: var(--gray);
  max-width: 550px;
  margin-bottom: 24px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

/* --- Section Base --- */
.section { padding: 60px 0; }
.section--alt { background: var(--charcoal); }
.section--dark { background: var(--darker); }

.section-label {
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 8px;
}

.section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section p.lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 650px;
  margin-bottom: 32px;
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--dark);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--charcoal);
  transition: transform 0.2s, border-color 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
}

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

.service-card-body { padding: 20px; }
.service-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* --- Feature / Why Choose List --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}

.feature {
  padding: 24px;
  background: var(--dark);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}

.feature h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.feature p { font-size: 0.9rem; color: var(--text-muted); }

/* --- Process Steps --- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}

.process-step {
  background: var(--dark);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  line-height: 1;
}

.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.process-step p { font-size: 0.88rem; color: var(--text-muted); }

/* --- FAQ --- */
.faq-list { max-width: 750px; }

.faq-item {
  border-bottom: 1px solid var(--charcoal);
  padding: 20px 0;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.faq-item p { font-size: 0.92rem; color: var(--text-muted); }

/* --- CTA Block --- */
.cta-block {
  text-align: center;
  padding: 50px 20px;
  background: var(--charcoal);
  border-radius: var(--radius);
  margin: 40px 0;
}

.cta-block h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-block p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.cta-block .cta-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 18px;
}

/* --- Form Embed --- */
.form-wrap {
  width: 100%;
  min-height: 450px;
  max-width: 600px;
  margin: 0 auto;
}

.form-wrap iframe {
  width: 100%;
  height: 500px;
  border: none;
  border-radius: var(--radius);
}

/* --- Content Block with Image --- */
.content-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.content-row img {
  border-radius: var(--radius);
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.content-row h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.content-row p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.content-row ul {
  list-style: none;
  padding: 0;
}

.content-row ul li {
  padding: 4px 0;
  font-size: 0.93rem;
  color: var(--text);
}

.content-row ul li::before {
  content: "✓ ";
  color: var(--gold);
  font-weight: 700;
}

/* --- Service Area Tags --- */
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.area-tag {
  background: var(--dark);
  border: 1px solid var(--charcoal);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--text);
}

/* --- Footer --- */
.site-footer {
  background: var(--dark);
  border-top: 1px solid var(--charcoal);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}

.footer-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.footer-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.footer-info .footer-phone {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold);
}

.footer-map iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: var(--radius);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--charcoal);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- About page image grid --- */
.image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.image-grid img {
  border-radius: var(--radius);
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero h1 { font-size: 1.8rem; }
  .hero { min-height: 400px; }
  .hero-grid { grid-template-columns: 1fr; }
  .content-row { grid-template-columns: 1fr; }
  .content-row img { height: 240px; }
  .footer-grid { grid-template-columns: 1fr; }
  .section h2 { font-size: 1.5rem; }
  .site-header .container { justify-content: center; text-align: center; }
  .site-nav { gap: 14px; }
  .cta-block h2 { font-size: 1.4rem; }
}
