:root {
  --purple: #9635A2;
  --blue: #2F78E4;
  --bg: #060606;
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.66);
  --line: rgba(255,255,255,0.14);
  --glass-light: rgba(255,255,255,0.05);
  --glass-medium: rgba(255,255,255,0.12);
  --shadow-strong: 0 15px 40px rgba(0,0,0,0.4);
  --shadow-medium: 0 8px 25px rgba(0,0,0,0.3);
}
body {
    background-color: var(--bg);
    font-family: sans-serif;
    min-height: 100vh;
    position: relative;
    margin: 0;
    overflow-x: hidden;
}
/* -- کانتینر اصلی دکمه CTA -- */
.phone-cta-container {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}
/* -- دکمه اصلی CTA (حالت عادی و هاور) -- */
.phone-cta-button {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--glass-medium);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-medium);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  cursor: pointer;
  overflow: hidden;
}
/* -- استایل دکمه در حالت هاور -- */
.phone-cta-button:hover {
  width: 240px; /* عرض در حالت باز */
  height: 60px;
  background: linear-gradient(90deg, rgba(150,53,162,0.15), rgba(47120,2280.12));
  border-color: rgba(255,255,255,0.2);
  box-shadow: var(--shadow-strong);
}
/* -- لینک داخلی دکمه -- */
.cta-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text);
  padding: 8px;
  width: 100%;
  height: 100%;
}
/* -- نگهدارنده ایموجی -- */
.emoji-holder {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  font-size: 28px; /* اندازه ایموجی */
  background: var(--glass-light);
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.18);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
/* -- استایل نگهدارنده ایموجی در حالت هاور -- */
.phone-cta-button:hover .emoji-holder {
  background: var(--glass-medium);
  border-color: rgba(255,255,255,0.25);
}
/* -- نمایش شماره تماس -- */
.phone-number {
  font-size: 1.1rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  transform: translateX(-20px);
  letter-spacing: 1px;
  margin-right: 12px;
}
/* -- نمایش شماره تماس در حالت هاور -- */
.phone-cta-button:hover .phone-number {
  opacity: 1;
  transform: translateX(0);
}
/* -- تنظیمات Responsive -- */
@media (max-width: 768px) {
  .phone-cta-container {
    bottom: 20px;
    right: 20px;
  }
  .phone-cta-button {
    width: 50px;
    height: 50px;
  }
  .phone-cta-button:hover {
    width: 200px;
    height: 50px;
  }
  .emoji-holder { /* تغییر نام کلاس */
    width: 38px;
    height: 38px;
  }
  .emoji-holder span { /* تنظیم اندازه ایموجی در موبایل */
     font-size: 24px;
  }
  .phone-number {
    font-size: 1rem;
  }
}