/* Termin sayfası — sihirbaz (main.css nav/footer ile birlikte) */
.termin-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--bg, #030d1a);
  color: var(--white, #fff);
  padding-top: 72px;
}

/* İçerik sütunu — footer body altında tam genişlik kalır */
.termin-main {
  flex: 1 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

.termin-page > footer {
  position: relative;
  z-index: 10;
}


.termin-page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.termin-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.termin-orb.o1 {
  width: 70vw;
  height: 70vh;
  background: radial-gradient(circle, rgba(0, 115, 175, 0.22) 0%, transparent 70%);
  top: -20%;
  left: -20%;
}

.termin-orb.o2 {
  width: 50vw;
  height: 60vh;
  background: radial-gradient(circle, rgba(0, 200, 240, 0.14) 0%, transparent 65%);
  bottom: -10%;
  right: -15%;
}

.termin-hero {
  position: relative;
  z-index: 10;
  text-align: center;
  padding: 48px 6vw 40px;
}

.termin-hero .s-eye {
  margin-bottom: 16px;
}

.termin-hero .s-title {
  margin-bottom: 16px;
}

.termin-hero .s-title .grad {
  background: linear-gradient(135deg, var(--sky, #7ed4f7), var(--bright, #3db8f5));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.termin-hero .s-body {
  max-width: 560px;
  margin: 0 auto;
}

.termin-steps {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin: 0 auto 40px;
  max-width: 400px;
  padding: 0 6vw;
}

.termin-step-item {
  display: flex;
  align-items: center;
  flex: 1;
}

.termin-step-item:last-child {
  flex: 0 0 auto;
}

.termin-step-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'VAG', sans-serif;
  font-size: 12px;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.termin-step-dot.active {
  background: var(--blue, #0073af);
  border-color: var(--bright, #3db8f5);
  color: #fff;
  box-shadow: 0 0 0 4px rgba(0, 153, 214, 0.15);
}

.termin-step-dot.done {
  background: rgba(0, 153, 214, 0.35);
  border-color: var(--sky, #7ed4f7);
  color: #fff;
}

.termin-step-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 0 8px;
  transition: background 0.4s;
}

.termin-step-line.done {
  background: var(--bright, #3db8f5);
}

.termin-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 2px;
  margin: 0 auto 40px;
  max-width: 960px;
  padding: 0 6vw;
  position: relative;
  z-index: 10;
}

.termin-progress-fill {
  height: 100%;
  border-radius: 2px;
  width: 25%;
  background: linear-gradient(90deg, var(--blue, #0073af), var(--bright, #3db8f5), var(--sky, #7ed4f7));
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 8px rgba(0, 200, 240, 0.4);
}

.termin-flow {
  position: relative;
  z-index: 10;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 6vw 80px;
}

.termin-screen {
  display: none;
}

.termin-screen.active {
  display: block;
  animation: terminFadeUp 0.45s ease;
}

@keyframes terminFadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.termin-sec-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white, #fff);
  margin-bottom: 6px;
}

.termin-sec-sub {
  font-family: 'VAG', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted, rgba(180, 220, 245, 0.55));
  margin-bottom: 24px;
  line-height: 1.6;
}

.termin-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .termin-type-grid {
    grid-template-columns: 1fr;
  }
}

.termin-type-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 32px 28px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.3s, background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.termin-type-card:hover {
  border-color: rgba(0, 153, 214, 0.4);
  background: rgba(0, 153, 214, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 115, 175, 0.2);
}

.termin-type-card.selected {
  border-color: var(--bright, #3db8f5);
  background: rgba(0, 153, 214, 0.1);
  box-shadow: 0 0 0 1px rgba(0, 153, 214, 0.3), 0 16px 48px rgba(0, 115, 175, 0.2);
}

.termin-type-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue, #0073af), var(--sky, #7ed4f7));
  opacity: 0;
  transition: opacity 0.3s;
}

.termin-type-card:hover::before,
.termin-type-card.selected::before {
  opacity: 1;
}

.termin-tc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 153, 214, 0.15);
  color: var(--bright, #3db8f5);
}

.termin-tc-icon svg {
  width: 22px;
  height: 22px;
}

.termin-tc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: 'VAG', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.termin-tc-badge.free {
  background: rgba(0, 153, 214, 0.12);
  border: 1px solid rgba(0, 153, 214, 0.35);
  color: var(--sky, #7ed4f7);
}

.termin-tc-badge.booking {
  background: rgba(0, 115, 175, 0.15);
  border: 1px solid rgba(0, 153, 214, 0.35);
  color: var(--sky, #7ed4f7);
}

.termin-tc-title {
  font-family: 'VAG', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white, #fff);
  margin-bottom: 10px;
  line-height: 1.2;
}

.termin-tc-desc {
  font-family: 'VAG', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted, rgba(180, 220, 245, 0.55));
  line-height: 1.6;
  margin-bottom: 20px;
}

.termin-tc-meta {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.termin-tc-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'VAG', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--muted, rgba(180, 220, 245, 0.55));
}

.termin-tc-meta-row svg {
  width: 14px;
  height: 14px;
  color: var(--bright, #3db8f5);
  flex-shrink: 0;
}

.termin-tc-select-btn {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 153, 214, 0.15);
  border: 1.5px solid rgba(0, 153, 214, 0.3);
  color: var(--bright, #3db8f5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.termin-type-card.selected .termin-tc-select-btn {
  background: var(--blue, #0073af);
  border-color: var(--bright, #3db8f5);
  color: #fff;
}

.termin-tc-select-btn svg {
  width: 14px;
  height: 14px;
}

.termin-calendar-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.07));
  border-radius: 20px;
  padding: 28px;
  margin-top: 8px;
}

.termin-cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.termin-cal-month {
  font-family: 'VAG', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white, #fff);
}

.termin-cal-nav {
  display: flex;
  gap: 8px;
}

.termin-cal-nav-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.07));
  color: var(--muted, rgba(180, 220, 245, 0.55));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}

