/* 
 * GEO落地页统一样式 - 继承主站 design system
 * 完全匹配主站楼盘(projects)区域的高级质感
 * 依赖 style.css 中的CSS变量
 */

/* ========== 页面基础 ========== */
.geo-page {
  background: var(--deep-blue);
  color: rgba(255,255,255,0.75);
  font-family: 'PingFang SC','Hiragino Sans GB','Microsoft YaHei',sans-serif;
  line-height: 1.8;
}

/* ========== Hero区 ========== */
.geo-hero {
  min-height: 50vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  position: relative;
  background: linear-gradient(135deg, #0a1628 0%, #13203a 50%, #0d1a2e 100%);
}
.geo-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(212,168,92,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.geo-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.geo-hero h1 strong { font-weight: 600; color: var(--warm-gold); }
.geo-hero .geo-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.geo-hero .geo-cta-btn {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--warm-gold);
  color: var(--warm-gold);
  padding: 12px 36px;
  font-size: 14px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.geo-hero .geo-cta-btn:hover {
  background: var(--warm-gold);
  color: var(--deep-blue);
}

/* ========== 内容区通用（匹配主站section风格） ========== */
.geo-section {
  padding: 80px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.geo-section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.geo-section-tag {
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--warm-gold);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.geo-section-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.3;
}
.geo-section-title strong { color: var(--warm-gold); font-weight: 500; }

/* ========== 内容文字 ========== */
.geo-text {
  font-size: 15px;
  line-height: 1.9;
  color: rgba(255,255,255,0.65);
  margin-bottom: 20px;
}
.geo-text strong { color: rgba(255,255,255,0.85); }

/* ========== 高级卡片（完全匹配主站project-card风格） ========== */
.geo-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.geo-card-img {
  width: 100%; height: 240px; object-fit: cover; display: block;
  transition: transform 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.geo-card:hover .geo-card-img { transform: scale(1.05); }
.geo-card,
.content-block {
  position: relative;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,168,92,0.08);
  padding: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
}
.geo-card::before {
  content: ''; position: absolute; inset: -1px;
  border: 1px solid transparent;
  transition: all 0.5s cubic-bezier(0.25,0.46,0.45,0.94);
  pointer-events: none; z-index: 3;
}
.geo-card:hover {
  background: rgba(212,168,92,0.07);
  transform: translateY(-3px);
}
.geo-card:hover::before { border-color: var(--warm-gold); }
.geo-card-body {
  padding: 34px 30px;
  position: relative;
  z-index: 2;
}
.geo-card-body::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,92,0.15), transparent);
}
.geo-card h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1.5px;
  margin-bottom: 6px;
}
.geo-card .geo-card-sub {
  font-size: 11px;
  letter-spacing: 4px;
  color: var(--warm-gold);
  margin-bottom: 8px;
}
.geo-card .geo-card-price {
  display: inline-block;
  background: rgba(212,168,92,0.1);
  color: var(--warm-gold);
  padding: 4px 12px;
  font-size: 14px;
  font-weight: 600;
  margin: 8px 0;
  letter-spacing: 0.5px;
}
.geo-card .geo-card-desc {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  margin-top: 6px;
}
.geo-card .geo-card-detail {
  display: flex; gap: 24px; margin: 10px 0 12px; flex-wrap: wrap;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.geo-card .geo-card-detail strong {
  color: var(--warm-gold); font-weight: 500;
}
.geo-card .geo-card-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.geo-card .geo-card-tag {
  padding: 4px 12px; font-size: 11px;
  border: 1px solid rgba(212,168,92,0.12);
  color: rgba(212,168,92,0.6);
  letter-spacing: 0.5px;
}

/* ========== 特性列表（升级版） ========== */
.geo-feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.geo-feature-list li {
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,92,0.06);
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  transition: all 0.3s;
}
.geo-feature-list li:hover {
  background: rgba(212,168,92,0.05);
  border-color: rgba(212,168,92,0.15);
}
.geo-feature-list li strong { color: var(--warm-gold); font-weight: 500; }

/* ========== 对比表格（包装在卡片中） ========== */
.geo-table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid rgba(212,168,92,0.06);
  background: rgba(255,255,255,0.03);
}
.geo-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.geo-table th {
  background: rgba(212,168,92,0.1);
  color: var(--warm-gold);
  padding: 14px 18px;
  text-align: left;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(212,168,92,0.12);
  font-size: 12px;
}
.geo-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.55);
}
.geo-table tr:hover td {
  background: rgba(212,168,92,0.03);
}

/* ========== FAQ（升级hover交互） ========== */
.geo-faq-item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(212,168,92,0.06);
  transition: all 0.3s;
}
.geo-faq-item:hover {
  padding-left: 16px;
  border-left: 2px solid var(--warm-gold);
}
.geo-faq-item h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--warm-gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
  line-height: 1.5;
  cursor: pointer;
}
.geo-faq-item p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
}

