/* ==========================================================
   ELITE AUTO — city.css
   ========================================================== */

/* ── CITY HERO (50vh) ───────────────────────────────────── */
.city-hero {
  min-height: 50vh;
  background-image: url('../images/shop.jpg');
  background-size: cover;
  background-position: center 60%;
  position: relative;
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
}

.city-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  pointer-events: none;
}

.city-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.city-hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

.city-hero-title {
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.city-hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.city-hero-actions {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* ── CITY INTRO ─────────────────────────────────────────── */
.city-intro {
  background: var(--bg);
  padding: 5rem 2rem;
}

.city-intro .section-title {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.city-intro-body {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.city-intro-body p {
  margin: 0;
}

/* ── CITY SERVICES LIST ─────────────────────────────────── */
.city-services {
  background: var(--bg-alt);
  padding: 5rem 2rem;
  border-top: 1px solid #e8e8e8;
}

.city-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.city-service-col h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.65rem;
  border-bottom: 2px solid var(--green);
}

.city-service-col h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.city-service-col h3 a:hover { color: var(--green); }

.city-service-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.city-service-col ul li {
  font-size: 0.9rem;
  color: var(--muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.city-service-col ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
}

/* ── CITY CTA ───────────────────────────────────────────── */
.city-cta {
  background: var(--dark);
  padding: 3.5rem 2rem;
}

.city-cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.city-cta-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

.city-cta-sub {
  font-size: 0.925rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.35rem;
  line-height: 1.6;
}

.city-cta-actions {
  display: flex;
  gap: 0.85rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 760px) {
  .city-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .city-hero         { padding: 3rem 1.25rem; min-height: 60vh; }
  .city-intro        { padding: 3.5rem 1.25rem; }
  .city-services     { padding: 3.5rem 1.25rem; }
  .city-cta          { padding: 3rem 1.25rem; }
  .city-services-grid { grid-template-columns: 1fr; }
  .city-hero-actions .btn { width: 100%; }
  .city-cta-inner    { flex-direction: column; align-items: flex-start; }
  .city-cta-actions  { width: 100%; flex-direction: column; }
  .city-cta-actions .btn { width: 100%; }
}
