
/* =====================================================
   PAGE TITLE
===================================================== */

.page-title {
  padding: 48px 20px 36px;
  background: #ffffff;
  text-align: center;
}

.page-title h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #004c4d;
  margin-bottom: 10px;
}

.page-title p {
  font-size: 1rem;
  color: #666;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}
/* =====================================================
   CONSULTATION PAGE – PAGE-SPECIFIC STYLES ONLY
===================================================== */

.consultation-content {
  background: transparent;
}

/* =====================================================
   INTRO SECTION
===================================================== */

.consultation-intro {
  padding: 70px 20px 40px;
}

.consultation-container {
  max-width: 900px;
  margin: auto;
}

.consultation-intro h2 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #004c4d;
  margin-bottom: 10px;
  text-align: center;
}

.consultation-text {
  text-align: left;
}

.consultation-text h3 {
  font-size: 1.4rem;
  color: #006d6f;
  margin-bottom: 15px;
  text-align: center;
}

.consultation-text h3 span {
  display: block;
  font-size: 1rem;
  color: #555;
  font-weight: 400;
  margin-top: 4px;
}

.consultation-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 15px;
}

/* =====================================================
   STEPS
===================================================== */

.consultation-steps {
  background: #f0fbfa;
  padding: 40px 20px;
  border-radius: 16px;
  margin: 30px 0;
}

.section-heading {
  text-align: center;
  font-size: 1.6rem;
  color: #004c4d;
  margin-bottom: 25px;
}

.step-box {
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 4px solid #00a6a6;
}

.step-box h4 {
  font-size: 1rem;
  color: #006d6f;
  margin-bottom: 6px;
}

.step-box p {
  font-size: 0.95rem;
  color: #555;
}

.steps-note {
  font-size: 0.9rem;
  color: #666;
  margin-top: 10px;
}

/* =====================================================
   FAQ
===================================================== */

.consultation-faq {
  padding: 40px 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  color: #004c4d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question span {
  font-size: 1.5rem;
  color: #00a6a6;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
  font-size: 0.95rem;
  color: #555;
}

/* =====================================================
   LOCATION
===================================================== */

.consultation-location {
  padding: 30px 20px;
  text-align: center;
}

.muted-text {
  font-size: 0.9rem;
  color: #666;
}

/* =====================================================
   CTA
===================================================== */

/* =====================================================
   CONSULTATION CTA — FULL WIDTH BUT CONTENT CENTERED
===================================================== */

.consultation-cta {
  background: #e8f7f6;
  max-width: 900px;
  margin: 40px auto;
  padding: 32px 22px;
  border-radius: 14px;
}

.consultation-cta .consultation-container {
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.whatsapp-btn {
  display: inline-block;
  background: #25D366;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
}
/* =====================================================
   DESKTOP REFINEMENT
===================================================== */

@media (min-width: 768px) {
  .consultation-container {
    max-width: 1000px;
  }
}
/* =====================================================
   GOOGLE MAP + DIRECTIONS
===================================================== */

.map-wrapper {
  margin-top: 15px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.map-wrapper iframe {
  width: 100%;
  height: 280px;
  border: 0;
  pointer-events: none; /* important for clean tap */
}

/* Make entire map clickable */
.map-link {
  display: block;
}

/* Get Directions button */
.directions-btn {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 26px;
  background: #006d6f;
  color: #ffffff;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 0.3s ease, background 0.3s ease;
}

.directions-btn:hover {
  background: #00a6a6;
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .map-wrapper iframe {
    height: 220px;
  }
}

