/* Services Landing Page + Smart Calculator + FAQ */

/* ── Services Grid ─── */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); }

.service-card {
  display: flex; gap: var(--space-md); padding: var(--space-lg);
  background: var(--card); border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon { font-size: 3rem; flex-shrink: 0; }
.service-card__content h3 { margin-bottom: 4px; }
.service-card__fr { color: var(--muted-fg); font-size: 0.85rem; font-style: italic; display: block; margin-bottom: var(--space-xs); }
.service-card__content p { color: var(--muted-fg); font-size: 0.9rem; line-height: 1.7; }
.service-card__meta {
  display: flex; gap: var(--space-md); margin-top: var(--space-sm);
  font-size: 0.85rem; color: var(--accent); font-weight: 600;
}

/* ── Steps ─── */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.step-card { text-align: center; padding: var(--space-lg); }
.step-card__number {
  width: 56px; height: 56px; border-radius: 50%; background: var(--accent); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 700;
  margin: 0 auto var(--space-sm); font-family: var(--font-heading-fr);
}
.step-card h3 { margin-bottom: var(--space-xs); }
.step-card p { color: var(--muted-fg); font-size: 0.9rem; }

/* ── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: var(--space-sm); }
.faq-item {
  background: var(--card); border-radius: var(--radius-md);
  border: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: var(--space-md); background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 1rem; font-weight: 600; color: var(--fg); text-align: right;
}
.faq-question svg { transition: transform var(--transition-fast); flex-shrink: 0; margin-right: var(--space-sm); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height var(--transition-base), padding var(--transition-base);
  padding: 0 var(--space-md);
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 var(--space-md) var(--space-md); }
.faq-answer p { color: var(--muted-fg); font-size: 0.9rem; line-height: 1.7; }

/* ── Smart Calculator ─── */
.smart-calc {
  background: var(--card); border: 2px solid var(--accent); border-radius: var(--radius-lg);
  padding: var(--space-lg); margin-bottom: var(--space-lg);
}
.smart-calc__title { color: var(--accent); font-size: 1.2rem; margin-bottom: 4px; }
.smart-calc__subtitle { color: var(--muted-fg); font-size: 0.85rem; margin-bottom: var(--space-md); }
.smart-calc__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm); margin-bottom: var(--space-md); }
.smart-calc__field label { display: block; font-size: 0.8rem; font-weight: 600; margin-bottom: 4px; color: var(--fg); }
.smart-calc__input {
  width: 100%; padding: 10px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; transition: border-color var(--transition-fast);
  background: var(--bg);
}
.smart-calc__input:focus { border-color: var(--accent); outline: none; box-shadow: 0 0 0 3px rgba(217,119,6,0.15); }
.smart-calc__result { background: var(--bg); border-radius: var(--radius-md); padding: var(--space-md); }
.smart-calc__result-row {
  display: flex; justify-content: space-between; padding: 8px 0;
  border-bottom: 1px solid var(--border); font-size: 0.95rem;
}
.smart-calc__result-row:last-child { border-bottom: none; }
.smart-calc__result-highlight { color: var(--accent); font-size: 1.1rem; }
.smart-calc__result-total { color: var(--success); font-size: 1.15rem; font-weight: 700; }

/* ── Booking Wrapper ─── */
.booking-wrapper {
  background: var(--card); border-radius: var(--radius-lg); border: 1px solid var(--border);
  padding: var(--space-lg); box-shadow: var(--shadow-md);
}

/* ── Responsive ─── */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card { flex-direction: column; text-align: center; }
  .steps-grid { grid-template-columns: 1fr; }
  .smart-calc__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .smart-calc__grid { grid-template-columns: 1fr; }
}
