/* Jacksonville Window Cleaning Co. — site stylesheet */

:root {
  --navy: #0f2438;
  --navy-dark: #0a1826;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --gold: #d9a441;
  --ink: #1c2733;
  --slate: #4b5a68;
  --line: #e2e8ee;
  --paper: #f7f9fb;
  --white: #ffffff;
  --radius: 10px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; border-radius: var(--radius); }

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

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }

/* ---------- Nav ---------- */
header.site-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 3px solid var(--gold);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  color: var(--white);
  font-weight: 800;
  font-size: 1.15rem;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.brand span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-links a {
  color: #dbe4ee;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  background: var(--gold);
  color: var(--navy-dark);
  font-weight: 800;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav-cta:hover { background: #c8932f; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 56px 0 64px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
}
.eyebrow {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.8rem;
  margin: 0 0 10px;
}
h1 { font-size: 2.3rem; line-height: 1.2; margin: 0 0 16px; }
.hero p.lede { font-size: 1.08rem; color: #cfd9e4; margin: 0 0 26px; max-width: 54ch; }

.cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  font-size: 1rem;
}
.btn-primary { background: var(--gold); color: var(--navy-dark); }
.btn-primary:hover { background: #c8932f; }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid #47576a; }
.btn-secondary:hover { border-color: var(--gold); }

.trust-strip {
  margin-top: 28px;
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: #b9c6d4;
}
.trust-strip span::before { content: "\2713  "; color: var(--gold); font-weight: 800; }

/* ---------- Sections ---------- */
main section { padding: 56px 0; }
main section.alt { background: var(--paper); }
h2 { font-size: 1.6rem; margin: 0 0 18px; color: var(--navy); }
h3 { font-size: 1.15rem; margin: 0 0 8px; color: var(--navy); }
p { margin: 0 0 14px; color: var(--slate); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}
@media (max-width: 860px) {
  .two-col { grid-template-columns: 1fr; }
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .card-grid { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}
.card h3 { margin-top: 0; }

.list-check { list-style: none; margin: 0; padding: 0; }
.list-check li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
  color: var(--slate);
}
.list-check li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 800;
}

table.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
table.price-table th, table.price-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 0.95rem;
}
table.price-table th { background: var(--navy); color: var(--white); }
table.price-table tr:last-child td { border-bottom: none; }

/* FAQ */
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 14px;
  background: var(--white);
}
.faq-item h3 { margin-bottom: 8px; }
.faq-item p { margin-bottom: 0; }

/* CTA band */
.cta-band {
  background: var(--blue);
  color: var(--white);
  text-align: center;
  padding: 46px 20px;
  border-radius: var(--radius);
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: #dce7fb; }
.cta-band .btn-primary { background: var(--gold); color: var(--navy-dark); }

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}
form.lead-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
}
form.lead-form label {
  display: block;
  font-weight: 700;
  margin: 0 0 6px;
  font-size: 0.9rem;
  color: var(--navy);
}
form.lead-form input, form.lead-form select, form.lead-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #c7d1db;
  border-radius: 6px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  font-family: inherit;
}
form.lead-form button {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
}
form.lead-form button:hover { background: var(--blue-dark); }

.info-block { margin-bottom: 22px; }
.info-block h3 { margin-bottom: 6px; }

/* Service list on services page */
.service-block {
  border-bottom: 1px solid var(--line);
  padding: 34px 0;
}
.service-block:first-of-type { padding-top: 0; }
.service-block:last-of-type { border-bottom: none; }

/* Footer */
footer.site-footer {
  background: var(--navy-dark);
  color: #aebccb;
  padding: 44px 0 26px;
}
footer.site-footer .foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 26px;
}
@media (max-width: 760px) {
  footer.site-footer .foot-grid { grid-template-columns: 1fr; }
}
footer.site-footer h4 { color: var(--white); margin: 0 0 12px; font-size: 1rem; }
footer.site-footer a { color: #aebccb; text-decoration: none; }
footer.site-footer a:hover { color: var(--white); }
footer.site-footer ul { list-style: none; margin: 0; padding: 0; }
footer.site-footer li { margin-bottom: 8px; font-size: 0.92rem; }
.foot-bottom {
  border-top: 1px solid #1d2f42;
  padding-top: 18px;
  font-size: 0.82rem;
  text-align: center;
  color: #7c8ea1;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--slate);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--blue); text-decoration: none; }