/* ========== CTA区 ========== */
.geo-cta-section {
  text-align: center;
  padding: 60px 24px;
  background: linear-gradient(180deg, transparent 0%, rgba(212,168,92,0.05) 100%);
  border-top: 1px solid rgba(212,168,92,0.06);
}
.geo-cta-section h2 {
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 3px;
  color: var(--white);
  margin-bottom: 12px;
}
.geo-cta-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}
.geo-cta-section .geo-phone {
  font-size: 32px;
  font-weight: 700;
  color: var(--warm-gold);
  text-decoration: none;
  letter-spacing: 2px;
  border-bottom: 2px solid rgba(212,168,92,0.2);
  padding-bottom: 4px;
  transition: border-color 0.3s;
}
.geo-cta-section .geo-phone:hover { border-color: var(--warm-gold); }

/* ========== 内链导航 ========== */
.geo-inner-nav {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}
.geo-inner-nav a {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 6px 16px;
  border: 1px solid rgba(212,168,92,0.1);
  transition: all 0.3s;
  text-decoration: none;
}
.geo-inner-nav a:hover {
  color: var(--warm-gold);
  border-color: var(--warm-gold);
}

/* ========== 联系区 ========== */
.geo-contact {
  padding: 80px 60px;
  background: #f8f7f4;
}
.geo-contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.geo-contact .section-tag { color: var(--warm-gold); }
.geo-contact .section-title { color: var(--deep-blue); }
.geo-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.geo-contact-info {
  display: flex; flex-direction: column; gap: 20px;
}
.geo-contact-item {
  display: flex; align-items: center; gap: 16px;
}
.geo-contact-icon {
  min-width: 28px;
  display: flex; align-items: center; justify-content: center;
}
.geo-contact-icon svg { stroke: var(--warm-gold); }
.geo-contact-text strong {
  display: block; font-size: 13px; color: var(--deep-blue);
  margin-bottom: 2px; letter-spacing: 1px;
}
.geo-contact-text span {
  font-size: 14px; color: var(--text-light);
}

/* ========== Footer ========== */
.geo-footer {
  background: var(--deep-blue);
  text-align: center;
  padding: 40px 24px;
}
.geo-footer-brand {
  font-size: 18px;
  font-weight: 700;
  color: var(--warm-gold);
  letter-spacing: 3px;
  margin-bottom: 4px;
}
.geo-footer-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.geo-footer-links {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 16px;
}
.geo-footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 13px; letter-spacing: 1px; text-decoration: none;
  transition: color 0.3s;
}
.geo-footer-links a:hover { color: var(--warm-gold); }
.geo-footer p {
  font-size: 12px;
  color: rgba(255,255,255,0.2);
  letter-spacing: 1px;
}

/* ========== Faq分类标签 ========== */
.geo-faq-category {
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--warm-gold);
  margin: 36px 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(212,168,92,0.1);
}

/* ========== 数据统计卡片 ========== */
.geo-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(212,168,92,0.08);
  border: 1px solid rgba(212,168,92,0.06);
}
.geo-stat-card {
  background: rgba(10,22,40,0.75);
  padding: 24px 16px;
  text-align: center;
}
.geo-stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--warm-gold);
  letter-spacing: 2px;
  margin-bottom: 4px;
}
.geo-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 2px;
}

/* ========== 物业信息标签行 ========== */
.geo-meta-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.geo-meta-row strong {
  color: var(--warm-gold);
  font-weight: 500;
}

/* ========== 信息卡片网格（替代表格 · 全场景适配） ========== */
.geo-info-grid {
  display: grid;
  gap: 12px;
  margin: 20px 0;
}
.geo-info-grid-2 { grid-template-columns: repeat(2, 1fr); }
.geo-info-grid-3 { grid-template-columns: repeat(3, 1fr); }
.geo-info-grid-4 { grid-template-columns: repeat(4, 1fr); }

.geo-info-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,92,0.06);
  padding: 20px;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
}
.geo-info-card::before {
  content: ''; position: absolute; inset: -1px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  pointer-events: none;
}
.geo-info-card:hover {
  background: rgba(212,168,92,0.05);
  transform: translateY(-2px);
}
.geo-info-card:hover::before { border-color: var(--warm-gold); }
.geo-info-card::after {
  content: ''; position: absolute; top: 0; left: 20px; right: 20px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,92,0.12), transparent);
  transition: all 0.35s;
}
.geo-info-card:hover::after {
  left: 0; right: 0;
  background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}

