/* ============================================================
   SARKINEN PLUMBING — Component Design System
   ============================================================
   A polished, conversion-focused CSS component library for
   plumbing service pages. Blue (#003b73) conveys trust and
   professionalism; green (#28a745) signals action and go.

   Typography: system-native stack with tight tracking on
   headings for a premium, editorial feel.
   ============================================================ */

/* --- Theme Override: fix theme's img{z-index:-9999} that hides all images --- */
.sk-trust-bar img,
.sk-badge-row img,
.sk-service-grid img,
.sk-section-white img,
.sk-section-grey img,
.sk-section-blue-light img,
.testimonials-grid img,
.sk-why-grid img,
.sk-cta-block img,
.sk-nearby img,
.sk-area-grid img,
.page-img img {
  z-index: 1 !important;
  position: relative;
}

/* --- Problems Section — editorial/magazine style --- */
/* Distinct from the card-grid Why Choose section.
   Uses a stacked timeline-like layout with numbered markers
   and left-aligned readable text. Feels like an article, not cards. */
.sk-problems {
  max-width: 800px;
  margin: 32px auto 0;
  position: relative;
}
/* Vertical connecting line */
.sk-problems::before {
  content: '';
  position: absolute;
  left: 23px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--sk-blue), rgba(0,59,115,0.15));
  z-index: 0;
}
.sk-problem-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 32px 0;
  position: relative;
}
.sk-problem-item:last-child {
  padding-bottom: 0;
}
.sk-problem-marker {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: var(--sk-white);
  border: 3px solid var(--sk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  font-size: 18px;
  font-weight: 800;
  color: var(--sk-blue);
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.sk-problem-body {
  text-align: left;
  padding-top: 4px;
}
.sk-problem-body h3 {
  font-size: 19px;
  font-weight: 800;
  color: var(--sk-text);
  margin: 0 0 8px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.sk-problem-body p {
  font-size: 15px;
  font-weight: 400;
  color: var(--sk-text-light);
  line-height: 1.7;
  margin: 0;
  text-align: left;
}
@media (max-width: 768px) {
  .sk-problems::before {
    left: 19px;
  }
  .sk-problem-marker {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 15px;
  }
  .sk-problem-item {
    gap: 16px;
  }
}

/* --- Company Story section (Serving Since 2003) --- */
.sk-story {
  max-width: 860px;
  margin: 0 auto;
}
.sk-story-stats {
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0 0 32px 0;
  border-radius: var(--sk-radius);
  overflow: hidden;
  box-shadow: var(--sk-shadow-sm);
}
.sk-story-stat {
  flex: 1;
  text-align: center;
  padding: 24px 16px;
  background: var(--sk-white);
  border-right: 1px solid #eee;
}
.sk-story-stat:last-child {
  border-right: none;
}
.sk-story-stat .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--sk-blue);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.sk-story-stat .stat-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--sk-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 6px;
}
.sk-story-text {
  text-align: left;
}
.sk-story-text p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--sk-text);
  margin: 0 0 16px 0;
}
.sk-story-text p:last-child {
  margin-bottom: 0;
}
.sk-story-text strong {
  color: var(--sk-blue);
}
@media (max-width: 768px) {
  .sk-story-stats {
    flex-wrap: wrap;
  }
  .sk-story-stat {
    flex: 0 0 50%;
    border-bottom: 1px solid #eee;
  }
  .sk-story-stat .stat-number {
    font-size: 26px;
  }
}

/* --- Breadcrumbs --- */
.sk-breadcrumbs {
  padding: 12px 0 8px 0;
  font-size: 13px;
  color: var(--sk-text-light);
  line-height: 1.4;
}
.sk-breadcrumbs a {
  color: var(--sk-blue);
  text-decoration: none;
}
.sk-breadcrumbs a:hover {
  text-decoration: underline;
}
.sk-breadcrumbs .aioseo-breadcrumbs .aioseo-breadcrumb-separator {
  margin: 0 6px;
  color: #999;
}

/* --- Coupon section --- */
/* Coupons are now rendered by the page-services.php template at full width,
   identical to the homepage. No content-level coupon CSS needed. */

