/* ===== Bema HERO SECTION COMPONENT - UPDATED ===== */

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #2E86DE 0%, #1e40af 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 0 var(--spacing-4xl) 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: auto;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

/* Animation background supprimée définitivement */
.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 50px !important;
  padding-left: var(--spacing-lg);
  padding-right: var(--spacing-lg);
  padding-bottom: var(--spacing-3xl);
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-3xl);
  box-sizing: border-box;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding-top: var(--spacing-2xl);
  padding-bottom: var(--spacing-xl);
}

.coming-soon-badge {
  position: relative;
  top: 0;
  left: auto;
  transform: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  color: var(--primary-blue);
  padding: 12px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  animation: pulse 2s infinite;
  z-index: 20;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  margin-bottom: var(--spacing-lg);
  display: inline-block;
}

.hero-title {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 0.85;
  color: var(--white);
  text-align: center;
  margin-top: 40px !important;
  margin-bottom: var(--spacing-xl);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.02em;
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}
.gradient-word {
  color: #ffffff;
  font-weight: 900;
}

.big-word {
  display: inline;
  margin-top: 0;
  text-align: center;
}

/* Effet respiration pour le mot "tous" - Compatible Safari */
.breathing-word {
  animation: breathingWord 2.5s ease-in-out infinite;
  display: inline-block;
  transform-origin: center;
  transition: all 0.3s ease;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Texte CTA au-dessus du formulaire - Design amélioré */
.signup-cta {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.signup-cta-text {
  font-size: 1.8rem;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ctaPulse 2s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% {
    transform: scale(1) translateZ(0);
    -webkit-transform: scale(1) translateZ(0);
    opacity: 0.95;
  }
  50% {
    transform: scale(1.08) translateZ(0);
    -webkit-transform: scale(1.08) translateZ(0);
    opacity: 1;
  }
}

/* Positionnement du mot "tous" vers la droite */
.tous-right {
  margin-left: 2rem; /* Décalage vers la droite */
  position: relative;
}

@media (max-width: 768px) {
  .tous-right {
    margin-left: 1rem; /* Moins de décalage sur mobile */
  }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-section {
    padding: 6rem 0 200px 0;
    min-height: 120vh;
  }
  
  .hero-container {
    max-width: 100%;
    padding-top: 30px !important;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 0;
    gap: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    gap: 4rem;
    padding-bottom: 6rem;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem) !important;
    line-height: 1.2;
    margin-top: 100px !important;
    margin-bottom: 1rem;
    text-align: center;
    padding: 0 0.5rem;
  }
  
  .big-word {
    font-size: 1.6em;
    margin-top: 0;
    text-align: center;
  }

  .hero-subtitle {
    font-size: clamp(0.9rem, 4vw, 1.1rem);
    line-height: 1.4;
    margin-bottom: 2rem;
    text-align: center;
    padding: 0 1rem;
  }

  /* Formulaire mobile optimisé */
  .input-group-new {
    max-width: calc(100% - 2rem);
    margin: 0 1rem;
    height: 56px;
  }

  .signup-btn-new {
    width: 48px;
    height: 48px;
    margin: 4px;
  }

  .email-input-new {
    padding: 0 16px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .input-group-new {
    max-width: 95%;
    height: 52px;
    /* Plus compact sur petits écrans */
  }

  .signup-btn-new {
    width: 44px;
    height: 44px;
  }

  .email-input-new {
    padding: 0 14px;
  }
}

/* Responsive title - Toujours responsive */
.hero-title {
  white-space: normal;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Correction globale pour éviter superposition avec navbar */
.hero-container {
  padding-top: calc(var(--navbar-height, 70px) + var(--spacing-lg)) !important;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: var(--spacing-3xl);
  line-height: 1.6;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.hero-subtitle strong {
  font-weight: 700;
  color: #FFFFFF;
}

/* Mockup PNG and animations completely removed */

/* Email Signup */
.email-signup {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-md);
}

.signup-form-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* New Email Form Styles avec effet respiration GARANTI */
.input-group-new {
  display: flex !important;
  align-items: center !important;
  background: #ffffff !important;
  border-radius: 50px !important;
  padding: 4px !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2) !important;
  transition: all 0.3s ease !important;
  border: 2px solid rgba(255, 255, 255, 1) !important;
  max-width: 700px !important; /* ÉTIRÉ */
  width: 100% !important;
  height: 65px !important; /* PLUS HAUT */
  position: relative !important;
  z-index: 10 !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
  overflow: hidden !important;
  animation: breathingForm 4s ease-in-out infinite !important;
}

.input-group-new:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  border-color: var(--primary-blue);
  animation: none; /* Arrêter la respiration pendant la saisie */
}

.email-input-new {
  flex: 1;
  border: none;
  animation: none; /* Arrêter la respiration pendant la saisie */
  outline: none;
  padding: 0 20px;
  /* Padding horizontal seulement */
  font-size: 16px;
  /* Évite zoom iOS */
  background: transparent;
  color: var(--black);
  font-weight: 500;
  height: 100%;
  /* Prend toute la hauteur du container */
  line-height: 1.4;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Mobile touch fixes */
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  pointer-events: auto;
  z-index: 10;
  position: relative;
  /* iOS specific fixes */
  -webkit-user-select: text;
  user-select: text;
  -webkit-touch-callout: default;
}

/* ===== PLACEHOLDER STYLE ===== */
.email-input-new::placeholder {
  color: #9ca3af;
  font-weight: 400;
  transition: all 0.3s ease;
}

.signup-btn-new {
  background: linear-gradient(135deg, var(--primary-blue), #1e40af);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  /* Empêche rétrécissement */
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  color: var(--white);
  font-size: 1.2rem;
  box-shadow: 0 4px 16px rgba(46, 134, 222, 0.3);
  position: relative;
  overflow: hidden;
  margin: 4px;
  /* Marge pour espacement du bord */
}

.signup-btn-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.signup-btn-new:hover::before {
  opacity: 1;
}

.signup-btn-new:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(46, 134, 222, 0.4);
}

.signup-btn-new:active {
  transform: scale(0.95);
}

/* États du bouton avec animations */
.signup-btn-new.loading {
  background: linear-gradient(135deg, #3b82f6, #1e40af);
  cursor: not-allowed;
  animation: loadingPulse 1.5s ease-in-out infinite;
}

.signup-btn-new.success {
  background: linear-gradient(135deg, #10b981, #059669);
  cursor: default;
  animation: successBounce 0.6s ease-out;
}

.signup-btn-new.error {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  cursor: pointer;
  animation: errorShake 0.5s ease-out;
}

/* Animations keyframes pour les états */
@keyframes loadingPulse {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
  }

  50% {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.5);
  }
}

@keyframes successBounce {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1.08);
  }
}

