/* =============================================
   GEO/AEP PAGES — Shared Styles
   css/geo-pages.css
   Loaded alongside /style.css on area, specialty,
   entity, and FAQ inner pages. Namespaced .geo-*
   to avoid collision with the main stylesheet.
   ============================================= */

/* ── GEO HERO (static image, no video) ────── */
.geo-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-size: cover;
  background-position: center 40%;
  background-color: #1a1510;
}

.geo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(248,245,240,1) 100%
  );
  z-index: 1;
}

.geo-hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 120px 40px 80px;
  max-width: 800px;
  width: 100%;
}

.geo-hero-eyebrow {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #e8d5a3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.geo-hero-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: #e8d5a3;
  flex-shrink: 0;
}

.geo-hero h1 {
  font-family: var(--display);
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.geo-hero h1 em {
  font-style: italic;
  color: #e8d5a3;
}

.geo-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.7;
  margin: 0 auto 28px;
}

/* ── GEO SECTIONS (shared layout) ─────────── */
.geo-section {
  padding: 80px 60px;
}

.geo-section.alt-bg {
  background: #ffffff;
}

.geo-section-inner {
  max-width: 800px;
  margin: 0 auto;
}

/* ── GEO INTRO ────────────────────────────── */
.geo-intro {
  background: var(--bg);
}

.geo-intro p {
  font-size: 16px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 20px;
  max-width: 720px;
}

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

/* ── GEO CREDIBILITY ──────────────────────── */
.geo-credibility {
  background: #ffffff;
}

.geo-cred-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

/* Reuses .cred-tag from style.css */

.geo-cred-brokerage {
  font-size: 10px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

/* ── GEO FAQ (details/summary accordion) ──── */
.geo-faq {
  background: var(--bg);
}

.geo-faq-list {
  margin-top: 32px;
}

.geo-faq-item {
  border-bottom: 1px solid var(--border);
}

.geo-faq-item:first-child {
  border-top: 1px solid var(--border);
}

.geo-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.geo-faq-item summary::-webkit-details-marker {
  display: none;
}

.geo-faq-item summary::after {
  content: '+';
  font-family: var(--body);
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.3s;
}

.geo-faq-item[open] summary::after {
  content: '−';
}

.geo-faq-item summary:hover {
  color: var(--gold);
}

.geo-faq-answer {
  padding: 0 0 24px;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.8;
  max-width: 680px;
}

/* ── GEO CROSS-LINKS ─────────────────────── */
.geo-cross-links {
  background: #ffffff;
}

.geo-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.geo-link-card {
  display: block;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  background: var(--bg);
  transition: all 0.3s;
}

.geo-link-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(184,146,74,0.12);
}

.geo-link-title {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.geo-link-desc {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ── RESPONSIVE ───────────────────────────── */
@media (max-width: 768px) {
  .geo-section {
    padding: 56px 24px;
  }

  .geo-hero-content {
    padding: 100px 24px 60px;
  }

  .geo-hero-sub {
    font-size: 13px;
  }

  .geo-faq-item summary {
    font-size: 17px;
  }

  .geo-links-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .geo-hero h1 {
    font-size: 30px;
  }

  .geo-section {
    padding: 40px 16px;
  }
}