/* --- Content width constraint for text elements --- */
/* Template removed .wrapper, so inline text content needs max-width.
   Full-width sections (grey backgrounds, editorial, cta-block, hood-section)
   should NOT be constrained — they need full-width backgrounds. */
.body-contents > h2,
.body-contents > h3,
.body-contents > p,
.body-contents > .sml-call-bx,
.body-contents > .sk-callout,
.body-contents > .contact-wrap {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.body-contents > .contact-wrap {
  padding-left: 0;
  padding-right: 0;
}
/* Full-width section wrappers — no max-width, they contain their own inner constraints */
.body-contents > .sk-section-white,
.body-contents > .sk-section-grey,
.body-contents > .sk-section-blue-light {
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
}

/* --- Design Tokens --- */
:root {
  --sk-blue: #003b73;
  --sk-blue-dark: #00254a;
  --sk-blue-light: #e8f0fe;
  --sk-green: #28a745;
  --sk-green-dark: #0f9657;
  --sk-text: #333333;
  --sk-text-light: #666666;
  --sk-bg-grey: #f5f5f5;
  --sk-white: #ffffff;
  --sk-star: #f0ad4e;
  --sk-red: #dc3545;
  --sk-shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.06);
  --sk-shadow-md: 0 8px 30px rgba(0, 0, 0, 0.10);
  --sk-shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
  --sk-radius: 12px;
  --sk-radius-sm: 8px;
  --sk-radius-pill: 20px;
  --sk-transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* ============================================================
   0. SECTION WRAPPERS
   ============================================================ */
.sk-section-white {
  background: var(--sk-white);
  padding: 60px 20px;
}
.sk-section-grey {
  background: var(--sk-bg-grey);
  padding: 60px 20px;
}
.sk-section-blue-light {
  background: var(--sk-blue-light);
  padding: 60px 20px;
}
.sk-section-white .sk-container,
.sk-section-grey .sk-container,
.sk-section-blue-light .sk-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Universal section headings */
.sk-section-white h2,
.sk-section-grey h2,
.sk-section-blue-light h2,
.sk-cta-block h2,
.sk-nearby h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--sk-text);
  text-align: center;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}
.sk-cta-block h2 {
  color: var(--sk-white);
}

/* Override theme's h2:after separator in our sections */
.sk-section-white h2:after,
.sk-section-grey h2:after,
.sk-section-blue-light h2:after,
.sk-cta-block h2:after,
.sk-nearby h2:after,
.sk-badge-row + h2:after,
.testimonials-grid + h2:after {
  content: none !important;
  display: none !important;
}

/* Override theme's h3 styles within our components */
.sk-card-body h3,
.sk-why-card h3,
.sk-step h3,
.sk-neighborhood strong {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Section subtitles */
.sk-section-subtitle {
  font-size: 17px;
  font-weight: 400;
  color: var(--sk-text-light);
  text-align: center;
  max-width: 660px;
  margin: 0 auto 40px auto;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .sk-section-white,
  .sk-section-grey,
  .sk-section-blue-light {
    padding: 40px 16px;
  }
  .sk-section-white h2,
  .sk-section-grey h2,
  .sk-section-blue-light h2,
  .sk-cta-block h2,
  .sk-nearby h2 {
    font-size: 26px;
  }
  .sk-section-subtitle {
    font-size: 15px;
    margin-bottom: 28px;
  }
}


/* ============================================================
   1. TRUST BAR  —  sk-trust-bar
   Stats strip conveying credibility at a glance.
   ============================================================ */
.sk-trust-bar {
  background: var(--sk-blue);
  padding: 24px 20px;
  display: flex;
  justify-content: center;
  gap: 0;
}
.sk-trust-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 1100px;
  width: 100%;
}
.sk-trust-item {
  text-align: center;
  flex: 1;
  padding: 4px 12px;
  position: relative;
}
/* Subtle divider between items */
.sk-trust-item + .sk-trust-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.18);
}
.sk-trust-num {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--sk-white);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.sk-trust-label {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .sk-trust-bar-inner {
    flex-wrap: wrap;
  }
  .sk-trust-item {
    flex: 0 0 50%;
    padding: 10px 8px;
  }
  /* Remove vertical divider on mobile, add a subtle bottom border */
  .sk-trust-item + .sk-trust-item::before {
    display: none;
  }
  .sk-trust-num {
    font-size: 24px;
  }
  .sk-trust-label {
    font-size: 11px;
  }
}