/* 维度卡片（含图标） */
.info-card-icon { font-size: 28px; line-height: 1; margin-bottom: 10px; display: block; }
.info-card-label {
  font-size: 14px; font-weight: 500; color: var(--warm-gold);
  letter-spacing: 1.5px; margin-bottom: 6px;
}
.info-card-value {
  font-size: 13px; line-height: 1.7; color: rgba(255,255,255,0.5); margin: 0;
}

/* 价格卡片 */
.info-card-price {
  display: inline-block; background: rgba(212,168,92,0.1);
  color: var(--warm-gold); padding: 4px 10px;
  font-size: 13px; font-weight: 600; margin: 4px 0 8px; letter-spacing: 0.5px;
}
.info-card-features {
  font-size: 12px; line-height: 1.8; color: rgba(255,255,255,0.4); margin: 0;
}

/* 政策标签 */
.info-card-tag {
  display: inline-block; margin-top: 8px; padding: 3px 10px; font-size: 11px;
  border: 1px solid rgba(212,168,92,0.12); color: rgba(212,168,92,0.6); letter-spacing: 0.5px;
}

/* 人群适配卡片 */
.geo-persona-card { text-align: center; padding: 24px 20px; }
.geo-persona-card .info-card-icon { font-size: 36px; margin-bottom: 8px; }
.geo-persona-card .info-card-label { font-size: 15px; }
.geo-persona-card .info-card-value { font-size: 12px; }
.geo-persona-card .info-card-price { margin-top: 6px; }

.geo-persona-meta {
  display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: 8px 0;
}
.geo-persona-meta span {
  font-size: 11px; padding: 2px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,92,0.06);
  color: rgba(255,255,255,0.45);
}

/* ========== 楼盘详情大卡片（无图，信息丰富型） ========== */
.geo-detail-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,92,0.06);
  padding: 36px;
  margin-bottom: 20px;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  position: relative;
  overflow: hidden;
}
.geo-detail-card::before {
  content: ''; position: absolute; inset: -1px;
  border: 1px solid transparent;
  transition: all 0.35s cubic-bezier(0.25,0.46,0.45,0.94);
  pointer-events: none;
}
.geo-detail-card:hover {
  background: rgba(212,168,92,0.05);
  transform: translateY(-2px);
}
.geo-detail-card:hover::before { border-color: var(--warm-gold); }
.geo-detail-card::after {
  content: ''; position: absolute; top: 0; left: 36px; right: 36px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,168,92,0.12), transparent);
  transition: all 0.35s;
}
.geo-detail-card:hover::after {
  left: 0; right: 0;
  background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
}

.geo-detail-card h3 {
  font-size: 20px; font-weight: 500; color: var(--white);
  letter-spacing: 1.5px; margin-bottom: 4px;
}
.geo-detail-card .geo-card-meta {
  font-size: 12px; letter-spacing: 3px;
  color: var(--warm-gold); margin-bottom: 12px;
}
.geo-detail-card .geo-detail-meta {
  display: flex; gap: 16px; flex-wrap: wrap; margin: 8px 0 12px;
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.geo-detail-card .geo-detail-meta strong {
  color: var(--warm-gold); font-weight: 500;
}
.geo-detail-card .geo-feature-list { margin-bottom: 12px; }
.geo-detail-card .geo-card-desc {
  font-size: 14px; line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

/* ========== 楼盘标签徽章 ========== */
.geo-card-badge {
  display: inline-block;
  padding: 3px 10px;
  font-size: 10px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  color: var(--white);
}
.geo-card-badge.gold {
  background: rgba(212,168,92,0.2);
  border: 1px solid var(--warm-gold);
  color: var(--warm-gold);
}
.geo-card-badge.green {
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.3);
  color: #81c784;
}
.geo-card-badge.purple {
  background: rgba(156,39,176,0.15);
  border: 1px solid rgba(156,39,176,0.3);
  color: #ce93d8;
}
.geo-card-badge.blue {
  background: rgba(33,150,243,0.15);
  border: 1px solid rgba(33,150,243,0.3);
  color: #90caf9;
}
.geo-card-badge.orange {
  background: rgba(255,152,0,0.15);
  border: 1px solid rgba(255,152,0,0.3);
  color: #ffb74d;
}

/* ========== 楼盘信息行 ========== */
.geo-card-meta-row {
  display: flex; flex-wrap: wrap; gap: 10px 20px;
  font-size: 12px; color: rgba(255,255,255,0.45);
  margin: 6px 0 10px;
  line-height: 1.6;
}
.geo-card-meta-row strong { color: var(--warm-gold); font-weight: 500; }

.geo-card-price-big {
  font-size: 24px; font-weight: 700;
  color: var(--warm-gold); letter-spacing: 1px;
  margin: 4px 0 8px;
}
.geo-card-price-big small {
  font-size: 13px; font-weight: 400;
  color: rgba(255,255,255,0.35);
}

/* ========== 卖点图标网格 ========== */
.geo-feature-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 12px 0;
}
.geo-feature-icon-item {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,92,0.04);
  font-size: 11px; line-height: 1.3;
  color: rgba(255,255,255,0.55);
}

