/* ===============================
   CONSULTATIONS PAGE STYLES
   =============================== */

.consult-section {
  background: var(--white);
  padding: 90px 20px;
}

.consult-section.alt {
  background: var(--light-bg);
}

.consult-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.consult-image {
  flex: 0 0 45%;
}

.consult-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.consult-text {
  flex: 1;
  min-width: 320px;
}

.consult-text h2 {
  color: var(--accent-color);
  margin-bottom: 15px;
  font-size: 1.9rem;
}

.consult-text p {
  color: var(--soft-text);
  line-height: 1.8;
  margin-bottom: 1.2em;
  font-size: 1.05rem;
}

/* ---------- ANIMATIONS ---------- */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.9s ease;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.9s ease;
}

.visible .fade-left,
.visible .fade-right {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .consult-flex {
    flex-direction: column;
    text-align: center;
  }

  .consult-image img {
    width: 90%;
  }

  .consult-text h2 {
    margin-top: 25px;
  }
}
