/* ================= CITY HERO ================= */
.city-hero {
  padding: 120px 20px;
  text-align: center;
  background:
    linear-gradient(rgba(15,31,61,0.9), rgba(15,31,61,0.9)),
    url('hero.png') center/cover no-repeat;
}

.city-hero h1 {
  font-family: var(--font-heading);
  font-size: 44px;
  color: #ffffff;
  margin-bottom: 18px;
}

.city-hero p {
  max-width: 850px;
  margin: auto;
  font-size: 18px;
  line-height: 1.7;
  color: #e5e7eb;
}

/* Responsive */
@media (max-width: 576px) {
  .city-hero h1 {
    font-size: 32px;
  }
  .city-hero p {
    font-size: 16px;
  }
}

/* ================= OUR SERVICES SECTION ================= */

.services-section {
  position: relative;
  background:
    linear-gradient(rgba(15,31,61,0.85), rgba(15,31,61,0.85)),
    url("hero.png") center/cover no-repeat;
  padding: 110px 20px;
  color: var(--secondary);
}

.services-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.services-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.services-header h2 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #94a3b8;
}

.services-header h3 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-top: 10px;
}

.services-header p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.8;
  color: #cbd5e1;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  background: rgba(255, 255, 255, 0.08);
  padding: 34px 28px;
  border-radius: 18px;
  text-align: center;
  transition: 0.35s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

/* ICON */
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

/* TEXT */
.service-card h4 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #e5e7eb;
}

/* HOVER */
.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.14);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-header h3 {
    font-size: 30px;
  }
}

@media (max-width: 576px) {
  .services-section {
    padding: 90px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-header h3 {
    font-size: 26px;
  }
}



.faq-section {
  padding: 60px 20px;
  background: var(--light);
  color: var(--primary);
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 5px;
}
.faq-header h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--accent);
}
.faq-header p {
  font-size: 1rem;
  margin-bottom: 40px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.faq-card {
  background: var(--secondary);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-5px);
}

.faq-question {
  font-weight: 600;
  font-family: var(--font-heading);
  margin-bottom: 10px;
  position: relative;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.faq-card.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-card.active .faq-answer {
  max-height: 500px;
}

@media(min-width:768px){
  .faq-grid {
    grid-template-columns: 1fr 1fr;
  }
}