/* omahaconcretepros.com — static lead-gen site. No frameworks, no build step. */

:root {
  --navy: #142433;
  --navy-2: #1e3549;
  --gold: #e8a317;
  --gold-dark: #c2860a;
  --gold-soft: #fbeccb;
  --paper: #f3f0ea;
  --text: #2a3138;
  --muted: #5a646d;
  --border: #d9d4c9;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.65;
  font-size: 17px;
}

a { color: #14507a; }
img { max-width: 100%; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 20px; }

h1, h2, h3 { line-height: 1.25; color: var(--navy); }
h2 { font-size: 1.75rem; margin-bottom: 16px; }
h3 { font-size: 1.15rem; margin: 22px 0 8px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy);
  color: #bcc8d3;
  font-size: 0.88rem;
  padding: 7px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--gold); text-decoration: none; font-weight: 700; }

/* ---------- Sticky header ---------- */
header {
  background: #fff;
  border-bottom: 3px solid var(--gold);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(20, 36, 51, 0.1);
}
header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.site-mark {
  font-size: 1.22rem;
  font-weight: 800;
  color: var(--navy);
  text-decoration: none;
  line-height: 1.15;
}
.site-mark span {
  display: block;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
nav { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 20px; }
nav a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 6px 0;
}
nav a:hover { color: var(--gold-dark); }
nav a.active { color: var(--gold-dark); border-bottom: 2px solid var(--gold); }
.btn-call {
  display: inline-block;
  background: var(--gold);
  color: var(--navy) !important;
  text-decoration: none;
  font-weight: 800;
  padding: 11px 20px;
  border-radius: 6px;
  font-size: 1rem;
  white-space: nowrap;
  box-shadow: 0 3px 8px rgba(232, 163, 23, 0.4);
}
.btn-call:hover { background: var(--gold-dark); color: #fff !important; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  padding: 15px 32px;
  border-radius: 6px;
  font-size: 1.08rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}
.btn:hover { background: #f7b731; }
.btn.ghost { background: transparent; border: 2px solid #fff; color: #fff; box-shadow: none; }
.btn.ghost:hover { background: rgba(255, 255, 255, 0.15); }
.btn.dark { background: var(--navy); color: #fff; }
.btn.dark:hover { background: var(--navy-2); }

/* ---------- Hero / page header ----------
   Every page sets --hero-img inline. The photo layer sits at exactly 75%
   opacity over the navy base; a separate gradient layer above it (never
   below) keeps the headline legible without touching the image opacity. */
.hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: #fff;
  padding: 72px 20px 78px;
  text-align: center;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-img);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.75;
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 22, 32, 0.1) 0%, rgba(11, 22, 32, 0.42) 45%, rgba(11, 22, 32, 0.52) 100%),
    linear-gradient(135deg, rgba(11, 22, 32, 0.4) 0%, rgba(20, 36, 51, 0.26) 55%, rgba(48, 33, 6, 0.34) 100%);
  z-index: 1;
}
.hero > * { position: relative; z-index: 2; }
.hero h1 { color: #fff; font-size: 2.3rem; max-width: 880px; margin: 0 auto 14px; text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5); }
.hero .sub { max-width: 740px; margin: 0 auto 28px; font-size: 1.14rem; color: #e2e7ec; text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45); }
.hero .hero-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.hero .hero-points {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px 28px; margin-top: 26px; font-weight: 600; font-size: 0.95rem; color: #ffd98a;
}
.hero.small { padding: 50px 20px 54px; }
.hero.small h1 { font-size: 1.9rem; }

/* ---------- Badge strip ---------- */
.badges { background: var(--navy); color: #fff; padding: 16px 0; }
.badges .wrap {
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 10px 24px; text-align: center;
}
.badges div { font-weight: 700; font-size: 0.95rem; flex: 1 1 160px; }
.badges span { display: block; color: var(--gold); font-size: 1.25rem; }

/* ---------- Sections ---------- */
section { padding: 56px 0; }
section.alt { background: var(--paper); }
section p { margin-bottom: 14px; }
section ul, section ol { margin: 0 0 14px 24px; }
section li { margin-bottom: 8px; }
.center { text-align: center; }
.kicker {
  display: inline-block; color: var(--gold-dark); font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.2px; font-size: 0.82rem; margin-bottom: 8px;
}
.lead { font-size: 1.08rem; color: var(--muted); max-width: 820px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Image placeholders ----------
   Used wherever a real photo has not been sourced yet. Each one carries a
   unique id so a photo can be dropped in later without hunting. */
.img-ph {
  background: repeating-linear-gradient(45deg, #ece8e0, #ece8e0 12px, #e3ded3 12px, #e3ded3 24px);
  border: 1px dashed #b9b1a4;
  border-radius: 10px;
  color: #7b7468;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 3 / 2;
  padding: 16px;
}
.img-ph.wide { aspect-ratio: 16 / 6; }

/* ---------- Body photos ----------
   Same 3:2 box the placeholder occupies, so swapping a placeholder for a real
   photo changes nothing about the layout. aspect-ratio plus the width/height
   attributes on the tag means no shift while it loads. */
.body-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 14px rgba(20, 36, 51, 0.15);
}

/* ---------- Content photos ---------- */
.svc-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 4px 14px rgba(20, 36, 51, 0.15);
}
@media (max-width: 780px) { .svc-img { height: 240px; } }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 22px; margin-top: 28px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px 24px;
  box-shadow: 0 2px 8px rgba(20, 36, 51, 0.05);
  display: flex;
  flex-direction: column;
}
.card .icon {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold-soft); color: var(--gold-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 14px;
}
.card h3 { margin: 0 0 8px; }
.card h3 a { color: var(--navy); text-decoration: none; }
.card h3 a:hover { color: var(--gold-dark); }
.card p { font-size: 0.95rem; color: var(--muted); margin-bottom: 12px; }
.card .more { margin-top: auto; font-weight: 700; font-size: 0.92rem; color: var(--gold-dark); text-decoration: none; }
.card .more:hover { text-decoration: underline; }

/* ---------- Feature list ---------- */
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 8px 36px; margin-top: 20px; }
.feature { display: flex; gap: 12px; padding: 12px 0; }
.feature .tick { color: var(--gold-dark); font-size: 1.2rem; font-weight: 800; line-height: 1.5; }
.feature strong { display: block; color: var(--navy); }
.feature p { font-size: 0.94rem; color: var(--muted); margin: 2px 0 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; margin-top: 28px; }
.step { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 24px; }
.step .num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin-bottom: 12px;
}
.step h3 { margin: 0 0 6px; font-size: 1.05rem; }
.step p { font-size: 0.93rem; color: var(--muted); margin: 0; }

