/* ============================================================
   city-pages.css
   Scoped ONLY to city pages using prefix "cp-"
   Does NOT touch any existing site classes
   Save to: /assets/css/city-pages.css
   Shared by all city folders: /london/, /manchester/ etc.
   ============================================================ */

/* ── HERO ─────────────────────────────────────────────────── */
.cp-hero {
  position: relative;
  background: var(--navy);
  /* min-height: 80vh; */
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 75% at 5% 50%, rgba(16,1,144,0.80) 0%, transparent 65%),
    radial-gradient(ellipse 40% 55% at 85% 15%, rgba(111,205,246,0.09) 0%, transparent 55%);
  z-index: 0;
}
.cp-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,205,246,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,205,246,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.cp-geo {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}
.cp-geo-1 {
  width: 550px; height: 550px;
  top: -180px; left: -120px;
  background: var(--sky);
  opacity: 0.05;
  animation: cpFloat 10s ease-in-out infinite alternate;
}
.cp-geo-2 {
  width: 280px; height: 280px;
  bottom: -80px; left: 5%;
  background: var(--gold);
  opacity: 0.04;
  animation: cpFloat 14s ease-in-out infinite alternate-reverse;
}
@keyframes cpFloat {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-28px); }
}

.cp-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 70vh;
  padding: 0px 24px 0px;
}

.cp-hero-content{
  max-width: 900px;
  width: 100%;
  margin: 35px auto;
}

.cp-subtitle{
  margin-left: auto;
  margin-right: auto;
}

.cp-stats-row{
  justify-content: center;
}

.cp-hero-actions{
  justify-content: center;
}

.cp-badge{
  margin-left: auto;
  margin-right: auto;
}
/* Badge */
.cp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(111,205,246,0.10);
  border: 1px solid rgba(111,205,246,0.28);
  color: var(--sky);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.cp-badge-dot {
  width: 8px; height: 8px;
  background: var(--sky);
  border-radius: 50%;
  animation: cpPulse 2s ease-in-out infinite;
}
@keyframes cpPulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.5); opacity: 0.55; }
}

/* H1 */
.cp-h1 {
  font-size: clamp(2.1rem, 3.8vw, 3.3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.7px;
  margin-bottom: 18px;
}
.cp-accent { color: var(--sky); }

.cp-subtitle {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 560px;
}

/* Stats row */
.cp-stats-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.cp-stat { text-align: center; }
.cp-stat-n { display: block; font-size: 1.8rem; font-weight: 900; color: var(--gold); line-height: 1; }
.cp-stat-l { font-size: 12px; color: rgba(255,255,255,0.58); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.cp-stat-div { width: 1px; height: 38px; background: rgba(255,255,255,0.14); }

/* CTA ghost btn (hero only) */
.cp-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.26);
  text-decoration: none;
  transition: all 0.3s ease;
}
.cp-btn-ghost:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-2px);
}

.cp-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}


/* ── HERO FORM ─────────────────────────────────────────────── */
.cp-hero-form-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.cp-form-box {
  background: #fff;
  border-radius: 20px;
  padding: 34px 26px;
  width: 100%;
  max-width: 390px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.28);
  position: relative;
  overflow: hidden;
}
.cp-form-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
}
.cp-form-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--green);
  background: rgba(14,188,64,0.10);
  border: 1px solid rgba(14,188,64,0.25);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.cp-form-box h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.3;
}
.cp-form-box > p {
  font-size: 14px;
  color: var(--text-mid);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cp-form-box input,
.cp-form-box select,
.cp-form-box textarea {
  width: 100%;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--text-dark);
  font-family: 'Nunito', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  border-radius: 8px;
  margin-bottom: 10px;
  outline: none;
  transition: border-color 0.25s;
  appearance: auto;
}
.cp-form-box input:focus,
.cp-form-box select:focus,
.cp-form-box textarea:focus { border-color: var(--navy); }
.cp-form-box button {
  width: 100%;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  color: #fff;
  border: none;
  padding: 13px;
  font-weight: 800;
  font-size: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
.cp-form-box button:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(16,1,144,0.28); }
.cp-form-note {
  font-size: 12px;
  color: var(--text-mid);
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}
.cp-form-note i { color: var(--green); }

