/* ============================================================
   Woodward Renovations — Local SEO Pages Stylesheet
   Extends styles.css — Import AFTER styles.css
   ============================================================ */

:root {
  --brand-gold: #c8860a;
  --brand-gold-light: #e8a020;
  --brand-dark: #1c1c1c;
  --brand-navy: #1c1c1c;
  --text-main: #333;
  --text-muted: #666;
  --bg-light: #f8f6f2;
  --bg-white: #fff;
  --border: #e5e0d8;
  --radius: 6px;
  --shadow: 0 2px 10px rgba(0,0,0,0.09);
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #1c1c1c 0%, #333 100%);
  color: #fff;
  padding: 64px 0 52px;
}

.page-hero .breadcrumb {
  font-size: 13px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.page-hero .breadcrumb a {
  color: var(--brand-gold-light);
  text-decoration: none;
}

.page-hero .breadcrumb a:hover { text-decoration: underline; }

/* separator chevrons stay subtle; last span (current page/city) stays fully readable */
.page-hero .breadcrumb span { color: rgba(255,255,255,0.55); }
.page-hero .breadcrumb span:last-child { color: #fff; font-weight: 600; }

.page-hero h1 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 18px;
}

.page-hero .hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.95);
  max-width: 640px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-gold);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-hero-primary:hover {
  background: var(--brand-gold-light);
  transform: translateY(-1px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.35);
  transition: background 0.2s;
}

.btn-hero-secondary:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: #fff;
  border-bottom: 2px solid var(--brand-gold);
  padding: 16px 0;
}

.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-dark);
}

.trust-item .ti-icon {
  color: var(--brand-gold);
  font-size: 18px;
}

/* ============================================================
   SECTION UTILITIES
   ============================================================ */
.section-pad { padding: 72px 0; }
.section-pad-sm { padding: 48px 0; }
.bg-light { background: var(--bg-light); }
.bg-navy {
  background: var(--brand-dark);
  color: #fff;
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--brand-gold);
  margin-bottom: 10px;
  display: block;
}

.bg-navy .section-eyebrow { color: var(--brand-gold-light); }

.section-heading {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--brand-dark);
  margin-bottom: 18px;
}

.bg-navy .section-heading { color: #fff; }

.section-heading em {
  font-style: normal;
  color: var(--brand-gold);
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 720px;
  line-height: 1.72;
  margin-bottom: 40px;
}

.bg-navy .section-lead { color: rgba(255,255,255,0.8); }

/* ============================================================
   PROSE BODY CONTENT
   ============================================================ */
.prose { max-width: 800px; }

.prose p {
  margin-bottom: 1.25em;
  line-height: 1.78;
  color: var(--text-main);
  font-size: 1rem;
}

.prose h2 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: 1.65rem;
  font-weight: 700;
  margin: 2.5em 0 0.6em;
  color: var(--brand-dark);
}

.prose h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.8em 0 0.5em;
  color: var(--brand-dark);
}

.prose ul {
  list-style: disc;
  padding-left: 1.5em;
  margin-bottom: 1.25em;
}

.prose ul li {
  margin-bottom: 0.5em;
  line-height: 1.65;
  color: var(--text-main);
}

/* ============================================================
   TWO-COLUMN LAYOUT (PROSE + SIDEBAR)
   ============================================================ */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 52px;
  align-items: start;
}

.sidebar-sticky {
  position: sticky;
  top: 90px;
}

.sidebar-card {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  margin-bottom: 20px;
}

.sidebar-card h3 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--brand-gold);
}

.sidebar-phone {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--brand-gold);
  text-decoration: none;
  margin-bottom: 14px;
}

.sidebar-phone:hover { color: var(--brand-dark); }

.sidebar-cta {
  display: block;
  background: var(--brand-gold);
  color: #fff;
  text-align: center;
  padding: 12px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 20px;
  transition: background 0.2s;
}

.sidebar-cta:hover { background: var(--brand-gold-light); }

.sidebar-links { list-style: none; }

.sidebar-links li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-links li:last-child { border-bottom: none; }

