/* ============================================
   LIIT GUYS — Location & Service Pages
   ============================================ */

/* Page hero (no video, gradient bg) */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, rgba(0, 212, 255, 0.05) 0%, var(--dark-bg) 100%);
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at 30% 20%, rgba(123, 47, 247, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.breadcrumb a:hover {
  color: var(--neon-blue);
}

.page-hero h1 {
  margin-bottom: 20px;
  max-width: 700px;
}

.page-hero > .container > p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 32px;
  line-height: 1.7;
}

/* Service details list on cards */
.service-details {
  margin: 16px 0;
  padding-left: 0;
}

.service-details li {
  color: var(--text-secondary);
  font-size: 0.88rem;
  padding: 4px 0 4px 20px;
  position: relative;
}

.service-details li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--neon-blue);
  font-size: 0.8rem;
}

.service-card .btn {
  margin-top: 16px;
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(0, 212, 255, 0.15);
}

.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.faq-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Nearby section */
.nearby-section {
  padding: 60px 0;
  border-top: 1px solid var(--glass-border);
}

.nearby-section h3 {
  text-align: center;
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.nearby-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.nearby-links a {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: all 0.3s ease;
}

.nearby-links a:hover {
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  background: rgba(0, 212, 255, 0.05);
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .page-hero { padding: 100px 0 60px; }
  .page-hero h1 { font-size: 1.6rem; }
  .faq-item { padding: 20px; }
  .nearby-links a { padding: 6px 14px; font-size: 0.82rem; }
}