/* ── MARQUEE ───────────────────────────────────────────────── */
.cp-marquee {
  background: linear-gradient(135deg, var(--navy-dark), var(--blue-mid));
  padding: 13px 0;
  overflow: hidden;
  border-top: 1px solid rgba(111,205,246,0.14);
  border-bottom: 1px solid rgba(111,205,246,0.14);
}
.cp-marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: cpMarquee 35s linear infinite;
  width: max-content;
}
.cp-marquee-track span {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.80);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.cp-marquee-track span i { color: var(--sky); font-size: 10px; }
@keyframes cpMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── INTRO GRID ────────────────────────────────────────────── */
.cp-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.cp-intro-text p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}
.cp-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 22px 0 26px;
}
.cp-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
}
.cp-check i { color: var(--green); font-size: 14px; }

/* City card */
.cp-city-card {
  background: var(--navy-deep);
  border: 1px solid rgba(111,205,246,0.14);
  border-radius: 18px;
  padding: 30px 26px;
  position: relative;
  overflow: hidden;
}
.cp-city-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
}
.cp-city-card-icon {
  width: 52px; height: 52px;
  background: rgba(111,205,246,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  font-size: 1.3rem;
  margin-bottom: 14px;
}
.cp-city-card h3 { font-size: 1.1rem; font-weight: 900; color: var(--white); margin-bottom: 14px; }
.cp-coverage-list { list-style: none; padding: 0; margin: 0 0 22px; }
.cp-coverage-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
}
.cp-coverage-list li:last-child { border-bottom: none; }
.cp-coverage-list li i { color: var(--sky); font-size: 11px; }
.cp-city-stats {
  display: flex;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
}
.cp-city-stat { flex: 1; text-align: center; padding: 0 10px; border-right: 1px solid rgba(255,255,255,0.08); }
.cp-city-stat:last-child { border-right: none; }
.cp-city-stat span { display: block; font-size: 1.5rem; font-weight: 900; color: var(--gold); }
.cp-city-stat small { font-size: 12px; color: rgba(255,255,255,0.52); }

/* ── SERVICES SECTION ──────────────────────────────────────── */
.cp-services-section { position: relative; background: var(--navy); overflow: hidden; }
.cp-services-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(111,205,246,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,205,246,0.03) 1px, transparent 1px);
  background-size: 55px 55px;
}
.cp-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.cp-svc-card {
  background: #ffffff;
  border: 1px solid #e7eaf3;
  border-radius: 14px;
  padding: 24px 20px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.cp-svc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sky), var(--navy));
  opacity: 0;
  transition: opacity 0.3s;
}
.cp-svc-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(111,205,246,0.24);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.28);
}
.cp-svc-card:hover::before { opacity: 1; }
.cp-svc-featured {
  background: #ffffff;
  border: 2px solid var(--sky);
}
.cp-svc-pop {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--navy-deep);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
  width: fit-content;
}
.cp-svc-icon {
  width: 48px; height: 48px;
  background: rgba(111,205,246,0.12);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--sky);
  font-size: 1.2rem;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.cp-svc-card:hover .cp-svc-icon { background: var(--sky); color: var(--navy-deep); }
.cp-svc-card h3 { 
  font-size: 0.98rem; 
  font-weight: 800; 
  color: var(--navy); 
  margin-bottom: 9px; 
  transition: all 0.3s ease;
}
.cp-svc-card p { 
  font-size: 14px; 
  color: #5f6675; 
  line-height: 1.6; 
  flex: 1; 
  margin-bottom: 14px; 
  transition: all 0.3s ease;
}
.cp-svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sky);
  margin-top: auto;
}
.cp-svc-card:hover .cp-svc-link { color: var(--gold); }