.termin-cal-nav-btn:hover {
  background: rgba(0, 153, 214, 0.15);
  border-color: rgba(0, 153, 214, 0.3);
  color: var(--sky, #7ed4f7);
}

.termin-cal-nav-btn svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.termin-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.termin-cal-dayname {
  font-family: 'VAG', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  text-align: center;
  padding: 6px 0 10px;
}

.termin-cal-day {
  aspect-ratio: 1;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'VAG', sans-serif;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted, rgba(180, 220, 245, 0.55));
  cursor: pointer;
  position: relative;
  transition: all 0.2s;
}

.termin-cal-day:hover:not(.disabled):not(.empty) {
  background: rgba(0, 153, 214, 0.1);
  border-color: rgba(0, 153, 214, 0.25);
  color: var(--white, #fff);
}

.termin-cal-day.today {
  color: var(--bright, #3db8f5);
  font-weight: 800;
}

.termin-cal-day.today::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bright, #3db8f5);
}

.termin-cal-day.selected {
  background: var(--blue, #0073af);
  border-color: var(--sky, #7ed4f7);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(0, 153, 214, 0.35);
}

.termin-cal-day.disabled {
  color: rgba(255, 255, 255, 0.12);
  cursor: not-allowed;
}

.termin-cal-day.empty {
  cursor: default;
}

.termin-cal-day.has-slots::before {
  content: '';
  position: absolute;
  top: 4px;
  right: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sky, #7ed4f7);
  opacity: 0.7;
}

.termin-cal-day.has-planning {
  background: rgba(255, 160, 60, 0.06);
  border-color: rgba(255, 160, 60, 0.18);
  color: rgba(255, 200, 140, 0.55);
  cursor: not-allowed;
  opacity: 0.72;
}

.termin-cal-day.has-planning:hover {
  background: rgba(255, 160, 60, 0.06);
  border-color: rgba(255, 160, 60, 0.18);
  color: rgba(255, 200, 140, 0.55);
}

.termin-cal-day.has-planning::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #e8a04a;
  opacity: 0.85;
}

.termin-cal-day.has-planning.today::after {
  background: #ffb347;
}

.termin-cal-day.has-planning.selected {
  background: var(--blue, #0073af);
  border-color: var(--sky, #7ed4f7);
  color: #fff;
}

.termin-cal-day.has-planning.selected::after {
  background: #fff;
  opacity: 0.9;
}

.termin-cal-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-top: 12px;
  margin-bottom: 4px;
  padding: 0 4px;
}

.termin-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(180, 220, 245, 0.55);
  font-family: 'VAG', sans-serif;
  font-weight: 600;
}

.termin-legend-item i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.termin-legend-avail i {
  background: var(--sky, #7ed4f7);
  opacity: 0.85;
}

.termin-legend-planning i {
  background: #e8a04a;
  opacity: 0.9;
}

.termin-time-section {
  margin-top: 24px;
  border-top: 1px solid var(--border, rgba(255, 255, 255, 0.07));
  padding-top: 20px;
}

.termin-time-section-title {
  font-family: 'VAG', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  margin-bottom: 12px;
}

.termin-time-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

@media (max-width: 500px) {
  .termin-time-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.termin-time-slot {
  padding: 10px 8px;
  border-radius: 10px;
  text-align: center;
  font-family: 'VAG', sans-serif;
  font-size: 13px;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted, rgba(180, 220, 245, 0.55));
  cursor: pointer;
  transition: all 0.2s;
}

.termin-time-slot:hover {
  background: rgba(0, 153, 214, 0.1);
  border-color: rgba(0, 153, 214, 0.3);
  color: var(--white, #fff);
}

.termin-time-slot.selected {
  background: var(--blue, #0073af);
  border-color: var(--sky, #7ed4f7);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0, 153, 214, 0.3);
}

.termin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .termin-form-grid {
    grid-template-columns: 1fr;
  }
}

.termin-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.termin-form-group.full {
  grid-column: 1 / -1;
}

.termin-form-label {
  font-family: 'VAG', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.termin-form-label .req {
  color: var(--bright, #3db8f5);
  margin-left: 2px;
}

.termin-form-input,
.termin-form-select,
.termin-form-textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'VAG', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white, #fff);
  outline: none;
  width: 100%;
  transition: border-color 0.25s, background 0.25s;
}

.termin-form-input::placeholder,
.termin-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.termin-form-input:focus,
.termin-form-select:focus,
.termin-form-textarea:focus {
  border-color: rgba(0, 153, 214, 0.5);
  background: rgba(0, 153, 214, 0.05);
}

.termin-form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.termin-form-select option {
  background: #061528;
  color: var(--white, #fff);
}

.termin-form-textarea {
  resize: none;
  min-height: 100px;
  line-height: 1.6;
}

.termin-radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.termin-radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: all 0.2s;
}

.termin-radio-item:hover {
  border-color: rgba(0, 153, 214, 0.3);
  background: rgba(0, 153, 214, 0.05);
}

.termin-radio-item.selected {
  border-color: var(--bright, #3db8f5);
  background: rgba(0, 153, 214, 0.08);
}

.termin-radio-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  transition: border-color 0.2s;
}

.termin-radio-item.selected .termin-radio-dot {
  border-color: var(--bright, #3db8f5);
}

.termin-radio-item.selected .termin-radio-dot::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--bright, #3db8f5);
}

.termin-radio-label {
  font-family: 'VAG', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted, rgba(180, 220, 245, 0.55));
}

.termin-radio-item.selected .termin-radio-label {
  color: var(--white, #fff);
}

.termin-summary-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border, rgba(255, 255, 255, 0.07));
  border-radius: 20px;
  padding: 28px;
  margin-top: 8px;
}

.termin-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  gap: 20px;
}

.termin-summary-row:last-child {
  border-bottom: none;
}

.termin-summary-key {
  font-family: 'VAG', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}

.termin-summary-val {
  font-family: 'VAG', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--white, #fff);
  text-align: right;
}

.termin-summary-val.blue {
  color: var(--sky, #7ed4f7);
}

.termin-btn-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
  flex-wrap: wrap;
}

/* Wizard nav — same look as site .btn-out / .btn-fill */
.termin-btn-row .termin-btn-back,
.termin-btn-row .btn-out.termin-btn-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.termin-btn-row .termin-btn-next,
.termin-btn-row .btn-fill.termin-btn-next,
a.termin-btn-next.btn-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  text-decoration: none;
}

.termin-btn-row .termin-btn-next:disabled,
.termin-btn-row .btn-fill.termin-btn-next:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  pointer-events: none;
}

.termin-btn-next svg,
.termin-btn-back svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.termin-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'VAG', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #128c7e, #25d366);
  padding: 13px 32px;
  border-radius: 40px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.25);
  transition: box-shadow 0.25s, transform 0.2s;
  text-decoration: none;
}

