/* === GEO Stats Banner === */
.geo-stats-banner {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.925rem;
  color: #334155;
}
.geo-stats-banner .geo-stat-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.geo-stats-banner .geo-stat-value {
  font-weight: 700;
  color: #1e293b;
}
.geo-stats-banner .geo-stat-label {
  color: #64748b;
}

/* === GEO Summary Box === */
.geo-summary-box {
  padding: 1.25rem;
  margin: 1.25rem 0;
  background: #fffbeb;
  border-left: 4px solid #f59e0b;
  border-radius: 6px;
  font-size: 0.95rem;
  line-height: 1.7;
}
.geo-summary-box .geo-summary-title {
  font-weight: 700;
  color: #92400e;
  margin-bottom: 0.5rem;
}

/* === GEO Evidence Section === */
.geo-evidence-section {
  margin: 2rem 0;
}
.geo-evidence-section h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: #1e293b;
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: 0.5rem;
}

/* === Complaint Table === */
.geo-complaint-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.925rem;
}
.geo-complaint-table th {
  background: #f1f5f9;
  padding: 0.6rem 0.75rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #cbd5e1;
}
.geo-complaint-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.geo-complaint-table .complaint-bar {
  display: inline-block;
  height: 8px;
  background: #ef4444;
  border-radius: 4px;
  min-width: 4px;
}
.geo-complaint-table .complaint-tag {
  display: inline-block;
  font-size: 0.8rem;
  color: #dc2626;
  background: #fef2f2;
  padding: 0.1rem 0.5rem;
  border-radius: 4px;
}

/* === User Photo Gallery === */
.geo-photo-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.75rem;
  margin: 1rem 0;
}
.geo-photo-gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  transition: transform 0.15s;
}
.geo-photo-gallery img:hover {
  transform: scale(1.03);
}

/* === Methodology Note === */
.geo-methodology {
  margin-top: 2rem;
  padding: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.6;
}

/* === CTA Button === */
.geo-cta-button {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  background: #2563eb;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.15s;
}
.geo-cta-button:hover {
  background: #1d4ed8;
}
.geo-cta-button--red {
  background: #dc2626;
}
.geo-cta-button--red:hover {
  background: #b91c1c;
}
.geo-cta-button--green {
  background: #059669;
}
.geo-cta-button--green:hover {
  background: #047857;
}

/* === Explore More Block === */
.geo-explore-more {
  margin: 2rem 0;
  padding: 1.25rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
}
.geo-explore-more h3 {
  margin-bottom: 0.75rem;
}
.geo-explore-more .geo-explore-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* === Tool Container === */
.geo-tool-container {
  max-width: 1100px;
  margin: 2rem auto;
  padding: 0 1rem;
}

/* === Finder Wizard === */
.finder-steps { margin: 1.5rem 0; }
.finder-progress {
  height: 6px;
  background: #e2e8f0;
  border-radius: 3px;
  margin-bottom: 1.5rem;
}
.finder-progress-fill {
  height: 100%;
  background: #2563eb;
  border-radius: 3px;
  transition: width 0.3s;
}
.finder-step { display: none; }
.finder-step.active { display: block; }
.finder-result-card {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 1.25rem;
  margin: 1rem 0;
}
.finder-result-card .result-rank {
  font-size: 0.8rem;
  color: #2563eb;
  font-weight: 700;
}
.finder-result-card .result-score {
  font-weight: 700;
  color: #059669;
}

/* === Heatmap Grid === */
.heatmap-grid {
  display: grid;
  gap: 2px;
  font-size: 0.85rem;
  overflow-x: auto;
}
.heatmap-cell {
  padding: 0.5rem;
  text-align: center;
  min-width: 60px;
  cursor: default;
}
.heatmap-cell.clickable { cursor: pointer; }
.heatmap-cell.clickable:hover { outline: 2px solid #2563eb; }

/* === Responsive === */
@media (max-width: 640px) {
  .geo-stats-banner {
    flex-direction: column;
    gap: 0.5rem;
  }
  .geo-photo-gallery {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  .geo-explore-more .geo-explore-links {
    flex-direction: column;
  }
}

/* === Category Icons === */
.category-icon.header-icon {
  display: block;
  margin: 0 auto 8px;
}
.category-icon.card-icon {
  display: block;
  margin: 0 auto 12px;
}
.category-icon.hub-icon {
  display: block;
  margin: 0 auto 12px;
}
