/* ═══════════════════════════════════════════
   Road Solutions Paving — Sub-page Styles
   About · Contact · Services · Service Areas · Cities
   ═══════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   SERVICE PAGE — content blocks
   ═══════════════════════════════════════════ */
.svc-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.svc-hero-meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(232, 188, 64, 0.3);
  color: var(--text-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.svc-hero-meta-pill svg { color: var(--gold); width: 14px; height: 14px; }

.svc-overview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .svc-overview { grid-template-columns: 7fr 5fr; gap: 4rem; }
}
.svc-overview-text p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}
.svc-overview-text p strong { color: var(--text); font-weight: 700; }
.svc-overview-text p:first-of-type::first-letter {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 4.2rem;
  line-height: 0.9;
  color: var(--gold);
  float: left;
  margin: 0.15rem 0.5rem -0.1rem 0;
  padding-top: 0.3rem;
}

.svc-overview-image {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border: 1px solid var(--bg-line);
}
.svc-overview-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.05);
  transition: transform 0.8s var(--ease);
}
.svc-overview-image:hover img { transform: scale(1.05); filter: grayscale(0); }
.svc-overview-image::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(232, 188, 64, 0.35);
  pointer-events: none;
  z-index: 2;
}

/* What's included list */
.svc-included {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .svc-included { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .svc-included { grid-template-columns: repeat(3, 1fr); } }

.svc-included-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  transition: transform 0.3s var(--ease-fluid), background 0.3s, border-color 0.3s;
}
.svc-included-item:hover {
  transform: translateY(-3px);
  background: var(--bg-elevated);
  border-color: rgba(232, 188, 64, 0.28);
}
.svc-included-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #0C1113;
  flex-shrink: 0;
}
.svc-included-text-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  line-height: 1.1;
}
.svc-included-text-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Step process inside service page */
.svc-process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .svc-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .svc-process-grid { grid-template-columns: repeat(4, 1fr); } }

.svc-process-step {
  position: relative;
  padding: 1.75rem 1.5rem 1.85rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  transition: transform 0.4s var(--ease-fluid), background 0.3s, border-color 0.3s;
  overflow: hidden;
}
.svc-process-step:hover {
  transform: translateY(-4px);
  background: var(--bg-elevated);
  border-color: rgba(232, 188, 64, 0.3);
}
.svc-process-step-num {
  position: absolute;
  top: 0.5rem;
  right: 0.85rem;
  font-family: 'Anton', sans-serif;
  font-size: 4.5rem;
  line-height: 1;
  color: rgba(232, 188, 64, 0.1);
  letter-spacing: -0.02em;
  pointer-events: none;
}
.svc-process-step-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  line-height: 1.05;
  position: relative;
  z-index: 1;
}
.svc-process-step-desc {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

/* Related services */
.svc-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) { .svc-related-grid { grid-template-columns: repeat(3, 1fr); } }

.svc-related-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  transition: transform 0.3s var(--ease-fluid), border-color 0.3s, background 0.3s;
  color: var(--text);
}
.svc-related-card:hover {
  transform: translateY(-3px);
  background: var(--bg-elevated);
  border-color: rgba(232, 188, 64, 0.32);
  color: var(--gold);
}
.svc-related-card-arrow {
  margin-left: auto;
  width: 22px;
  height: 22px;
  color: var(--gold);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.svc-related-card:hover .svc-related-card-arrow { transform: translateX(4px); }
.svc-related-card-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(232, 188, 64, 0.35);
  background: var(--gold-glow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.svc-related-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE LAYOUT
   ═══════════════════════════════════════════ */
.about-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-feature {
    grid-template-columns: 5fr 7fr;
    gap: 4.5rem;
  }
}
.about-feature--reverse > *:first-child { order: 2; }
@media (min-width: 900px) {
  .about-feature--reverse > *:first-child { order: 0; }
}
.about-feature-image {
  aspect-ratio: 5/4;
  overflow: hidden;
  border: 1px solid var(--bg-line);
  position: relative;
}
.about-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.2) contrast(1.05);
  transition: transform 0.8s var(--ease);
}
.about-feature-image:hover img { transform: scale(1.04); filter: grayscale(0); }
.about-feature-text p {
  color: var(--text-soft);
  font-size: 1.04rem;
  line-height: 1.78;
  margin-bottom: 1.25rem;
}
.about-feature-text p strong { color: var(--text); font-weight: 700; }

/* Big number pull quote */
.pull-quote {
  position: relative;
  padding: 2rem 0;
  margin: 2rem 0;
  border-top: 1px solid rgba(232, 188, 64, 0.25);
  border-bottom: 1px solid rgba(232, 188, 64, 0.25);
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1.4;
  color: var(--text);
}
.pull-quote::before {
  content: '"';
  font-family: 'Fraunces', Georgia, serif;
  position: absolute;
  top: -1rem;
  left: -0.5rem;
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  font-weight: 400;
}

/* ═══════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════ */
.contact-meta-strip {
  background: var(--bg-surface);
  padding: 1.4rem 0;
  border-top: 1px solid rgba(232, 188, 64, 0.18);
  border-bottom: 1px solid rgba(232, 188, 64, 0.18);
}

/* ═══════════════════════════════════════════
   CITY (LOCATION) PAGE LAYOUT
   ═══════════════════════════════════════════ */
.city-summary {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .city-summary {
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
  }
}
.city-summary-text p {
  color: var(--text-soft);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.3rem;
}
.city-fact-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
}
.city-fact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 50px;
  height: 3px;
  background: var(--gold);
}
.city-fact-card h3 {
  font-family: 'Anton', sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.city-fact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.city-fact-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(232, 188, 64, 0.18);
  font-size: 0.92rem;
}
.city-fact-item:last-child { border-bottom: none; }
.city-fact-item-label {
  color: var(--text-muted);
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
}
.city-fact-item-value {
  color: var(--text);
  font-weight: 700;
  font-family: 'Anton', sans-serif;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: right;
}

.nearby-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.nearby-cities a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 600;
  transition: transform 0.3s var(--ease-fluid), color 0.2s, border-color 0.2s, background 0.2s;
}
.nearby-cities a:hover {
  border-color: rgba(232, 188, 64, 0.4);
  color: var(--gold);
  background: var(--bg-elevated);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   COUPONS / OFFERS
   ═══════════════════════════════════════════ */
.offer-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-line);
  padding: 2rem 1.85rem;
  position: relative;
  overflow: hidden;
}
.offer-card::before {
  content: '';
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 140px;
  height: 140px;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--gold) 0,
    var(--gold) 8px,
    transparent 8px,
    transparent 16px
  );
  opacity: 0.18;
  pointer-events: none;
  border-radius: 50%;
}
.offer-card-discount {
  font-family: 'Anton', sans-serif;
  font-size: 3.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.offer-card-title {
  font-family: 'Anton', sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
  margin-bottom: 0.5rem;
  line-height: 1.05;
}
.offer-card-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Compact city grid */
.compact-city-grid {
  columns: 2;
  column-gap: 1.5rem;
}
@media (min-width: 768px) { .compact-city-grid { columns: 3; } }
@media (min-width: 1024px) { .compact-city-grid { columns: 4; } }
.compact-city-grid a {
  display: block;
  padding: 0.55rem 0;
  font-size: 0.92rem;
  color: var(--text-muted);
  border-bottom: 1px dashed rgba(232, 188, 64, 0.16);
  transition: color 0.2s, padding-left 0.2s var(--ease);
  break-inside: avoid;
}
.compact-city-grid a:hover {
  color: var(--gold);
  padding-left: 0.4rem;
}
