/* Sticky Phone Button - Dark Green */
.sticky-phone {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #0D5C3D;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.sticky-phone:hover {
  background-color: #094A2F;
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.sticky-phone svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.phone-text {
  color: white;
  font-weight: 600;
  font-size: 16px;
  white-space: nowrap;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .sticky-phone {
    padding: 12px 16px;
    bottom: 15px;
    right: 15px;
  }
  
  .phone-text {
    font-size: 14px;
  }
  
  .sticky-phone svg {
    width: 20px;
    height: 20px;
  }
}
