/* City conversion landing pages — Bright UPVC */
:root {
  --city-purple: #7F4FE8;
  --city-purple-dark: #373184;
  --city-text: #1a1a2e;
  --city-text-muted: #555577;
  --city-bg-alt: #F3F4F4;
  --city-gradient: linear-gradient(135deg, #373184 0%, #5631BC 45%, #7F4FE8 100%);
  --city-max: 1100px;
  --city-nav-h: 72px;
}

.city-lp {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--city-nav-h);
  font-family: 'Inter', sans-serif;
  color: var(--city-text);
  background: #fff;
  margin: 0;
  display: block;
}

.city-lp *,
.city-lp *::before,
.city-lp *::after {
  box-sizing: border-box;
}

.city-lp h1,
.city-lp h2,
.city-lp h3,
.city-lp h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.city-lp-main {
  width: 100%;
  flex: 1 0 auto;
}

/* ── Navigation (matches site global nav) ── */
.city-lp nav,
.city-lp #mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--city-nav-h);
  padding: 0 clamp(16px, 5%, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(127, 79, 232, 0.1);
  box-shadow: 0 1px 0 rgba(127, 79, 232, 0.06);
  width: 100%;
}

.city-lp .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  min-width: 0;
}

.city-lp .nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
}

.city-lp .nav-links a {
  text-decoration: none;
  color: var(--city-text);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.city-lp .nav-links a:hover {
  background: rgba(127, 79, 232, 0.08);
  color: var(--city-purple);
}

.city-lp .nav-cta {
  background: var(--city-gradient) !important;
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  margin-left: 4px;
}

.city-lp .nav-cta:hover {
  opacity: 0.92;
  box-shadow: 0 6px 18px rgba(86, 49, 188, 0.28);
}

.city-lp .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  border: 0;
  background: transparent;
}

.city-lp .hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--city-purple-dark);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Hero ── */
.city-hero {
  background: var(--city-gradient);
  color: #fff;
  padding: clamp(40px, 6vw, 64px) clamp(16px, 5%, 48px) clamp(36px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}

.city-hero::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.city-hero-inner {
  max-width: var(--city-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.city-hero-copy {
  min-width: 0;
}

.city-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: clamp(12px, 2vw, 13px);
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.4;
}

.city-hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  flex-shrink: 0;
}

.city-hero h1 {
  font-size: clamp(28px, 4.5vw, 46px);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 16px;
}

.city-hero h1 span {
  color: #c4b5fd;
}

.city-hero-lead {
  font-size: clamp(15px, 2vw, 17px);
  opacity: 0.92;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 540px;
}

.city-hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.city-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 20px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  white-space: nowrap;
}

.city-btn:hover {
  transform: translateY(-2px);
}

.city-btn-primary {
  background: #fff;
  color: var(--city-purple-dark);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.city-btn-purple {
  background: var(--city-gradient);
  color: #fff;
  box-shadow: 0 8px 22px rgba(86, 49, 188, 0.28);
}

.city-btn-wa {
  background: #25D366;
  color: #fff;
}

.city-btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.65);
}

.city-hero-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  max-width: 480px;
}

.city-hero-trust span {
  font-size: 12px;
  opacity: 0.88;
  line-height: 1.3;
}

.city-hero-trust strong {
  display: block;
  font-size: 17px;
  color: #fff;
  margin-bottom: 2px;
}

.city-hero-visual {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 16px;
  backdrop-filter: blur(8px);
}

.city-hero-visual img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.city-hero-visual-cap {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  opacity: 0.85;
  line-height: 1.4;
}

/* ── Trust bar ── */
.city-trust-bar {
  background: var(--city-bg-alt);
  border-bottom: 1px solid rgba(127, 79, 232, 0.08);
  padding: 18px clamp(16px, 5%, 48px);
}

.city-trust-bar-inner {
  max-width: var(--city-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px 20px;
}

.city-trust-bar span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--city-purple-dark);
  line-height: 1.45;
  text-align: left;
}

