/* ============================================
   CITY LANDING PAGE
   ============================================ */

.city-page { padding-bottom: 0; }

/* Hero */
.city-hero-section {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  padding: 80px 0;
  overflow: hidden;
  background: #1a1a2e;
}

.city-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.city-hero-bg-default {
  background: linear-gradient(135deg, #1a1a2e 0%, #1a3a5c 100%);
}

.city-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.60);
  z-index: 1;
}

.city-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 700px;
}

.city-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.city-hero-title {
  font-size: clamp(28px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 18px;
  color: #ffffff;
}

.city-hero-excerpt {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  margin: 0 0 28px;
  max-width: 580px;
}

.city-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Body */
.city-body-section { padding: 64px 0; }

.city-body-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  align-items: start;
}

.city-body-content {
  font-size: 16px;
  line-height: 1.8;
  color: #1e293b;
}

.city-body-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e2e8f0;
}

.city-body-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 28px 0 12px;
}

.city-body-content p { margin: 0 0 20px; }

.city-body-content .ac-cta {
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  border-radius: 12px;
  padding: 28px 32px;
  margin: 36px 0;
  text-align: center;
}

.city-body-content .ac-cta-text {
  font-size: 17px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 20px;
}

.city-body-content .ac-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.city-body-content a:not(.btn) {
  color: #1a6fc4;
  text-decoration: underline;
  text-decoration-color: rgba(26, 111, 196, 0.35);
  text-underline-offset: 3px;
  transition: color 0.15s, text-decoration-color 0.15s;
}
.city-body-content a:not(.btn):hover {
  color: #1460ae;
  text-decoration-color: #1460ae;
}

.city-body-content ul, .city-body-content ol {
  padding-left: 24px;
  margin: 0 0 20px;
}

.city-body-content li { margin-bottom: 8px; }

.city-body-sidebar { position: sticky; top: 100px; }

.sidebar-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}

.sidebar-card-title {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 12px;
}

.sidebar-card p {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  margin: 0 0 16px;
}

.btn-full { width: 100%; text-align: center; margin-top: 8px; }

.sidebar-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  color: #374151;
}

.city-service-area-note { font-size: 13px; color: #64748b; line-height: 1.6; margin: 0; }

/* Projects section */
.city-projects-section { padding: 0 0 64px; background: #f8fafc; padding-top: 64px; }

.city-projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}

.city-project-card {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #1a1a2e;
}

.city-project-card a { display: block; height: 100%; position: relative; }

.city-project-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.city-project-card:hover .city-project-img { transform: scale(1.05); }

.city-project-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a3a5c, #2B7FBF);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.city-project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  transition: opacity 0.2s;
}

.city-project-title {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.city-projects-cta { text-align: center; }

@media (max-width: 900px) {
  .city-body-layout { grid-template-columns: 1fr; }
  .city-body-sidebar { position: static; }
}

@media (max-width: 640px) {
  .city-hero-section { min-height: 360px; padding: 60px 0; }
  .city-hero-actions { flex-direction: column; }
  .city-projects-grid { grid-template-columns: 1fr 1fr; }
}
