/* ============================================================
   WW Air Specialist — shared stylesheet for page mocks
   Tokens extracted from wwairspecialistllc.com (see ../design.md)
   Sections are named to map 1:1 onto Elementor containers.
   ============================================================ */

:root {
  --red: #BE0000;
  --navy: #000938;
  --navy-band: #182944;
  --text: #6a6a6b;
  --black: #000000;
  --light: #F4F4F4;
  --form-card: #f3f3f3;
  --input-border: #ededed;
  --radius-btn: 10px;
  --radius-img: 20px;
  --radius-input: 8px;
  --container: 1140px;
}

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

body {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

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

h1, h2, h3 { color: var(--black); line-height: 1.1; }
h1 { font-size: 48px; font-weight: 600; }
h2 { font-size: 48px; font-weight: 700; }
h3 { font-size: 35px; font-weight: 700; line-height: 1.2; }

p { margin: 0 0 18px; }
a { color: inherit; text-decoration: none; }

strong.accent { color: var(--red); font-weight: 600; }
strong.navy { color: var(--navy); font-weight: 600; }

/* Buttons */
.btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 18px 24px;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: #9e0000; }

/* ---------- SECTION: Topbar ---------- */
.topbar { background: #fff; border-bottom: 1px solid #eee; font-size: 15px; }
.topbar .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 44px; flex-wrap: wrap; gap: 6px 18px; padding-top: 6px; padding-bottom: 6px;
}
.topbar-items { display: flex; flex-wrap: wrap; gap: 6px 26px; }
.topbar-item { display: flex; align-items: center; gap: 8px; color: var(--navy); }
.topbar-item svg, .topbar-social svg { width: 15px; height: 15px; fill: var(--red); flex: none; }
.topbar-social { display: flex; gap: 14px; }

/* ---------- SECTION: Header ---------- */
.site-header { background: #fff; }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding-top: 12px; padding-bottom: 12px;
}
.site-logo img { width: 110px; height: auto; }
.site-nav { display: flex; gap: 36px; }
.site-nav a { color: var(--black); font-size: 18px; font-weight: 400; }
.site-nav a:hover { color: var(--red); }

/* ---------- SECTION: Hero (full-width H1, then image left / copy right) ---------- */
.hero { padding: 56px 0 64px; }
.hero h1 { margin-bottom: 36px; }
.hero-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; align-items: center; }
.hero-img img { border-radius: var(--radius-img); width: 100%; max-height: 520px; object-fit: cover; }

