/* ============================================================
   PIYUSH608 — CITY & SERVICE PAGES DESIGN SYSTEM  v6.0
   Changes v6:
   - Hero right col = professional image (form removed)
   - City stats strip below hero
   - Reduced section spacing (52px → 28px)
   - Related services backlinks grid
   - SEO intro section styles
   - Hero image wrap + overlay + floating badges
   Color Hierarchy:
   Primary            : #010948  Deep Navy
   Primary hover      : #0F1F6E  Mid-Navy
   Primary light bg   : #EEF0F8
   Accent (sparingly) : #E8192C  Red
   Accent partner     : #F27334  Orange
   ============================================================ */

/* ── CITY HERO ──────────────────────────────────────────── */
.city-hero {
  background: linear-gradient(135deg,#010948 0%,#0F1F6E 55%,#1a2f8a 100%);
  padding: 48px 0 44px;
  position: relative; overflow: hidden;
}
.city-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.city-hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,#E8192C,#F27334,#E8192C);
}
.city-hero__inner { position: relative; z-index: 2; }

.city-hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.10); backdrop-filter: blur(8px);
  color: rgba(255,255,255,.85); font-size: .78rem; font-weight: 700;
  padding: 6px 16px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,.18);
  margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase;
}
.city-hero__badge i { color: #F27334; }

.city-hero__title {
  font-size: clamp(1.75rem,3.8vw,2.9rem); font-weight: 800;
  color: #fff; line-height: 1.15; margin-bottom: 14px;
  font-family: 'Poppins','Inter',sans-serif;
}
.city-hero__title .highlight {
  background: linear-gradient(90deg,#F27334,#E8192C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.city-hero__desc {
  font-size: .95rem; color: rgba(255,255,255,.78);
  line-height: 1.75; margin-bottom: 16px; max-width: 540px;
}

/* Trust pills */
.city-hero__pills { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.city-hero__pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px; padding: 4px 12px;
  font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.9);
}
.city-hero__pill i { color: #4ade80; font-size: .72rem; }

.city-hero__actions { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }

.city-hero__stats {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12);
}
.city-hero__stat-n { font-size: 1.45rem; font-weight: 800; color: #fff; line-height: 1; }
.city-hero__stat-l { font-size: .7rem; color: rgba(255,255,255,.55); margin-top: 2px; }
.city-hero__stat-sep { width: 1px; height: 32px; background: rgba(255,255,255,.18); margin: 0 18px; }

/* ── HERO VISUAL (image, NO form) ──────────────────────── */
.city-hero__visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  padding-bottom: 28px;          /* room for delivered ribbon */
}

/* Image wrapper */
.city-hero__img-wrap {
  position: relative; width: 100%; max-width: 500px;
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  border: 2px solid rgba(255,255,255,.12);
  aspect-ratio: 4/3;
}
.city-hero__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 18px;
}
/* Subtle dark-bottom overlay for text contrast */
.city-hero__img-overlay {
  position: absolute; inset: 0; border-radius: 18px;
  background: linear-gradient(180deg,transparent 55%,rgba(1,9,72,.45) 100%);
  pointer-events: none;
}