/* ── Sections ── */
.city-section {
  padding: clamp(40px, 6vw, 56px) clamp(16px, 5%, 48px);
  width: 100%;
}

.city-section--alt {
  background: var(--city-bg-alt);
}

.city-section-inner {
  max-width: var(--city-max);
  margin: 0 auto;
  width: 100%;
}

.city-section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--city-purple);
  margin-bottom: 10px;
}

.city-section h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  color: var(--city-purple-dark);
  margin: 0 0 12px;
  line-height: 1.2;
}

.city-section-desc {
  color: var(--city-text-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 0 28px;
}

.city-section-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
}

.city-section-links a {
  color: var(--city-purple);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
}

.city-section-links a:hover {
  text-decoration: underline;
}

.city-section-cta {
  margin-top: 24px;
  text-align: center;
}

/* ── Product cards ── */
.city-products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.city-product-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(127, 79, 232, 0.12);
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}

.city-section--alt .city-product-card {
  background: #fff;
}

.city-product-card:hover {
  box-shadow: 0 12px 32px rgba(86, 49, 188, 0.12);
  transform: translateY(-3px);
}

.city-product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
}

.city-product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

.city-product-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--city-purple-dark);
  margin: 0 0 8px;
  line-height: 1.3;
}

.city-product-card p {
  font-size: 13px;
  color: var(--city-text-muted);
  line-height: 1.5;
  margin: 0 0 14px;
  flex: 1;
}

.city-product-card a {
  font-size: 13px;
  font-weight: 700;
  color: var(--city-purple);
  text-decoration: none;
  margin-top: auto;
}

.city-product-card a:hover {
  text-decoration: underline;
}

/* ── Interior cards ── */
.city-interior-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.city-interior-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  min-height: 220px;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: #fff;
}

.city-interior-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 46, 0.9) 0%, rgba(26, 26, 46, 0.2) 55%, transparent 100%);
}

.city-interior-card span {
  position: relative;
  z-index: 1;
  padding: 20px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.35;
  width: 100%;
}

/* ── Why grid ── */
.city-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.city-why-item {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid rgba(127, 79, 232, 0.1);
  height: 100%;
}

.city-section--alt .city-why-item {
  background: #fff;
}

.city-why-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--city-purple-dark);
  margin: 0 0 8px;
  line-height: 1.35;
}

.city-why-item p {
  font-size: 14px;
  color: var(--city-text-muted);
  line-height: 1.55;
  margin: 0;
}

/* ── Lead box ── */
.city-lead-box {
  background: var(--city-gradient);
  border-radius: 20px;
  padding: clamp(28px, 5vw, 44px) clamp(20px, 4vw, 40px);
  color: #fff;
  text-align: center;
  width: 100%;
}

.city-lead-box h2 {
  color: #fff;
  margin: 0 0 12px;
}

.city-lead-box p {
  opacity: 0.92;
  margin: 0 auto 24px;
  max-width: 560px;
  line-height: 1.6;
  font-size: 16px;
}

.city-lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.city-lead-box .city-btn-outline {
  border-color: rgba(255, 255, 255, 0.55);
}

/* ── Testimonial ── */
.city-testimonial-wrap {
  max-width: 640px;
}

.city-testimonial {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(127, 79, 232, 0.12);
}

.city-testimonial-stars {
  color: #f59e0b;
  font-size: 18px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.city-testimonial-text {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  font-style: italic;
  margin: 0 0 16px;
}

.city-testimonial-author {
  font-weight: 700;
  color: var(--city-purple-dark);
}

.city-testimonial-loc {
  font-size: 13px;
  color: var(--city-text-muted);
  margin-top: 2px;
}

.city-review-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--city-purple);
  font-weight: 600;
  text-decoration: none;
}

.city-review-link:hover {
  text-decoration: underline;
}

/* ── FAQ ── */
.city-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
}

