/* Yuma Epoxy Pros — styles.css */

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

:root {
  --navy: #1c2237;
  --orange: #f47c20;
  --red: #e63946;
  --light-bg: #f7f6f3;
  --white: #ffffff;
  --text: #1a1a1a;
  --muted: #555e6e;
  --border: #e2e4e9;
  --max-w: 1140px;
}

body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--text); background: var(--white); line-height: 1.65; font-size: 16px; }

a { color: #2563eb; text-decoration: underline; }
a:hover { color: #1d4ed8; }
img { max-width: 100%; height: auto; display: block; }

/* ── NAV ── */
nav {
  background: var(--navy);
  position: sticky; top: 0; z-index: 1000;
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { color: var(--white); font-size: 1.15rem; font-weight: 700; text-decoration: none; letter-spacing: 0.02em; }
.nav-logo span { color: var(--orange); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange); color: var(--white) !important;
  padding: 0.5rem 1.25rem; border-radius: 4px; font-weight: 600;
  text-decoration: none !important; font-size: 0.9rem; white-space: nowrap;
}
.nav-cta:hover { background: #d96a15; color: var(--white) !important; }
.nav-hamburger { display: none; background: none; border: none; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); margin: 5px 0; }

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #2d3a5c 100%);
  color: var(--white);
  padding: 5rem 1.5rem;
  position: relative; overflow: hidden;
}
.hero::before { display: none; }
.hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-block; background: var(--orange);
  color: var(--white); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: 3px; margin-bottom: 1.2rem;
}
.hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.2; font-weight: 800; margin-bottom: 1rem; max-width: 700px; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.85); max-width: 560px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--orange); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 4px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: #d96a15; color: var(--white); }
.btn-ghost {
  border: 2px solid rgba(255,255,255,0.6); color: var(--white);
  padding: 0.8rem 1.75rem; border-radius: 4px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--white); color: var(--white); }
.hero-trust { margin-top: 2.5rem; display: flex; gap: 2rem; flex-wrap: wrap; }
.hero-trust-item { font-size: 0.88rem; color: rgba(255,255,255,0.75); display: flex; align-items: center; gap: 0.4rem; }
.hero-trust-item::before { content: '&#10003;'; color: var(--orange); font-weight: 700; }

/* ── SHARED LAYOUT ── */
.section { padding: 4.5rem 1.5rem; }
.section-alt { background: var(--light-bg); }
.container { max-width: var(--max-w); margin: 0 auto; }
.section-label {
  display: inline-block; background: var(--orange);
  color: var(--white); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 2px; margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: 1rem; color: var(--navy); line-height: 1.25; }
.section-lead { font-size: 1.05rem; color: var(--muted); max-width: 640px; margin-bottom: 2.5rem; }

/* ── SERVICE CARDS ── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.75rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.card h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.card p { font-size: 0.92rem; color: var(--muted); }
.card-link { color: var(--orange); text-decoration: underline; font-weight: 600; font-size: 0.9rem; }

/* ── PROCESS STEPS ── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; counter-reset: step; }
.step { position: relative; padding-left: 3.5rem; }
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 2.5rem; height: 2.5rem; border-radius: 50%;
  background: var(--orange); color: var(--white);
  font-weight: 800; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
}
.step h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--muted); }

/* ── TWO-COL SPLIT ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split img { border-radius: 8px; width: 100%; height: 340px; object-fit: cover; }
.split-text h2 { font-size: 1.65rem; font-weight: 800; color: var(--navy); margin-bottom: 1rem; }
.split-text p { color: var(--muted); margin-bottom: 1rem; }
.check-list { list-style: none; margin-bottom: 1.5rem; }
.check-list li { padding: 0.3rem 0 0.3rem 1.75rem; position: relative; font-size: 0.95rem; color: var(--text); }
.check-list li::before { content: '&#10003;'; position: absolute; left: 0; color: var(--orange); font-weight: 700; }

/* ── COST TABLE ── */
.cost-table { width: 100%; border-collapse: collapse; margin-top: 1.5rem; }
.cost-table th { background: var(--navy); color: var(--white); padding: 0.85rem 1rem; text-align: left; font-size: 0.9rem; }
.cost-table td { padding: 0.8rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.92rem; }
.cost-table tr:nth-child(even) td { background: var(--light-bg); }

/* ── FAQ ── */
.faqs { display: grid; gap: 1rem; }
.faq { background: var(--white); border: 1px solid var(--border); border-radius: 6px; padding: 1.5rem; }
.faq h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.5rem; }
.faq p { font-size: 0.92rem; color: var(--muted); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--navy);
  color: var(--white); padding: 4rem 1.5rem; text-align: center;
}
.cta-band h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-size: 1.05rem; }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
label { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
input, select, textarea {
  padding: 0.75rem 1rem; border: 1px solid var(--border); border-radius: 4px;
  font-size: 0.95rem; font-family: inherit; width: 100%;
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--orange); border-color: var(--orange); }
textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  background: var(--orange); color: var(--white);
  padding: 0.9rem 2.5rem; border: none; border-radius: 4px;
  font-size: 1rem; font-weight: 700; cursor: pointer; font-family: inherit;
}
.btn-submit:hover { background: #d96a15; }

/* ── FOOTER ── */
footer {
  background: #111827; color: rgba(255,255,255,0.75);
  padding: 3rem 1.5rem 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; max-width: var(--max-w); margin: 0 auto 2rem; }
.footer-logo { color: var(--white); font-size: 1.1rem; font-weight: 700; text-decoration: none; }
.footer-logo span { color: var(--orange); }
footer h4 { color: var(--white); font-size: 0.9rem; font-weight: 700; margin-bottom: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; }
footer ul { list-style: none; }
footer ul li { margin-bottom: 0.4rem; font-size: 0.88rem; }
footer ul li a { color: rgba(255,255,255,0.65); text-decoration: none; }
footer ul li a:hover { color: var(--orange); }
footer a[href^="tel"] { color: var(--orange); text-decoration: none; font-weight: 600; }
.footer-bottom { max-width: var(--max-w); margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.82rem; color: rgba(255,255,255,0.45); text-align: center; }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy), #2d3a5c);
  color: var(--white); padding: 4rem 1.5rem; text-align: center;
}
.page-hero h1 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800; margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .split { grid-template-columns: 1fr; }
  .split img { height: 220px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 0.75rem; }
}
