/*!*******************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[14].oneOf[12].use[3]!./app/contact/style.css ***!
  \*******************************************************************************************************************************************************************************************************************************************************************/
.contact-page {
  display: flex;
  flex-direction: column;
  background: #000000;
  color: #ffffff;
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.contact-page .brand a {
  display: inline-block;
  text-decoration: none;
}

.contact-main {
  flex: 1 1;
  min-height: 100vh;
  padding: 0;
  padding-top: clamp(100px, 12vh, 140px);
  background: #000000;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-main > .container {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Effets de gradient subtils */
.contact-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(180deg, rgba(235, 50, 58, 0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.contact-main::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(0deg, rgba(235, 50, 58, 0.03) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

.contact-content {
  max-width: 1400px;
  width: 90%;
  margin: 0 auto;
  padding: 0;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: calc(100vh - clamp(100px, 12vh, 140px));
  padding-bottom: clamp(40px, 8vh, 80px);
}

.contact-content h1 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 400;
  color: #fff;
  margin: 0 0 clamp(20px, 4vh, 40px) 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  position: relative;
}

.contact-content h1::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary, #df1f26), transparent);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr; /* ✅ 50% / 50% */
  grid-gap: clamp(30px, 5vw, 60px);
  gap: clamp(30px, 5vw, 60px);
  margin-top: clamp(20px, 4vh, 60px);
  position: relative;
  z-index: 2;
  align-items: start;
  flex: 1 1;
}


.contact-form-section {
  position: relative;
  z-index: 2;
  padding: clamp(40px, 6vh, 60px) clamp(30px, 4vw, 40px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
}

.contact-form-section:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}
.titleSection{
    color: #fff;
  margin: 0 0 clamp(15px, 2vh, 20px) 0;
  font-size: 38px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
  margin-left: -2px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 80px;
}
.contentSectionContact{
  font-size: 16px;
  text-align: center;
  line-height: 1.85;
}
.contact-form-section h2 {
  color: #fff;
  margin: 0 0 clamp(15px, 2vh, 20px) 0;
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 20px 0;
  margin-left: -2px;
  text-transform: capitalize;
}

.contact-subtitle {
  font-size: 16px;
  line-height: 1.8;
  color: #e3e3e3;
  font-weight: 300;
  margin-bottom: clamp(25px, 4vh, 40px);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vh, 32px);
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 24px;
  gap: 24px;
}

.contact-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

.contact-form-field label {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.contact-form-input,
.contact-form-textarea {
  width: 100%;
  padding: 16px 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
  color: #ffffff;
  font-size: 16px;
  font-weight: 300;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
  position: relative;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
  border-bottom-color: var(--primary, #df1f26);
  border-bottom-width: 2px;
  transform: translateY(-2px);
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  transition: opacity 0.3s ease;
}

.contact-form-input:focus::placeholder,
.contact-form-textarea:focus::placeholder {
  opacity: 0.5;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-form-textarea {
  resize: vertical;
}

.contact-form-submit {
  margin-top: 8px;
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-transform: capitalize;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
}

.contact-form-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.contact-form-submit:hover::before {
  left: 100%;
}

.contact-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(223, 31, 38, 0.4);
}

.contact-form-submit:active {
  transform: translateY(0);
}

.contact-form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form-status {
  padding: 16px 20px;
  border-radius: 0;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.contact-form-status.success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4caf50;
}

.contact-form-status.error {
  background: rgba(244, 67, 54, 0.1);
  border: 1px solid rgba(244, 67, 54, 0.3);
  color: #f44336;
}

.contact-info-section {
  padding: clamp(40px, 6vh, 60px) 0 0 0;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}



.contact-info-section h2 {
  font-size: 36px;
  font-weight: 400;
  color: #fff;
  margin: 0 0 clamp(15px, 2vh, 20px) 0;
  letter-spacing: 0.05em;
  text-transform: capitalize;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  padding-left: 15px;
  position: relative;
}

.contact-info-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary, #df1f26);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact-info-item:hover::before {
  opacity: 0.6;
}

.contact-info-item:hover {
  padding-left: 20px;
  transform: translateX(5px);
}

.contact-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #eb323a;
  flex-shrink: 0;
}

.contact-info-item h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.contact-info-link {
  font-size: 16px;
  color: #e3e3e3;
  text-decoration: none;
  transition: color 0.2s ease;
  display: inline-block;
  word-break: break-all;
}

.contact-info-link:hover {
  color: #eb323a;
}

.contact-info-text {
  font-size: 16px;
  color: #e3e3e3;
  margin: 0;
  font-weight: 300;
}

/* Bouton WhatsApp flottant */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  background-color: #20BA5A;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

/* Responsive */
@media (max-width: 1200px) {
  .contact-content {
    width: 90%;
    max-width: 1400px;
    padding: clamp(30px, 5vh, 50px) clamp(20px, 3vw, 35px);
    padding-bottom: clamp(40px, 7vh, 70px);
  }

  .contact-wrapper {
    gap: clamp(25px, 4vw, 50px);
  }

  .contact-form-section {
    padding: clamp(35px, 5vh, 50px) clamp(25px, 3vw, 35px);
  }
}

@media (max-width: 968px) {
  .contact-main {
    min-height: 100vh;
    padding-top: clamp(90px, 11vh, 120px);
  }

  .contact-content {
    width: 100%;
    max-width: 100%;
    padding: clamp(30px, 5vh, 50px) clamp(20px, 3vw, 30px);
    padding-bottom: clamp(40px, 7vh, 70px);
    min-height: calc(100vh - clamp(90px, 11vh, 120px));
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: clamp(30px, 5vh, 50px);
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: clamp(24px, 3vh, 32px);
  }

  .contact-form-section {
    padding: clamp(35px, 5vh, 50px) clamp(25px, 4vw, 35px);
  }

  .contact-info-section {
    padding: clamp(35px, 5vh, 50px) 0 0 0;
  }
}

@media (max-width: 480px) {
  .contact-main {
    min-height: 100vh;
    padding-top: clamp(75px, 9vh, 100px);
  }

  .contact-content {
    width: 100%;
    max-width: 100%;
    padding: clamp(20px, 3.5vh, 35px) clamp(12px, 2.5vw, 16px);
    min-height: calc(100vh - clamp(75px, 9vh, 100px));
    padding-bottom: clamp(30px, 5vh, 50px);
  }

  .contact-info-section {
    padding: clamp(20px, 4vh, 28px) 0 0 0;
  }

  .contact-content h1 {
    font-size: clamp(20px, 5vw, 24px);
    margin-bottom: clamp(16px, 3vh, 24px);
  }

  .contact-form-section {
    padding: clamp(24px, 4vh, 28px) clamp(16px, 3vw, 20px);
  }

  .contact-form-section h2,
  .contact-info-section h2 {
    font-size: clamp(18px, 4vw, 20px);
  }

  .contact-form {
    gap: clamp(16px, 2.5vh, 20px);
  }

 

  .whatsapp-float {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 768px) {
  .contact-main {
    min-height: 100vh;
    padding-top: clamp(80px, 10vh, 110px);
    align-items: flex-start;
  }

  .contact-content {
    width: 100%;
    max-width: 100%;
    min-height: calc(100vh - clamp(80px, 10vh, 110px));
    padding-bottom: clamp(35px, 6vh, 60px);
  }

  .contact-content h1 {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .contact-content h1::after {
    width: 40px;
    bottom: -10px;
  }

  .contact-wrapper {
    margin-top: 30px;
    gap: 30px;
  }

  .contact-form-section {
    padding: 35px 24px;
    background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
    );
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUpFade 0.8s ease both;
  }

  .contact-form-section h2,
  .contact-info-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .contact-subtitle {
    font-size: 14px;
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .contact-form {
    gap: 24px;
  }

  .contact-form-input,
  .contact-form-textarea {
    font-size: 14px;
    padding: 14px 0;
  }

  .contact-form-submit {
    width: 100%;
    padding: 16px 32px;
    font-size: 14px;
    align-self: stretch;
  }

  .contact-info-section {
    padding: 35px 0 0 0;
    animation: slideUpFade 0.8s ease 0.2s both;
  }

  .contact-info-section::before {
    display: none;
  }

  .contact-info-item {
    margin-bottom: 28px;
    padding-bottom: 20px;
    gap: 16px;
  }


  .contact-info-icon {
    width: 44px;
    height: 44px;
    background: rgba(223, 31, 38, 0.1);
    padding: 10px;
  }

  .contact-info-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .contact-info-link,
  .contact-info-text {
    font-size: 14px;
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }

  @keyframes slideUpFade {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

