/* =========================
   SERVICES
========================= */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: var(--dark);
  padding: 30px;
  border-radius: 20px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

/* =========================
   AVIS (si tu l'utilises)
========================= */
#avis-title {
  text-align: center;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.review {
  background: #111;
  padding: 25px;
  border-left: 4px solid var(--orange);
  border-radius: 10px;
}

@keyframes floatUp {
  0% {
    transform: translateY(0);
    opacity: 0.55;
  }
  50% {
    transform: translateY(-14px);
    opacity: 0.9;
  }
  100% {
    transform: translateY(0);
    opacity: 0.55;
  }
}

/* =========================
   CONTACT / RÉSERVATION
========================= */
.contact-split {
  padding: 80px 20px;
  background:
    radial-gradient(
      800px 400px at 50% -10%,
      rgba(255, 122, 0, 0.15),
      transparent 60%
    ),
    linear-gradient(180deg, #000000, #0b0b0b 60%, #141414 100%);
  color: #ffffff;
}

.contact-split__container {
  max-width: 1200px;
  margin: 0 auto;
}

.contact-split__header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-split__title {
  margin: 0;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: 0.2px;
}

.contact-split__title span {
  color: var(--orange);
}

.contact-split__subtitle {
  margin: 12px 0 0;
  color: rgba(234, 240, 255, 0.7);
  font-size: 16px;
}

/* GRID */
.contact-split__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 28px;
  align-items: start;
}

/* LEFT */
.contact-left {
  padding-top: 8px;
}

.contact-left__title {
  margin: 0 0 18px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.info-list {
  display: grid;
  gap: 18px;
  max-width: 420px;
}

.info-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: center;
  transition: transform 0.25s ease;
}

.info-ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: rgba(255, 122, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.18);
}

.info-label {
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 4px;
}

.info-value {
  font-size: 14px;
  color: rgba(234, 240, 255, 0.75);
  text-decoration: none;
}

.info-item:hover {
  transform: translateX(4px);
}

.info-item:hover .info-value {
  color: var(--orange);
}

.info-item:hover .info-ico {
  background: rgba(255, 122, 0, 0.15);
  box-shadow: 0 0 15px rgba(255, 122, 0, 0.35);
  color: var(--orange);
  transition: all 0.3s ease;
}

.info-value {
  transition: color 0.3s ease;
}

/* RIGHT CARD */
.form-card {
  border-radius: 12px;
  padding: 26px 26px 18px;
  background: #111;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 122, 0, 0.15);
  isolation: isolate;
}

.form-card:hover {
  border-color: rgba(255, 122, 0, 0.28);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.7),
    0 0 30px rgba(255, 122, 0, 0.12);
  transition: all 0.3s ease;
}

.form-card__title {
  margin: 2px 0 18px;
  font-size: 22px;
  font-weight: 800;
  color: #ffffff;
}

.devis-form {
  display: grid;
  gap: 16px;
  isolation: isolate;
}

.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.88);
}

.field label span {
  color: var(--orange);
  font-weight: 900;
  text-shadow: 0 0 6px rgba(255, 122, 0, 0.4);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: #0f0f0f;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 12px 12px;
  font: inherit;
  outline: none;
}

.field textarea {
  resize: vertical;
  min-height: 140px;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(234, 240, 255, 0.38);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(255, 122, 0, 0.9);
  box-shadow: 0 0 0 3px rgba(255, 122, 0, 0.18);
}

.field select {
  background: #111;
  color: var(--orange);
  border: 1px solid rgba(255, 122, 0, 0.4);
}

.field select option {
  background: #000;
  color: var(--orange);
}

.field input:invalid,
.field select:invalid {
  border-color: rgba(255, 80, 80, 0.6);
}

.field input:valid,
.field select:valid {
  border-color: rgba(80, 200, 120, 0.4);
}

/* BUTTON */
.btn-send {
  border: 0;
  border-radius: 10px;
  padding: 12px 14px;
  font-weight: 800;
  color: black;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, #ff7a00, #ffb347);
  box-shadow: 0 16px 30px rgba(255, 122, 0, 0.35);
  transition:
    transform 0.15s ease,
    filter 0.15s ease;
}

.btn-send:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-send:active {
  transform: translateY(0);
  filter: brightness(0.98);
}

.btn-send__ico {
  font-size: 14px;
  opacity: 0.95;
}

/* NOTE BAS DE FORM */
.form-note {
  margin: 10px 0 0;
  font-size: 11.5px;
  line-height: 1.35;
  color: rgba(234, 240, 255, 0.6);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 980px) {
  .contact-split__grid {
    grid-template-columns: 1fr;
  }
  .info-list {
    max-width: 100%;
  }
}

@media (max-width: 620px) {
  .row-2 {
    grid-template-columns: 1fr;
  }
}

/* =========================
   FORM
========================= */
.form-card input,
.form-card textarea,
.form-card select {
  background: #0f0f0f;
}