@keyframes errorShake {

  0%,
  100% {
    transform: translateX(0) scale(1);
  }

  25% {
    transform: translateX(-3px) scale(1.02);
  }

  75% {
    transform: translateX(3px) scale(1.02);
  }
}

/* Icônes avec animations */
.signup-btn-new i {
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.signup-btn-new.loading i {
  animation: spin 1s linear infinite;
}

.signup-btn-new.success i {
  animation: checkmarkPop 0.5s ease-out;
}

.signup-btn-new.error i {
  animation: errorPop 0.4s ease-out;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes checkmarkPop {
  0% {
    transform: scale(0) rotate(-180deg);
  }

  50% {
    transform: scale(1.3) rotate(0deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@keyframes errorPop {
  0% {
    transform: scale(0);
  }

  50% {
    transform: scale(1.4);
  }

  100% {
    transform: scale(1);
  }
}

/* Success Message */
.success-message-new {
  text-align: center;
  margin-top: var(--spacing-md);
  padding: var(--spacing-md);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
  color: #059669;
  font-weight: 600;
}

.success-message-new i {
  margin-right: var(--spacing-xs);
  color: #059669;
}

/* Conteneur des utilisateurs actifs */
.active-users {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-2xl);
  width: 100%;
  justify-content: center;
}

/* User Count Styles */
.user-count {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
  justify-content: center;
}

.user-avatars {
  display: flex;
  align-items: center;
  gap: -8px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  margin-left: -8px;
  transition: all 0.3s ease;
  z-index: 1;
}

.avatar:first-child {
  margin-left: 0;
  z-index: 5;
}

.avatar:nth-child(2) {
  z-index: 4;
}

.avatar:nth-child(3) {
  z-index: 3;
}

.avatar:nth-child(4) {
  z-index: 2;
}

.avatar:last-child {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  font-size: 0.7rem;
  z-index: 1;
}

.avatar:hover {
  transform: translateY(-2px) scale(1.1);
  z-index: 10;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.count-text {
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  opacity: 0.9;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Hero Mockup Styles */
.hero-mockup {
  text-align: center;
  margin-top: var(--spacing-xl);
  position: relative;
  z-index: 5;
}

.mockup-img {
  width: auto;
  height: 900px;
  max-width: 630px;
  object-fit: contain;
  filter: drop-shadow(0 20px 50px rgba(255, 255, 255, 0.5));
  transition: all 0.3s ease;
  position: relative;
}

.mockup-img::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
  border-radius: 50px;
  animation: glowPulse 3s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.mockup-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 15px 40px rgba(255, 255, 255, 0.4));
}

/* Modern Coming Soon Button - Floating above mockup */
.modern-coming-soon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(46, 134, 222, 0.3);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 10;
  transition: all 0.3s ease;
}

.modern-coming-soon:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 134, 222, 0.4);
}

/* Mockup Container */
.mockup-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 120px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.mockup-phone {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 600px;
  height: 900px;
}

/* Animation flottante supprimée */

.mockup-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 3;
  position: relative;
  opacity: 0.9;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  /* Amélioration qualité image */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: high-quality;
  image-rendering: auto;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.mockup-image.scroll-revealed {
  transform: scale(1.0) translateY(-20px);
  opacity: 1;
  /* Maintenir la qualité lors de l'animation */
  image-rendering: auto;
  image-rendering: high-quality;
}

.mockup-image::before {
  content: '';
  position: absolute;
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 40%, transparent 70%);
  border-radius: 50px;
  animation: breathingGlow 4s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

.signup-form {
  width: 100%;
  max-width: 480px;
}

.input-group {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: text;
  min-height: 60px;
}

.input-group:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(46, 134, 222, 0.3);
  border-color: rgba(46, 134, 222, 0.5);
}

