/* Under Pressure — Mobile Pressure Washing */
:root {
  --blue-900: #0b2545;
  --blue-700: #13457e;
  --blue-500: #1d6fd1;
  --blue-100: #e3effc;
  --cyan: #29b6f6;
  --white: #ffffff;
  --gray-700: #3d4a5c;
  --gray-500: #64748b;
  --gray-100: #f4f7fb;
  --radius: 14px;
  --shadow: 0 4px 18px rgba(11, 37, 69, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: "Outfit", "Inter", sans-serif;
  color: var(--blue-900);
  line-height: 1.2;
}

img { max-width: 100%; }

a { color: var(--blue-500); }

.container { width: min(100% - 2.5rem, 1080px); margin-inline: auto; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  box-shadow: 0 1px 8px rgba(11, 37, 69, 0.08);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--blue-500), var(--cyan));
  display: grid;
  place-items: center;
  color: var(--white);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.brand-name {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--blue-900);
  letter-spacing: -0.01em;
}

.brand-name span { color: var(--blue-500); }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  border-radius: 2px;
  background: var(--blue-900);
  transition: transform 0.25s, opacity 0.25s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding-bottom: 1rem;
}

.nav-links.open { display: flex; }

.nav-links a {
  display: block;
  padding: 0.7rem 0.75rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  color: var(--blue-900);
}

.nav-links a:hover { background: var(--blue-100); }

.nav-links a.active { color: var(--blue-500); font-weight: 600; }

.nav-links a.nav-cta {
  background: var(--blue-500);
  color: var(--white);
  text-align: center;
  font-weight: 600;
  margin-top: 0.35rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}

.btn-primary {
  background: var(--blue-500);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(29, 111, 209, 0.35);
}

.btn-primary:hover { background: var(--blue-700); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.btn-outline:hover { background: rgba(255, 255, 255, 0.12); }

.btn-block { display: block; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(160deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--blue-500) 100%);
  color: var(--white);
  padding: 3.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* layer 1: running drops with trails (animated) — layer 2: static droplets on glass */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cdefs%3E%3CradialGradient id='b' cx='0.5' cy='0.42' r='0.62'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='0.05'/%3E%3Cstop offset='72%25' stop-color='%23ffffff' stop-opacity='0.10'/%3E%3Cstop offset='100%25' stop-color='%23ffffff' stop-opacity='0.38'/%3E%3C/radialGradient%3E%3ClinearGradient id='t' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='0'/%3E%3Cstop offset='100%25' stop-color='%23ffffff' stop-opacity='0.25'/%3E%3C/linearGradient%3E%3Cg id='h'%3E%3Cellipse cx='10' cy='12' rx='9' ry='11' fill='url(%23b)'/%3E%3Cellipse cx='6.5' cy='7.5' rx='2.4' ry='3.2' fill='%23ffffff' opacity='0.5'/%3E%3C/g%3E%3C/defs%3E%3Crect x='78.5' y='240' width='3' height='118' rx='1.5' fill='url(%23t)'/%3E%3Cuse href='%23h' transform='translate(71,352) scale(0.9)'/%3E%3Crect x='258.5' y='30' width='3' height='140' rx='1.5' fill='url(%23t)'/%3E%3Cuse href='%23h' transform='translate(251,164) scale(0.8)'/%3E%3Crect x='368.5' y='150' width='2.5' height='100' rx='1.25' fill='url(%23t)'/%3E%3Cuse href='%23h' transform='translate(363,244) scale(0.65)'/%3E%3Crect x='168.5' y='290' width='2.5' height='90' rx='1.25' fill='url(%23t)'/%3E%3Cuse href='%23h' transform='translate(163,374) scale(0.6)'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420' viewBox='0 0 420 420'%3E%3Cdefs%3E%3CradialGradient id='b' cx='0.5' cy='0.42' r='0.62'%3E%3Cstop offset='0%25' stop-color='%23ffffff' stop-opacity='0.05'/%3E%3Cstop offset='72%25' stop-color='%23ffffff' stop-opacity='0.10'/%3E%3Cstop offset='100%25' stop-color='%23ffffff' stop-opacity='0.36'/%3E%3C/radialGradient%3E%3Cg id='d'%3E%3Cellipse cx='10' cy='12' rx='9' ry='11' fill='url(%23b)'/%3E%3Cellipse cx='6.5' cy='7.5' rx='2.4' ry='3.2' fill='%23ffffff' opacity='0.5'/%3E%3Cellipse cx='10' cy='20.5' rx='4.5' ry='1.6' fill='%23ffffff' opacity='0.14'/%3E%3C/g%3E%3C/defs%3E%3Cuse href='%23d' transform='translate(28,40) scale(0.75)'/%3E%3Cuse href='%23d' transform='translate(116,16) scale(0.45)'/%3E%3Cuse href='%23d' transform='translate(196,56) scale(1)'/%3E%3Cuse href='%23d' transform='translate(296,22) scale(0.55)'/%3E%3Cuse href='%23d' transform='translate(372,76) scale(0.65)'/%3E%3Cuse href='%23d' transform='translate(64,132) scale(0.5)'/%3E%3Cuse href='%23d' transform='translate(150,158) scale(1.15)'/%3E%3Cuse href='%23d' transform='translate(250,120) scale(0.4)'/%3E%3Cuse href='%23d' transform='translate(332,166) scale(0.7)'/%3E%3Cuse href='%23d' transform='translate(16,214) scale(0.6)'/%3E%3Cuse href='%23d' transform='translate(110,250) scale(0.45)'/%3E%3Cuse href='%23d' transform='translate(208,230) scale(0.65)'/%3E%3Cuse href='%23d' transform='translate(294,258) scale(1.05)'/%3E%3Cuse href='%23d' transform='translate(384,228) scale(0.4)'/%3E%3Cuse href='%23d' transform='translate(52,320) scale(0.9)'/%3E%3Cuse href='%23d' transform='translate(142,348) scale(0.5)'/%3E%3Cuse href='%23d' transform='translate(238,326) scale(0.45)'/%3E%3Cuse href='%23d' transform='translate(322,362) scale(0.6)'/%3E%3Cuse href='%23d' transform='translate(390,320) scale(0.8)'/%3E%3Cuse href='%23d' transform='translate(88,392) scale(0.42)'/%3E%3C/svg%3E");
  background-size: 420px 420px, 420px 420px;
  background-position: 0 0, 0 0;
  opacity: 0.4;
  animation: rain-run 28s linear infinite;
}