.city-faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  border: 1px solid rgba(127, 79, 232, 0.1);
}

.city-section--alt .city-faq-item {
  background: #fff;
}

.city-faq-item h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--city-purple-dark);
  margin: 0 0 8px;
  line-height: 1.4;
}

.city-faq-item p {
  font-size: 14px;
  color: var(--city-text-muted);
  margin: 0;
  line-height: 1.55;
}

.city-faq-item a {
  color: var(--city-purple);
  font-weight: 600;
}

/* ── Nearby cities ── */
.city-nearby {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.city-nearby a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(127, 79, 232, 0.25);
  text-decoration: none;
  color: var(--city-purple-dark);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  transition: background 0.2s;
}

.city-nearby a:hover {
  background: rgba(127, 79, 232, 0.08);
}

.city-nearby a.is-current {
  background: var(--city-gradient);
  color: #fff;
  border-color: transparent;
}

/* ── Footer ── */
.city-lp-footer {
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.75);
  padding: 40px clamp(16px, 5%, 48px) 24px;
  font-size: 14px;
  width: 100%;
  margin-top: auto;
}

.city-lp-footer-grid {
  max-width: var(--city-max);
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  align-items: start;
  text-align: left;
}

.city-lp-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}

.city-lp-footer p {
  margin: 0;
  line-height: 1.6;
}

.city-lp-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.city-lp-footer li {
  margin-bottom: 8px;
}

.city-lp-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.city-lp-footer a:hover {
  color: #fff;
}

.city-lp-footer-bottom {
  max-width: var(--city-max);
  margin: 0 auto;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  line-height: 1.5;
}

/* ── Sticky mobile CTA ── */
.city-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: #fff;
  border-top: 1px solid rgba(127, 79, 232, 0.15);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  gap: 8px;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
}

.city-sticky-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
}

.city-sticky-quote {
  background: var(--city-gradient);
  color: #fff;
}

.city-sticky-wa {
  background: #25D366;
  color: #fff;
}

/* ── Floating WhatsApp (desktop) ── */
.city-lp .floating-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
}

.city-lp .floating-wa:hover {
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .city-lp .nav-links a:not(.nav-cta) {
    padding: 8px 10px;
    font-size: 13px;
  }
}

@media (max-width: 900px) {
  .city-lp .hamburger {
    display: flex;
  }

  .city-lp .nav-links {
    display: none;
    position: absolute;
    top: var(--city-nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(127, 79, 232, 0.12);
    padding: 12px 16px 16px;
    box-shadow: 0 12px 32px rgba(55, 49, 132, 0.12);
  }

  .city-lp .nav-links.open {
    display: flex;
  }

  .city-lp .nav-links a {
    padding: 12px 14px;
    border-radius: 10px;
    white-space: normal;
  }

  .city-lp .nav-cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .city-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .city-hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .city-hero-cta {
    justify-content: center;
  }

  .city-hero-trust {
    margin: 0 auto;
    max-width: 100%;
  }

  .city-hero-visual {
    margin: 0 auto;
    max-width: 420px;
  }

  .city-trust-bar-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .city-interior-grid {
    grid-template-columns: 1fr;
  }

  .city-why-grid {
    grid-template-columns: 1fr;
  }

  .city-lp-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .city-lp .floating-wa {
    display: none !important;
  }

  .city-sticky-cta {
    display: grid;
  }

  .city-lp {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
  }
}

@media (max-width: 600px) {
  .city-hero-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .city-hero-cta .city-btn {
    flex: 1 1 calc(50% - 6px);
    min-width: 140px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .city-hero-cta .city-btn-primary {
    flex: 1 1 100%;
  }

  .city-trust-bar-inner {
    grid-template-columns: 1fr;
  }

  .city-products {
    grid-template-columns: 1fr;
  }

  .city-lead-actions .city-btn {
    width: 100%;
  }

  .city-nearby a {
    font-size: 12px;
    padding: 9px 14px;
  }
}
