/* ===============================
   TURQUOISE GRADIENT TEXT
   =============================== */

.rtl .s-installment-mispay-content-text,
.rtl .s-installment-madfu-content-text,
.rtl .s-installment-emkan-content-text,
.rtl .s-installment-rajehi-content-text {
  right: 14px;
  text-align: right;
  margin: 0 0 0 16px;

  /* Gradient تركوازي */
  background: linear-gradient(
    120deg,
    #7fcfcb,
    #55a7a4,
    #2f7f7c,
    #55a7a4,
    #7fcfcb
  );

  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: turquoiseTextFlow 3s linear infinite;
  font-weight: 700;
}

@keyframes turquoiseTextFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===============================
   TITLE GRADIENT
   =============================== */

.dark .s-block__title h2{
  /* fallback */
  color: #55a7a4;

  background: linear-gradient(
    120deg,
    #7fcfcb,
    #55a7a4,
    #2f7f7c,
    #55a7a4,
    #7fcfcb
  );

  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  animation: turquoiseTitleFlow 2.8s linear infinite;

  font-weight: 800;
  letter-spacing: .3px;
}

@keyframes turquoiseTitleFlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ===============================
   TURQUOISE GLOW
   =============================== */

.dark .s-block__title h2,
.rtl .s-installment-mispay-content-text,
.rtl .s-installment-madfu-content-text,
.rtl .s-installment-emkan-content-text,
.rtl .s-installment-rajehi-content-text{
  filter:
    drop-shadow(0 0 6px rgba(85,167,164,.55))
    drop-shadow(0 0 14px rgba(47,127,124,.35));
}

/* ===============================
   BUTTON – TURQUOISE GRADIENT
   =============================== */

.btn-text{
  color: #000 !important;
}

.btn,
.btn-primary,
.s-button-primary{
  align-items: center;
  justify-content: center;
  display: inline-flex;
  flex: 1 1 0%;
  font-family: var(--font-main);
  font-size: .875rem;
  line-height: 1.25rem;
  padding: .5rem 1.5rem .625rem;
  border-radius: .375rem;
  white-space: nowrap;

  color: #000 !important;
  border: none !important;

  background: linear-gradient(
    120deg,
    #7fcfcb,
    #55a7a4,
    #2f7f7c,
    #55a7a4,
    #7fcfcb
  );

  background-size: 300% 300%;
  animation: btnTurquoiseFlow 3s linear infinite;

  transition:
    transform .25s ease,
    box-shadow .25s ease;

  position: relative;
  overflow: hidden;
}

@keyframes btnTurquoiseFlow{
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hover – توهج تركوازي */
.btn:hover,
.btn-primary:hover,
.s-button-primary:hover{
  box-shadow:
    0 0 8px rgba(127,207,203,.6),
    0 0 20px rgba(85,167,164,.55),
    0 0 40px rgba(47,127,124,.4);

  transform: translateY(-2px) scale(1.03);
}

/* Active */
.btn:active,
.btn-primary:active,
.s-button-primary:active{
  transform: scale(.96);
  box-shadow:
    0 0 6px rgba(85,167,164,.45);
}

h3{
  color: #ffffff !important;
}