/* ============================================================
   2. BADGE ROW  —  sk-badge-row
   Award / certification badge strip.
   ============================================================ */
.sk-badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 24px 20px;
}
.sk-badge {
  height: 100px !important;
  min-height: 100px !important;
  width: auto !important;
  opacity: 1;
  transition: var(--sk-transition);
  filter: none;
  max-width: 140px;
  z-index: 1 !important;
  position: relative;
}
.sk-badge:hover {
  transform: scale(1.08);
  filter: drop-shadow(0 4px 8px rgba(0,59,115,0.2));
}

@media (max-width: 768px) {
  .sk-badge-row {
    gap: 16px;
  }
  .sk-badge {
    height: 75px !important;
    min-height: 75px !important;
    max-width: 100px;
  }
}


/* ============================================================
   3. SERVICE GRID  —  sk-service-grid
   Clickable card grid for service listings.
   ============================================================ */
.sk-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sk-service-card {
  display: flex;
  flex-direction: column;
  background: var(--sk-white);
  border-radius: var(--sk-radius);
  box-shadow: var(--sk-shadow-sm);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: var(--sk-transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.sk-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sk-shadow-md);
  border-color: rgba(0, 59, 115, 0.12);
}
.sk-service-card:hover .sk-card-link {
  gap: 10px;
}
.sk-card-img {
  width: 100% !important;
  height: 180px !important;
  object-fit: cover !important;
  display: block;
  border-radius: var(--sk-radius) var(--sk-radius) 0 0;
  z-index: 1 !important;
  position: relative;
}
.sk-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.sk-card-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--sk-text);
  margin: 0 0 10px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.sk-card-body p {
  font-size: 15px;
  font-weight: 400;
  color: var(--sk-text-light);
  line-height: 1.6;
  margin: 0 0 16px 0;
  flex-grow: 1;
}
.sk-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--sk-green);
  font-weight: 600;
  font-size: 15px;
  transition: var(--sk-transition);
}
.sk-card-link::after {
  content: '\2192';
  font-size: 16px;
  transition: var(--sk-transition);
}

/* Emergency card variant — red-orange left border to visually prioritize */
.sk-service-emergency {
  border-left: 4px solid #e74c3c;
}
.sk-service-emergency .sk-card-body h3 {
  color: var(--sk-blue);
  font-weight: 800;
}

@media (max-width: 768px) {
  .sk-service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .sk-card-img {
    height: 160px !important;
  }
  .sk-card-body {
    padding: 20px;
  }
}


/* ============================================================
   4. TESTIMONIALS GRID  —  testimonials-grid / testimonial
   Review cards with alternating brand-color left borders.
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--sk-white);
  padding: 28px;
  border-radius: var(--sk-radius);
  box-shadow: var(--sk-shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: var(--sk-transition);
  position: relative;
}
.testimonial:hover {
  box-shadow: var(--sk-shadow-md);
  transform: translateY(-2px);
}
/* Alternating left border colors */
.testimonial:nth-child(odd) {
  border-left: 4px solid var(--sk-blue);
}
.testimonial:nth-child(even) {
  border-left: 4px solid var(--sk-green);
}
.testimonial .stars {
  color: var(--sk-star);
  font-size: 20px;
  margin-bottom: 12px;
  letter-spacing: 2px;
  line-height: 1;
}
.testimonial .review-text {
  font-size: 16px;
  font-style: italic;
  line-height: 1.6;
  color: var(--sk-text);
  margin: 0 0 16px 0;
}
.testimonial .reviewer-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .reviewer-photo {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
  z-index: 1 !important;
  position: relative;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--sk-bg-grey);
}
.testimonial .reviewer-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--sk-text-light);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonial {
    padding: 22px;
  }
  .testimonial .review-text {
    font-size: 15px;
  }
}


/* ============================================================
   5. WHY CHOOSE US GRID  —  sk-why-grid
   Centered cards with prominent icons — clean, authoritative.
   ============================================================ */
