.grecaptcha-badge {
  visibility: hidden !important;
}
.contact-page {
  padding-top: 0;
}
.contact-hero {
  padding: 160px 0 80px;
  background: var(--gray-900);
  text-align: center;
}
.contact-hero__label {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
@keyframes labelPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes slideRight {
  from {
    transform: translateX(-40px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes slideLeft {
  from {
    transform: translateX(40px);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}
.contact-hero__label {
  animation:
    slideUp 0.6s ease-out,
    labelPulse 2s ease-in-out 0.6s infinite;
}
.contact-hero__title {
  animation: slideUp 0.6s ease-out 0.1s both;
}
.contact-hero__text {
  animation: slideUp 0.6s ease-out 0.2s both;
}
.contact-info__card:nth-child(1) {
  animation: slideRight 0.5s ease-out 0.2s both;
}
.contact-info__card:nth-child(2) {
  animation: slideRight 0.5s ease-out 0.3s both;
}
.contact-info__card:nth-child(3) {
  animation: slideRight 0.5s ease-out 0.4s both;
}
.contact-hours {
  animation: slideRight 0.5s ease-out 0.5s both;
}
.contact-form {
  animation: slideLeft 0.6s ease-out 0.3s both;
}
.footer {
  animation: slideUp 0.6s ease-out;
}
.scroll-anim {
  transform: translateY(40px);
  transition: transform 0.6s ease-out;
}
.scroll-anim--left {
  transform: translateX(-40px);
}
.scroll-anim--right {
  transform: translateX(40px);
}
.scroll-anim--scale {
  transform: scale(0.95);
}
.scroll-anim.is-visible {
  transform: translateY(0) translateX(0) scale(1);
}
.contact-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--white);
  line-height: 1;
  margin-bottom: 16px;
}
.contact-hero__title span {
  color: var(--green);
}
.contact-hero__text {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  color: var(--gray-400);
  max-width: 500px;
  margin: 0 auto;
}
.contact-main {
  padding: 80px 0 100px;
  background: var(--white);
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-info__card {
  background: var(--gray-100);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
}
.contact-info__card:hover {
  background: var(--gray-200);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.contact-info__card:hover .contact-info__icon {
  transform: scale(1.1);
}
.contact-info__icon {
  width: 50px;
  height: 50px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.contact-info__icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}
.contact-info__content {
  flex: 1;
}
.contact-info__label {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.contact-info__value {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
}
.contact-info__value a {
  color: var(--gray-900);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-info__value a:hover {
  color: var(--green);
}
.contact-info__sub {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-top: 4px;
}
.contact-hours {
  background: var(--gray-900);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s ease;
}
.contact-hours:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.contact-hours__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}
.contact-hours__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-hours__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.contact-hours__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-hours__day {
  color: var(--gray-400);
  flex-shrink: 0;
}
.contact-hours__time {
  color: var(--white);
  font-weight: 600;
  text-align: right;
}
.contact-hours__time--closed {
  color: var(--gray-500);
}
.contact-form {
  background: var(--gray-100);
  border-radius: 24px;
  padding: 40px;
  transition: box-shadow 0.3s ease;
}
.contact-form:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.contact-form__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.contact-form__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  color: var(--gray-600);
  margin-bottom: 30px;
}
.contact-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__group--full {
  grid-column: 1 / -1;
}
.contact-form__label {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-700);
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 14px 18px;
  border: 2px solid var(--gray-300);
  border-radius: 12px;
  background: var(--white);
  color: var(--gray-900);
  transition: all 0.3s ease;
}
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(1, 136, 55, 0.1);
  transform: translateY(-2px);
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--gray-400);
}
.contact-form__textarea {
  resize: vertical;
  min-height: 140px;
}
.contact-form__submit {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}
.contact-form__submit:hover {
  background: #016d2c;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(1, 136, 55, 0.3);
}
.contact-form__submit:hover svg {
  transform: translate(3px, -3px);
}
.contact-form__submit svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}
.contact-map {
  padding: 0;
  background: var(--gray-100);
}
.contact-map__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.contact-map__info {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-map__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--gray-900);
  margin-bottom: 16px;
}
.contact-map__title span {
  color: var(--green);
}
.contact-map__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 24px;
}
.contact-map__address {
  font-family: "Inter", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--gray-900);
  line-height: 1.6;
}
.contact-map__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 14px 24px;
  background: var(--gray-900);
  color: var(--white);
  text-decoration: none;
  border-radius: 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  width: fit-content;
}
.contact-map__btn:hover {
  background: var(--green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(1, 136, 55, 0.3);
}
.contact-map__btn:hover svg {
  transform: translateX(3px);
}
.contact-map__btn svg {
  transition: transform 0.3s ease;
}
.contact-map__btn svg {
  width: 18px;
  height: 18px;
}
.contact-map__iframe {
  height: 450px;
  background: var(--gray-300);
}
.contact-map__iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.contact-map__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 24px;
  gap: 16px;
  box-sizing: border-box;
}
.contact-map__placeholder svg {
  width: 48px;
  height: 48px;
  opacity: 0.55;
}
.contact-map__placeholder p {
  max-width: 360px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
  color: #555;
}
.contact-map__load-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  background: #1a1a1a;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  transition:
    opacity 0.2s,
    transform 0.1s;
}
.contact-map__load-btn:hover {
  opacity: 0.85;
}
.contact-map__load-btn:active {
  transform: scale(0.98);
}
@media (max-width: 968px) {
  .contact-main__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-map__container {
    grid-template-columns: 1fr;
  }
  .contact-map__info {
    padding: 40px 20px;
    text-align: center;
  }
  .contact-map__btn {
    margin: 24px auto 0;
  }
  .contact-map__iframe {
    height: 350px;
  }
}
@media (max-width: 600px) {
  .contact-hero {
    padding: 140px 0 60px;
  }
  .contact-main {
    padding: 60px 0;
  }
  .contact-form {
    padding: 30px 24px;
  }
  .contact-form__grid {
    grid-template-columns: 1fr;
  }
  .contact-info__card {
    padding: 20px;
  }
  .contact-hours {
    padding: 24px 20px;
  }
  .contact-hours__item {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
  }
  .contact-hours__time {
    font-size: 1rem;
    text-align: left;
  }
  .contact-hours__day {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }
  .contact-map__info {
    padding: 30px 20px;
  }
  .contact-map__iframe {
    height: 280px;
  }
}

/* Mention légale reCAPTCHA sous le bouton d'envoi */
.contact-form__recaptcha-notice {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  color: #a3a3a3;
  margin-top: 14px;
  line-height: 1.5;
}
.contact-form__recaptcha-notice a {
  color: #a3a3a3;
  text-decoration: underline;
}
