/* ═══════════════════════════════════════
   CITY PAGE STYLES
   Lavage de Vitres Régional
   ═══════════════════════════════════════ */

/* ── City Hero (service-page style) ── */
.city-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.city-hero__bg {
  position: absolute;
  inset: 0;
  background: url('../images/fenetre_exterieur.jpg') center/cover no-repeat;
  filter: contrast(1.05) saturate(1.1) brightness(0.9);
  transform: scale(1.03);
  z-index: 0;
}

.city-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.15) 100%),
    linear-gradient(100deg, rgba(10,22,40,0.8) 0%, rgba(10,22,40,0.5) 40%, rgba(10,22,40,0.1) 70%, transparent 100%);
  z-index: 1;
}

.city-hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 40px 80px 40px;
}

.city-hero__content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.08;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
  margin: 0;
  letter-spacing: -0.5px;
  max-width: 850px;
}

/* Trust bar in city hero (same style as service page) */
.city-hero .lvr-hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}
.city-hero .lvr-hero-trust:hover { opacity: 0.85; }
.city-hero .lvr-hero-trust-stars {
  display: flex;
  gap: 2px;
  color: #fbbf24;
  font-size: 16px;
}
.city-hero .lvr-hero-trust-text {
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}
.city-hero .lvr-hero-trust-text strong { font-weight: 700; }
.city-hero .lvr-hero-trust-divider {
  width: 1px;
  height: 30px;
  background: rgba(255,255,255,0.2);
}
.city-hero .lvr-hero-trust-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}
.city-hero .lvr-hero-trust-badge i { color: #4ade80; }

/* ── Price banner ─────────────────── */
.city-price-banner {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #0C63D7;
  text-align: left;
  margin: 0 0 16px;
}
.city-price-banner strong {
  font-weight: 900;
  font-size: 32px;
}

/* ── City Content ──────────────────── */
.city-content {
  padding: 80px 0;
}

.city-content__body {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.city-content__body p {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  margin: 0 0 24px;
}

.city-content__body h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #000;
  line-height: 1.2;
  margin: 48px 0 0;
}

.city-content__body ul {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #000;
  padding-left: 24px;
  margin: 0 0 24px;
}

.city-content__body ul li {
  margin-bottom: 8px;
}

/* ── City Divider ──────────────────── */
.city-divider {
  width: 145px;
  height: 5px;
  background: #0C63D7;
  border: none;
  border-radius: 3px;
  margin: 14px 0 20px;
}

/* ── CTA Band ──────────────────────── */
.ctaband {
  background: linear-gradient(135deg, #1a3e8a 0%, #2962ff 100%);
  padding: 80px 0;
  text-align: center;
}

.ctaband h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 16px;
}

.ctaband p {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin: 0 0 32px;
}

.ctaband .lvr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #0C63D7;
  border: none;
  border-radius: 50px;
  padding: 17px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  transition: transform .3s, box-shadow .3s;
}

.ctaband .lvr-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

/* ── Responsive ────────────────────── */
@media (max-width: 1024px) {
  .city-hero__content {
    padding: 140px 30px 60px 30px;
  }

  .city-hero__content h1 {
    font-size: 50px;
  }
}

@media (max-width: 968px) {
  .city-content {
    padding: 60px 0;
  }

  .city-content__body h2 {
    font-size: 26px;
  }

  .ctaband {
    padding: 60px 0;
  }

  .ctaband h2 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .city-hero {
    min-height: 70vh;
  }

  .city-hero__content {
    padding: 150px 20px 50px;
  }

  .city-hero__content h1 {
    font-size: 38px;
  }

  .city-hero .lvr-hero-trust {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .city-hero .lvr-hero-trust .lvr-hero-trust-divider {
    display: none;
  }

  .city-price-banner {
    font-size: 22px;
  }

  .city-price-banner strong {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .city-hero__content h1 {
    font-size: 32px;
  }

  .ctaband h2 {
    font-size: 24px;
  }

  .city-content__body h2 {
    font-size: 24px;
  }
}
