/*---------------------------------------
  JOIN PANEL PAGE STYLES             
-----------------------------------------*/

/* Hero Section - Dark UI */
.panel-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0f1419 0%, #1a202c 50%, #2d3748 100%);
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(218, 117, 1, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 80%, rgba(238, 80, 7, 0.1) 0%, transparent 50%);
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(218, 117, 1, 0.2) 1px, transparent 1px),
    radial-gradient(circle at 40% 40%, rgba(59, 130, 246, 0.15) 1px, transparent 1px);
  background-size: 50px 50px, 80px 80px, 100px 100px;
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(1deg); }
}

.panel-hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  color: #ffffff;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(218, 117, 1, 0.2);
  border: 1px solid rgba(218, 117, 1, 0.3);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.hero-badge i {
  color: #DA7501;
}

.hero-title {
  font-size: 4.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.8rem;
  color: #DA7501;
  font-weight: 600;
  margin-bottom: 25px;
  text-shadow: 0 2px 10px rgba(218, 117, 1, 0.3);
}

.hero-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #cbd5e0;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #DA7501;
  line-height: 1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #a0aec0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #DA7501 0%, #EE5007 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(218, 117, 1, 0.4);
}

.hero-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(218, 117, 1, 0.6);
  color: #ffffff;
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.hero-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Hero Visual Elements */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 350px;
  animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0px) rotateY(0deg); }
  50% { transform: translateY(-15px) rotateY(2deg); }
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.card-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.card-info {
  flex: 1;
}

.card-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin: 0 0 5px 0;
}

.card-info p {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
}

.card-reward {
  background: linear-gradient(135deg, #DA7501, #EE5007);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.card-body {
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e2e8f0;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-fill {
  width: 65%;
  height: 100%;
  background: linear-gradient(90deg, #DA7501, #EE5007);
  border-radius: 4px;
  animation: progressFill 3s ease-in-out infinite;
}

@keyframes progressFill {
  0% { width: 0%; }
  50% { width: 65%; }
  100% { width: 65%; }
}

.card-body p {
  font-size: 0.9rem;
  color: #718096;
  margin: 0;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  background: rgba(218, 117, 1, 0.1);
  border: 2px solid rgba(218, 117, 1, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #DA7501;
  font-size: 1.5rem;
  backdrop-filter: blur(10px);
  animation: floatIcon 4s ease-in-out infinite;
}

.floating-icon:nth-child(1) { animation-delay: 0s; }
.floating-icon:nth-child(2) { animation-delay: 1s; }
.floating-icon:nth-child(3) { animation-delay: 2s; }
.floating-icon:nth-child(4) { animation-delay: 3s; }

@keyframes floatIcon {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-10px) scale(1.1); }
}

/* Section Headers */
.section-header {
  max-width: 600px;
  margin: 0 auto;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--p-color);
  font-weight: 400;
  margin: 0;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0;
  position: relative;
}

.benefits-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23DA7501" fill-opacity="0.03"><circle cx="30" cy="30" r="2"/></g></svg>') repeat;
  pointer-events: none;
}

.benefit-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  border: 1px solid rgba(218, 117, 1, 0.1);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #DA7501, #EE5007);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 60px rgba(218, 117, 1, 0.15);
  border-color: rgba(218, 117, 1, 0.2);
}

.benefit-card.featured {
  background: linear-gradient(135deg, #ffffff 0%, #fef7f0 100%);
  border: 2px solid #DA7501;
  transform: scale(1.05);
}

.benefit-card.featured:hover {
  transform: scale(1.05) translateY(-12px);
}

.card-decoration {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  border-radius: 50%;
  opacity: 0.1;
}

.feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: white;
  font-size: 2rem;
  box-shadow: 0 10px 30px rgba(218, 117, 1, 0.3);
  transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
  transform: rotateY(180deg);
  box-shadow: 0 15px 40px rgba(218, 117, 1, 0.4);
}

.benefit-card h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--p-color);
  margin-bottom: 25px;
}

.benefit-highlight {
  background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 20px;
  padding: 12px 20px;
  margin-top: 20px;
}

.highlight-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: #3b82f6;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* How It Works Section */
.how-it-works {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.step-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #DA7501, #EE5007);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(218, 117, 1, 0.3);
}

.step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  color: white;
  font-size: 1.5rem;
}

.step-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.step-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--p-color);
  margin: 0;
}

/* Signup Section */
.signup-section {
  background-color: var(--white-color);
  padding: 80px 0;
}

.signup-form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  padding: 50px;
  position: relative;
  overflow: hidden;
}

.signup-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #DA7501 0%, #EE5007 50%, #3b82f6 100%);
}

.form-header {
  text-align: center;
  margin-bottom: 40px;
}

.form-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.form-subtitle {
  font-size: 1.1rem;
  color: var(--p-color);
  margin: 0;
  line-height: 1.6;
}

/* Signup Form Styles */
.signup-form {
  margin-top: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
}

.form-group {
  position: relative;
  flex: 1;
  margin-bottom: 25px;
}

.form-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  color: var(--dark-color);
  font-size: 16px;
  padding: 15px 0;
  outline: none;
  transition: all 0.3s ease;
  font-family: var(--body-font-family);
}

