.elementor-2075 .elementor-element.elementor-element-1e0f7f4{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}@media(min-width:768px){.elementor-2075 .elementor-element.elementor-element-1e0f7f4{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-c27675b */@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --eco-blue-dark: #032244;
  --eco-blue-deep: #072132;
  --eco-blue-mid: #2995EA;
  --eco-green: #86BB46;
  --eco-white: #FFFFFF;
  --eco-wa-green: #25D366;
}

.eco-thanks-page,
.eco-thanks-page * {
  box-sizing: border-box;
}

.eco-thanks-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  position: relative;
  background: var(--eco-blue-deep);
  color: var(--eco-white);
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

.eco-thanks-page::before {
  content: '';
  position: absolute;
  top: -15%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(41,149,234,0.07) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.eco-thanks-page::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(134,187,70,0.06) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.eco-thanks-card,
.eco-footer-logo,
.eco-wa-float {
  position: relative;
  z-index: 2;
}

.eco-thanks-card {
  background: linear-gradient(160deg, #0a2d45 0%, var(--eco-blue-dark) 100%);
  border: 1px solid rgba(41,149,234,0.2);
  border-radius: 24px;
  max-width: 580px;
  width: 100%;
  padding: 56px 48px;
  text-align: center;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(41,149,234,0.08);
  animation: ecoCardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes ecoCardIn {
  from { opacity: 0; transform: translateY(36px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.eco-check-wrap {
  width: 88px;
  height: 88px;
  background: rgba(134,187,70,0.12);
  border: 2px solid rgba(134,187,70,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: ecoPopIn 0.6s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes ecoPopIn {
  from { opacity: 0; transform: scale(0.4); }
  to { opacity: 1; transform: scale(1); }
}

.eco-check-wrap svg {
  width: 44px;
  height: 44px;
  stroke: var(--eco-green);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: ecoDrawCheck 0.5s 0.7s ease both;
  stroke-dasharray: 60;
  stroke-dashoffset: 60;
}

@keyframes ecoDrawCheck {
  to { stroke-dashoffset: 0; }
}

.eco-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(134,187,70,0.14);
  border: 1px solid rgba(134,187,70,0.4);
  color: var(--eco-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
  animation: ecoFadeUp 0.5s 0.4s ease both;
}

.eco-pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--eco-green);
  border-radius: 50%;
  animation: ecoPulse 1.8s infinite;
}

@keyframes ecoPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(1.5); }
}

.eco-thanks-card h1 {
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
  color: #fff;
  animation: ecoFadeUp 0.5s 0.5s ease both;
}

.eco-thanks-card h1 span {
  color: var(--eco-blue-mid);
}

.eco-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 36px;
  animation: ecoFadeUp 0.5s 0.6s ease both;
}

.eco-subtitle strong {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

@keyframes ecoFadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

.eco-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  animation: ecoFadeUp 0.5s 0.65s ease both;
}

.eco-divider-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.eco-divider-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

.eco-btn-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  background: var(--eco-wa-green);
  color: #fff !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 800;
  padding: 18px 24px;
  border-radius: 12px;
  letter-spacing: 0.2px;
  box-shadow: 0 8px 28px rgba(37,211,102,0.35);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  animation: ecoFadeUp 0.5s 0.7s ease both;
  margin-bottom: 14px;
}

.eco-btn-wa:hover {
  background: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(37,211,102,0.5);
  color: #fff !important;
}

.eco-btn-wa svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  flex-shrink: 0;
}

.eco-btn-caption {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  animation: ecoFadeUp 0.5s 0.75s ease both;
}

.eco-info-strip {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
  animation: ecoFadeUp 0.5s 0.8s ease both;
}

.eco-info-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
}

.eco-info-item::before {
  content: '✓';
  color: var(--eco-green);
  font-weight: 700;
}

.eco-footer-logo {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.5px;
  animation: ecoFadeUp 0.5s 0.85s ease both;
}

.eco-footer-logo .eco {
  color: var(--eco-blue-mid);
}

.eco-footer-logo .sol {
  color: rgba(255,255,255,0.45);
}

.eco-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: var(--eco-wa-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  animation: ecoWaFloat 3s infinite;
  z-index: 9999;
  text-decoration: none;
  transition: transform 0.2s;
}

.eco-wa-float:hover {
  transform: scale(1.1);
}

.eco-wa-float svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.eco-wa-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  right: 0;
  background: #1a1a1a;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 7px 13px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}

.eco-wa-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  right: 18px;
  border: 5px solid transparent;
  border-top-color: #1a1a1a;
}

.eco-wa-float:hover .eco-wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ecoWaFloat {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
  50% { box-shadow: 0 6px 36px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

@media (max-width: 520px) {
  .eco-thanks-card {
    padding: 40px 24px;
  }

  .eco-info-strip {
    gap: 14px;
  }

  .eco-wa-float {
    bottom: 20px;
    right: 20px;
    width: 54px;
    height: 54px;
  }

  .eco-wa-tooltip {
    display: none;
  }
}/* End custom CSS */