/*
Theme Name: OmniWash Solutions
Theme URI: https://omniwashsolutions.com
Author: OmniWash Solutions
Description: Corporate commercial pressure washing theme.
Version: 1.0
Text Domain: omniwash
*/

:root {
  --navy: #0b1f4b;
  --navy-2: #16305f;
  --blue: #7eb6d9;
  --red: #c8102e;
  --ink: #1c2434;
  --muted: #5b6578;
  --line: #e4e8ef;
  --paper: #f6f8fb;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(11, 31, 75, 0.08);
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--red); }

.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }

.topbar {
  background: var(--navy);
  color: #d7e2f3;
  font-size: 13px;
  letter-spacing: .04em;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  flex-wrap: wrap;
}
.topbar a { color: #fff; }

header.site {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
header.site .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 10px 0;
}
.brand { flex: 0 0 auto; }
.brand img {
  height: clamp(52px, 6.2vw, 84px);
  width: auto;
  max-width: min(420px, 46vw);
  object-fit: contain;
}
nav { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
nav a { font-size: 14px; font-weight: 600; color: var(--navy); letter-spacing: .04em; text-transform: uppercase; }
nav a.active { color: var(--red); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: #fff !important;
  border: 0;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 700;
  letter-spacing: .03em;
  cursor: pointer;
}
.btn:hover { background: var(--navy-2); }
.btn.red { background: var(--red); }
.btn.red:hover { background: #a40d25; }
.btn.ghost {
  background: transparent;
  color: var(--navy) !important;
  border: 1px solid var(--line);
}

.hero {
  background:
    radial-gradient(circle at 85% 10%, rgba(126,182,217,.25), transparent 28%),
    linear-gradient(180deg, #f4f7fb 0%, #fff 100%);
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
h1, h2, h3 { color: var(--navy); margin: 0 0 12px; line-height: 1.15; }
h1 { font-size: clamp(32px, 4vw, 48px); letter-spacing: -.02em; }
h2 { font-size: 30px; }
h3 { font-size: 20px; }
.lead { font-size: 18px; color: var(--muted); max-width: 620px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.hero-card img { width: 100%; height: auto; }
.hero-card p { color: var(--muted); margin: 12px 0 0; font-size: 14px; }

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px 0;
}
.trust div {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px;
  background: #fff;
}
.trust strong { display: block; color: var(--navy); font-size: 14px; }
.trust span { color: var(--muted); font-size: 13px; }

section { padding: 72px 0; }
section.alt { background: var(--paper); }
.section-head { max-width: 680px; margin-bottom: 32px; }

.grid-3, .grid-2 { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.card p { color: var(--muted); margin: 8px 0 0; }
.num {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center;
  font-weight: 800; margin-bottom: 14px;
}

.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}
.cta-band h2, .cta-band p { color: #fff; }
.cta-band p { opacity: .85; }
.cta-band .wrap { display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap; }

form {
  display: grid;
  gap: 14px;
}
label { font-size: 13px; font-weight: 700; color: var(--navy); }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 12px;
  font: inherit;
  background: #fff;
}
textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.note { font-size: 13px; color: var(--muted); }

footer {
  background: #081633;
  color: #c9d4e6;
  padding: 40px 0 24px;
}
footer .wrap { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 28px; }
footer a { color: #eaf0f8; }
footer img { height: clamp(48px, 5vw, 72px); width: auto; background: #fff; border-radius: 8px; padding: 8px 12px; }
.copy { border-top: 1px solid #1c2d55; margin-top: 28px; padding-top: 16px; font-size: 13px; color: #93a1bb; }

.page-hero { padding: 48px 0 20px; background: var(--paper); border-bottom: 1px solid var(--line); }

ul.check { padding-left: 18px; color: var(--muted); }
ul.check li { margin: 8px 0; }

@media (max-width: 860px) {
  .hero-grid, .grid-3, .grid-2, .trust, footer .wrap, .form-row { grid-template-columns: 1fr; }
  header.site .wrap { flex-wrap: wrap; padding: 10px 0; }
  nav { width: 100%; gap: 14px; }
  .brand img { height: clamp(48px, 14vw, 64px); max-width: 72vw; }
}
