/* ========================================
   PAGE CONTACT
   ======================================== */

/* Infos contact */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.contact-info-card {
  padding: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.contact-info-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: var(--color-gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  color: var(--color-orange);
}

.contact-info-card__icon svg {
  width: 26px;
  height: 26px;
}

.contact-info-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 0.25rem;
}

.contact-info-card__text {
  font-size: var(--text-small);
  color: var(--color-gray-700);
}

.contact-info-card__text a {
  color: var(--color-orange);
  font-weight: 600;
}

@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

/* FAQ / Accordeon */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-white);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-family: var(--font-heading);
  font-size: var(--text-body);
  font-weight: 600;
  color: var(--color-orange);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: var(--color-gray-100);
}

.faq-question__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--color-orange);
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-answer__inner {
  padding: 0 1.25rem 1rem;
  color: var(--color-gray-700);
  line-height: 1.7;
}

/* Budget table */
.budget-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-sm);
}

.budget-table th,
.budget-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--color-gray-200);
}

.budget-table th {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-orange);
  font-size: var(--text-small);
}

.budget-table td {
  font-size: var(--text-body);
}

.budget-table tr:last-child td {
  border-bottom: none;
}

.budget-table .price {
  font-weight: 700;
  color: var(--color-orange);
}
