/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
/*Phone icon animation:*/
.phone-icon {
  display: inline-block;
  animation: ring 1s infinite;
  transform-origin: center;
}

@keyframes ring {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(15deg); }
  20%  { transform: rotate(-10deg); }
  30%  { transform: rotate(15deg); }
  40%  { transform: rotate(-10deg); }
  50%  { transform: rotate(5deg); }
  60%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

/* Shared sticky button container for mobile */
@media (max-width: 450px) {
  .sticky-buttons {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
  }

  .sticky-btn {
    flex: 1;
            padding-bottom: 10px;
        padding-top: 10px;
    font-size: 13px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 0;
    background-color: #e21b44;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
  }

  .sticky-btn:only-child {
    width: 100%;
  }

  .sticky-btn:nth-child(2):nth-last-child(2),
  .sticky-btn:first-child:last-child ~ .sticky-btn {
    width: 50%;
  }
}


/*#callbackBtn:hover {
    background-color: #08d9ff;
}*/

@media (min-width: 451px) {
  .sticky-buttons {
  position: fixed;
  bottom: 30%;
  right: 0px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 168px;
  z-index: 9;
}

.sticky-btn {
  width: 100% !important;
  height: 50px;
  border-radius: 4rem 0rem 0rem 4rem;
  font-size: 12px;
  text-transform: uppercase;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-color: #e21b44;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}

.sticky-btn span {
  /*display: block;*/
  transition: transform 0.3s ease;
}

/* 🎯 Hover Animation */
.sticky-btn:hover {
  background-color: #76b91c;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.25);
}

.sticky-btn:hover span {
  transform: scale(1.1);
}

}


/* Modal Styling */
.modal-wcb {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* Modal Content */
.modal-content-wcb {
      position: relative; /* Ensure the close button stays inside */
    width: 100%;
    max-width: 600px; /* Adjust width as needed */
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        justify-self: center;
    margin-top: 20%;
        text-align: -webkit-center;
}

/* Close Button (Inside the Modal) */
.close-wcb {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 22px;
    cursor: pointer;
    color: #333;
    background: none;
    border: none;
    outline: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

/* Adjust for smaller screens */
@media (max-width: 480px) {
    .close-wcb {
        font-size: 20px;
        top: 8px;
        right: 8px;
    }
}

/* Hover Effect */
.close-wcb:hover {
    color: red;
}

/* Close Button Hover Effect */
.close-wcb:hover {
    color: red;
}

/* Phone Input */
input[type="tel"] {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Submit Button */
#submitBtn {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

#submitBtn:hover {
    background-color: #218838;
}

/* Error Message */
.error-message {
    color: red;
    font-size: 14px;
}