@keyframes rain-run {
  from { background-position: 0 0, 0 0; }
  to { background-position: 0 420px, 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .page-hero::before { animation: none; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(75% 100% at 50% 100%);
}

.hero .container { position: relative; z-index: 1; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.hero h1 em { font-style: normal; color: var(--cyan); }

.hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin-bottom: 1.75rem;
}

.hero-actions { display: flex; flex-direction: column; gap: 0.75rem; max-width: 22rem; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.85rem;
}

.hero-badges span {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
}

/* ---------- Sections ---------- */
.section { padding: 3.5rem 0; }

.section-alt { background: var(--gray-100); }

.section-title { font-size: clamp(1.6rem, 4.5vw, 2.2rem); margin-bottom: 0.5rem; }

.section-sub { color: var(--gray-500); max-width: 38rem; margin-bottom: 2rem; }

/* ---------- Services grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(29, 111, 209, 0.08);
}

.service-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan));
  margin-bottom: 0.8rem;
}

.service-card h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }

.service-card p { font-size: 0.87rem; color: var(--gray-500); }

/* ---------- Contract banner ---------- */
.contract-banner {
  margin-top: 2rem;
  background: var(--blue-100);
  border: 1px solid rgba(29, 111, 209, 0.18);
  border-left: 5px solid var(--blue-500);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
}

.contract-banner h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }

.contract-banner p { color: var(--gray-700); max-width: 44rem; margin-bottom: 1.1rem; }

@media (min-width: 820px) {
  .contract-banner { padding: 2.25rem 2rem; }
}

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-num {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-500);
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
}

.step h3 { font-size: 1.05rem; margin-bottom: 0.2rem; }

.step p { font-size: 0.92rem; color: var(--gray-500); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  text-align: center;
  padding: 3rem 0;
}

.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 4.5vw, 2rem); margin-bottom: 0.5rem; }

.cta-band p { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.5rem; }

.cta-band .btn-primary { background: var(--white); color: var(--blue-700); box-shadow: none; }

.cta-band .btn-primary:hover { background: var(--blue-100); }

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.4rem;
  max-width: 560px;
}

.form-group { margin-bottom: 1.1rem; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--blue-900);
  margin-bottom: 0.35rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid #d4dee9;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--gray-700);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(29, 111, 209, 0.15);
}

.form-note { font-size: 0.85rem; color: var(--gray-500); margin-top: 0.9rem; }

.form-success {
  display: none;
  background: #e8f7ee;
  border: 1.5px solid #34a866;
  color: #1c6b40;
  border-radius: 10px;
  padding: 1rem;
  margin-top: 1rem;
  font-weight: 500;
}

/* ---------- Contact ---------- */
.contact-cards { display: grid; gap: 0.9rem; margin-bottom: 2rem; }

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.3rem;
  text-decoration: none;
}

.contact-card strong { display: block; color: var(--blue-900); font-family: "Outfit", sans-serif; }

.contact-card span { color: var(--gray-500); font-size: 0.92rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 2.5rem 0 2rem;
  font-size: 0.9rem;
}

.footer-grid { display: grid; gap: 1.75rem; }

.site-footer h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.6rem; }

.site-footer ul { list-style: none; }

.site-footer li { margin-bottom: 0.4rem; }

.site-footer a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }

.site-footer a:hover { color: var(--cyan); }

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ---------- Sticky mobile call bar ---------- */
.call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--blue-900);
}

.call-bar a {
  padding: 0.95rem;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  color: var(--white);
  font-size: 0.95rem;
}

.call-bar a:first-child { background: var(--blue-500); }
.call-bar a:last-child { background: var(--blue-700); }

body { padding-bottom: 3.4rem; } /* room for call bar */

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-700));
  color: var(--white);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 { color: var(--white); font-size: clamp(1.7rem, 5vw, 2.4rem); }

.page-hero p { color: rgba(255, 255, 255, 0.85); margin-top: 0.4rem; max-width: 36rem; }

/* ---------- About ---------- */
.about-body p { margin-bottom: 1rem; max-width: 44rem; }

.placeholder-note {
  background: var(--blue-100);
  border-left: 4px solid var(--blue-500);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-size: 0.9rem;
  color: var(--blue-700);
  max-width: 44rem;
}

/* ---------- Desktop ---------- */
@media (min-width: 820px) {
  .nav-toggle { display: none; }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
    padding-bottom: 0;
  }

  .nav-links a.nav-cta { margin-top: 0; margin-left: 0.5rem; padding: 0.6rem 1.3rem; border-radius: 999px; }

  .hero { padding: 5.5rem 0 6.5rem; }

  .hero-actions { flex-direction: row; max-width: none; }

  .services-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

  .steps { grid-template-columns: repeat(3, 1fr); }

  .contact-cards { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }

  .call-bar { display: none; }

  body { padding-bottom: 0; }

  .section { padding: 4.5rem 0; }
}