.form-input:focus {
  border-bottom-color: #DA7501;
}

.form-input:focus + .form-label,
.form-input:not(:placeholder-shown) + .form-label {
  transform: translateY(-25px);
  font-size: 12px;
  color: #DA7501;
}

.form-input.error {
  border-bottom-color: #dc3545;
}

.form-label {
  position: absolute;
  left: 0;
  top: 15px;
  color: var(--p-color);
  font-size: 16px;
  transition: all 0.3s ease;
  pointer-events: none;
  font-weight: 400;
}

.form-textarea {
  min-height: 100px;
  resize: vertical;
  /* border: 2px solid #e0e0e0; */
  /* border-radius: 10px; */
  padding: 15px;
  /* background-color: #f8f9fa; */
}

.form-textarea:focus {
  border-color: #DA7501;
  background-color: #ffffff;
}

.form-textarea + .form-label {
  top: 15px;
  left: 15px;
}

.form-textarea:focus + .form-label,
.form-textarea:not(:placeholder-shown) + .form-label {
  transform: translateY(-25px);
  font-size: 12px;
  color: #DA7501;
  left: 0;
}

.form-footer {
  margin-top: 40px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.consent-checkbox input[type="checkbox"] {
  margin: 0;
  width: 18px;
  height: 18px;
  accent-color: #DA7501;
  margin-top: 2px;
}

.consent-checkbox label {
  font-size: 14px;
  color: var(--p-color);
  line-height: 1.5;
  cursor: pointer;
}

.consent-checkbox a {
  color: #DA7501;
  text-decoration: none;
  font-weight: 500;
}

.consent-checkbox a:hover {
  text-decoration: underline;
}

.submit-btn {
  background: linear-gradient(135deg, #DA7501, #EE5007);
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(218, 117, 1, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(218, 117, 1, 0.4);
}

.submit-btn i {
  transition: transform 0.3s ease;
}

.submit-btn:hover i {
  transform: translateX(5px);
}

/* Testimonials Section */
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 80px 0;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-content {
  margin-bottom: 25px;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--p-color);
  margin: 0;
  font-style: italic;
}

.testimonial-author {
  border-top: 1px solid #f0f0f0;
  padding-top: 20px;
}

.author-info h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 5px 0;
}

.author-info span {
  font-size: 0.9rem;
  color: var(--p-color);
}

/* FAQ Section */
.faq-section {
  background-color: var(--white-color);
  padding: 80px 0;
}

.faq-accordion {
  margin-top: 40px;
}

.faq-item {
  background: #ffffff;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background-color: #f8f9fa;
}

.faq-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #DA7501, #EE5007);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.faq-icon i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  background: linear-gradient(135deg, #EE5007, #DA7501);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background-color: #f8f9fa;
}

.faq-item.active .faq-content {
  max-height: 200px;
  padding: 0 30px 25px;
}

.faq-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--p-color);
  margin: 0;
  padding-top: 20px;
}

/* Responsive Design */
@media screen and (max-width: 991px) {
  .hero-title {
    font-size: 3.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
  }
  
  .hero-btn {
    justify-content: center;
  }
  
  .hero-visual {
    height: 400px;
    margin-top: 40px;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .signup-form-wrapper {
    padding: 40px;
  }
  
  .form-title {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .panel-hero {
    min-height: 100vh;
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: row;
    justify-content: space-around;
    gap: 15px;
  }
  
  .stat-number {
    font-size: 1.5rem;
  }
  
  .stat-label {
    font-size: 0.8rem;
  }
  
  .hero-visual {
    height: 350px;
  }
  
  .hero-card {
    max-width: 300px;
    padding: 20px;
  }
  
  .floating-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .benefits-section,
  .how-it-works,
  .signup-section,
  .testimonials-section,
  .faq-section {
    padding: 60px 0;
  }
  
  .signup-form-wrapper {
    padding: 30px 20px;
  }
  
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  
  .form-title {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .faq-header {
    padding: 20px;
  }
  
  .faq-header h3 {
    font-size: 1.1rem;
  }
  
  .faq-item.active .faq-content {
    padding: 0 20px 20px;
  }
}

@media screen and (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
  
  .hero-stats {
    gap: 10px;
  }
  
  .stat-number {
    font-size: 1.3rem;
  }
  
  .stat-label {
    font-size: 0.75rem;
  }
  
  .hero-btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
  
  .hero-visual {
    height: 300px;
  }
  
  .hero-card {
    max-width: 280px;
    padding: 18px;
  }
  
  .card-avatar {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .card-info h4 {
    font-size: 1rem;
  }
  
  .card-reward {
    padding: 6px 12px;
    font-size: 1rem;
  }
  
  .floating-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .signup-form-wrapper {
    padding: 25px 15px;
  }
  
  .form-title {
    font-size: 1.6rem;
  }
  
  .form-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .benefit-card,
  .step-card {
    padding: 30px 20px;
  }
  
  .testimonial-card {
    padding: 25px;
  }
  
  .faq-header {
    padding: 15px;
  }
  
  .faq-header h3 {
    font-size: 1rem;
  }
}
