/* ============================================================
   IndigoWave Tech — Location / Service-Area page styles
   Shared by the metro Atlanta suburb pages (/it-support/*).
   Depends on global.css custom properties + utility classes.
   ============================================================ */

.loc-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--white-30);
  padding: 100px 0 0;
}
.loc-breadcrumb .container { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.loc-breadcrumb a { color: var(--white-60); transition: color 0.2s; }
.loc-breadcrumb a:hover { color: var(--orange); }
.loc-breadcrumb span { color: var(--white-30); }

#loc-hero {
  min-height: 60svh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: clamp(60px, 9vh, 110px) clamp(20px, 5vw, 80px) clamp(50px, 7vh, 90px);
  position: relative; overflow: hidden; text-align: center;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
.hero-glow {
  position: absolute; width: min(900px, 120vw); height: min(600px, 80vw);
  top: 50%; left: 50%; transform: translate(-50%, -55%);
  background: radial-gradient(ellipse at center, rgba(0,27,148,0.6) 0%, rgba(0,27,148,0.2) 45%, transparent 70%);
  pointer-events: none;
}
.loc-eyebrow {
  position: relative; z-index: 1;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,27,148,0.2); border: 1px solid rgba(0,27,148,0.4);
  border-radius: 100px; padding: 6px 16px;
  font-family: var(--font-mono); font-size: clamp(0.6rem, 1.5vw, 0.7rem);
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--white-80);
  margin-bottom: 22px;
}
.loc-h1 {
  position: relative; z-index: 1; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2.2rem, 6.5vw, 4.2rem); line-height: 1.05; letter-spacing: -0.01em;
  color: var(--white); max-width: 16ch; margin: 0 auto 20px;
}
.loc-sub {
  position: relative; z-index: 1; font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--white-60); max-width: 60ch; line-height: 1.7; margin: 0 auto 34px;
}
.loc-cta-row { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }

.loc-section { padding: clamp(56px, 8vh, 100px) 0; }
.loc-section.alt { background: var(--bg-card2); }

.loc-intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.loc-intro-grid p { color: var(--white-60); line-height: 1.8; font-size: clamp(0.95rem, 2vw, 1.05rem); margin-bottom: 18px; }
.loc-prose { max-width: 70ch; }
.loc-prose p { color: var(--white-60); line-height: 1.8; font-size: clamp(0.95rem, 2vw, 1.05rem); margin-bottom: 18px; }

.loc-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.loc-card {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px;
  padding: clamp(22px, 3vw, 30px); transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.loc-card:hover { transform: translateY(-4px); border-color: rgba(0,27,148,0.35); box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
.loc-card h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.25rem; color: var(--white); margin-bottom: 10px; }
.loc-card p { color: var(--white-60); line-height: 1.65; font-size: 0.92rem; }
.loc-card a { color: var(--orange); font-size: 0.85rem; font-family: var(--font-mono); }

.faq-wrap { max-width: 800px; margin: 36px auto 0; }
details.faq-item {
  border: 1px solid var(--border); border-radius: 12px; background: var(--bg-card);
  padding: 0 22px; margin-bottom: 12px;
}
details.faq-item summary {
  cursor: pointer; list-style: none; padding: 20px 0;
  font-family: var(--font-body); font-weight: 500; font-size: 1.02rem; color: var(--white);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: '+'; color: var(--orange); font-size: 1.4rem; line-height: 1; transition: transform 0.2s; }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p { color: var(--white-60); line-height: 1.75; padding: 0 0 22px; font-size: 0.95rem; }

.loc-nearby { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.loc-nearby a {
  font-family: var(--font-mono); font-size: 0.8rem; color: var(--white-60);
  border: 1px solid var(--border); border-radius: 100px; padding: 8px 16px; transition: all 0.2s;
}
.loc-nearby a:hover { color: var(--orange); border-color: rgba(0,27,148,0.4); }

.loc-cta-band { text-align: center; }
.loc-cta-band p { color: var(--white-60); max-width: 54ch; margin: 16px auto 30px; line-height: 1.7; }

/* Light theme */
[data-theme="light"] .loc-h1,
[data-theme="light"] .loc-card h3,
[data-theme="light"] details.faq-item summary { color: var(--indigo-mid); }
[data-theme="light"] .loc-card,
[data-theme="light"] details.faq-item { box-shadow: 0 2px 14px rgba(0,27,148,0.06); }

@media (max-width: 900px) {
  .loc-intro-grid { grid-template-columns: 1fr; }
  .loc-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .loc-card-grid { grid-template-columns: 1fr; }
}