.sk-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sk-why-card {
  background: var(--sk-white);
  padding: 36px 28px 32px;
  border-radius: var(--sk-radius);
  text-align: center;
  transition: var(--sk-transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.04);
  position: relative;
}
.sk-why-card:hover {
  box-shadow: var(--sk-shadow-md);
  transform: translateY(-4px);
  border-color: var(--sk-blue);
}
.sk-why-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--sk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,59,115,0.25);
}
.sk-why-icon i,
.sk-why-icon .fa,
.sk-why-icon .fas,
.sk-why-icon .far,
.sk-why-icon .fab {
  font-size: 30px;
  color: var(--sk-white);
}
.sk-why-card h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--sk-blue);
  margin: 0 0 10px 0;
  letter-spacing: 0.02em;
}
.sk-why-card p {
  font-size: 14px;
  font-weight: 400;
  color: var(--sk-text-light);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) {
  .sk-why-grid {
    grid-template-columns: 1fr;
  }
  .sk-why-card {
    padding: 28px 24px;
  }
  .sk-why-icon {
    width: 64px;
    height: 64px;
  }
  .sk-why-icon i,
  .sk-why-icon .fa,
  .sk-why-icon .fas {
    font-size: 26px;
  }
}


/* ============================================================
   6. PROCESS STEPS  —  sk-process
   Horizontal step flow with numbered circles and connectors.
   ============================================================ */
.sk-process {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  position: relative;
}
.sk-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 12px;
}
/* Connecting line between step circles */
.sk-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px; /* vertically center on the 64px circle */
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: var(--sk-blue);
  opacity: 0.2;
}
.sk-step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--sk-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 14px rgba(0, 59, 115, 0.25);
}
.sk-step-num i,
.sk-step-num .fa,
.sk-step-num .fas {
  font-size: 28px;
  color: var(--sk-white);
}
/* Fallback: if no icon, show text numeral */
.sk-step-num span {
  font-size: 24px;
  font-weight: 800;
  color: var(--sk-white);
}
.sk-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--sk-text);
  margin: 0 0 6px 0;
}
.sk-step p {
  font-size: 14px;
  font-weight: 400;
  color: var(--sk-text-light);
  line-height: 1.5;
  margin: 0;
  max-width: 200px;
}

@media (max-width: 768px) {
  .sk-process {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .sk-step {
    padding: 0;
  }
  /* Vertical connector on mobile */
  .sk-step:not(:last-child)::after {
    top: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 32px;
  }
  .sk-step p {
    max-width: 280px;
  }
}


/* --- Neighborhood Map + Flanking Lists --- */
.sk-hood-section {
  text-align: center;
  padding: 40px 20px;
  max-width: 1300px;
  margin: 0 auto;
}
.sk-hood-card {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: var(--sk-white);
  border-radius: var(--sk-radius);
  box-shadow: var(--sk-shadow-sm);
  overflow: hidden;
  margin-top: 24px;
}
.sk-hood-col {
  flex: 0 0 220px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.sk-hood-map {
  flex: 1;
  min-height: 350px;
}
.sk-hood-map iframe {
  display: block;
  width: 100% !important;
  height: 100% !important;
  min-height: 350px;
  border: none;
}
.sk-hood-item {
  padding: 5px 0;
  font-size: 14px;
  color: var(--sk-text);
  text-align: left;
  white-space: nowrap;
}
.sk-hood-item i {
  color: var(--sk-green);
  margin-right: 6px;
  font-size: 13px;
}
@media (max-width: 768px) {
  .sk-hood-card {
    flex-direction: column;
  }
  .sk-hood-col {
    flex: none;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 12px 16px;
  }
  .sk-hood-item {
    flex: 0 0 50%;
  }
  .sk-hood-map {
    min-height: 250px;
  }
}

/* --- Neighborhood Map + Described Lists (homepage variant) --- */
.sk-hood-section--described .sk-hood-card {
  align-items: stretch;
}
.sk-hood-section--described .sk-hood-col {
  flex: 1;
  padding: 24px 20px;
  gap: 16px;
}
.sk-hood-section--described .sk-hood-map {
  flex: 0 0 480px;
  min-height: 400px;
}
.sk-hood-section--described .sk-hood-entry {
  text-align: left;
}
.sk-hood-section--described .sk-hood-entry strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--sk-blue);
  margin-bottom: 4px;
}
.sk-hood-section--described .sk-hood-entry strong i {
  color: var(--sk-green);
  margin-right: 6px;
  font-size: 13px;
}
.sk-hood-section--described .sk-hood-entry span {
  display: block;
  font-size: 13.5px;
  color: var(--sk-text-light);
  line-height: 1.5;
}
@media (max-width: 768px) {
  .sk-hood-section--described .sk-hood-card {
    flex-direction: column;
  }
  .sk-hood-section--described .sk-hood-col {
    flex: none;
  }
  .sk-hood-section--described .sk-hood-map {
    flex: none;
    min-height: 250px;
  }
}