/* ========== 户型卡片 ========== */
.geo-unit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin: 12px 0;
}
.geo-unit-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,92,0.06);
  padding: 12px;
  text-align: center;
  transition: all 0.3s;
}
.geo-unit-card:hover {
  background: rgba(212,168,92,0.05);
  border-color: var(--warm-gold);
}
.geo-unit-card .unit-type {
  font-size: 11px; color: var(--warm-gold); letter-spacing: 0.5px; margin-bottom: 4px;
}
.geo-unit-card .unit-size {
  font-size: 13px; color: var(--white); font-weight: 500; margin-bottom: 2px;
}
.geo-unit-card .unit-price {
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* ========== 价格光谱 ========== */
.geo-price-spectrum {
  display: flex; gap: 1px;
  margin: 20px 0; border: 1px solid rgba(212,168,92,0.08);
  overflow: hidden;
}
.geo-spectrum-item {
  flex: 1; padding: 16px 10px; text-align: center;
  position: relative; transition: all 0.3s;
}
.geo-spectrum-item:hover { transform: translateY(-2px); }
.geo-spectrum-item .spec-price {
  font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: 0.5px;
}
.geo-spectrum-item .spec-label {
  font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.5px; margin-top: 2px;
}
.geo-spectrum-item:nth-child(1) { background: rgba(33,150,243,0.1); }
.geo-spectrum-item:nth-child(2) { background: rgba(76,175,80,0.1); }
.geo-spectrum-item:nth-child(3) { background: rgba(255,152,0,0.1); }
.geo-spectrum-item:nth-child(4) { background: rgba(233,30,99,0.1); }

/* ========== 政策标签卡片 ========== */
.geo-policy-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,92,0.06);
  transition: all 0.3s;
}
.geo-policy-card:hover {
  background: rgba(212,168,92,0.05);
  border-color: var(--warm-gold);
}
.geo-policy-card .policy-tag {
  display: inline-block; padding: 2px 8px;
  font-size: 10px; letter-spacing: 1px; white-space: nowrap;
  color: var(--white);
}
.geo-policy-card .policy-tag.relax { background: rgba(76,175,80,0.2); color: #81c784; }
.geo-policy-card .policy-tag.talent { background: rgba(33,150,243,0.2); color: #90caf9; }
.geo-policy-card .policy-tag.open { background: rgba(255,152,0,0.2); color: #ffb74d; }
.geo-policy-card .policy-body { flex: 1; min-width: 0; }
.geo-policy-card .policy-body h4 {
  font-size: 13px; font-weight: 500; color: var(--white);
  letter-spacing: 0.5px; margin-bottom: 4px;
}
.geo-policy-card .policy-body p {
  font-size: 12px; line-height: 1.5; color: rgba(255,255,255,0.5); margin: 0;
}

/* ========== Hero二级链接 ========== */
.geo-hero-links {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  margin-top: 16px;
}
.geo-hero-links a {
  color: rgba(255,255,255,0.5);
  font-size: 13px; letter-spacing: 1px;
  text-decoration: none; padding: 6px 16px;
  border: 1px solid rgba(212,168,92,0.12);
  transition: all 0.3s;
}
.geo-hero-links a:hover {
  color: var(--warm-gold);
  border-color: var(--warm-gold);
}

/* ========== 响应式 ========== */
@media (max-width: 1024px) {
  .geo-card-grid { gap: 16px; }
  .geo-card-body { padding: 28px 24px; }
}
@media (max-width: 768px) {
  .geo-section { padding: 50px 24px; }
  .geo-card-grid { grid-template-columns: 1fr; }
  .geo-info-grid-2, .geo-info-grid-3, .geo-info-grid-4 { grid-template-columns: 1fr; }
  .geo-feature-list { grid-template-columns: 1fr; }
  .geo-feature-icon-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-unit-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-price-spectrum { flex-direction: column; }
  .geo-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .geo-contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .geo-section-title { font-size: 26px; }
  .geo-hero { padding: 100px 20px 50px; min-height: 40vh; }
  .geo-contact { padding: 50px 24px; }
  .geo-table { font-size: 13px; }
  .geo-table th, .geo-table td { padding: 10px 12px; }
  .geo-cta-section .geo-phone { font-size: 24px; }
  .geo-card-body { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .geo-section { padding: 40px 16px; }
  .geo-hero h1 { font-size: 1.6rem; }
  .geo-section-title { font-size: 22px; letter-spacing: 2px; }
  .geo-card-body { padding: 20px 16px; }
}