.input-group:focus-within {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 12px 40px rgba(46, 134, 222, 0.4);
  border-color: var(--primary-blue);
}

.email-input:hover::placeholder {
  color: var(--primary-blue);
  font-weight: 600;
}

.email-input:focus::placeholder {
  color: var(--primary-blue);
  transform: translateY(-2px);
}

.email-input {
  flex: 1;
  border: none;
  outline: none;
  padding: 16px var(--spacing-lg);
  font-family: var(--font-family);
  font-size: 16px;
  background: transparent;
  color: var(--black);
  font-weight: 500;
  height: 50px;
  cursor: text;
  width: 100%;
}

.email-input::placeholder {
  color: #6b7280;
  font-weight: 400;
}

.signup-btn {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(46, 134, 222, 0.3);
  flex-shrink: 0;
}

.signup-btn:hover {
  background: var(--secondary-blue);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(46, 134, 222, 0.4);
}

.signup-btn:active {
  transform: scale(1.05);
}

.signup-btn.sending {
  background: var(--secondary-blue);
  transform: scale(1.1);
  animation: sendPulse 0.6s ease-in-out infinite;
}

.signup-btn.sending i {
  animation: paperPlaneFly 1s ease-in-out infinite;
}

/* User Count */
.user-count {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-xl);
}

.user-avatars {
  display: flex;
  align-items: center;
}

.count-text {
  color: var(--white) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5) !important;
  margin-left: var(--spacing-sm);
}

