




.geo-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.geo-stats .stat-card {
  background: rgba(215, 183, 120, 0.08);
  border: 1px solid rgba(215, 183, 120, 0.2);
  border-radius: 12px;
  padding: 18px 28px;
  text-align: center;
  min-width: 140px;
  transition: transform 0.3s, border-color 0.3s;
}

.geo-stats .stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}

.geo-stats .stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 4px;
}

.geo-stats .stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}


.geo-intro {
  max-width: 900px;
  margin: 0 auto 35px;
  padding: 30px 35px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 15px;
  border: 1px solid rgba(215, 183, 120, 0.15);
  text-align: center;
}

.geo-intro h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 0 0 18px;
  font-weight: 500;
  color: #fff;
}

.geo-intro .geo-icon {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 15px;
}

.geo-intro p {
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 15px;
}

.geo-intro p:last-child {
  margin-bottom: 0;
}

.geo-intro strong {
  color: #fff;
}


.nearby-cities {
  max-width: 900px;
  margin: 0 auto 50px;
  text-align: center;
}

.nearby-cities h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 15px;
  font-weight: 400;
}

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.nearby-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: rgba(215, 183, 120, 0.06);
  border: 1px solid rgba(215, 183, 120, 0.15);
  border-radius: 50px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
}

.nearby-links a:hover {
  background: rgba(215, 183, 120, 0.15);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.nearby-links a i {
  font-size: 0.75rem;
  opacity: 0.6;
}


.faq-section .geo-faq-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 8px;
  vertical-align: middle;
}


@media (max-width: 768px) {
  .geo-stats {
    gap: 12px;
  }
  .geo-stats .stat-card {
    padding: 14px 20px;
    min-width: 100px;
  }
  .geo-stats .stat-number {
    font-size: 1.2rem;
  }
  .geo-intro {
    padding: 22px 20px;
  }
  .nearby-links a {
    padding: 6px 14px;
    font-size: 0.8rem;
  }
}