.cp-svc-card:hover h3{
  color: var(--white);
}

.cp-svc-card:hover p{
  color: rgba(255,255,255,0.75);
}

.cp-svc-card:hover .cp-svc-icon{
  background: var(--white);
  color: var(--navy-deep);
}

.cp-svc-card:hover .cp-svc-link{
  color: var(--gold);
}

/* ── CITY LINKS ────────────────────────────────────────────── */
.cp-city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.cp-city-links a {
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cp-city-links a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16,1,144,0.18);
}

/* ── SERVICE PAGE HERO (sub-pages) ─────────────────────────── */
.cp-sp-hero {
  position: relative;
  background: var(--navy);
  overflow: hidden;
}
.cp-sp-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 5% 50%, rgba(16,1,144,0.78) 0%, transparent 60%),
    radial-gradient(ellipse 35% 50% at 88% 20%, rgba(111,205,246,0.08) 0%, transparent 55%),
    linear-gradient(rgba(111,205,246,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,205,246,0.025) 1px, transparent 1px);
  background-size: auto, auto, 55px 55px, 55px 55px;
}
.cp-sp-inner {
  position: relative;
  z-index: 2;
  padding: 70px 24px;
}
.cp-sp-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.52);
  margin-bottom: 26px;
  flex-wrap: wrap;
}
.cp-sp-breadcrumb a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color 0.2s; }
.cp-sp-breadcrumb a:hover { color: var(--sky); }
.cp-sp-breadcrumb i { font-size: 9px; }
.cp-sp-breadcrumb span { color: var(--sky); font-weight: 700; }

.cp-sp-hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 50px;
  align-items: start;
}
.cp-sp-h1 {
  font-size: clamp(1.75rem, 3.2vw, 2.7rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
.cp-sp-h1 span { color: var(--sky); }
.cp-sp-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 22px;
}
.cp-sp-bullets { list-style: none; padding: 0; margin: 0 0 26px; display: flex; flex-direction: column; gap: 9px; }
.cp-sp-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.84);
  font-weight: 600;
}
.cp-sp-bullets li i { color: var(--sky); font-size: 13px; }
.cp-sp-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cp-sp-actions-first{
  background-color: aliceblue; color: var(--navy);
}

/* Service info card (hero sidebar) */
.cp-svc-info-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.24);
  position: relative;
  overflow: hidden;
}
.cp-svc-info-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--sky));
}
.cp-svc-info-icon {
  font-size: 2rem;
  color: var(--navy);
  margin-bottom: 12px;
  display: block;
}
.cp-svc-info-card h3 { font-size: 1.05rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.cp-svc-price { font-size: 14px; color: var(--text-mid); margin-bottom: 14px; }
.cp-svc-price strong { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.cp-svc-card-list { list-style: none; padding: 0; margin: 0 0 18px; text-align: left; }
.cp-svc-card-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.cp-svc-card-list li:last-child { border-bottom: none; }
.cp-svc-card-list li::before { content: ''; width: 6px; height: 6px; min-width: 6px; background: var(--sky); border-radius: 50%; }
.cp-svc-card-cta {
  display: block;
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cp-svc-card-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(16,1,144,0.28); }

/* ── SP CONTENT GRID ───────────────────────────────────────── */
.cp-sp-content-grid {
  display: grid;
  grid-template-columns: 1fr 295px;
  gap: 46px;
  align-items: start;
}
.cp-sp-main h2 {
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.cp-sp-main h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 26px 0 12px;
}
.cp-sp-main p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 14px;
}
.cp-sp-content-grid-service {
  background: var(--off-white);
  padding: 1px 15px 20px;
}
.cp-sp-content-grid-service ul li{
  font-weight: 600;
}
.cp-sp-content-grid-service ul li i{
  color: var(--gold);
}
/* Software grid */
.cp-sw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin: 14px 0 22px;
}
.cp-sw-item {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 7px;
}
.cp-sw-item i { color: var(--green); font-size: 11px; }