/* ---------- SECTION: Content blocks ---------- */
.section { padding: 64px 0; }
.section.alt { background: var(--light); }
.section h2 { margin-bottom: 24px; }
.section h3 { margin: 40px 0 16px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col .col-img img { border-radius: var(--radius-img); width: 100%; object-fit: cover; }
.prose { max-width: 900px; }

/* Wrap sections: portrait image floated at the top, text wraps around it */
.wrap-section .container::after { content: ""; display: block; clear: both; }
.float-img {
  width: 38%; max-width: 420px; border-radius: var(--radius-img); object-fit: cover;
}
.float-img.right { float: right; margin: 0 0 28px 44px; }
.float-img.left { float: left; margin: 0 44px 28px 0; }

/* Full-width image background break */
.img-break {
  background-image: url("assets/service-hero.jpg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  min-height: 200px;
  padding: 130px 0;
}

/* Question rows: two columns, one question block per column */
.q-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; margin-top: 48px; clear: both; }
.q-row h3 { margin-top: 0; font-size: 27px; }
.q-row.single { grid-template-columns: 1fr 1fr; }
.q-row.single h3 { margin-bottom: 16px; }
.q-row.single .q-cell-list { padding-top: 8px; }

/* ---------- SECTION: Question accordions ---------- */
.accordion details {
  background: #fff;
  border: 1px solid var(--input-border);
  border-radius: var(--radius-btn);
  margin-bottom: 16px;
  overflow: hidden;
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 28px;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary h2, .accordion summary h3 {
  font-size: 22px; font-weight: 600; margin: 0; line-height: 1.3;
}
.accordion summary::after {
  content: "+";
  flex: none;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 22px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.accordion details[open] summary::after { content: "\2212"; }
.accordion .acc-body { padding: 0 28px 26px; }
.accordion .acc-body ul, .accordion .acc-body ol { margin: 0 0 18px 22px; }
.accordion .acc-body li { margin-bottom: 10px; }
.accordion .acc-body ul li::marker { color: var(--red); }
.accordion .acc-body ol li::marker { color: var(--red); font-weight: 700; }

/* Lists (copy bullets) */
.prose ul, .prose ol, .two-col ul, .two-col ol,
.q-row ul, .q-row ol, .wrap-section ul, .wrap-section ol { margin: 0 0 18px 22px; }
.prose li, .two-col li, .q-row li, .wrap-section li { margin-bottom: 10px; }
.prose ul li::marker, .two-col ul li::marker,
.q-row ul li::marker, .wrap-section ul li::marker { color: var(--red); }
.prose ol li::marker, .two-col ol li::marker,
.q-row ol li::marker, .wrap-section ol li::marker { color: var(--red); font-weight: 700; }
li strong { color: var(--black); font-weight: 600; }

/* Content tables (e.g. emergency issues / rapid solutions) */
.content-table { width: 100%; border-collapse: collapse; margin: 0 0 18px; font-size: 16px; }
.content-table th {
  background: var(--navy-band); color: #fff; font-weight: 600;
  text-align: left; padding: 14px 18px;
}
.content-table td { border: 1px solid var(--input-border); padding: 13px 18px; }
.content-table tr:nth-child(even) td { background: var(--light); }

/* ---------- SECTION: Contact form card ----------
   White card on the gray band, curved corners, vertically centered
   beside the maintenance-plans copy (.two-col align-items: center). */
.form-card {
  background: #fff;
  border-radius: 32px;
  padding: 44px 40px;
  align-self: center;
}
.form-card .form-icon { width: 34px; height: 34px; fill: var(--red); margin-bottom: 14px; }
.form-card h3 { font-size: 24px; margin: 0 0 10px; }
.form-card .form-lead { font-size: 16px; margin: 0 0 22px; }
.form-card label {
  display: block; font-size: 16px; font-weight: 600;
  color: var(--black); margin: 0 0 8px;
}
.form-card input {
  width: 100%; height: 56px; background: var(--light);
  border: 1px solid var(--input-border); border-radius: var(--radius-input);
  padding: 0 16px; font-family: inherit; font-size: 16px; color: var(--text);
  margin-bottom: 20px;
}
.form-card .btn { width: 100%; border-radius: 4px; text-align: center; }

/* ---------- SECTION: CTA band ---------- */
.cta-band { background: var(--navy-band); color: #fff; overflow: hidden; }
.cta-band .container {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; align-items: end;
}
.cta-band-copy { padding: 72px 0; }
.cta-band h2 { color: #fff; margin-bottom: 12px; }
.cta-band .cta-phone {
  display: block; color: #fff; font-size: 35px; font-weight: 700; margin-bottom: 28px;
}
.cta-band .cta-phone:hover { color: #ffd7d7; }
.cta-band-img { align-self: end; }
.cta-band-img img { max-height: 360px; width: auto; margin: 0 auto; }

/* ---------- SECTION: Areas We Serve ---------- */
.areas { padding: 64px 0; text-align: center; }
.areas h2 { margin: 0 auto 36px; }
.areas-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1000px; margin: 0 auto;
}
.area-pill {
  display: block; background: var(--red); color: #fff;
  font-size: 18px; font-weight: 700; padding: 24px 16px;
  border-radius: var(--radius-btn); text-align: center;
}
.area-pill:hover { background: #9e0000; }

/* ---------- SECTION: Footer ---------- */
.site-footer { background: var(--light); padding: 64px 0 0; font-size: 16px; }
.footer-cols {
  display: grid; grid-template-columns: 1.4fr 1fr 0.8fr 1.2fr; gap: 40px;
}
.footer-col h3 { font-size: 20px; margin: 0 0 18px; }
.footer-col p, .footer-col li { margin-bottom: 10px; }
.footer-col ul { list-style: none; }
.footer-col a:hover { color: var(--red); }
.footer-brand img.footer-logo { width: 90px; margin-bottom: 18px; }
.footer-social { display: flex; gap: 14px; margin-top: 16px; }
.footer-social svg { width: 18px; height: 18px; fill: var(--red); }
.footer-partners { display: flex; gap: 22px; align-items: center; margin-top: 8px; }
.footer-partners img { height: 30px; width: auto; }
.footer-areas ul { columns: 2; column-gap: 28px; }
.footer-bottom {
  border-top: 1px solid #e2e2e2; margin-top: 48px;
  padding: 22px 0; text-align: center; font-size: 15px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  h1, h2 { font-size: 36px; }
  h3 { font-size: 27px; }
  .site-nav { display: none; }
  .hero-grid, .two-col, .q-row, .cta-band .container { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .cta-band-copy { padding: 56px 0 0; }
  .cta-band-img img { max-height: 300px; }
  .two-col.img-first-mobile .col-img { order: -1; }
  .q-row { gap: 40px; }
  .float-img.right, .float-img.left { float: none; width: 100%; max-width: none; margin: 0 0 28px; }
  .img-break { background-attachment: scroll; padding: 80px 0; }
  .content-table { display: block; overflow-x: auto; white-space: nowrap; }
}

@media (max-width: 600px) {
  h1, h2 { font-size: 30px; }
  body { font-size: 17px; }
  .topbar-items .topbar-item:nth-child(3) { display: none; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .section, .hero, .areas { padding: 44px 0; }
}

/* ============================================================
   Comfort Club page components (.cc-*) — used only by
   website/comfort-club/. Additive block; nothing above changes.
   ============================================================ */

/* SECTION: Program hero (centered, no image) */
.cc-hero { padding: 64px 0 56px; text-align: center; }
.cc-kicker {
  display: inline-block; color: var(--red); font-size: 16px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 18px;
}
.cc-hero h1 { max-width: 880px; margin: 0 auto 22px; }
.cc-hero .cc-lead { max-width: 760px; margin: 0 auto 26px; }
.cc-price-line { color: var(--black); font-size: 22px; font-weight: 600; margin-bottom: 28px; }
.cc-cta-row {
  display: flex; gap: 18px; justify-content: center; align-items: center;
  flex-wrap: wrap; margin-bottom: 30px;
}
.cc-call-link { color: var(--navy); font-size: 18px; font-weight: 700; }
.cc-call-link:hover { color: var(--red); }
.cc-trust { display: flex; gap: 10px 34px; justify-content: center; flex-wrap: wrap; font-size: 16px; color: var(--navy); }
.cc-trust span { display: flex; align-items: center; gap: 9px; }
.cc-trust svg, .cc-plan li svg, .cc-why-list li svg {
  width: 18px; height: 18px; flex: none;
  fill: none; stroke: var(--red); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}

/* SECTION: Member math cards */
.cc-math-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 32px; }
.cc-math-card { background: #fff; border-radius: var(--radius-img); padding: 34px 30px; }
.cc-math-card .cc-figure { color: var(--red); font-size: 40px; font-weight: 700; line-height: 1; margin-bottom: 14px; }
.cc-math-card .cc-figure s { color: var(--text); font-size: 22px; font-weight: 500; margin-right: 10px; }
.cc-math-card h3 { font-size: 22px; margin: 0 0 10px; }
.cc-math-card p { font-size: 16px; margin: 0; }

/* SECTION: Benefits grid */
.cc-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.cc-benefit { border: 1px solid var(--input-border); border-radius: var(--radius-img); padding: 30px 28px; }
.cc-icon {
  width: 52px; height: 52px; border-radius: 50%; background: var(--red);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.cc-icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.cc-benefit h3 { font-size: 21px; margin: 0 0 10px; }
.cc-benefit p { font-size: 16px; margin: 0; }
.cc-benefits-closer { margin-top: 30px; max-width: 820px; }

/* SECTION: Inspection checklist */
.cc-checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 40px; margin-top: 38px; }
.cc-check-item { display: flex; gap: 18px; background: #fff; border-radius: var(--radius-img); padding: 24px 26px; }
.cc-check-num {
  flex: none; width: 38px; height: 38px; border-radius: 50%; background: var(--red);
  color: #fff; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.cc-check-item h3 { font-size: 20px; margin: 6px 0 8px; }
.cc-check-item p { font-size: 16px; margin: 0; }

/* SECTION: Join (pricing card + sign-up form, two columns) */
.cc-join .two-col { margin-top: 40px; align-items: stretch; }
.cc-join .cc-plan { margin: 0 auto; display: flex; flex-direction: column; justify-content: center; }
.cc-join .form-card { max-width: 560px; width: 100%; margin: 0 auto; }
.cc-join-note { font-size: 15px; margin: 16px 0 0; text-align: center; }
.cc-plan {
  background: #fff; border-radius: 32px; padding: 48px 44px;
  max-width: 560px; width: 100%; text-align: center;
}
.cc-plan h3 { font-size: 26px; margin: 0 0 6px; }
.cc-plan .cc-price { color: var(--black); font-size: 56px; font-weight: 700; line-height: 1.05; }
.cc-plan .cc-price span { color: var(--text); font-size: 20px; font-weight: 500; }
.cc-plan ul { list-style: none; margin: 28px 0 30px; text-align: left; }
.cc-plan li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 12px; font-size: 17px; }
.cc-plan li svg { margin-top: 4px; }
.cc-plan .btn { width: 100%; text-align: center; }
.cc-plan .cc-plan-note { font-size: 15px; margin: 16px 0 0; }

/* SECTION: How it works steps */
.cc-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.cc-step { text-align: center; padding: 0 10px; }
.cc-step .cc-step-num {
  width: 56px; height: 56px; border-radius: 50%; background: var(--navy-band); color: #fff;
  font-size: 24px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.cc-step h3 { font-size: 21px; margin: 0 0 10px; }
.cc-step p { font-size: 16px; margin: 0; }

/* SECTION: Why WW Air */
.cc-why-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; margin-top: 8px; }
.cc-why-grid img.cc-why-img { border-radius: var(--radius-img); width: 100%; object-fit: cover; }
.cc-why-list { list-style: none; margin: 26px 0 8px; }
.cc-why-list li { display: flex; gap: 12px; margin-bottom: 14px; }
.cc-why-list li svg { margin-top: 5px; }
.cc-partners { display: flex; gap: 26px; align-items: center; margin-top: 26px; }
.cc-partners img { height: 32px; width: auto; }

/* Centering utility (titles + intro/closing subtext per operator review 2026-06-11) */
.cc-center { text-align: center; margin-left: auto; margin-right: auto; }

/* SECTION: Five service-area pills */
.areas-grid.cc-five { grid-template-columns: repeat(5, 1fr); max-width: 1080px; }
.area-pill.cc-static { cursor: default; }
.area-pill.cc-static:hover { background: var(--red); }

@media (max-width: 900px) {
  .cc-math-grid, .cc-benefits, .cc-steps, .cc-checklist, .cc-why-grid { grid-template-columns: 1fr; }
  .areas-grid.cc-five { grid-template-columns: repeat(2, 1fr); }
  .cc-hero { padding: 48px 0 44px; }
}
@media (max-width: 600px) {
  .areas-grid.cc-five { grid-template-columns: 1fr; }
  .cc-plan { padding: 38px 26px; }
  .cc-plan .cc-price { font-size: 44px; }
}

/* ============================================================
   AC Repair hub (.acr-*) — used only by
   website/ac-repair-rio-grande-valley/. Additive block.
   3-up service-link grids with long phrase labels; stack to a
   single column below the tablet breakpoint so labels stay
   readable (the base .areas-grid 2-up is for short city names).
   ============================================================ */
.areas-grid.acr-three { grid-template-columns: repeat(3, 1fr); max-width: 840px; }
@media (max-width: 900px) {
  .areas-grid.acr-three { grid-template-columns: 1fr; }
}

/* Breadcrumb — child AC-repair city pages link UP to the regional hub.
   Sits directly under the header. Reused by the three city mocks. */
.breadcrumb { background: #fff; border-bottom: 1px solid var(--input-border); font-size: 15px; }
.breadcrumb .container { padding-top: 14px; padding-bottom: 14px; }
.breadcrumb a { color: var(--navy); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb .sep { color: var(--text); margin: 0 10px; }
.breadcrumb .breadcrumb-current { color: var(--text); }
