@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}


/* Modal Overlay */
.quote-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

/* Modal Box */
.quote-modal-box {
  background: #fff;
  padding: 25px;
  width: 90%;
  max-width: 400px;
  border-radius: 6px;
  position: relative;
}

/* Close Button */
.quote-modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 24px;
  cursor: pointer;
}

/* Heading */
.quote-modal-title {
  margin-top: 0;
}

/* Form */
.quote-form {
  margin-top: 15px;
}

/* Inputs */
.quote-input,
.quote-textarea,
.quote-submit-btn {
  width: 100%;
  margin-top: 10px;
  padding: 10px;
  box-sizing: border-box;
}

/* Submit Button */
.quote-submit-btn {
    background: #ff6a2a;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Button */
.quote-btn-orange {
    background: #ff6a2a;
    color: white;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 600;
    margin-right: 10px;
}



/* FAB */
.floating-icons {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.floating-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.floating-icons a:hover {
  transform: scale(1.1);
}

/* Individual colors */
.whatsapp { background: #25D366; }
.call { background: #007bff; }
.mail { background: #dc3545; }
