/* ===== Locations Pages ===== */
.loc-hero { padding-top: 140px; padding-bottom: 60px; text-align: center; }
.loc-hero .loc-flag {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 20px;
}
.loc-hero h1 { font-size: clamp(32px, 5vw, 56px); margin-bottom: 18px; line-height: 1.1; }
.loc-hero .loc-lede {
  max-width: 820px; margin: 0 auto 28px; font-size: 17px; line-height: 1.7;
  color: var(--text-secondary, rgba(255,255,255,0.7));
}
.loc-hero .loc-meta {
  display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; margin-bottom: 32px;
  color: var(--text-secondary, rgba(255,255,255,0.65)); font-size: 14px;
}
.loc-hero .loc-meta span { display: inline-flex; align-items: center; gap: 6px; }
.loc-hero .loc-meta svg { width: 16px; height: 16px; }
.loc-hero .loc-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.loc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.loc-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 28px;
}
.loc-card h3 {
  display: flex; align-items: center; gap: 10px; font-size: 18px; margin-bottom: 14px;
}
.loc-card h3 svg { width: 20px; height: 20px; color: #06b6d4; }
.loc-card p { color: var(--text-secondary, rgba(255,255,255,0.7)); line-height: 1.6; font-size: 15px; }
.loc-list { list-style: none; padding: 0; margin: 0; }
.loc-list li {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 0; color: var(--text-secondary, rgba(255,255,255,0.78)); font-size: 15px;
}
.loc-list li svg { width: 16px; height: 16px; color: #22c55e; flex: 0 0 16px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.price-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
}
.price-card-feat {
  background: linear-gradient(160deg, rgba(59,130,246,0.12), rgba(6,182,212,0.05));
  border: 1px solid rgba(59,130,246,0.3);
}
.price-icon {
  width: 48px; height: 48px; margin: 0 auto 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff; border-radius: 12px;
}
.price-icon svg { width: 24px; height: 24px; }
.price-card h3 { font-size: 17px; margin-bottom: 12px; }
.price-amount {
  font-size: 32px; font-weight: 800; line-height: 1; margin-bottom: 12px;
  color: #fff;
}
.price-amount .sym { font-size: 18px; opacity: 0.7; margin-right: 4px; }
.price-amount sup { font-size: 18px; color: #06b6d4; margin-left: 2px; }
.price-note { font-size: 13px; color: var(--text-secondary, rgba(255,255,255,0.6)); line-height: 1.5; }
.price-disclaimer {
  text-align: center; margin-top: 30px; font-size: 13px;
  color: var(--text-secondary, rgba(255,255,255,0.55)); max-width: 760px; margin-left: auto; margin-right: auto;
}

.related-markets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.related-market {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text, #fff);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
}
.related-market:hover {
  background: rgba(59,130,246,0.12);
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-2px);
}
.related-market svg { width: 16px; height: 16px; color: #06b6d4; flex: 0 0 16px; }
.related-cta {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 24px;
}
.related-cta .btn svg { width: 16px; height: 16px; margin-right: 6px; }

/* ===== Hub (locations.html) ===== */
.hub-region { margin-bottom: 64px; }
.hub-region h2 {
  font-size: 24px; margin-bottom: 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
}
.hub-card {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text, #fff);
  text-decoration: none;
  transition: all 0.2s ease;
}
.hub-card:hover {
  background: rgba(59,130,246,0.10);
  border-color: rgba(59,130,246,0.4);
  transform: translateY(-2px);
}
.hub-flag {
  flex: 0 0 36px;
  height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #3b82f6, #06b6d4);
  color: #fff; font-weight: 800; font-size: 12px;
  border-radius: 8px;
  letter-spacing: 1px;
}
.hub-text { display: flex; flex-direction: column; gap: 2px; }
.hub-name { font-size: 15px; font-weight: 600; }
.hub-sub { font-size: 12px; color: var(--text-secondary, rgba(255,255,255,0.55)); }

@media (max-width: 640px) {
  .loc-hero { padding-top: 110px; }
  .loc-hero .loc-meta { gap: 14px; }
  .price-amount { font-size: 26px; }
}
