/* ═══════════════════════════════════════════
   Patriot Home Improvement, Sub-page styles
   Layout enhancements for inner pages
   ═══════════════════════════════════════════ */

.page-section { padding: 5.5rem 0; }
@media (min-width: 768px) { .page-section { padding: 7rem 0; } }

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
  margin-top: 3rem;
}
@media (min-width: 600px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .values-grid { grid-template-columns: repeat(4, 1fr); }
}
.value-card {
  padding: 1.8rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(177, 46, 49, 0.32);
  box-shadow: var(--shadow-md);
}
.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background: rgba(177, 46, 49, 0.1);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.value-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy-deep);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.value-card-desc {
  font-size: 0.96rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.page-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}
.page-intro .section-label { display: inline-flex; }

.services-index-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
@media (min-width: 600px) {
  .services-index-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .services-index-grid { grid-template-columns: repeat(3, 1fr); }
}

.reviews-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-top: 2.4rem;
}
@media (min-width: 700px) {
  .reviews-stats { grid-template-columns: repeat(4, 1fr); }
}
.reviews-stat {
  text-align: center;
  padding: 1.4rem 0.8rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.reviews-stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--red);
  display: block;
  line-height: 1;
}
.reviews-stat-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-top: 0.4rem;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.6rem 0 0;
}
@media (min-width: 700px) {
  .service-features { grid-template-columns: 1fr 1fr; }
}
.service-feature {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 1.1rem 1.2rem;
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}
.service-feature-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: rgba(177, 46, 49, 0.12);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-feature-title {
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--navy-deep);
  letter-spacing: 0.02em;
  margin-bottom: 0.15rem;
}
.service-feature-desc {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.55;
}

.policy-prose {
  max-width: 760px;
  margin: 0 auto;
}
.policy-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  text-transform: uppercase;
  color: var(--navy-deep);
  margin: 2.4rem 0 1rem;
}
.policy-prose h2:first-of-type { margin-top: 0; }
.policy-prose p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1rem;
}
.policy-prose ul {
  list-style: disc inside;
  margin: 0.5rem 0 1rem 0.5rem;
  color: var(--text-mid);
}
.policy-prose li { margin-bottom: 0.4rem; }