/* ===== BEMA IPHONE MOCKUP HERO ===== */
.hero-iphone-mockup {
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  width: auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
}

.bema-iphone-img {
  max-width: 700px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.4));
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 25px;
}



/* Animation AOS Zoom In-Out */
[data-aos="zoom-in-out"] {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos="zoom-in-out"].aos-animate {
  transform: scale(1);
  opacity: 1;
}

/* Responsive iPhone */
@media (max-width: 768px) {
  .bema-iphone-img {
    max-width: 200px;
  }
  
  .hero-iphone-mockup {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin-top: var(--spacing-2xl);
    margin-bottom: 0;
  }

  .hero-section {
    padding-bottom: var(--spacing-xl);
  }
}

.signup-form-container {
  max-width: 400px;
  margin: 0 auto;
}

/* New Email Form Styles avec effet respiration */
.input-group-new {
  display: flex;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 6px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  max-width: 400px;
  margin: 0 auto;
  outline: none;
  padding: 12px 20px;
  font-size: 16px;
  background: transparent;
  color: var(--black);
  font-weight: 500;
}

.email-input-new::placeholder {
  color: #6b7280;
  font-weight: 400;
}

.signup-btn-new {
  background: var(--primary-blue);
  color: var(--white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(46, 134, 222, 0.3);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.signup-btn-new:hover {
  background: var(--secondary-blue);
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(46, 134, 222, 0.4);
}

.signup-btn-new:hover #submitIcon {
  animation: mailBounce 0.6s ease-in-out;
  transform: scale(1.1);
}

.signup-btn-new:active {
  transform: scale(1.05);
}

.signup-btn-new.sending {
  background: var(--secondary-blue);
  transform: scale(1.1);
}

.signup-btn-new.sending #submitIcon {
  animation: mailSend 1s ease-in-out infinite;
}

/* Success Message Styles */
.success-message-new {
  margin-top: var(--spacing-md);
  padding: 12px 20px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius-lg);
  color: var(--white);
  text-align: center;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.success-message-new i {
  color: #22c55e;
  margin-right: var(--spacing-sm);
}

/* Modern Success Pop-up Styles */
.success-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.success-popup-content {
  background: var(--white);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
  transform: scale(0.8) translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.success-popup-overlay.show .success-popup-content {
  transform: scale(1) translateY(0);
}

.success-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-lg) var(--spacing-xl);
  border-bottom: 1px solid rgba(46, 134, 222, 0.1);
  background: linear-gradient(135deg, rgba(46, 134, 222, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
}

.popup-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(46, 134, 222, 0.3);
}

.popup-close {
  background: none;
  border: none;
  font-size: 20px;
  color: #6b7280;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}

.popup-close:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  transform: scale(1.1);
}

.success-popup-body {
  padding: var(--spacing-xl);
  text-align: center;
}

.success-icon {
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
  color: var(--white);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
  animation: successPulse 2s ease-in-out infinite;
}

.hero-section {
  background: linear-gradient(135deg, #2E86DE 0%, #1e40af 100%);
  min-height: 100vh;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: var(--spacing-md);
}

.success-popup-body p {
  color: #6b7280;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
}

.success-details {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  margin-bottom: var(--spacing-lg);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(46, 134, 222, 0.1);
  border-radius: var(--radius-lg);
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 0.9rem;
}

.detail-item i {
  font-size: 1rem;
}

.success-popup-footer {
  padding: var(--spacing-lg) var(--spacing-xl);
  border-top: 1px solid rgba(46, 134, 222, 0.1);
  background: rgba(46, 134, 222, 0.02);
}

.coming-soon-btn {
  background: linear-gradient(135deg, var(--primary-blue), #1e40af);
  color: var(--white);
  border: none;
  padding: var(--spacing-md) var(--spacing-xl);
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 134, 222, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  text-align: center;
}

.popup-btn-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  border: none;
  padding: var(--spacing-md) var(--spacing-lg);
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 134, 222, 0.3);
}

.popup-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 134, 222, 0.4);
}

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