/* --- Callout Box — replaces theme's sml-call-bx which has ugly ALL-CAPS styling --- */
.sk-callout {
  max-width: 1100px;
  margin: 32px auto;
  padding: 28px 32px;
  background: var(--sk-blue);
  border-radius: var(--sk-radius);
  text-align: center;
  color: var(--sk-white);
}
.sk-callout-text {
  font-size: 17px !important;
  font-weight: 500 !important;
  font-style: normal !important;
  text-transform: none !important;
  line-height: 1.6 !important;
  color: var(--sk-white) !important;
  letter-spacing: 0 !important;
  margin-bottom: 12px;
}
.sk-callout-text h2 {
  font-size: 22px !important;
  font-weight: 800 !important;
  font-style: normal !important;
  text-transform: none !important;
  color: var(--sk-white) !important;
  margin: 0 0 8px 0 !important;
  letter-spacing: -0.01em !important;
}
.sk-callout-text p {
  font-size: 15px !important;
  font-weight: 400 !important;
  font-style: normal !important;
  text-transform: none !important;
  color: rgba(255,255,255,0.9) !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}
.sk-callout-text strong {
  font-style: normal !important;
  text-transform: none !important;
}
.sk-callout-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--sk-white);
  color: var(--sk-blue) !important;
  font-size: 18px;
  font-weight: 700;
  border-radius: var(--sk-radius-sm);
  text-decoration: none !important;
  transition: var(--sk-transition);
  margin-top: 4px;
}
.sk-callout-phone:hover {
  background: var(--sk-green);
  color: var(--sk-white) !important;
  transform: translateY(-2px);
}
.sk-callout-phone i {
  font-size: 16px;
}

/* --- Constrain service circles to match production site size (~230px) --- */
.services-sec ul li .circles {
  max-width: 230px !important;
  max-height: 230px !important;
}
.services-sec ul li {
  max-width: 260px !important;
}

/* --- Reduce gap between consecutive grey sections (reviews → why choose) --- */
.sk-section-grey + .sk-section-grey {
  padding-top: 20px !important;
}

/* --- Cross-Links Bar — horizontal service links for city/service pages --- */
.sk-cross-links {
  background: var(--sk-bg-grey);
  padding: 32px 20px;
  text-align: center;
}
.sk-cross-links h3 {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: var(--sk-text) !important;
  margin: 0 0 16px 0 !important;
  text-transform: none !important;
  font-style: normal !important;
}
.sk-cross-links-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 16px;
}
.sk-cross-link {
  font-size: 15px;
  font-weight: 600;
  color: var(--sk-blue);
  text-decoration: none;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: var(--sk-transition);
}
.sk-cross-link:hover {
  color: var(--sk-green);
  border-bottom-color: var(--sk-green);
}
.sk-cross-links-meta {
  font-size: 13px;
  color: var(--sk-text-light);
}
.sk-cross-links-meta a {
  color: var(--sk-text-light);
  text-decoration: none;
  transition: var(--sk-transition);
}
.sk-cross-links-meta a:hover {
  color: var(--sk-blue);
  text-decoration: underline;
}
.sk-cross-links-meta span {
  margin: 0 8px;
  color: #ccc;
}

