/* ==========================================================================
   G ROLL-OFFS — PREMIUM SERVICE AREAS INDEX STYLES
   ========================================================================== */

/* Hero Section */
.service-areas-hero {
  padding: 120px 24px 80px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at center, rgba(29, 95, 219, 0.15) 0%, transparent 70%), var(--bg);
  border-bottom: 2px solid var(--accent);
}

.service-areas-hero h1 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  line-height: 0.95;
}

.service-areas-hero h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--accent);
  margin: 20px auto 0;
  border-radius: 2px;
}

.service-areas-hero .hero-sub {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-muted-dark);
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Map Section */
.map-section {
  padding: 60px 24px 80px;
  background: var(--bg);
}

.map-wrapper {
  max-width: 1150px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.map-frame {
  aspect-ratio: 16/10;
  width: 100%;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-info {
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  /* background: var(--bg-elevated); */
}

.map-info h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 2.5rem;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
}

.map-info p {
  color: var(--text-muted-dark);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

/* City Grid Section */
.city-grid-section {
  padding: 80px 24px;
  background: var(--bg-elevated);
}

.city-grid-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

/* City Cards */
.city-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.city-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.city-card:hover {
  border-color: var(--accent-bright);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(29, 95, 219, 0.15);
}

.city-card:hover::before {
  opacity: 1;
}

.city-card.primary-city {
  border-color: var(--accent-bright);
  background: rgba(29, 95, 219, 0.03);
}

.city-card.primary-city::before {
  opacity: 1;
  background: var(--accent-bright);
}

.city-badge {
  display: inline-block;
  background: rgba(29, 95, 219, 0.15);
  color: var(--accent-bright);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.city-badge.primary {
  background: var(--accent);
  color: #fff;
}

.city-card h3 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: 2.2rem;
  text-transform: uppercase;
  color: #fff;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}

.city-details {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  width: 100%;
}

.city-details li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-muted-dark);
  font-size: 0.95rem;
  display: flex;
  justify-content: space-between;
}

.city-details li:last-child {
  border-bottom: none;
}

.city-details li strong {
  color: #fff;
}

.city-card-btn {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-top: auto;
  transition: color 0.2s ease;
}

.city-card:hover .city-card-btn {
  color: #fff;
}

/* Don't See Your City? Band */
.dont-see-band {
  background: linear-gradient(135deg, var(--accent-deep) 0%, #000 100%);
  padding: 80px 24px;
  border-top: 4px solid var(--accent);
  border-bottom: 2px solid var(--border);
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.dont-see-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dont-see-band h2 {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  text-transform: uppercase;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.dont-see-band p {
  font-size: 15px;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 32px;
  color: var(--text-muted-dark);
}

.dont-see-band .phone-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 18px 36px;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.2s;
  border: 2px solid var(--accent);
}

.dont-see-band .phone-cta-btn:hover {
  background: #fff;
  color: var(--accent-deep);
  border-color: #fff;
  transform: translateY(-2px);
}

/* Coverage Statement Section */
.coverage-statement-section {
  padding: 80px 24px;
  background: var(--bg);
}

.coverage-statement-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.coverage-statement-section h2 {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.coverage-statement-section p {
  color: var(--text-muted-dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 900px) {
  .map-wrapper {
    grid-template-columns: 1fr;
  }
  
  .map-frame {
    aspect-ratio: 4/3;
  }
  
  .map-info {
    padding: 36px 24px;
  }
}
