/* =========================================================
   2. CUSTOM FORMS / REQUEST CALL SEND MESSAGE
   ========================================================= */

/* DEBUG */
@media (max-width: 600px) {
  body { outline: 6px solid red !important; }
}
/* END */

.row-rqst {
  box-shadow: 0px 0px 30px #111;
}

.row-rqst .request-call-wrap{
  width:100%;
  max-width:420px;
  margin:0 auto;
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
  box-shadow:none;
  font-family:'Poppins', sans-serif;
  color:#ffffff;
  box-sizing:border-box;
}

.row-rqst .request-call-wrap,
.row-rqst .request-call-wrap *{
  box-sizing:border-box;
}

.row-rqst .request-call-form{
  margin:0;
  padding:0;
}

.row-rqst .request-call-form label{
  display:block;
  margin-top:18px;
  margin-bottom:6px;
  font-size:13px;
  line-height:1.4;
  color:#cfcfd4;
  text-transform:uppercase;
  letter-spacing:0.6px;
}

.row-rqst .request-call-form label:first-child{
  margin-top:0;
}

.row-rqst .request-call-form input, .row-rqst .request-call-form textarea,
.row-rqst .request-call-form select{
  width:100%;
  min-height:50px;
  padding:13px 15px;
  background:#1a1a1c;
  border:1px solid #2a2a2d;
  border-radius:16px;
  color:#ffffff;
  font-family:'Poppins', sans-serif;
  font-weight:500;
  font-size:16px;
  line-height:1.2;
  outline:none;
  transition:border-color .2s ease, box-shadow .2s ease;
  -webkit-appearance:none;
  appearance:none;
}

.row-rqst .request-call-form input::placeholder{
  color:#8a8a8f;
}

.row-rqst .request-call-form input:focus,
.row-rqst .request-call-form select:focus{
  border-color:#ff6600;
  box-shadow:0 0 0 2px rgba(255,102,0,0.15);
}

.row-rqst .request-call-form select{
  cursor:pointer;
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  background-size:16px;
  padding-right:42px;
}

.row-rqst .request-call-form select option{
  background:#ffffff;
  color:#000000;
}

.row-rqst .request-call-form button{
  width:100%;
  margin-top:22px;
  min-height:50px;
  padding:14px 16px;
  border-radius:16px;
  border:none;
  background:#ff5a00;
  color:#ffffff;
  font-family:'Poppins', sans-serif;
  font-weight:600;
  font-size:16px;
  line-height:1.2;
  cursor:pointer;
  transition:background-color .2s ease, box-shadow .2s ease;
  box-shadow:0 8px 20px rgba(255,90,0,0.25);
  -webkit-appearance:none;
  appearance:none;
}

.row-rqst .request-call-form button:hover{
  background:#e14f00;
  box-shadow:0 12px 28px rgba(255,90,0,0.35);
  color:#ffffff;
}

.row-rqst .request-call-form small{
  display:block;
  margin-top:12px;
  color:#9a9a9a;
  font-size:12px;
  text-align:center;
  line-height:1.5;
}

.row-rqst .mail-opening-message{
  display:none;
  margin-top:18px;
  padding:18px;
  background:rgba(255,90,0,0.12);
  border:1px solid rgba(255,90,0,0.35);
  border-radius:18px;
  color:#ffffff;
  font-size:14px;
  line-height:1.6;
  text-align:center;
}

.row-rqst .form-hidden{
  opacity:0;
  transition:opacity .25s ease;
}

@media (max-width:767px){

  .row-rqst .request-call-wrap{
    max-width:100%;
  }

  .row-rqst .request-call-form label{
    margin-top:16px;
    margin-bottom:6px;
    font-size:12px;
  }

  .row-rqst .request-call-form input,
  .row-rqst .request-call-form select{
    min-height:48px;
    padding:12px 14px;
    border-radius:14px;
    font-size:16px;
  }

  .row-rqst .request-call-form button{
    min-height:48px;
    padding:13px 14px;
    border-radius:14px;
    font-size:16px;
    margin-top:20px;
  }

  .row-rqst .request-call-form small{
    margin-top:10px;
    font-size:11px;
  }

  .row-rqst .mail-opening-message{
    padding:16px;
    border-radius:16px;
    font-size:13px;
  }
}