@charset "utf-8";
/* CSS Document */

.call-widget {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.call-btn {
  background-color: #ffd700;
  color: black;
  padding: 16px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  transition: transform 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-btn:hover {
  background-color: #e6c200;
  transform: scale(1.1);
}

.call-popup {
  margin-top: 10px;
  background-color: #fffbea;
  border: 1px solid #ffd700;
  padding: 15px 15px 20px 15px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  display: none;
  animation: fadeIn 0.3s ease-in-out;
  position: relative;
}

.close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 22px;
  color: #333;
  cursor: pointer;
}

.call-popup p {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: bold;
}

.call-popup input[type="tel"],
.call-popup button {
  width: 100%;
  margin-top: 10px;
}
.call-popup button {
  background-color: #ffd700;
  color: black;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.call-popup button:hover {
  background-color: #e6c200;
}
.success-message {
  color: green;
  text-align: center;
}
.error {
  color: red;
  font-size: 0.9em;
  margin-bottom: 8px;
}

.success-message {
  color: green;
  font-size: 1em;
  text-align: center;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}







 .floating-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #ffd700;
    color: #000;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s ease, background-color 0.3s ease;
    z-index: 1000;
    cursor: pointer;
  }

  .floating-button:hover {
    background-color: #ffc400;
    transform: scale(1.05);
  }
textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}
  .modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
  }

  .modal-content {
    background-color: #fff;
    margin: 10% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  }

  .close {
    color: #aaa;
    float: right;
    font-size: 26px;
    font-weight: bold;
    cursor: pointer;
  }

  .close:hover {
    color: #000;
  }

  input[type="text"],
  input[type="tel"],
  input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  input[type="submit"],
  #successMessage button {
    width: 100%;
    background-color: #ffc400;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 15px;
  }

  input[type="submit"]:hover,
  #successMessage button:hover {
    background-color: #ffc400;
  }

  .error {
    color: red;
    font-size: 0.9em;
    margin-bottom: 5px;
  }