 /* <style> */
    /* Basic Reset */
    * {
      box-sizing: border-box;
    }
    html, body {
      margin: 0;
      padding: 0;
      overflow-x: hidden; /* prevent horizontal scroll */
      background: #111;
      color: #fff;
      height: 100vh;
    }

    /* Floating Button */
    /* .floating-btn {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: 55px;
      height: 55px;
      background: #ff3c00;
      color: white;
      font-size: 28px;
      line-height: 55px;
      text-align: center;
      border-radius: 50%;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(255, 60, 0, 0.6);
      z-index: 1100;
      user-select: none;
      transition: background-color 0.3s ease;
    } */



.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    /* width: 55px; */
    /* height: 61px; */
    background: #16be45;
    color: white;
    /* font-size: 18px; */
    line-height: 40px;
    text-align: center;
    border-radius: 59px;
    cursor: pointer;
    box-shadow: 0 4px 0px rgb(22 190 69);
    z-index: 1100;
    user-select: none;
    transition: background-color 0.3s ease;
    padding: 0px 23px;
}

    .floating-btn:hover {
       background: #16be45;
    }

    /* Popup Container */
    .popup {
      position: fixed;
      bottom: 20px;
      right: 20px;
      width: min(420px, calc(100vw - 40px));
      max-height: 85vh;
      background: #000;
      padding: 20px 25px 25px 25px;
      border-radius: 4px;
      border: 1px solid #363636;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.7);
      overflow-y: auto;
      transform-origin: bottom right;
      transform: scale(0);
      opacity: 0;
      transition: all 0.4s ease;
      z-index: 1050;
    }
    .popup.active {
      transform: scale(1);
      opacity: 1;
    }

    /* Close Button */
  .close {
  position: absolute;
  top: 0;
  right: 0px;
  font-size: 28px;
  cursor: pointer;
  color: aliceblue;
  background: #000;
  border: 1px solid #424242;
  padding: 0 8px;
  border-radius: 2px 2px 0 2px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.5);
  user-select: none;
  transition: background-color 0.3s ease;
  line-height: 30px;
  height: 30px;
  width: 30px;
  text-align: center;
}
    .close:hover {
      background-color: #333;
    }

    /* Heading Styles */
   

     h4.part-legacy.text-center {
    color: #fff;
    text-transform: uppercase;
    font-size: 10px;
    line-height: 20px;
    letter-spacing: 1px;
    margin: 0 19px 8px 0px;
    text-align: center;
}

    h3.text-center.franchise-cotacttitle {
      font-size: 36px;
      font-weight: 900;
      color: #ff3c00;
      margin: 0 0 20px 0;
      text-align: center;
      letter-spacing: 2px;
    }

    /* Form Styles */
    form {
      width: 100%;
    }
    input[type="text"],
    input[type="email"],
    select,
    textarea {
      width: 100%;
      padding: 12px 15px;
      margin-bottom: 12px;
      font-size: 18px;
     background-color: #11111100;
      border: 1px solid #333;
      border-radius: 3px;
      color: #eee;
      letter-spacing: 1px;
      font-family: Arial, sans-serif;
      transition: border-color 0.3s ease;
      resize: vertical;
    }
    input[type="text"]:focus,
    input[type="email"]:focus,
    select:focus,
    textarea:focus {
      outline: none;
      border-color: #ff3c00;
      background-color: #222;
    }

    /* Placeholder color */
    ::placeholder {
      color: #777;
      opacity: 1;
    }

    /* Flex container for phone and city inputs side by side */
    .rowcusto {
      display: flex;
      gap: 10px;
      margin-bottom: 12px;
    }
    .rowcusto > input {
      flex: 1;
    }

    /* Submit Button */
    /* button.send_btn {
      background-color: #ff3c00;
      color: white;
      border: none;
      padding: 15px 30px;
      font-size: 26px;
      font-weight: 700;
      letter-spacing: 2px;
      cursor: pointer;
      border-radius: 5px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: background-color 0.3s ease;
      user-select: none;
    } */

    .popup button {
    display: inline-block;
    color: #fff;
    padding: 15px 10px;
    border: solid 3px #ff3c00;
    background-color: var(--orange);
    font-family: var(--bebasNeue);
    font-size: var(--fontsize-36);
    line-height: 18px;
    background-image: url(../images/yellow-button.png);
    background-repeat: repeat-x;
    background-position: 0 -67%;
    transition: all 1.25s ease-out;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 15px;
    border-radius: 4px;
    font-size: 29px;
}
.popup .franchise-txtarea {
   height: 105px;
    font-size: 20px;
    letter-spacing:1px;
}

select#cars {
    height: 63px;
    margin-bottom: 12px;
}

.rowcusto input {
    margin: 0px;
}
    
    /* button.send_btn:hover {
      background-color: #e23500;
    } */
    /* button.send_btn img {
      height: 18px;
      filter: invert(1);
    } */

    .rowwnd {
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
}

    .coldtitle {
    font-size: 16px;
    text-transform: math-auto;
}
.coldicon {
    font-size: 35px;
}

    /* Responsive for small screens */
    @media (max-width: 480px) {
      .popup {
        width: calc(100vw - 30px);
        right: 15px;
        bottom: 10px;
      }
      h3.text-center.franchise-cotacttitle {
        font-size: 28px;
      }
      button.send_btn {
        font-size: 22px;
      }
      .rowcusto {
        flex-direction: column;
      }
      
    div#wa-btn-wrapper p {
    display: none;
}
#wa_btn-content {
  box-sizing: border-box;
  display: inline-flex;
  padding: 10px 14px;
  justify-content: center;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-family: inherit,Roboto;
  height: 50px;
  width: 50px;
}
      
      
      
    }


  /* </style> */