.reg-system-rsvpify-section {
  background-image: url("../images/reg_system.png");
  background-size: cover;
  padding: 60px 0 !important;
}

.reg-system-rsvpify-section__right {
  margin-left: 140px;
}

.reg-system-rsvpify-section__right h2 {
  margin-bottom: 48px;
}

.reg-system-rsvpify-section_wrapper {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.reg-system-rsvpify-section__right__points__single {
  display: flex;
  align-items: start;
  gap: 12px;
  margin-bottom: 32px;
}

@media (max-width: 1024px) {
.reg-system-rsvpify-section {
  padding: 40px 20px !important;
}
  .reg-system-rsvpify-section_wrapper {
    flex-direction: column-reverse;
    align-items: start;
    text-align: left;
  }

  .reg-system-rsvpify-section__right {
    margin-left: 0;
    margin-top: 0px;
  }
  .reg-system-rsvpify-section__right h2 {
    margin-bottom: 40px;
  }

  .reg-system-rsvpify-section__right__points__single {
    margin-bottom: 24px;
  }
}

.reg-system-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  background: rgba(255, 255, 255, 0.98);
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  animation: slideIn 1s ease-out;
}

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

.reg-system-rsvpify-section .section-left {
  position: relative;
  animation: floatIn 1.2s ease-out;
}

@keyframes floatIn {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(44, 34, 99, 0.3);
  transition: all 0.4s ease;
}

.image-wrapper:hover {
  transform: scale(1.05) rotate(-2deg);
  box-shadow: 0 30px 80px rgba(44, 34, 99, 0.4);
}

.image-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 34, 99, 0.1) 0%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
}

.section-left img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.decorative-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #2c2263 0%, #6b5dd3 100%);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: -1;
  animation: blobFloat 6s ease-in-out infinite;
}

.blob-1 {
  top: -100px;
  left: -100px;
}

.blob-2 {
  bottom: -100px;
  right: -100px;
  animation-delay: 3s;
}

@keyframes blobFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.section-right {
  animation: floatIn 1.2s ease-out 0.2s backwards;
}

/* .reg-system-rsvpify-section h2 {
  font-size: 42px;
  font-weight: 800;
  color: #2c2263;
  margin-bottom: 40px;
  line-height: 1.3;
  position: relative;
  display: inline-block;
} */

/* .reg-system-rsvpify-section h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 5px;
  background: linear-gradient(90deg, #2c2263 0%, #6b5dd3 100%);
  border-radius: 10px;
  animation: lineGrow 1s ease-out 0.5s backwards;
} */

@keyframes lineGrow {
  from {
    width: 0;
  }
  to {
    width: 80px;
  }
}

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

@media (max-width: 1024px) {
  .reg-system-section {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px;
  }

}

@media (max-width: 768px) {
  .reg-system-section {
    padding: 30px 20px;
  }

}