/* --- Service Area Map — city link variant --- */
.sk-hood-section--service-area .sk-hood-col {
  gap: 2px;
  display: flex;
  flex-direction: column;
}
.sk-hood-section--service-area .sk-area-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 16px;
}
.sk-area-link {
  display: block;
  text-align: left;
  padding: 3px 0;
  font-size: 13px;
  font-weight: 500;
  color: var(--sk-blue);
  text-decoration: none;
  transition: var(--sk-transition);
  white-space: nowrap;
}
.sk-area-link:hover {
  color: var(--sk-green);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .sk-hood-section--service-area .sk-area-links {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   7. NEIGHBORHOODS  —  sk-neighborhoods (legacy card format)
   Clean card grid — white cards, subtle shadow, left-aligned.
   ============================================================ */
.sk-neighborhoods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sk-neighborhood {
  padding: 20px;
  background: var(--sk-white);
  border-radius: var(--sk-radius);
  transition: var(--sk-transition);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  text-align: left;
}
.sk-neighborhood:hover {
  box-shadow: var(--sk-shadow-sm);
  transform: translateY(-2px);
  border-color: var(--sk-blue);
}
.sk-neighborhood strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 800;
  color: var(--sk-blue);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.sk-neighborhood strong i {
  color: var(--sk-green);
  font-size: 14px;
}
.sk-neighborhood span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--sk-text-light);
  line-height: 1.55;
  text-align: left;
}

@media (max-width: 1024px) {
  .sk-neighborhoods {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .sk-neighborhoods {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}


/* ============================================================
   8. CTA BLOCK  —  sk-cta-block
   Full-width conversion section with gradient overlay.
   ============================================================ */
.sk-cta-block {
  background: linear-gradient(135deg, #003b73 0%, #00254a 100%);
  color: var(--sk-white);
  text-align: center;
  padding: 56px 20px;
  position: relative;
  overflow: hidden;
}
/* Subtle texture overlay */
.sk-cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="60" height="60"><rect width="60" height="60" fill="none"/><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.04)"/></svg>') repeat;
  pointer-events: none;
}
.sk-cta-block > * {
  position: relative;
  z-index: 1;
}
.sk-cta-block h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 12px 0;
  letter-spacing: -0.02em;
}
.sk-cta-block p {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 28px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.sk-cta-block .contact-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sk-cta-block .contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--sk-radius-sm);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--sk-transition);
  cursor: pointer;
}
/* Primary CTA button — green, high contrast */
.sk-cta-block .contact-btn:first-child {
  background: var(--sk-green);
  color: var(--sk-white);
  box-shadow: 0 4px 16px rgba(40, 167, 69, 0.35);
}
.sk-cta-block .contact-btn:first-child:hover {
  background: var(--sk-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(40, 167, 69, 0.4);
}
/* Secondary CTA buttons — white outline */
.sk-cta-block .contact-btn:not(:first-child) {
  background: transparent;
  color: var(--sk-white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}
.sk-cta-block .contact-btn:not(:first-child):hover {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .sk-cta-block {
    padding: 40px 16px;
  }
  .sk-cta-block h2 {
    font-size: 26px;
  }
  .sk-cta-block p {
    font-size: 16px;
  }
  .sk-cta-block .contact-wrap {
    flex-direction: column;
    align-items: center;
  }
  .sk-cta-block .contact-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
}


/* ============================================================
   9. NEARBY CITIES  —  sk-nearby
   Pill-style links to related city pages.
   ============================================================ */
.sk-nearby {
  background: var(--sk-bg-grey);
  padding: 48px 20px;
  text-align: center;
}
.sk-nearby h2 {
  margin-bottom: 24px;
}
.sk-nearby-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}
.sk-nearby-links a {
  display: inline-block;
  padding: 10px 20px;
  border: 1px solid #d1d5db;
  border-radius: var(--sk-radius-pill);
  text-decoration: none;
  color: var(--sk-text);
  background: var(--sk-white);
  font-size: 15px;
  font-weight: 500;
  transition: var(--sk-transition);
}
.sk-nearby-links a:hover {
  border-color: var(--sk-green);
  color: var(--sk-green);
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.12);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .sk-nearby {
    padding: 36px 16px;
  }
  .sk-nearby-links a {
    font-size: 14px;
    padding: 8px 16px;
  }
}


/* ============================================================
   10. AREA GRID  —  sk-area-grid
   Compact grid of linked service area locations.
   ============================================================ */