/* ---------- Price table ---------- */
.price-table { width: 100%; border-collapse: collapse; margin: 20px 0 8px; font-size: 0.97rem; }
.price-table caption { text-align: left; color: var(--muted); font-size: 0.9rem; padding-bottom: 10px; }
.price-table th, .price-table td { border: 1px solid var(--border); padding: 11px 14px; text-align: left; }
.price-table th { background: var(--navy); color: #fff; font-weight: 700; }
.price-table tbody tr:nth-child(even) { background: var(--paper); }
.table-scroll { overflow-x: auto; }

/* ---------- FAQ accordion ---------- */
.faq-list { margin-top: 20px; }
details {
  background: #fff; border: 1px solid var(--border); border-radius: 8px;
  margin-bottom: 12px; overflow: hidden;
}
summary {
  cursor: pointer; font-weight: 700; color: var(--navy);
  padding: 16px 20px; list-style: none; position: relative; padding-right: 44px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; transform: translateY(-50%);
  color: var(--gold-dark); font-size: 1.4rem; font-weight: 800;
}
details[open] summary::after { content: "\2212"; }
details .a { padding: 0 20px 16px; color: var(--muted); }
details .a p { margin-bottom: 10px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; text-align: center; padding: 52px 20px;
}
.cta-band h2 { color: #fff; }
.cta-band p { max-width: 680px; margin: 0 auto 24px; color: #d3dbe3; }
.cta-band .phone-big { font-size: 1.3rem; font-weight: 800; margin-top: 18px; color: var(--gold); }

/* ---------- Two-column ---------- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; } }

/* ---------- Call blocks ---------- */
.call-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; margin-top: 28px; }
.call-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 28px 24px; text-align: center; }
.call-card .big-ico { font-size: 1.8rem; margin-bottom: 10px; }
.call-card .big-phone { font-size: 1.5rem; font-weight: 800; color: var(--gold-dark); text-decoration: none; display: inline-block; margin-top: 4px; }
.hours-list { list-style: none; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px dotted var(--border); padding: 8px 0; margin: 0; }

/* ---------- Service area tags & city links ---------- */
.area-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.area-tags span, .area-tags a {
  background: #fff; border: 1px solid var(--border); border-radius: 20px;
  padding: 7px 16px; font-size: 0.9rem; font-weight: 600; color: var(--navy);
  text-decoration: none;
}
.area-tags a:hover { border-color: var(--gold); color: var(--gold-dark); }

.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; margin-top: 24px; }
.city-grid a {
  display: block; background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--gold);
  border-radius: 8px; padding: 14px 16px; text-decoration: none; color: var(--navy); font-weight: 700;
}
.city-grid a span { display: block; font-weight: 500; font-size: 0.86rem; color: var(--muted); }
.city-grid a:hover { border-left-color: var(--navy); color: var(--gold-dark); }

/* ---------- Related links panel ---------- */
.related { background: var(--paper); border-radius: 10px; padding: 26px; margin-top: 36px; }
.related h3 { margin-top: 0; }
.related ul { columns: 2; margin-left: 20px; }
@media (max-width: 640px) { .related ul { columns: 1; } }

/* ---------- Breadcrumb ---------- */
.crumbs { font-size: 0.88rem; color: var(--muted); padding: 14px 0 0; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--gold-dark); }

/* ---------- Footer ---------- */
footer { background: var(--navy); color: #aeb9c4; font-size: 0.92rem; }
footer .cols {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.1fr; gap: 34px;
  padding: 48px 0 36px;
}
@media (max-width: 880px) { footer .cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { footer .cols { grid-template-columns: 1fr; } }
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.8px; }
footer ul { list-style: none; }
footer li { margin-bottom: 8px; }
footer a { color: #aeb9c4; text-decoration: none; }
footer a:hover { color: var(--gold); }
footer .phone-footer { color: var(--gold); font-weight: 800; font-size: 1.15rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 16px 0; text-align: center; font-size: 0.85rem; color: #86929e;
}
.footer-bottom a { color: var(--gold); }

/* ---------- Floating mobile call button ---------- */
.float-call {
  display: none;
  position: fixed; bottom: 18px; left: 16px; right: 16px; z-index: 200;
  background: var(--gold); color: var(--navy); text-decoration: none;
  font-weight: 800; font-size: 1.1rem; text-align: center;
  padding: 15px; border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.38);
}

@media (max-width: 720px) {
  .hero h1 { font-size: 1.72rem; }
  .hero.small h1 { font-size: 1.42rem; }
  h2 { font-size: 1.45rem; }
  header .wrap { justify-content: center; text-align: center; }
  nav { justify-content: center; }
  .float-call { display: block; }
  body { padding-bottom: 76px; }
  .topbar .wrap { justify-content: center; }
}
