/*
Theme Name: Salient Child Theme
Description: This is a custom child theme for Salient
Theme URI:   https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266
Author: ThemeNectar
Author URI:  https://themeforest.net/user/themenectar
Template: salient
Version: 1.0
*/

#mobile-shortcuts {
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:9999
}
#mobile-shortcuts ul {
  list-style:none;
  margin:0
}
#mobile-shortcuts ul:after {
  visibility:hidden;
  display:block;
  font-size:0;
  content:" ";
  clear:both;
  height:0
}
#mobile-shortcuts ul li {
  float:left;
  width:50%;
  box-sizing:border-box;
  list-style:none
}
#mobile-shortcuts ul li a {
  display:block;
  text-align:center;
  padding:10px 15px;
  color:#fff
}
#mobile-shortcuts-phone a {
  background-color:#5b8930
}
#mobile-shortcuts-whatsapp a {
  background-color:#00a884
}
@media (min-width:768px) {
  #mobile-shortcuts {
    display:none
  }
  body {
    padding-bottom:0 !important
  }
}



/* ===== INTRO TEXT ===== */
.form-intro {
    text-align: center;
    margin-bottom: 20px;
    font-size: 15px;
    color: #fff;
}

/* ===== FIELDS ROW ===== */
.cf7-row p {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 0 0 12px 0;
}

.cf7-row p br {
    display: none;
}

.cf7-row .wpcf7-form-control-wrap {
    flex: 1;
    min-width: 180px;
}

.cf7-row input[type="text"],
.cf7-row input[type="email"] {
    width: 100%;
    border: 1px solid rgba(255,255,255,0.6);
    border-radius: 25px;
    padding: 14px 20px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    outline: none;
    box-sizing: border-box;
    background: transparent;
    color: #fff;
}

.cf7-row input[type="text"]:focus,
.cf7-row input[type="email"]:focus {
    border-color: #fff;
}

.cf7-row input::placeholder {
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
}

/* ===== PRIVACY CHECKBOX ===== */
.cf7-privacy {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 16px;
    flex-wrap: nowrap;
    line-height: 1.4;
}

.cf7-privacy br {
    display: none;
}

.cf7-privacy .wpcf7-list-item {
    margin: 0 !important;
    flex-shrink: 0;
}

.cf7-privacy input[type="checkbox"] {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    cursor: pointer;
}

.cf7-privacy a {
    color: #c8a96e;
    text-decoration: none;
    white-space: nowrap;
}

.cf7-privacy a:hover {
    text-decoration: underline;
}

/* ===== SUBMIT BUTTON ===== */
.wpcf7-submit {
    display: block;
    width: auto;
    min-width: 200px;
    max-width: 320px;
    margin: 0 auto;
    background-color: #c8a96e;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background 0.2s;
}

.wpcf7-submit:hover {
    background-color: #b8945a;
}

.wpcf7-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===== MOBILE ===== */
@media (max-width: 767px) {
    .cf7-row p {
        flex-direction: column;
    }

    .cf7-row .wpcf7-form-control-wrap {
        min-width: 100%;
    }

    .wpcf7-submit {
        width: 100%;
        max-width: 100%;
    }
}