/* Bentz Pressure Washing — EMD Sites Shared Stylesheet
   Matches the design of bentzpressurewashing.com exactly */

:root {
  --navy: #0d1b3e;
  --navy-2: #11285a;
  --cyan: #00aaef;
  --white: #ffffff;
  --ink: #111827;
  --muted: #5b6579;
  --line: #d9e2f2;
  --bg: #f3f8ff;
  --shadow: 0 16px 40px rgba(13, 27, 62, 0.14);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  line-height: 1.55;
  background: var(--white);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 27, 62, 0.97);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

body {
  padding-top: 78px;
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

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

.brand-logo {
  height: 48px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-top {
  font-size: 1.35rem;
  font-weight: 900;
  color: #ffffff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.brand-sub {
  font-size: 0.68rem;
  font-weight: 700;
  color: #00AAEF;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav-menu {
  position: fixed;
  top: 78px;
  right: 0;
  width: min(320px, 88vw);
  height: calc(100vh - 78px);
  background: var(--navy);
  transform: translateX(110%);
  transition: transform 0.26s ease;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-menu.active {
  transform: translateX(0);
}

.nav-menu a {
  color: var(--white);
  font-weight: 700;
  padding: 0.8rem 0.65rem;
  border-radius: 10px;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.14);
}

.nav-cta {
  margin-top: 0.6rem;
}

.nav-toggle {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  background: rgba(0, 170, 239, 0.12);
  color: var(--white);
  font-size: 1.3rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(0, 170, 239, 0.28);
  border-color: #00AAEF;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 52px;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 0.72rem 1.05rem;
  font-weight: 800;
  letter-spacing: 0.1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 170, 239, 0.35);
}

.btn-primary:hover {
  background: #0097d6;
}

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.btn-secondary.dark {
  border-color: var(--navy);
  color: var(--navy);
}

/* ─── HERO ─── */
.hero {
  background:
    radial-gradient(circle at 84% 12%, rgba(0, 170, 239, 0.24), transparent 35%),
    linear-gradient(145deg, #0d1b3e 0%, #0a1734 65%, #122f67 100%);
  color: var(--white);
  padding: 4.4rem 0 3.6rem;
}

.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #dff5ff;
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
}

.hero h1 {
  margin: 0;
  font-size: clamp(1.95rem, 5.8vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.3px;
  max-width: 12.8ch;
}

.hero h1 .accent {
  color: #6de7ff;
}

.hero p {
  color: #d2def8;
  font-size: clamp(1rem, 2.4vw, 1.12rem);
  max-width: 52ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.trust-panel {
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border-radius: 16px;
  padding: 1.1rem 1.1rem 1rem;
  box-shadow: var(--shadow);
  max-width: 420px;
}

.stars {
  color: #f8ba00;
  font-size: 1.02rem;
  letter-spacing: 0.6px;
}

.trust-panel h3 {
  margin: 0.4rem 0 0.2rem;
  font-size: 1.35rem;
}

.trust-panel p {
  margin: 0;
  color: #2f4168;
}

/* ─── BADGE STRIP ─── */
.badge-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.badges {
  padding: 0.95rem 0;
  display: grid;
  gap: 0.6rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.badges span {
  background: var(--bg);
  border: 1px solid #d5e0f4;
  color: #27406f;
  text-align: center;
  border-radius: 999px;
  padding: 0.52rem 0.6rem;
  font-weight: 700;
  font-size: 0.86rem;
}

/* ─── SECTIONS ─── */
.section {
  padding: 4rem 0;
}

.section h2 {
  margin: 0 0 0.6rem;
  color: var(--navy);
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
}

.section-intro {
  color: var(--muted);
  max-width: 68ch;
  margin: 0 0 1.7rem;
}

/* ─── CARDS ─── */
.cards {
  display: grid;
  gap: 1rem;
}

a.card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.card {
  background: var(--white);
  border: 1px solid #d9e4f6;
  border-radius: 15px;
  padding: 1.12rem;
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.08);
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.card:hover {
  box-shadow: 0 12px 32px rgba(13, 27, 62, 0.16);
  transform: translateY(-2px);
}

.card .icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: #e8f8ff;
  border-radius: 12px;
  color: #0076a8;
  font-weight: 900;
  margin-bottom: 0.75rem;
  font-size: 1.35rem;
}

.card h3 {
  margin: 0 0 0.4rem;
  color: var(--navy);
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

/* ─── REVIEWS ─── */
.reviews {
  background: var(--bg);
}

.reviews-grid {
  display: grid;
  gap: 1rem;
}

.review-card {
  background: var(--white);
  border: 1px solid #d6e2f8;
  border-radius: 15px;
  padding: 1.1rem;
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.08);
}

.review-card h3 {
  margin: 0.42rem 0;
  color: var(--navy);
  font-size: 1rem;
}

.review-card p {
  margin: 0;
  color: #475472;
}

.review-quote {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 0.75rem !important;
}

.reviewer {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--cyan) !important;
  margin-top: 0.5rem !important;
}

/* Review Screenshot Grid */
.reviews-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.review-screenshot {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-screenshot:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(13, 27, 62, 0.16);
}

.reviews-cta {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--navy);
}

/* ─── ABOUT PAGE ─── */
.about-founder {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.founder-photo img {
  max-height: 520px;
  object-fit: cover;
  object-position: top;
}

.founder-story h2 {
  margin-top: 0;
}

.founder-story em {
  display: block;
  border-left: 3px solid var(--cyan);
  padding-left: 1rem;
  margin: 1rem 0;
  color: var(--navy);
}

.about-panel {
  display: grid;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid #d6e2f8;
  border-radius: 16px;
  padding: 1.5rem;
}

.about-trust-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.about-trust-list li {
  color: #2c4269;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.about-trust-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

/* ─── CONTACT ─── */
.contact-wrap {
  display: grid;
  gap: 1rem;
}

.contact-box,
.form-box {
  border: 1px solid #d8e3f5;
  border-radius: 16px;
  padding: 1.15rem;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(13, 27, 62, 0.08);
}

.contact-box h3,
.form-box h3 {
  margin-top: 0;
  color: var(--navy);
}

.contact-box p {
  margin: 0.4rem 0;
  color: var(--muted);
}

.big-phone {
  font-size: clamp(1.3rem, 4.7vw, 2rem);
  font-weight: 900;
  color: var(--navy);
}

.form-grid {
  display: grid;
  gap: 0.75rem;
}

label {
  display: block;
  font-weight: 700;
  color: #24406e;
  margin-bottom: 0.25rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c4d4ef;
  border-radius: 10px;
  padding: 0.72rem 0.75rem;
  font: inherit;
  color: var(--ink);
  background: #fbfdff;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(0, 170, 239, 0.32);
  border-color: #7fd8ff;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(150deg, #0d1b3e 0%, #12306a 100%);
  color: var(--white);
  padding: 3.7rem 0 2.8rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(1.95rem, 5.4vw, 3rem);
}

.page-hero p {
  margin: 0.6rem 0 0;
  max-width: 60ch;
  color: #d3def8;
}

/* ─── NEIGHBORHOOD COPY ─── */
.neighborhood-copy p {
  margin: 0 0 1rem;
  color: #34496f;
}

.neighborhood-copy p:last-child {
  margin-bottom: 0;
}

/* ─── CTA DARK ─── */
.cta-dark {
  background: linear-gradient(145deg, #0d1b3e 0%, #0a1734 65%, #122f67 100%);
  color: #ffffff;
}

.cta-dark h2 {
  color: #ffffff;
}

.cta-dark p {
  color: #d3def8;
  max-width: 62ch;
  margin: 0 0 1rem;
}

/* ─── AREA LINKS ─── */
.areas-serve {
  background: #f8fbff;
  border-top: 1px solid #d9e4f6;
}

.area-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.area-links a {
  background: #eaf6ff;
  border: 1px solid #c6dcfa;
  color: #214172;
  border-radius: 999px;
  padding: 0.52rem 0.9rem;
  font-weight: 700;
}

.area-links a:hover,
.area-links a:focus-visible {
  background: #d6efff;
  border-color: #9fcaf6;
}

/* ─── ARTICLE / BLOG ─── */
.article-shell {
  padding: 2.2rem 0 1.5rem;
}

.article-meta {
  margin-top: 0.8rem;
  color: #d3def8;
  font-size: 0.95rem;
  font-weight: 600;
}

.article-content {
  max-width: 860px;
}

.article-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.article-content h3 {
  margin-top: 1.2rem;
  margin-bottom: 0.45rem;
  color: #14346e;
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
}

.article-content p,
.article-content li {
  color: #2f4062;
}

.article-content ul {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.article-content ol {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.article-content li {
  margin-bottom: 0.4rem;
}

.article-content a {
  color: #006e9c;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
  font-size: 0.95rem;
}

.article-content th,
.article-content td {
  padding: 0.65rem 0.85rem;
  text-align: left;
  border: 1px solid #d5e0f4;
}

.article-content th {
  background: var(--bg);
  color: var(--navy);
  font-weight: 700;
}

.article-content td {
  color: #34496f;
}

.article-content strong {
  color: var(--navy);
}

.article-content .article-cta-text {
  margin-top: 1.8rem;
  font-weight: 700;
  color: #17396d;
}

.related-posts-wrap {
  background: var(--bg);
  border-top: 1px solid #dbe5f5;
  border-bottom: 1px solid #dbe5f5;
}

.related-posts-grid {
  display: grid;
  gap: 1rem;
}

.related-card {
  background: var(--white);
  border: 1px solid #d9e4f6;
  border-radius: 14px;
  padding: 1rem;
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.08);
}

.related-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.03rem;
  color: var(--navy);
}

.related-card p {
  margin: 0;
  color: var(--muted);
}

.related-card a {
  color: #006e9c;
  text-decoration: underline;
}

.blog-cta {
  background: linear-gradient(150deg, #0d1b3e 0%, #102a5b 100%);
  color: var(--white);
  padding: 3.1rem 0;
}

.blog-cta h2 {
  margin: 0;
  color: var(--white);
}

.blog-cta p {
  color: #d7e4ff;
  margin: 0.6rem 0 0;
}

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

.faq-item {
  border: 1px solid #d9e4f6;
  border-radius: 14px;
  margin-bottom: 0.75rem;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(13, 27, 62, 0.06);
  overflow: hidden;
}

.faq-q {
  padding: 1.1rem 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
  user-select: none;
  gap: 1rem;
}

.faq-q:hover {
  background: var(--bg);
}

.faq-arrow {
  transition: transform 0.2s;
  color: var(--cyan);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow {
  transform: rotate(180deg);
}

.faq-a {
  padding: 0 1.2rem 1.1rem;
  display: none;
  color: #34496f;
  line-height: 1.7;
}

.faq-item.open .faq-a {
  display: block;
}

/* ─── CROSS LINKS ─── */
.cross-links-section {
  background: #f8fbff;
  border-top: 1px solid #d9e4f6;
  padding: 2.5rem 0;
}

.cross-links-section h3 {
  color: var(--navy);
  margin: 0 0 1rem;
  font-size: 1.15rem;
}

.cross-link-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.cross-link-chips a {
  background: #eaf6ff;
  border: 1px solid #c6dcfa;
  color: #214172;
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-weight: 700;
  font-size: 0.88rem;
  transition: background 0.2s, border-color 0.2s;
}

.cross-link-chips a:hover {
  background: #d6efff;
  border-color: #9fcaf6;
}

/* ─── FOOTER ─── */
.site-footer {
  background: #09142d;
  color: #d8e5ff;
  padding: 2.2rem 0 1.4rem;
}

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

.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: 0.65rem;
}

.footer-col h3 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-links a {
  color: #d8e5ff;
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #9ceaff;
}

.footer-col p {
  color: #aabbd8;
  font-size: 0.9rem;
  margin: 0 0 0.4rem;
}

.footer-col a {
  color: #aabbd8;
}

.footer-col a:hover {
  color: #9ceaff;
}

.copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 1.5rem;
  padding-top: 0.9rem;
  font-size: 0.88rem;
  color: #7a9abf;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ─── BLOG LISTING ─── */
.blog-list-grid {
  display: grid;
  gap: 1.25rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid #d9e4f6;
  border-radius: 15px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(13, 27, 62, 0.08);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.blog-card:hover {
  box-shadow: 0 12px 32px rgba(13, 27, 62, 0.16);
  transform: translateY(-2px);
}

.blog-card h3 {
  margin: 0 0 0.5rem;
  color: var(--navy);
  font-size: 1.12rem;
}

.blog-card h3 a {
  color: var(--navy);
}

.blog-card h3 a:hover {
  color: var(--cyan);
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ─── HIGHLIGHT LIST ─── */
.highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.highlight-list li {
  color: #2c4269;
  font-weight: 700;
  padding-left: 1.4rem;
  position: relative;
}

.highlight-list li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  position: absolute;
  left: 0.2rem;
  top: 0.45rem;
}

/* ─── RESPONSIVE ─── */
@media (min-width: 560px) {
  .badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 720px) {
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .about-founder {
    grid-template-columns: 380px 1fr;
  }

  .about-panel {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr 1.35fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    align-items: start;
  }

  .related-posts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 980px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    transform: none;
    width: auto;
    height: auto;
    background: transparent;
    padding: 0;
    flex-direction: row;
    align-items: center;
    gap: 0.35rem;
  }

  .nav-menu a {
    padding: 0.5rem 0.65rem;
    border-radius: 8px;
  }

  .nav-cta {
    margin: 0 0 0 0.4rem;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 2.3rem;
  }

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

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

  .related-posts-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-list-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
