/* ===============================
   BOOK APPOINTMENT PAGE STYLES
   =============================== */

.appointment-hero {
  background: linear-gradient(to bottom right, var(--light-bg), #ffffff);
  text-align: center;
  padding: 100px 20px 70px;
}

.appointment-hero h1 {
  color: var(--accent-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.appointment-hero p {
  color: var(--soft-text);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
}

/* ---------- STEPS SECTION ---------- */
.steps-section {
  background: var(--white);
  padding: 80px 20px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.step-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 35px 25px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.step-number {
  display: inline-block;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.step-card h2 {
  color: var(--dark-text);
  margin-bottom: 10px;
}

.step-card p {
  color: var(--soft-text);
  font-size: 1rem;
  line-height: 1.7;
}

/* ---------- WHY SECTION ---------- */
.why-section {
  background: var(--light-bg);
  padding: 80px 20px;
  text-align: center;
}

.why-section h2 {
  color: var(--accent-color);
  margin-bottom: 20px;
  font-size: 2rem;
}

.why-section p {
  color: var(--soft-text);
  max-width: 800px;
  margin: 0 auto 15px;
  line-height: 1.8;
  font-size: 1.05rem;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(to right, var(--accent-color), var(--secondary-color));
  text-align: center;
  color: var(--white);
  padding: 90px 20px;
}

.cta-section h2 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.cta-section p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #fffdf6;
}

.cta-section .btn-primary {
  background: var(--white);
  color: var(--accent-color);
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.cta-section .btn-primary:hover {
  background: var(--secondary-color);
  color: var(--dark-text);
}

/* ---------- 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) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .appointment-hero h1 {
    font-size: 2rem;
  }

  .why-section h2 {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
}
