/* ================= 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 ================= */

.faq-section {
  padding: 80px 20px;
  background: var(--light);
}

.faq-container {
  max-width: 1100px;
  margin: auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-header h2 {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.faq-header p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--accent);
  max-width: 700px;
  margin: auto;
  line-height: 1.6;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 18px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--secondary);
  box-shadow: 0 6px 20px rgba(15, 31, 61, 0.08);
  border: 1px solid rgba(15, 31, 61, 0.05);
  transition: 0.3s ease;
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 20px 22px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  font-family: var(--font-heading);
  background: var(--primary);
  color: var(--secondary);
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.faq-question:hover {
  background: var(--accent);
}

/* Answer */
.faq-answer {
  display: none;
  padding: 22px;
  font-size: 15px;
  font-family: var(--font-body);
  color: var(--accent);
  background: var(--secondary);
  line-height: 1.7;
}

/* Smooth open animation */
.faq-answer p {
  margin: 0;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .faq-header h2 {
    font-size: 26px;
  }

  .faq-question {
    font-size: 15px;
    padding: 16px;
  }

  .faq-answer {
    font-size: 14px;
    padding: 16px;
  }
}


/* ================= CTA SECTION ================= */

.cta-section {
  padding: 90px 20px;
  background: var(--accent);
  color: var(--secondary);
  text-align: center;
}

.cta-container {
  max-width: 1000px;
  margin: auto;
}

.cta-content h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-content p {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  max-width: 750px;
  margin: auto;
  margin-bottom: 35px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.cta-btn {
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s ease;
  font-family: var(--font-heading);
}

/* WhatsApp Button */
.primary-btn {
  background: #25D366;
  color: #fff;
}

.primary-btn:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
}

/* Call Button */
.secondary-btn {
  background: var(--secondary);
  color: var(--primary);
}

.secondary-btn:hover {
  background: var(--light);
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .cta-btn {
    width: 100%;
    text-align: center;
  }
}