
/* TDL Contact section */

.tdl-ct{
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.tdl-ct__bg{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,var(--tdl-ct-overlay, .25));
  pointer-events: none;
}

.tdl-ct__title{
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0 0 26px;
}

.tdl-ct__panel{
  position: relative;
  z-index: 2;
  margin: 0 auto;
  width: 100%;
}

.tdl-ct__form{
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 22px 18px 20px;
  box-sizing: border-box;
}

.tdl-ct__hp{ 
  position:absolute !important; 
  left:-9999px !important; 
  width:1px !important; 
  height:1px !important; 
  opacity:0 !important;
}

.tdl-ct__field{
  width: 100%;
  background: transparent;
  border: 2px solid #8f5240;
  border-radius: 34px;
  padding: 14px 18px;
  outline: none;
  box-sizing: border-box;
}

.tdl-ct__field::placeholder{
  opacity: .95;
}

.tdl-ct__field--textarea{
  border-radius: 28px;
  resize: vertical;
  min-height: 140px;
  padding-top: 16px;
}

/* Upload: looks like a field */
.tdl-ct__upload{
  width: 100%;
  border: 2px solid #8f5240;
  border-radius: 34px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  box-sizing: border-box;
}

.tdl-ct__file{
  width: 160px;
  max-width: 45%;
  opacity: .85;
}

.tdl-ct__submit{
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}

.tdl-ct__submit-arrow{
  font-size: 18px;
  line-height: 1;
}

.tdl-ct__notice{
  min-height: 22px;
  text-align: center;
  opacity: .95;
}

/* WhatsApp floating button */
.tdl-ct__wa{
  position: fixed;
  bottom: 16px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
}

.tdl-ct__wa--left{ left: 16px; }
.tdl-ct__wa--right{ right: 16px; }

.tdl-ct__wa-icon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.tdl-ct__wa svg{ display:block; }

.tdl-ct__wa--mobile-only{ display:none; }

@media (max-width: 767px){
  .tdl-ct__wa--mobile-only{ display:inline-flex; }
}