.sk-area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sk-area-grid a {
  display: block;
  padding: 14px 12px;
  border: 1px solid #e5e7eb;
  border-radius: var(--sk-radius-sm);
  text-align: center;
  text-decoration: none;
  color: var(--sk-text);
  font-size: 15px;
  font-weight: 500;
  background: var(--sk-white);
  transition: var(--sk-transition);
}
.sk-area-grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--sk-shadow-sm);
  border-color: var(--sk-green);
  color: var(--sk-green);
}

@media (max-width: 1024px) {
  .sk-area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .sk-area-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .sk-area-grid a {
    font-size: 14px;
    padding: 12px 8px;
  }
}


/* ============================================================
   11. COUPONS  —  sk-coupons
   Dashed-border promotional coupon cards.
   ============================================================ */
.sk-coupons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.sk-coupon {
  border: 2px dashed var(--sk-blue);
  border-radius: var(--sk-radius);
  padding: 28px 24px;
  text-align: center;
  background: var(--sk-white);
  min-width: 200px;
  max-width: 280px;
  flex: 1;
  transition: var(--sk-transition);
  position: relative;
  overflow: hidden;
}
/* Subtle corner ribbon effect */
.sk-coupon::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, transparent 50%, var(--sk-blue-light) 50%);
  pointer-events: none;
}
.sk-coupon:hover {
  border-color: var(--sk-green);
  box-shadow: var(--sk-shadow-sm);
  transform: translateY(-2px);
}
.sk-coupon-amount {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--sk-blue);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.sk-coupon-desc {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--sk-text);
  margin-top: 8px;
  line-height: 1.4;
}
.sk-coupon-terms {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--sk-text-light);
  margin-top: 8px;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .sk-coupons {
    flex-direction: column;
    align-items: center;
  }
  .sk-coupon {
    width: 100%;
    max-width: 320px;
  }
}


/* ============================================================
   CONTACT WRAP (shared CTA bar, used throughout)
   ============================================================ */
.contact-wrap {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--sk-radius-sm);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  transition: var(--sk-transition);
  cursor: pointer;
  background: var(--sk-green);
  color: var(--sk-white) !important;
  box-shadow: 0 4px 14px rgba(40, 167, 69, 0.25);
}
.contact-btn:hover {
  background: var(--sk-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.35);
}
/* Alternate style for secondary buttons */
.contact-btn.contact-btn-outline {
  background: transparent;
  color: var(--sk-blue) !important;
  border: 2px solid var(--sk-blue);
  box-shadow: none;
}
.contact-btn.contact-btn-outline:hover {
  background: var(--sk-blue);
  color: var(--sk-white) !important;
}

@media (max-width: 768px) {
  .contact-wrap {
    flex-direction: column;
    align-items: center;
  }
  .contact-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
    font-size: 15px;
    padding: 12px 24px;
  }
}


/* ============================================================
   FAQ SECTION STYLING (schema-rich accordions)
   ============================================================ */
.sk-faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.sk-faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.sk-faq-item:first-child {
  border-top: 1px solid #e5e7eb;
}
.sk-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
  color: var(--sk-text);
  line-height: 1.4;
  gap: 16px;
  user-select: none;
}
.sk-faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 700;
  color: var(--sk-blue);
  flex-shrink: 0;
  transition: var(--sk-transition);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sk-blue-light);
}
.sk-faq-item.open .sk-faq-q::after {
  content: '\2212'; /* minus sign */
  background: var(--sk-blue);
  color: var(--sk-white);
}
.sk-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.35s ease;
  padding: 0 0 0 0;
}
.sk-faq-item.open .sk-faq-a {
  max-height: 500px;
  padding: 0 0 20px 0;
}
.sk-faq-a p {
  font-size: 15px;
  color: var(--sk-text-light);
  line-height: 1.7;
  margin: 0;
}


/* ============================================================
   EDITORIAL CONTENT — alternating text+image blocks
   Magazine-style layout with H3 headings, body copy, and
   contextual photos. Blocks alternate image left/right.
   ============================================================ */
