/* FLOATING CALL BUTTON */
.call-float-btn {
  position: fixed;
  right: 30px;
  bottom: 35px;
  width: 65px;
  height: 65px;
  background: #1e78ff;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: all 0.3s ease;
}

.call-float-btn:hover {
  transform: scale(1.08);
  background: #C5A059;
  box-shadow: 0 0 25px rgba(197,160,89,.7);
}

/* POPUP BACKDROP */
.call-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index:10000;
}

/* POPUP BOX */
.call-popup-box {
  background: #fff;
  max-width: 380px;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
  animation: popIn .35s ease-out;
}

/* CLOSE BUTTON */
.close-popup {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #111;
}

/* TEXT */
.call-popup-box h3 {
  font-family: var(--font-heading);
  margin-bottom: 8px;
  font-size: 1.4rem;
}

.call-popup-box p {
  font-size: .9rem;
  margin-bottom: 18px;
  color: #444;
}

/* CALL NUMBER BUTTON */
.call-number {
  display: block;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: 1px;
  font-size: 1rem;
  margin-bottom: 15px;
}

.call-number:hover {
  background: #C5A059;
}

/* DISCLAIMER */
.disclaimer {
  font-size: 0.65rem;
  color: #666;
}

/* ANIMATION */
@keyframes popIn {
  from {
    transform: scale(.7);
    opacity:0;
  }
  to {
    transform: scale(1);
    opacity:1;
  }
}

/* MOBILE */
@media(max-width:768px){
  .call-popup-box{
    width: 90%;
  }
}
/* ========== FLOATING CALL WIDGET ========== */

.call-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 999;
  animation: pulse 2s infinite;
  transition: all 0.5s ease;
}

.call-float:hover {
  background: var(--color-gold);
  transform: scale(1.1);
}

/* Rolling animation on click */
.call-float.animate {
  animation: roll 0.7s linear;
}

/* PULSE EFFECT */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.5); }
  70% { box-shadow: 0 0 0 15px rgba(0,0,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}

@keyframes roll {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg) scale(0.5) }
}

/* ========== MODAL ========== */

.call-modal {
  position: fixed;
  bottom: -100%;
  right: 30px;
  width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 30px 28px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  z-index: 1000;
  transition: all 0.7s ease;
  font-family: var(--font-body);
}

.call-modal.show {
  bottom: 120px;
}

.call-modal h2 {
  margin-bottom: 8px;
}

.call-modal p {
  margin-bottom: 20px;
  color: #555;
}

.call-btn {
  display: block;
  background: #111;
  color: #fff;
  padding: 16px;
  border-radius: 9px;
  text-align: center;
  font-size: 18px;
  margin-bottom: 18px;
  text-decoration: none;
}

.call-btn:hover {
  background: var(--color-gold);
}

.call-modal small {
  display: block;
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}

/* Close Button */
.close-modal {
  position: absolute;
  top: 12px;
  right: 15px;
  border: none;
  background: none;
  font-size: 20px;
  cursor: pointer;
}

/* MOBILE */
@media(max-width: 600px){
  .call-modal {
    width: 90%;
    right: 5%;
  }
}
