/* ═══════════════════════════════════════════
   SmartersWeb Service Pages
   Root URLs: /web-design/, /seo-services/, etc.
═══════════════════════════════════════════ */

.service-hero-section { padding-top: 7rem; }
.service-hero-shell { overflow: hidden; }
.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);
  gap: 2rem;
  align-items: center;
}
.service-badge { margin-bottom: 1rem; }
.service-hero-title {
  font-size: clamp(2rem, 3.4vw + 0.85rem, 3.15rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
  color: var(--text-primary);
  max-width: 820px;
  margin-bottom: 0.85rem;
  animation: fadeUp 0.6s ease 0.08s both;
}
.service-hero-highlight {
  color: var(--blue-300);
  font-weight: 800;
  font-size: clamp(1.05rem, 1.2vw + 0.75rem, 1.35rem);
  line-height: 1.45;
  margin-bottom: 0.8rem;
  max-width: 720px;
  animation: fadeUp 0.6s ease 0.16s both;
}
.service-hero-intro {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 760px;
  line-height: 1.78;
  margin-bottom: 1.45rem;
  animation: fadeUp 0.6s ease 0.24s both;
}
.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  animation: fadeUp 0.6s ease 0.32s both;
}
.service-hero-panel {
  position: relative;
  padding: 1.35rem;
  border-radius: var(--r-xl);
  border: 1px solid rgba(96,165,250,0.24);
  background:
    radial-gradient(circle at top left, rgba(59,130,246,0.18), transparent 46%),
    linear-gradient(135deg, rgba(15,26,46,0.92), rgba(8,13,28,0.92));
  box-shadow: var(--shadow-card), var(--shadow-glow-blue);
}
.service-panel-kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--green-300);
  font-size: 0.68rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}
.service-panel-title {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.service-panel-list { display: grid; gap: 0.8rem; }
.service-panel-row {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 0.7rem;
  color: var(--text-secondary);
  font-size: 0.89rem;
  line-height: 1.55;
}
.service-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(34,197,94,0.14);
  border: 1px solid rgba(34,197,94,0.36);
  color: var(--green-300);
  font-weight: 900;
  font-size: 0.8rem;
}

.service-trust-strip { padding-top: 0; }
.service-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.service-stat {
  border: 1px solid var(--border-default);
  background: rgba(15,26,46,0.72);
  border-radius: var(--r-lg);
  padding: 1rem;
  box-shadow: 0 2px 18px rgba(0,0,0,0.18);
}
.service-stat strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.service-stat span {
  color: var(--text-muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.service-problem-grid { align-items: stretch; }
.service-side-card,
.service-list-card,
.service-deliverable-box {
  border: 1px solid var(--border-default);
  background:
    linear-gradient(180deg, rgba(17,29,53,0.82), rgba(10,17,34,0.78));
  border-radius: var(--r-xl);
  padding: 1.45rem;
  box-shadow: var(--shadow-card);
}
.service-list-card h3 {
  color: var(--text-primary);
  font-size: 1.08rem;
  margin-bottom: 0.95rem;
}
.service-check-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.7rem;
  align-items: start;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.65;
}
.service-check-list li span {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--blue-100);
  background: rgba(59,130,246,0.16);
  border: 1px solid rgba(59,130,246,0.35);
  font-weight: 900;
  line-height: 1;
}
.service-check-list--green li span {
  color: var(--green-300);
  background: rgba(34,197,94,0.13);
  border-color: rgba(34,197,94,0.35);
}
.service-check-list--blue li span {
  color: var(--blue-300);
  background: rgba(59,130,246,0.13);
  border-color: rgba(59,130,246,0.35);
}
.service-card { min-height: 100%; }
.service-card:hover,
.service-related-card:hover {
  border-color: rgba(96,165,250,0.42);
  transform: translateY(-2px);
}
.service-step-card .step-badge { margin-bottom: 0.75rem; }
.service-fit-grid { align-items: stretch; }
.service-deliverable-box {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr);
  gap: 1.6rem;
  align-items: center;
}
.service-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.service-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(96,165,250,0.26);
  background: rgba(59,130,246,0.08);
  color: var(--blue-100);
  font-weight: 700;
  font-size: 0.84rem;
  line-height: 1.3;
  padding: 0.65rem 0.85rem;
}
.service-related-card {
  display: block;
  transition: transform var(--t-med), border-color var(--t-med), background var(--t-med);
}
.service-related-link {
  display: inline-flex;
  margin-top: 0.9rem;
  color: var(--green-300);
  font-size: 0.84rem;
  font-weight: 800;
}
.service-final-cta { text-align: center; }

@media (max-width: 980px) {
  .service-hero-section { padding-top: 6.4rem; }
  .service-hero-grid,
  .service-deliverable-box { grid-template-columns: 1fr; }
  .service-hero-panel { max-width: 680px; }
  .service-stat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .service-hero-actions { flex-direction: column; align-items: stretch; }
  .service-hero-actions .btn { justify-content: center; }
  .service-side-card,
  .service-list-card,
  .service-deliverable-box { padding: 1.15rem; }
  .service-check-list li { grid-template-columns: 24px 1fr; gap: 0.6rem; }
  .service-check-list li span { width: 24px; height: 24px; font-size: 0.75rem; }
}

/* ═══════════════════════════════════════════
   Geo-aware regional service pages
   URLs: /web-design-duncan-bc/, /website-maintenance-canada/, etc.
═══════════════════════════════════════════ */
.geo-service-hero .service-hero-shell {
  position: relative;
}
.geo-service-hero .service-hero-shell::after {
  content: "";
  position: absolute;
  inset: auto 1.5rem 1.5rem auto;
  width: 170px;
  height: 170px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(34,197,94,0.14), transparent 65%);
  pointer-events: none;
}
.geo-location-panel {
  overflow: hidden;
}
.geo-location-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(34,197,94,0.12), transparent 42%),
    radial-gradient(circle at bottom right, rgba(96,165,250,0.16), transparent 48%);
  pointer-events: none;
}
.geo-location-panel > * {
  position: relative;
  z-index: 1;
}
.geo-location-copy {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.92rem;
  margin: 0 0 1rem;
}
.geo-location-list {
  padding-top: 0.8rem;
  border-top: 1px solid rgba(148,163,184,0.16);
}
.geo-market-strip .service-stat {
  min-height: 100%;
}
.geo-deliverable-box {
  background:
    radial-gradient(circle at top right, rgba(59,130,246,0.12), transparent 42%),
    linear-gradient(180deg, rgba(17,29,53,0.86), rgba(10,17,34,0.82));
}
.geo-related-card {
  border-color: rgba(34,197,94,0.22);
}
.geo-cta-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(96,165,250,0.22);
  background: rgba(15,23,42,0.45);
  color: var(--text-secondary);
  border-radius: 999px;
  font-size: 0.86rem;
  line-height: 1.5;
  padding: 0.65rem 0.95rem;
  margin: 0.15rem auto 1.1rem;
  max-width: 860px;
}
.nav-dropdown-label {
  display: block;
  padding: 0.55rem 0.95rem 0.28rem;
  color: var(--text-muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .geo-cta-note {
    border-radius: var(--r-lg);
    align-items: flex-start;
    text-align: left;
  }
}
