/* Exclusive Benefits Page Styles */

.page-exclusive-benefits {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Hero Section - Orange Theme */
.influencer-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(135deg, #FF8C42 0%, #E85D04 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 20px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: -1px;
  color: #ffffff;
}

.hero-subtitle {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  padding: 14px 40px;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #FF8C42 0%, #E85D04 100%);
  border: none;
  color: white;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 响应式图片 */
@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
  }

  .hero-title {
    font-size: 2rem;
  }
}

.process-section .process-step {
  padding: 20px;
  transition: transform 0.3s ease;
}

.process-section .process-step:hover {
  transform: translateY(-5px);
}

.process-section .step-icon {
  display: inline-block;
}

.application-section {
  min-height: 600px;
}

.form-section-title {
  color: #333;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #FF8C42;
  margin-bottom: 30px;
}

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #FF8C42 0%, #E85D04 100%);
  color: white;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
}

.form-label.required::after {
  content: " *";
  color: #dc3545;
}

.identity-options .form-check,
.products-options .form-check,
.scenarios-options .form-check {
  position: relative;
  padding: 0;
  border: 2px solid #e9ecef;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.identity-options .form-check:hover,
.products-options .form-check:hover,
.scenarios-options .form-check:hover {
  border-color: #FF8C42;
  background-color: #fff7f0;
}

.identity-options .form-check-label,
.products-options .form-check-label,
.scenarios-options .form-check-label {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 15px;
  padding-left: 10px;
  margin: 0;
  cursor: pointer;
}

.identity-options .form-check-input,
.products-options .form-check-input,
.scenarios-options .form-check-input {
  margin: 0 0 0 15px;
  cursor: pointer;
  flex-shrink: 0;
}

.identity-options .form-check-input:checked ~ .form-check-label,
.products-options .form-check-input:checked ~ .form-check-label,
.scenarios-options .form-check-input:checked ~ .form-check-label {
  color: #FF8C42;
  font-weight: 600;
}

.form-control,
.form-select {
  border-radius: 8px;
  border: 2px solid #e9ecef;
  padding: 12px 16px;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  border-color: #FF8C42;
  box-shadow: 0 0 0 0.2rem rgba(255, 140, 66, 0.25);
}

.btn-primary {
  background: linear-gradient(135deg, #FF8C42 0%, #E85D04 100%);
  border: none;
  border-radius: 50px;
  padding: 15px 40px;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 140, 66, 0.3);
}

.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.thank-you-icon {
  text-align: center;
}

.thank-you-icon {
  text-align: center;
  color: #28a745;
}

.thank-you-icon svg {
  color: #28a745;
  animation: checkmark 0.8s ease-in-out;
}

#thank-you-card {
  background: white !important;
  color: #333 !important;
}

#thank-you-card .card-body {
  text-align: center;
  padding: 3rem !important;
}

#thank-you-card h2 {
  color: #333 !important;
  font-weight: 600;
  margin-bottom: 1rem !important;
}

#thank-you-card .lead {
  color: #666 !important;
  font-size: 1.1rem;
  line-height: 1.6;
}

#thank-you-card .text-muted {
  color: #888 !important;
}

#thank-you-card .btn-primary {
  background: linear-gradient(135deg, #FF8C42 0%, #E85D04 100%) !important;
  border: none !important;
  color: white !important;
}

@keyframes checkmark {
  0% {
    transform: scale(0) rotate(-45deg);
    opacity: 0;
  }
  50% {
    transform: scale(1.2) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

.footer-info-section {
  background: #f8f9fa;
}

.footer-info-section h5 {
  color: #333;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .form-section-title {
    font-size: 1.2rem;
  }

  .section-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

@media (max-width: 767px) {
  .influencer-hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .form-section-title {
    font-size: 1.2rem;
  }

  .section-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}

