.elementor-2303 .elementor-element.elementor-element-f6032ab{--display:flex;}.elementor-2303 .elementor-element.elementor-element-7b39df5{--spacer-size:20px;}.elementor-2303 .elementor-element.elementor-element-1e0df19{--display:flex;}/* Start custom CSS for html, class: .elementor-element-62ad220 *//* ── STICKY BAR ───────────────────────────────── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;

  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: none;
  box-shadow: none;

  padding: 14px 16px calc(14px + env(safe-area-inset-bottom));
  animation: fadeUp 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sticky-inner {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  align-items: center;
}

/* ── BUTON APEL ───────────────────────────────── */
.btn-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  height: 52px;
  border-radius: 50px;
  border: none;
  background: #00C896;
  color: #ffffff;
  text-decoration: none;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 6px 24px rgba(0, 200, 150, 0.45);
}

/* Shimmer sweep */
.btn-call::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}

.btn-call:hover,
.btn-call:active {
  background: #00b085;
  box-shadow: 0 8px 28px rgba(0, 200, 150, 0.6);
  transform: translateY(-1px);
}

.btn-call:active {
  transform: translateY(0);
}

.btn-call .fa-phone {
  font-size: 18px;
  flex-shrink: 0;
  animation: ring 4s ease-in-out infinite;
}

/* Punct pulsant */
.btn-call .pulse-dot {
  width: 7px;
  height: 7px;
  background: #ffffff;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
}

/* ── BUTON WHATSAPP ───────────────────────────── */
.sticky-bar .sticky-inner a.btn-wa,
.sticky-bar .sticky-inner a.btn-wa:link,
.sticky-bar .sticky-inner a.btn-wa:visited {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #25D366;
  background: #25D366;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.45);
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.btn-wa::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, transparent 60%);
  border-radius: inherit;
  pointer-events: none;
}

.btn-wa:hover,
.btn-wa:active {
  transform: translateY(-1px) scale(1.05);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.btn-wa:active {
  transform: translateY(0) scale(1);
}

.btn-wa .fa-whatsapp {
  font-size: 28px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

/* ── ANIMAȚII ─────────────────────────────────── */
@keyframes shimmer {
  0%        { left: -100%; }
  60%, 100% { left: 140%; }
}

@keyframes ring {
  0%, 90%, 100% { transform: rotate(0deg); }
  93%           { transform: rotate(-15deg); }
  96%           { transform: rotate(15deg); }
  99%           { transform: rotate(-8deg); }
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
  70%  { box-shadow: 0 0 0 7px rgba(255, 255, 255, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}/* End custom CSS */