/* Floating stat badges */
.city-hero__float {
  position: absolute; background: #fff; border-radius: 12px;
  padding: 9px 13px; display: flex; align-items: center; gap: 9px;
  box-shadow: 0 8px 28px rgba(0,0,0,.18);
  animation: chfloat 3s ease-in-out infinite; min-width: 130px;
  z-index: 3;
}
.city-hero__float--tl { top: 18px; left: -16px; animation-delay: 0s; }
.city-hero__float--br { bottom: 46px; right: -16px; animation-delay: 1.5s; }
@keyframes chfloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.chf-icon {
  width: 34px; height: 34px; border-radius: 8px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: #EEF0F8;
}
.chf-icon i { color: #010948; font-size: .82rem; }
.chf-icon--green { background: rgba(16,185,129,.1); }
.chf-icon--green i { color: #10b981; }
.chf-val { font-size: .86rem; font-weight: 800; color: #010948; line-height: 1; }
.chf-lab { font-size: .65rem; color: #64748b; margin-top: 2px; }

/* Delivered ribbon */
.city-hero__delivered {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  background: #010948; color: #fff; border-radius: 50px 50px 0 0;
  padding: 6px 20px; font-size: .73rem; font-weight: 700;
  display: flex; align-items: center; gap: 5px; white-space: nowrap;
  box-shadow: 0 -4px 14px rgba(1,9,72,.3); z-index: 3;
}
.city-hero__delivered i { color: #F27334; }

/* ── BREADCRUMB ─────────────────────────────────────────── */
.city-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  padding-left: 0px;
  font-size: .8rem; flex-wrap: wrap; margin-bottom: 18px;
}
.city-breadcrumb a       { color: rgba(255,255,255,.65); text-decoration: none; }
.city-breadcrumb a:hover { color: #fff; }
.city-breadcrumb .sep    { color: rgba(255,255,255,.35); }
.city-breadcrumb .cur    { color: #fff; font-weight: 600; }

/* ── CITY STATS STRIP (below hero) ─────────────────────── */
.city-stats-strip {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 16px rgba(1,9,72,.07);
}
.city-stats-strip__inner {
  display: flex; align-items: center; justify-content: space-around;
  flex-wrap: wrap; gap: 0; padding: 0;
}
.city-stats-strip__item {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 24px; border-right: 1px solid #f1f5f9;
  flex: 1; min-width: 130px; text-align: center;
}
.city-stats-strip__item:last-child { border-right: none; }
.css-icon {
  width: 36px; height: 36px; border-radius: 8px; background: #EEF0F8;
  display: flex; align-items: center; justify-content: center; margin-bottom: 6px;
}
.css-icon i { color: #010948; font-size: .88rem; }
.css-num { font-size: 1.25rem; font-weight: 800; color: #010948; line-height: 1; }
.css-lbl { font-size: .72rem; color: #64748b; margin-top: 3px; font-weight: 500; }

/* ── MAIN CONTENT LAYOUT ────────────────────────────────── */
.city-page-wrap { padding-top: 36px; padding-bottom: 52px; }

/* ── UNIFIED SECTION SPACING ────────────────────────────── */
/* Every section inside the city page gets consistent tight spacing */
.city-sec {
  margin-bottom: 28px;
  padding: 28px 24px;
  background: #f6fdff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}
.city-sec--bg {
  background: #f6fdff;
  border-color: #f1f5f9;
}

/* ── SECTION TITLES ─────────────────────────────────────── */
.city-sec-title { margin-bottom: 20px; }
.city-sec-title .ctag {
  display: inline-flex; align-items: center; gap: 6px;
  background: #EEF0F8; color: #010948;
  font-size: .72rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px; margin-bottom: 10px;
  letter-spacing: .05em; text-transform: uppercase;
  border: 1px solid rgba(1,9,72,.12);
}
.city-sec-title h2 {
  font-size: clamp(1.2rem,2.3vw,1.75rem); font-weight: 700;
  color: #010948; margin-bottom: 8px; line-height: 1.25;
}
.city-sec-title p { font-size: .9rem; color: #64748b; line-height: 1.7; max-width: 600px; margin: 0; }
.city-sec-title .cdiv {
  width: 40px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg,#E8192C,#F27334);
  margin: 8px 0 10px;
}

/* ── SEO INTRO SECTION ──────────────────────────────────── */
.city-intro-content p {
  font-size: .9rem; color: #374151; line-height: 1.8;
  margin-bottom: 12px;
}
.city-intro-content p:last-child { margin-bottom: 0; }

.city-intro-content h3{
    font-size: 1.5rem;
    font-weight: 600;
    color: #010948;
}
.city-intro-content h2{
    font-size: clamp(1.2rem, 2.3vw, 1.75rem);
    font-weight: 700;
    color: #010948;
}
/* ── SERVICE CARDS ──────────────────────────────────────── */
.city-service-card {
  background: #fff; border-radius: 12px; border: 1px solid #e2e8f0;
  padding: 20px 18px; transition: .3s; position: relative;
  overflow: hidden; height: 100%;
}
.city-service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,#010948,#0F1F6E);
}
.city-service-card:hover {
  transform: translateY(-4px); box-shadow: 0 12px 32px rgba(1,9,72,.1);
  border-color: #010948;
}
.city-service-card__icon {
  width: 46px; height: 46px; border-radius: 10px; background: #EEF0F8;
  display: flex; align-items: center; justify-content: center; margin-bottom: 12px;
}
.city-service-card__icon i { color: #010948; font-size: 1.1rem; }
.city-service-card h3,
.city-service-card h4 { font-size: .9rem; font-weight: 700; color: #010948; margin-bottom: 6px; }
.city-service-card p  { font-size: .82rem; color: #64748b; line-height: 1.6; margin: 0; }

/* ── WHY-US ─────────────────────────────────────────────── */
.why-grid { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 13px 0; border-bottom: 1px solid #f1f5f9;
}
.why-item:last-child { border: none; padding-bottom: 0; }
.why-icon {
  width: 38px; height: 38px; border-radius: 9px; background: #EEF0F8;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.why-icon i { color: #010948; font-size: .88rem; }
.why-item h4,
.why-item h5 { font-size: .88rem; font-weight: 700; color: #010948; margin: 0 0 3px; }
.why-item p  { font-size: .8rem; color: #64748b; margin: 0; line-height: 1.6; }

/* ── PROCESS STEPS ──────────────────────────────────────── */
.city-process {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 0; position: relative;
}
.city-process::before {
  content: ''; position: absolute; top: 27px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg,#010948,#0F1F6E); z-index: 0;
}
.cp-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.cp-num {
  width: 54px; height: 54px; border-radius: 50%;
  background: linear-gradient(135deg,#010948,#0F1F6E);
  color: #fff; font-size: 1rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; box-shadow: 0 4px 16px rgba(1,9,72,.25);
}
.cp-step h3,
.cp-step h4 { font-size: .83rem; font-weight: 700; color: #010948; margin-bottom: 5px; }
.cp-step p  { font-size: .76rem; color: #64748b; line-height: 1.55; }

/* ── RESULT CARDS ───────────────────────────────────────── */
.result-card {
  background:#000000;
  border-radius: 14px; padding: 22px 16px; text-align: center;
}
.result-card .rnum {
  font-size: 2rem; font-weight: 900; line-height: 1;
  background: linear-gradient(90deg,#F27334,#E8192C);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.result-card .rlabel { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: 5px; }

/* ── FAQ ────────────────────────────────────────────────── */
.city-faq { border: 1px solid #e2e8f0; border-radius: 10px; margin-bottom: 8px; overflow: hidden; }
.city-faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 13px 18px; cursor: pointer; font-size: .875rem; font-weight: 600;
  color: #1e293b; background: #fff; transition: .2s; user-select: none;
}
.city-faq-q:hover   { background: #f8fafc; color: #010948; }
.city-faq-a         { padding: 0 18px 14px; font-size: .85rem; color: #64748b; line-height: 1.72; display: none; }
.city-faq.open .city-faq-q { color: #010948; background: #EEF0F8; }
.city-faq.open .city-faq-a { display: block; }
.city-faq-arrow { transition: .3s; color: #94a3b8; font-size: .72rem; }
.city-faq.open .city-faq-arrow { transform: rotate(180deg); color: #010948; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.city-testi {
  background: #fff; border-radius: 12px; border: 1px solid #e2e8f0;
  padding: 20px; transition: .3s; height: 100%;
}
.city-testi:hover { box-shadow: 0 8px 28px rgba(1,9,72,.1); border-color: #010948; }
.city-testi__stars { color: #f59e0b; font-size: .82rem; margin-bottom: 9px; }
.city-testi__text  { font-size: .84rem; color: #334155; line-height: 1.72; font-style: italic; margin-bottom: 14px; }
.city-testi__author{ display: flex; align-items: center; gap: 10px; }
.city-testi__av {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg,#010948,#0F1F6E);
  color: #fff; font-size: .85rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.city-testi__name  { font-size: .84rem; font-weight: 700; color: #010948; }
.city-testi__role  { font-size: .72rem; color: #94a3b8; }

/* ── KEYWORD / INDUSTRY CLOUD ───────────────────────────── */
.kw-cloud { display: flex; flex-wrap: wrap; gap: 7px; }
.kw-tag {
  padding: 5px 12px; border-radius: 50px; font-size: .76rem; font-weight: 600;
  background: #f1f5f9; color: #475569; border: 1px solid #e2e8f0; transition: .2s;
}
.kw-tag:hover { background: #EEF0F8; color: #010948; border-color: #010948; }

/* ── CITY LINKS GRID (other cities) ─────────────────────── */
.city-links-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.city-link-item {
  display: flex; align-items: center; gap: 7px;
  background: #f8fafc; border: 1px solid #e2e8f0;
  border-radius: 8px; padding: 9px 12px;
  font-size: .8rem; font-weight: 600; color: #475569; transition: .2s;
  text-decoration: none;
}
.city-link-item:hover { background: #EEF0F8; border-color: #010948; color: #010948; }
.city-link-item i { color: #010948; font-size: .78rem; }

/* ── RELATED SERVICES BACKLINKS GRID ────────────────────── */
.city-related-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
}
.city-related-item {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid #e2e8f0;
  border-radius: 10px; padding: 12px 14px;
  font-size: .82rem; font-weight: 600; color: #334155;
  text-decoration: none; transition: .25s;
  position: relative; overflow: hidden;
}
.city-related-item::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: linear-gradient(180deg,#010948,#0F1F6E);
  border-radius: 2px 0 0 2px;
}
.city-related-item:hover {
  background: #EEF0F8; border-color: #010948; color: #010948;
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(1,9,72,.1);
}
.cri-icon {
  width: 32px; height: 32px; border-radius: 7px; flex-shrink: 0;
  background: #EEF0F8; display: flex; align-items: center; justify-content: center;
}
.cri-icon i { color: #010948; font-size: .8rem; }
.cri-text { flex: 1; line-height: 1.3; }
.cri-arrow { color: #94a3b8; font-size: .7rem; margin-left: auto; flex-shrink: 0; transition: .2s; }
.city-related-item:hover .cri-arrow { color: #010948; transform: translateX(3px); }

/* ── CTA BOX ────────────────────────────────────────────── */
.city-cta-box {
  background: linear-gradient(135deg,#010948 0%,#0F1F6E 60%,#1a2f8a 100%);
  border-radius: 18px; padding: 38px 32px;
  text-align: center; position: relative; overflow: hidden;
  margin-top: 8px;
}
.city-cta-box::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 180px; height: 180px; border-radius: 50%; background: rgba(255,255,255,.04);
}
.city-cta-box::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,#E8192C,#F27334,#E8192C);
}
.city-cta-box h2 { color: #fff; font-size: clamp(1.3rem,2.3vw,1.75rem); font-weight: 800; margin-bottom: 10px; }
.city-cta-box p  { color: rgba(255,255,255,.75); font-size: .9rem; margin-bottom: 24px; line-height: 1.65; }

/* ── STICKY SIDEBAR ─────────────────────────────────────── */
.city-sidebar-sticky { position: sticky; top: 88px; }

/* ── STICKY LEAD FORM ───────────────────────────────────── */
.sticky-lead-wrap { position: relative; }
.sticky-lead-form {
  background: #fff; border-radius: 18px;
  box-shadow: 0 8px 36px rgba(1,9,72,.14);
  border: 2px solid #010948; overflow: hidden;
}
.slf-header {
  background: linear-gradient(135deg,#010948,#0F1F6E);
  padding: 20px 22px 16px; text-align: center;
}
.slf-header h3 {
  color: #fff; font-size: 1.05rem; font-weight: 800;
  margin: 0 0 4px; font-family: 'Poppins',sans-serif;
}
.slf-header p { color: rgba(255,255,255,.82); font-size: .78rem; margin: 0; }
.slf-pulse {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.15); border-radius: 20px;
  padding: 4px 10px; font-size: .7rem; color: #fff; font-weight: 600; margin-top: 8px;
}
.slf-pulse::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%;
  background: #4ade80; animation: slf-blink 1.5s infinite;
}
@keyframes slf-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.slf-body  { padding: 18px 20px 14px; }
.slf-group { margin-bottom: 12px; }
.slf-label { font-size: .76rem; font-weight: 700; color: #334155; display: block; margin-bottom: 4px; }
.slf-input {
  width: 100%; padding: 10px 13px; border-radius: 9px;
  border: 1.5px solid #e2e8f0; font-size: .85rem; color: #1e293b;
  background: #fff; font-family: inherit; transition: .25s;
}
.slf-input:focus { outline: none; border-color: #010948; box-shadow: 0 0 0 3px rgba(1,9,72,.08); }
.slf-input::placeholder { color: #94a3b8; }
select.slf-input { cursor: pointer; }
.slf-btn {
  width: 100%; padding: 13px; border-radius: 10px; border: none; cursor: pointer;
  background: linear-gradient(135deg,#010948,#0F1F6E);
  color: #fff; font-size: .9rem; font-weight: 700;
  font-family: inherit; transition: .3s;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  box-shadow: 0 4px 18px rgba(1,9,72,.22);
}
.slf-btn:hover {
  background: linear-gradient(135deg,#0F1F6E,#1a2f8a);
  transform: translateY(-2px); box-shadow: 0 7px 24px rgba(1,9,72,.3);
}
.slf-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 5px; margin-top: 9px; font-size: .7rem; color: #94a3b8;
}
.slf-trust i { color: #10b981; }
.slf-wa {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  background: #25d366; color: #fff; border-radius: 9px;
  padding: 10px; font-size: .85rem; font-weight: 700;
  margin-top: 6px; transition: .25s; text-decoration: none;
}
.slf-wa:hover { background: #1da851; color: #fff; }
.slf-footer {
  background: #f8fafc; border-top: 1px solid #f1f5f9;
  padding: 12px 20px 16px; display: flex; flex-direction: column; gap: 9px;
}
.slf-contact-item {
  display: flex; align-items: center; gap: 9px;
  font-size: .8rem; font-weight: 600; color: #334155;
}
.slf-contact-item i { color: #010948; width: 14px; text-align: center; }
.slf-contact-item a { color: #334155; text-decoration: none; }
.slf-contact-item a:hover { color: #010948; }
.slf-success { display: none; text-align: center; padding: 24px 18px; }
.slf-success-icon { font-size: 2.75rem; margin-bottom: 10px; }
.slf-success h4 { font-size: .95rem; font-weight: 700; color: #010948; margin-bottom: 5px; }
.slf-success p  { font-size: .8rem; color: #64748b; }
.slf-trust-strip {
  background: #fff; border-radius: 12px;
  border: 1px solid #e2e8f0; padding: 14px 16px; margin-top: 12px;
}
.slf-trust-title {
  font-size: .7rem; font-weight: 700; color: #010948;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 9px;
}
.slf-trust-item {
  display: flex; align-items: center; gap: 8px;
  padding: 5px 0; border-bottom: 1px solid #f8fafc;
  font-size: .78rem; color: #475569;
}
.slf-trust-item:last-child { border: none; }
.slf-trust-item i { color: #010948; width: 13px; font-size: .78rem; flex-shrink: 0; }

/* ── PRICING TABLE ──────────────────────────────────────── */
.pk-pricing-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; }
.pk-pricing-table th {
  background: #010948; color: #fff;
  padding: 12px 16px; font-size: .85rem; font-weight: 700; text-align: left;
}
.pk-pricing-table th:last-child { background: #0F1F6E; }
.pk-pricing-table td {
  padding: 10px 16px; font-size: .85rem; color: #334155;
  border-bottom: 1px solid #f1f5f9;
}
.pk-pricing-table tr:nth-child(even) td { background: #f8fafc; }
.pk-pricing-table tr:last-child td { border-bottom: none; }
.pk-pricing-table .price-cell { color: #010948; font-weight: 700; }
.pk-pricing-table .order-btn,
.btn-order {
  display: inline-flex; align-items: center; gap: 5px;
  background: #010948; color: #fff; padding: 6px 14px;
  border-radius: 6px; font-size: .78rem; font-weight: 700;
  text-decoration: none; transition: .2s;
}
.pk-pricing-table .order-btn:hover,
.btn-order:hover { background: #0F1F6E; color: #fff; }

/* ── PORTFOLIO GRID ─────────────────────────────────────── */
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.portfolio-item { border-radius: 10px; overflow: hidden; border: 1px solid #e2e8f0; transition: .3s; }
.portfolio-item:hover { box-shadow: 0 8px 24px rgba(1,9,72,.12); border-color: #010948; transform: translateY(-3px); }
.portfolio-item img  { width: 100%; height: 180px; object-fit: cover; display: block; }
.portfolio-item-name { padding: 10px 14px; font-size: .84rem; font-weight: 700; color: #010948; text-align: center; background: #fff; }

/* ── CHECKLIST ──────────────────────────────────────────── */
.pk-checklist { list-style: none; padding: 0; margin: 0; }
.pk-checklist li {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: .88rem; color: #334155; padding: 6px 0;
  border-bottom: 1px solid #f8fafc;
}
.pk-checklist li:last-child { border: none; }
.pk-checklist li::before {
  content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  color: #010948; font-size: .82rem; flex-shrink: 0; margin-top: 2px;
}

/* ── OLD SC PAGE HERO (legacy pages) ────────────────────── */
.sc-page-hero {
  background: linear-gradient(135deg,#010948 0%,#0F1F6E 55%,#1a2f8a 100%);
  padding: 90px 0 56px; position: relative; overflow: hidden;
}
.sc-page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M20 20.5V18H0v5h5v5H0v5h20v-2.5h5V20.5H20z'/%3E%3C/g%3E%3C/svg%3E");
}
.sc-page-hero::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,#E8192C,#F27334,#E8192C);
}
.sc-page-hero .sc-container { position: relative; z-index: 2; }
.sc-page-hero h1 { color: #fff; font-size: clamp(1.6rem,3.8vw,2.6rem); margin-bottom: 12px; }
.sc-page-hero p  { color: rgba(255,255,255,.75); font-size: 1rem; max-width: 570px; margin-bottom: 0; }
.sc-breadcrumb a { color: rgba(255,255,255,.65); }
.sc-breadcrumb a:hover { color: #fff; }
.sc-breadcrumb .sep     { color: rgba(255,255,255,.35); }
.sc-breadcrumb .current { color: #fff; font-weight: 600; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1199px) {
  .city-related-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1100px) {
  .city-process { grid-template-columns: repeat(2,1fr); }
  .city-process::before { display: none; }
  .city-links-grid { grid-template-columns: repeat(3,1fr); }
  .portfolio-grid  { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 991px) {
  .city-sidebar-sticky { position: static; }
  .city-hero { padding: 92px 0 44px; }
  .city-stats-strip__item { padding: 12px 14px; min-width: 110px; }
  .city-hero__float--tl { left: 0; top: 12px; }
  .city-hero__float--br { right: 0; bottom: 36px; }
}
@media (max-width: 767px) {
  .city-hero            { padding: 82px 0 36px; }
  .city-hero__pills     { display: none; }
  .city-hero__img-wrap  { max-width: 100%; }
  .city-hero__float     { display: none; }          /* hide badges on mobile — too cramped */
  .city-hero__delivered { font-size: .68rem; padding: 5px 14px; }
  .city-links-grid      { grid-template-columns: 1fr 1fr; }
  .city-related-grid    { grid-template-columns: 1fr 1fr; }
  .city-cta-box         { padding: 28px 18px; }
  .city-process         { grid-template-columns: 1fr 1fr; }
  .portfolio-grid       { grid-template-columns: 1fr 1fr; }
  .city-sec             { padding: 20px 16px; margin-bottom: 18px; }
  .city-stats-strip__inner { gap: 0; }
  .city-stats-strip__item  { min-width: 90px; padding: 10px 10px; }
  .css-num { font-size: 1.05rem; }
}
@media (max-width: 480px) {
  .city-links-grid   { grid-template-columns: 1fr 1fr; }
  .city-related-grid { grid-template-columns: 1fr; }
  .portfolio-grid    { grid-template-columns: 1fr; }
  .city-process      { grid-template-columns: 1fr; }
  .city-process::before { display: none; }
  .city-stats-strip__inner { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; }
  .city-stats-strip__item  { flex-shrink: 0; }
}

/* ── PORTFOLIO CARDS ─────────────────────────────────────── */
.portfolio-card {
  display: block;
  background: #fff;
  border: 1.5px solid #e8eaf2;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .25s, transform .25s;
  text-align: center;
  text-decoration: none;
  color: inherit;
}
.portfolio-card:hover {
  box-shadow: 0 8px 28px rgba(1,9,72,.13);
  transform: translateY(-4px);
  text-decoration: none;
}
.portfolio-card__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f4f6fb;
}
.portfolio-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s;
}
.portfolio-card:hover .portfolio-card__img {
  transform: scale(1.05);
}
.portfolio-card__name {
  font-size: .88rem;
  font-weight: 700;
  color: #010948;
  margin: 10px 8px 12px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.portfolio-card__ext {
  font-size: .72rem;
  color: #E8192C;
  opacity: 0;
  transition: opacity .2s;
}
.portfolio-card:hover .portfolio-card__ext {
  opacity: 1;
}
