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

:root {
  --red: #d42020;
  --dark: #111;
  --gray: #1e1e1e;
  --mid: #444;
  --light: #f5f5f5;
  --white: #fff;
  --font: 'Segoe UI', Arial, sans-serif;
}

body { font-family: var(--font); color: #222; background: var(--white); }

/* NAV */
nav {
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { color: var(--white); font-size: 1.1rem; font-weight: 700; text-decoration: none; line-height: 1.2; }
.logo span { color: var(--red); }
.nav-links { display: flex; gap: 1.5rem; list-style: none; }
.nav-links a { color: #ccc; text-decoration: none; font-size: .9rem; transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-phone { color: var(--red); font-weight: 700; font-size: .95rem; text-decoration: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* HERO */
.hero {
  background: url(/images/hero.png) center center / cover no-repeat, linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; margin-bottom: 1rem; position: relative; }
.hero h1 span { color: var(--red); }
.hero p { font-size: 1.15rem; color: #bbb; max-width: 600px; margin: 0 auto 2rem; position: relative; }
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.btn { display: inline-block; padding: .85rem 2rem; border-radius: 4px; font-size: 1rem; font-weight: 600; text-decoration: none; transition: all .2s; }
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #b81c1c; }
.btn-outline { border: 2px solid #555; color: var(--white); }
.btn-outline:hover { border-color: var(--white); }

/* TRUST BAR */
.trust-bar {
  background: var(--red);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1rem 2rem;
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,.2);
}
.trust-item:last-child { border-right: none; }
.trust-item svg { flex-shrink: 0; }

/* SECTIONS */
section { padding: 4rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-title { text-align: center; font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .5rem; }
.section-subtitle { text-align: center; color: var(--mid); margin-bottom: 3rem; font-size: 1rem; }

/* SERVICE CARDS */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.card {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 2rem 1.5rem;
  transition: box-shadow .2s, border-color .2s;
}
.card:hover { box-shadow: 0 4px 20px rgba(0,0,0,.1); border-color: var(--red); }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
.card p { color: var(--mid); font-size: .9rem; line-height: 1.6; }

/* WHY US */
.why-us { background: var(--light); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.why-item { text-align: center; }
.why-num { font-size: 2.5rem; font-weight: 900; color: var(--red); line-height: 1; }
.why-label { font-size: 1rem; font-weight: 700; margin: .3rem 0; }
.why-desc { font-size: .875rem; color: var(--mid); }

/* CTA BAND */
.cta-band {
  background: var(--dark);
  color: var(--white);
  text-align: center;
  padding: 4rem 2rem;
}
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: .75rem; }
.cta-band p { color: #aaa; margin-bottom: 2rem; }

/* FOOTER */
footer {
  background: #0a0a0a;
  color: #aaa;
  padding: 3rem 2rem 1.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-col h4 { color: var(--white); font-size: .9rem; font-weight: 700; margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: .4rem; }
.footer-col a { color: #aaa; text-decoration: none; font-size: .875rem; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-col p { font-size: .875rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid #222; padding-top: 1.25rem; text-align: center; font-size: .8rem; }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 1rem; }
.contact-info p { color: var(--mid); font-size: .95rem; line-height: 1.8; margin-bottom: .5rem; }
.contact-info strong { color: #111; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: .5rem; }
.hours-table td { padding: .4rem 0; font-size: .9rem; color: var(--mid); }
.hours-table td:first-child { font-weight: 600; color: #111; width: 120px; }
form { display: flex; flex-direction: column; gap: 1rem; }
form label { font-size: .875rem; font-weight: 600; color: #333; }
form input, form select, form textarea {
  width: 100%; padding: .75rem 1rem; border: 1px solid #ddd; border-radius: 4px;
  font-size: .95rem; font-family: var(--font); margin-top: .25rem;
  transition: border-color .2s;
}
form input:focus, form select:focus, form textarea:focus { outline: none; border-color: var(--red); }
form textarea { min-height: 140px; resize: vertical; }
form button { background: var(--red); color: var(--white); border: none; padding: .85rem; border-radius: 4px; font-size: 1rem; font-weight: 700; cursor: pointer; transition: background .2s; }
form button:hover { background: #b81c1c; }

/* PAGE HERO */
.page-hero { background: var(--dark); color: var(--white); padding: 3rem 2rem; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.page-hero p { color: #aaa; margin-top: .5rem; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.about-text h2 { font-size: 1.6rem; font-weight: 800; margin-bottom: 1rem; }
.about-text p { color: var(--mid); line-height: 1.8; margin-bottom: 1rem; }
.values-list { list-style: none; display: flex; flex-direction: column; gap: .75rem; }
.values-list li { display: flex; gap: .75rem; align-items: flex-start; font-size: .95rem; }
.values-list li span.check { color: var(--red); font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

@media (max-width: 700px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0; background: var(--dark); padding: 1rem 2rem; gap: .75rem; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .contact-grid, .about-grid { grid-template-columns: 1fr; }
  .trust-item { flex: 1 0 40%; justify-content: center; }
}