/* ── SIDEBAR ───────────────────────────────────────────────── */
.cp-sidebar { display: flex; flex-direction: column; gap: 18px; }

.cp-sb-cta {
  background: linear-gradient(135deg, var(--navy), var(--blue-mid));
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cp-sb-cta::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--sky)); }
.cp-sb-cta-icon { font-size: 1.7rem; color: var(--gold); margin-bottom: 9px; }
.cp-sb-cta h4 { font-size: 1rem; font-weight: 900; color: var(--white); margin-bottom: 6px; }
.cp-sb-cta p { font-size: 13px; color: rgba(255,255,255,0.62); margin-bottom: 14px; }

.cp-sb-nav {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
}
.cp-sb-nav-title {
  font-size: 13px;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.cp-sb-nav ul { list-style: none; padding: 0; margin: 0; }
.cp-sb-nav ul li a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-mid);
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s;
}
.cp-sb-nav ul li:last-child a { border-bottom: none; }
.cp-sb-nav ul li a:hover { color: var(--navy); }
.cp-sb-nav ul li a i { color: var(--sky); font-size: 11px; width: 14px; }

.cp-sb-trust {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.cp-sb-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}
.cp-sb-trust-item i { color: var(--navy); width: 15px; }

.cp-sb-pricing {
  background: var(--navy-deep);
  border-radius: 14px;
  padding: 20px;
  text-align: center;
}
.cp-sb-price-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.52); margin-bottom: 5px; }
.cp-sb-price-val { font-size: 1.9rem; font-weight: 900; color: var(--gold); margin-bottom: 7px; }
.cp-sb-price-val span { font-size: 13px; color: rgba(255,255,255,0.52); }
.cp-sb-pricing p { font-size: 13px; color: rgba(255,255,255,0.58); margin-bottom: 12px; }
.cp-sb-team-btn {
  display: block;
  background: rgba(255,255,255,0.09);
  border: 1.5px solid rgba(255,255,255,0.20);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  padding: 10px;
  border-radius: 8px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}
.cp-sb-team-btn:hover { background: rgba(255,255,255,0.17); border-color: rgba(255,255,255,0.42); }

.cp-sb-contact {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}
.cp-sb-contact h4 { font-size: 13px; font-weight: 900; color: var(--navy); margin-bottom: 10px; }
.cp-sb-contact-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: color 0.2s;
}
.cp-sb-contact-item:last-child { border-bottom: none; }
.cp-sb-contact-item:hover { color: var(--sky); }
.cp-sb-contact-item i { width: 16px; font-size: 15px; }

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .cp-svc-grid { grid-template-columns: repeat(2, 1fr); }
  .cp-sw-grid  { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 992px) {
  .cp-hero-inner      { grid-template-columns: 1fr; gap: 40px; padding: 70px 24px 60px; }
  .cp-hero-form-col   { justify-content: flex-start; }
  .cp-form-box        { max-width: 100%; }
  .cp-intro-grid      { grid-template-columns: 1fr; gap: 40px; }
  .cp-sp-hero-grid    { grid-template-columns: 1fr; gap: 36px; }
  .cp-sp-content-grid { grid-template-columns: 1fr; }
  .cp-sidebar         { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .cp-svc-grid  { grid-template-columns: 1fr; }
  .cp-h1        { font-size: 2rem; }
  .cp-stats-row { gap: 14px; }
  .cp-sidebar   { grid-template-columns: 1fr; }
  .cp-sw-grid   { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .cp-hero-inner { padding: 58px 20px 48px; }
  .cp-sp-inner   { padding: 56px 20px; }
  .cp-stats-row  { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cp-stat-div   { display: none; }
}

/* for cities service page content (not hero) - blockquote style */
.sp-quote {
  border-left: 1px solid var(--navy);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 2px 12px;
  margin: 24px 0;
}