/* Services hub page styles */

/* Nav active state */
.nav-active {
  color: #e85d04 !important;
  font-weight: 600;
}

/* Service cards grid */
.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.service-hub-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s ease;
}

.service-hub-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-hub-card .card-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.service-hub-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 8px;
}

.service-hub-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 16px;
}

.service-hub-card .card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e85d04;
  text-decoration: none;
  transition: color 0.2s;
}

.service-hub-card .card-link:hover {
  color: #d45203;
}

/* City cards grid */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.city-hub-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  padding: 24px;
  transition: box-shadow 0.2s ease;
}

.city-hub-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.city-hub-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a5c;
  margin: 0 0 8px;
}

.city-hub-card p {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  margin-bottom: 16px;
}

.city-hub-card .card-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: #e85d04;
  text-decoration: none;
  transition: color 0.2s;
}

.city-hub-card .card-link:hover {
  color: #d45203;
}

/* FAQ accordion */
.services-faq-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-faq-list .faq-item {
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.services-faq-list .faq-item:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.services-faq-list .faq-item[open] {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.services-faq-list .faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.services-faq-list .faq-question::-webkit-details-marker { display: none; }
.services-faq-list .faq-question::marker { display: none; }

.services-faq-list .faq-question-text {
  font-size: 1rem;
  font-weight: 700;
  color: #1a3a5c;
  line-height: 1.4;
  flex: 1;
}

.services-faq-list .faq-chevron {
  color: #6a6a6a;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
}

.services-faq-list .faq-item[open] .faq-chevron {
  transform: rotate(180deg);
  color: #e85d04;
}

.services-faq-list .faq-answer {
  padding: 0 24px 20px;
  border-top: 1px solid #e5e5e5;
}

.services-faq-list .faq-answer p {
  font-size: 0.97rem;
  line-height: 1.75;
  color: #3a3a3a;
  padding-top: 18px;
  margin: 0;
}

/* Section sub-heading */
.section-sub {
  font-size: 1rem;
  color: #666;
  max-width: 640px;
  line-height: 1.6;
  margin: 8px 0 0;
}

@media (max-width: 600px) {
  .services-hub-grid {
    grid-template-columns: 1fr;
  }
  .cities-grid {
    grid-template-columns: 1fr;
  }
}