.termin-btn-whatsapp:hover {
  box-shadow: 0 12px 42px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.termin-notice {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: rgba(0, 153, 214, 0.07);
  border: 1px solid rgba(0, 153, 214, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 20px;
  font-family: 'VAG', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

.termin-notice svg {
  width: 15px;
  height: 15px;
  color: var(--sky, #7ed4f7);
  flex-shrink: 0;
  margin-top: 1px;
}

.termin-success-wrap {
  text-align: center;
  padding: 40px 0;
}

.termin-success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(0, 153, 214, 0.12);
  border: 2px solid rgba(0, 153, 214, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  animation: terminSuccessPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes terminSuccessPop {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.termin-success-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--sky, #7ed4f7);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.termin-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--white, #fff);
  margin-bottom: 12px;
}

.termin-success-sub {
  font-family: 'VAG', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: var(--muted, rgba(180, 220, 245, 0.55));
  line-height: 1.65;
  max-width: 420px;
  margin: 0 auto 32px;
}

.termin-success-detail {
  background: rgba(0, 153, 214, 0.06);
  border: 1px solid rgba(0, 153, 214, 0.18);
  border-radius: 16px;
  padding: 20px 24px;
  max-width: 380px;
  margin: 0 auto 32px;
  text-align: left;
}

.termin-success-detail-row {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 6px 0;
  font-family: 'VAG', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--muted, rgba(180, 220, 245, 0.55));
}

.termin-success-detail-row svg {
  width: 14px;
  height: 14px;
  color: var(--sky, #7ed4f7);
  flex-shrink: 0;
}

[lang='ar'] .termin-sec-title,
[lang='ar'] .termin-success-title {
  font-family: 'Scheherazade New', serif;
}
