﻿/* ========================================
   ENHANCED WAITLIST SECTION STYLES
   Trust-Building & Professional Design
   ======================================== */

/* Waitlist Section Container */
.waitlist-section {
  padding: 50px 20px;
  background: linear-gradient(180deg, var(--bg-premium-dark) 0%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.waitlist-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 50% 0%,
    rgba(59, 130, 246, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.waitlist-enhanced {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Trust Indicators Row */
.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 15px;
  padding: 30px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #93c5fd;
  transition: all 0.3s ease;
}

.trust-badge i {
  font-size: 1.1rem;
  color: var(--trust-badge);
}

.trust-badge:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-2px);
}

/* Yell Badge Specific Styling */
.yell-badge {
  background: rgba(255, 215, 0, 0.1);
  border-color: rgba(255, 215, 0, 0.2);
}

.yell-badge:hover {
  background: rgba(255, 215, 0, 0.15);
  border-color: rgba(255, 215, 0, 0.4);
}

.yell-badge svg {
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

/* Waitlist Content Grid */
.waitlist-content-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 20px;
  align-items: center;
  margin-bottom: 15px;
}

/* Waitlist Info Section */
.waitlist-info h2 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  line-height: 1.2;
  color: var(--text-light);
}

.waitlist-description {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.8);
}

/* Waitlist Benefits */
.waitlist-benefits {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 10px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-item i {
  font-size: 1.5rem;
  color: var(--success-green);
  flex-shrink: 0;
  margin-top: 3px;
}

.benefit-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-light);
}

.benefit-item p {
  font-size: 0.95rem;
  opacity: 0.7;
  margin: 0;
  line-height: 1.5;
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 12px;
}

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

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--trust-badge), var(--accent-color));
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-premium-dark);
  margin-left: -12px;
  font-size: 1.2rem;
}

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

.avatar-count {
  width: 50px;
  height: 40px;
  border-radius: 20px;
  background: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-premium-dark);
  margin-left: -12px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.social-proof p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.social-proof strong {
  color: var(--success-green);
}

/* Form Container */
.waitlist-form-container {
  padding: 40px;
  background: rgba(30, 58, 95, 0.3);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.waitlist-form-container h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--text-light);
}

.form-subtitle {
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 15px;
}

/* Enhanced Form Styles */
.waitlist-form-enhanced .form-group {
  margin-bottom: 12px;
}

.waitlist-form-enhanced label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.5px;
}

.waitlist-form-enhanced input {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.waitlist-form-enhanced input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--trust-badge);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.waitlist-form-enhanced input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.btn-block {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  -webkit-tap-highlight-color: transparent;
}

.form-disclaimer {
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-disclaimer i {
  color: var(--success-green);
}

/* Trust Seals */
.trust-seals {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.seal:hover {
  opacity: 1;
}

.seal i {
  font-size: 1.8rem;
  color: var(--secondary-color);
}

.seal span {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Testimonial Strip */
.testimonial-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-item {
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
}

.testimonial-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-3px);
}

.stars {
  color: var(--secondary-color);
  font-size: 1rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.testimonial-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.testimonial-item span {
  font-size: 0.85rem;
  opacity: 0.6;
  font-style: normal;
}

/* Form Message */
.form-message {
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  text-align: center;
  font-weight: 600;
  display: none;
}

.form-message.success {
  display: block;
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: var(--success-green);
}

.form-message.error {
  display: block;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .waitlist-content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .trust-indicators {
    gap: 15px;
  }

  .trust-badge {
    font-size: 0.85rem;
    padding: 10px 16px;
  }

  .testimonial-strip {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .waitlist-section {
    padding: 60px 20px;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 12px;
    padding: 20px;
  }

  .trust-badge {
    width: 100%;
    justify-content: center;
  }

  .waitlist-info h2 {
    font-size: 2rem;
  }

  .waitlist-description {
    font-size: 1rem;
  }

  .waitlist-benefits {
    gap: 20px;
  }

  .social-proof {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .avatars {
    justify-content: center;
  }

  .waitlist-form-container {
    padding: 30px 20px;
  }

  .trust-seals {
    flex-direction: column;
    gap: 15px;
  }

  .testimonial-strip {
    padding: 20px;
  }

  .testimonial-item {
    padding: 20px;
  }
}
