.cta-full-section {
  width: 100vw;
  margin-right: calc(-50vw + 50%);
  margin-left: calc(-50vw + 50%);
  padding: 4rem 1rem;
  background: linear-gradient(90deg, #001f52 65%, #ffbe59 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 22px #001f5220;
  z-index: 1;
}

/* متن‌ها */
.cta-title {
  font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
  font-size: 2.1rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.25;
  color: #fff;
}

.cta-highlight {
  color: #ffbe59;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 0.3em;
  padding: 0 0.18em;
  display: inline-block;
}

.cta-desc {
  font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
  color: #fffbe7;
  font-size: 1.11rem;
  font-weight: 300;
}

.cta-actions {
  margin-top: 1.7rem;
  flex-direction: row-reverse;
  gap: 1.1rem;
}

/* دکمه‌ها */
.btn-cta {
  border-radius: 32px;
  font-size: 1.01rem;
  font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
  font-weight: 400;
  padding: 0.55rem 2rem 0.55rem 1.2rem;
  border: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease-in-out;
  min-width: 135px;
  box-shadow: none;
  outline: none;
}

.btn-cta i {
  font-size: 1.17em;
  margin-left: 0.55em;
  vertical-align: middle;
  font-weight: 400;
}

.btn-cta-main {
  background: #fff;
  color: #ff5e13 !important;
  border: 1.3px solid #fff;
}

.btn-cta-main:hover {
  background: #ffbe59;
  color: #001f52 !important;
  border-color: #fffbe9;
}

.btn-cta-alt {
  background: transparent;
  color: #fff !important;
  border: 1.3px solid #fff;
}

.btn-cta-alt:hover {
  background: #fffbe9;
  color: #ff5e13 !important;
  border-color: #ffbe59;
}

/* ویژگی‌ها سمت چپ */
.cta-right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.cta-features li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  font-weight: 300;
  color: #fffbe9;
}

.cta-features i {
  color: #ffbe59;
  font-size: 1.1rem;
  vertical-align: middle;
}

/* 🎈 حباب‌های شناور */
.floating-bubbles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  z-index: 0;
  pointer-events: none;
}

.floating-bubbles li {
  position: absolute;
  display: block;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  width: calc(10px + (var(--i) * 1px));
  height: calc(10px + (var(--i) * 1px));
  left: calc(3% * var(--i));
  animation: floatUp calc(12s + (var(--i) * 0.3s)) linear infinite;
  animation-delay: calc(var(--i) * 0.2s);
}

@keyframes floatUp {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  20% { opacity: 0.4; }
  50% { opacity: 0.6; }
  100% {
    transform: translateY(-120vh) scale(1.2);
    opacity: 0;
  }
}

/* 📱 ریسپانسیو */
@media (max-width: 991px) {
  .cta-full-section {
    padding: 2.2rem 1rem;
  }
  .cta-title {
    font-size: 1.45rem;
  }
}

@media (max-width: 768px) {
  .cta-title {
    font-size: 1.25rem;
  }
  .cta-desc {
    font-size: 1rem;
  }
  .btn-cta {
    font-size: 0.95rem;
    min-width: 120px;
  }
}

@media (max-width: 576px) {
  .cta-full-section {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
  .cta-title {
    font-size: 1.1rem;
  }
  .btn-cta {
    min-width: 110px;
    font-size: 0.92rem;
  }
}