.sk-editorial {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.sk-editorial-block {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid #eaeaea;
}
.sk-editorial-block:last-child {
  border-bottom: none;
}
/* Alternate direction: even blocks flip image to right */
.sk-editorial-block:nth-child(even) {
  flex-direction: row-reverse;
}
.sk-editorial-text {
  flex: 1;
  min-width: 0;
}
.sk-editorial-text h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--sk-text);
  margin: 0 0 12px 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.sk-editorial-text p {
  font-size: 15.5px;
  font-weight: 400;
  color: var(--sk-text-light);
  line-height: 1.75;
  margin: 0 0 14px 0;
  text-align: left;
}
.sk-editorial-text p:last-child {
  margin-bottom: 0;
}
.sk-editorial-img {
  flex: 0 0 380px;
  max-width: 380px;
}
.sk-editorial-img img {
  width: 100%;
  height: auto;
  border-radius: var(--sk-radius);
  box-shadow: var(--sk-shadow-md);
  z-index: 1 !important;
  position: relative;
}
/* Subtle blue accent bar on image side */
.sk-editorial-block:nth-child(odd) .sk-editorial-img {
  border-left: 4px solid var(--sk-blue);
  padding-left: 16px;
}
.sk-editorial-block:nth-child(even) .sk-editorial-img {
  border-right: 4px solid var(--sk-blue);
  padding-right: 16px;
}
/* Inline CTA within editorial text */
.sk-editorial-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sk-blue);
  text-decoration: none;
  transition: var(--sk-transition);
}
.sk-editorial-cta:hover {
  color: var(--sk-green);
}
.sk-editorial-cta i {
  font-size: 13px;
  transition: transform 0.2s ease;
}
.sk-editorial-cta:hover i {
  transform: translateX(3px);
}

@media (max-width: 768px) {
  .sk-editorial-block,
  .sk-editorial-block:nth-child(even) {
    flex-direction: column;
    gap: 24px;
    padding: 32px 0;
  }
  .sk-editorial-img {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
  .sk-editorial-block:nth-child(odd) .sk-editorial-img,
  .sk-editorial-block:nth-child(even) .sk-editorial-img {
    border-left: none;
    border-right: none;
    padding-left: 0;
    padding-right: 0;
    border-top: 4px solid var(--sk-blue);
    padding-top: 16px;
  }
  .sk-editorial-text h3 {
    font-size: 20px;
  }
}


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.sk-container {
  max-width: 1100px;
  margin: 0 auto;
}
.sk-text-center { text-align: center; }
.sk-mt-0 { margin-top: 0; }
.sk-mb-0 { margin-bottom: 0; }
.sk-mb-24 { margin-bottom: 24px; }
.sk-mb-40 { margin-bottom: 40px; }


/* ============================================================
   THEME OVERRIDES
   Sarkinen theme (Fira Sans, uppercase headings) applies
   global styles that need targeted overrides for our
   component system to render correctly.
   ============================================================ */

/* Override theme .contact-btn { width: 30%; min-width: 300px; display: inline-block } */
.contact-btn,
.contact-btn:visited,
.contact-btn:hover,
.sk-cta-block .contact-btn,
a.contact-btn,
div.contact-wrap > a.contact-btn {
  display: inline-flex !important;
  width: auto !important;
  min-width: 0 !important;
  flex: 0 0 auto !important;
}

/* Theme decorative quote marks on sections — hide inside our components */
.sk-section-white .pg-conts::before,
.sk-section-white .pg-conts::after,
.sk-section-grey .pg-conts::before,
.sk-section-grey .pg-conts::after,
.sk-section-blue-light .pg-conts::before,
.sk-section-blue-light .pg-conts::after {
  display: none !important;
}

/* Override theme link colors within our cards */
.sk-service-card,
.sk-service-card:visited,
.sk-service-card:hover {
  color: inherit;
  text-decoration: none;
}

/* Override theme list styles inside our components */
.sk-neighborhoods ul,
.sk-why-grid ul,
.sk-process ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Parallax divider — branded Sarkinen worker photo */
div.page-parallax,
div#page-parallax-1 {
  background-image: url("/wp-content/uploads/2026/03/sarkinen-parallax-branded-scaled.jpg") !important;
  min-height: 300px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 20px;
}
