/*================================================
City Landing Page — shared components
Used by city-specific SEO pages (e.g. loan-consultant-surat.html)
=================================================*/

.city-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}

.city-badge i {
  font-size: 14px;
}

/* City landing page hero — deliberately distinct from the standard
   about/services/contact page-hero template used elsewhere on the site */
.city-hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 3rem;
  background: linear-gradient(150deg, #0b0a88 0%, #131094 45%, #1b9ba3 120%);
  color: #ffffff;
}

.city-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 12% 15%, rgba(85, 209, 203, 0.28) 0%, transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

.city-hero__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.city-hero__layout {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.city-hero__side-card {
  display: none;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 150px;
  padding: 1.5rem 1rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.city-hero__side-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 22px;
}

.city-hero__side-card-label {
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.92);
}

@media (min-width: 992px) {
  .city-hero__side-card {
    display: flex;
  }
}

.city-hero__breadcrumb {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.city-hero__breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 0.4rem;
  color: rgba(255, 255, 255, 0.4);
}

.city-hero__breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.city-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #ffffff;
}

.city-hero__tagline {
  margin: 0 auto 1.75rem;
  max-width: 620px;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.city-hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  margin: 0 auto 2rem;
  padding: 0.9rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  width: fit-content;
}

.city-hero__trust-item {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

.city-hero__trust-item strong {
  font-size: 1rem;
  color: #ffffff;
}

.city-hero__trust-stars {
  color: #ffc94d;
  letter-spacing: 1px;
  font-size: 0.8125rem;
}

.city-hero__trust-divider {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
}

.city-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.city-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.city-hero__btn--primary {
  background: #ffffff;
  color: #0b0a88;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.city-hero__btn--primary:hover {
  color: #0b0a88;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.city-hero__btn--whatsapp {
  background: #25d366;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.3);
}

.city-hero__btn--whatsapp:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(37, 211, 102, 0.36);
}

.city-hero__btn--map {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.city-hero__btn--map:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.city-hero__note {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.city-hero__note i {
  margin-right: 0.3rem;
}

@media (max-width: 640px) {
  .city-hero__trust {
    border-radius: 18px;
    padding: 0.85rem 1.1rem;
  }
}

/* Compact services list — more scannable than the full illustrated
   service-card grid, used for location/landing pages */
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.city-service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(11, 10, 136, 0.07);
  box-shadow: 0 8px 24px rgba(11, 10, 136, 0.05);
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.city-service-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(11, 10, 136, 0.1);
  border-color: rgba(27, 155, 163, 0.35);
}

.city-service-item__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(27, 155, 163, 0.1);
  color: #1b9ba3;
  font-size: 20px;
}

.city-service-item h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  color: #0b0a88;
}

.city-service-item h3 span {
  color: #55d1cb;
  font-weight: 600;
}

.city-service-item p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #6c6c6c;
}

/* Buttons for use on light/white section backgrounds — do NOT reuse
   .about-hero__btn--ghost here, it's white-on-transparent and was built
   only for dark hero/CTA boxes; on a white section it renders invisible. */
.city-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.city-btn--primary {
  background: linear-gradient(135deg, #0b0a88, #1b9ba3);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(11, 10, 136, 0.22);
}

.city-btn--primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 10, 136, 0.28);
}

.city-btn--outline {
  border: 1.5px solid rgba(11, 10, 136, 0.3);
  color: #0b0a88;
  background: transparent;
}

.city-btn--outline:hover {
  color: #0b0a88;
  background: rgba(11, 10, 136, 0.06);
}

@media (max-width: 640px) {
  .city-services-grid {
    grid-template-columns: 1fr;
  }
}

/* Process steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 36px;
}

.process-step {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 34px 24px 26px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(11, 10, 136, 0.07);
  border: 1px solid rgba(11, 10, 136, 0.06);
}

.process-step__num {
  position: absolute;
  top: -14px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0b0a88, #1b9ba3);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 10px rgba(11, 10, 136, 0.3);
}

.process-step__icon {
  width: 60px;
  height: 60px;
  margin: 6px auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(27, 155, 163, 0.1);
  color: #1b9ba3;
  font-size: 26px;
}

.process-step h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: #0b0a88;
}

.process-step p {
  font-size: 13.5px;
  color: #6c6c6c;
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 767px) {
  .process-steps {
    grid-template-columns: 1fr;
  }
}