.sidebar-links a {
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.sidebar-links a:hover { color: var(--brand-gold); }

/* ============================================================
   BENEFITS GRID
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 12px;
}

.benefit-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  border-top: 3px solid var(--brand-gold);
  transition: box-shadow 0.2s;
}

.benefit-card:hover { box-shadow: var(--shadow); }

.benefit-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.benefit-card h3 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
  max-width: 760px;
}

.process-step {
  display: flex;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.process-step:last-child { border-bottom: none; }

.process-num {
  background: var(--brand-gold);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(200,134,10,0.4);
}

.process-body h3 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.process-body p {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  max-width: 800px;
  margin-top: 12px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.faq-toggle h3 {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--brand-dark);
  flex: 1;
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--brand-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--brand-gold);
  font-size: 1.2rem;
  font-weight: 700;
  transition: transform 0.25s;
  user-select: none;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-body {
  display: none;
  padding: 0 0 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.72;
}

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

/* ============================================================
   PROJECT EXAMPLES
   ============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-top: 12px;
}

.project-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.project-img {
  height: 195px;
  background: var(--bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 20px;
}

.project-body { padding: 20px; }

.project-body h3 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
}

.project-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.project-tag {
  display: inline-block;
  background: var(--bg-light);
  color: var(--brand-gold);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, #1c1c1c 0%, #333 100%);
  color: #fff;
  padding: 72px 0;
  text-align: center;
}

.cta-section h2 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-gold {
  background: var(--brand-gold);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-cta-gold:hover {
  background: var(--brand-gold-light);
  transform: translateY(-1px);
}

.btn-cta-ghost {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.45);
  transition: border-color 0.2s, background 0.2s;
}

.btn-cta-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ============================================================
   AREAS SERVED GRID
   ============================================================ */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.area-card {
  display: block;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 600;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
}

.area-card:hover {
  border-color: var(--brand-gold);
  color: var(--brand-gold);
  box-shadow: 0 2px 8px rgba(200,134,10,0.15);
}

.area-card .area-arrow {
  float: right;
  color: var(--brand-gold);
  opacity: 0;
  transition: opacity 0.2s;
}

.area-card:hover .area-arrow { opacity: 1; }

/* ============================================================
   RELATED SERVICES
   ============================================================ */
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.related-card {
  display: block;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-decoration: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.related-card:hover {
  border-color: var(--brand-gold);
  box-shadow: var(--shadow);
}

.related-card h3 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.related-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.related-card .rc-arrow {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-gold);
}

/* ============================================================
   SEO FOOTER
   ============================================================ */
.seo-footer {
  background: #111;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 24px;
}

.seo-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-col h2 {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
}

.footer-brand-col p {
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 10px;
}

.footer-contact-row a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.footer-contact-row a:hover { color: var(--brand-gold-light); }

.fc-icon { color: var(--brand-gold); flex-shrink: 0; margin-top: 2px; }

.footer-col h3 {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #fff;
  margin-bottom: 18px;
}

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

.footer-col ul li { margin-bottom: 10px; }

.footer-col ul li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--brand-gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

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

.footer-bottom a:hover { color: var(--brand-gold-light); }

/* ============================================================
   STAT ROW
   ============================================================ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 24px;
  margin-top: 12px;
}

.stat-box {
  text-align: center;
  padding: 28px 16px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.12);
}

.stat-num {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--brand-gold-light);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin-top: 6px;
}

/* ============================================================
   PRICE TABLE (Cost Guide)
   ============================================================ */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
  max-width: 700px;
}

.cost-table th {
  background: var(--brand-navy);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-size: 0.88rem;
  font-weight: 700;
}

.cost-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-main);
}

.cost-table tr:nth-child(even) td { background: var(--bg-light); }

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media (max-width: 960px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-sticky {
    position: static;
  }

  .seo-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .section-pad { padding: 48px 0; }
  .page-hero { padding: 48px 0 40px; }
  .cta-section { padding: 52px 0; }

  .seo-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: 1fr; }

  .trust-bar-inner { gap: 14px; }
  .hero-actions { flex-direction: column; }
}

/* ============================================================
   NAV TOGGLE (mobile)
   ============================================================ */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 99;
    gap: 0;
  }

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

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--brand-dark) !important;
  }

  .nav-links a:last-child { border-bottom: none; }
}

/* Page-level header override — SEO pages use sticky white header */
.seo-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0,0,0,0.08);
}

.seo-header .nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.seo-header .nav-logo {
  font-family: 'Raleway', 'Segoe UI', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand-dark);
  text-decoration: none;
  letter-spacing: -0.3px;
}

.seo-header .nav-logo span { color: var(--brand-gold); }

.seo-header .nav-links { position: relative; }

.seo-header .nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: color 0.2s;
}

.seo-header .nav-links a:hover,
.seo-header .nav-links a.active { color: var(--brand-gold); }

.seo-header .nav-estimate {
  background: var(--brand-gold);
  color: #fff !important;
  padding: 8px 16px;
  border-radius: var(--radius);
  font-weight: 700 !important;
}

.seo-header .nav-estimate:hover {
  background: var(--brand-gold-light);
  color: #fff !important;
}
