/* ================================================
   LAIMEIWEE Influencer Page Styles
   ================================================ */

/* Hero Section */
.influencer-hero {
  position: relative;
  height: 70vh;
  min-height: 500px;
  background: linear-gradient(135deg, #FF8C42 0%, #E85D04 100%);
  background-image: url('../image/influencer/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  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);
}

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

/* Section Titles */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 2rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF8C42, #E85D04);
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* Value Cards */
.value-card {
  padding: 2rem 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
  border-radius: 12px;
  background: #fff;
  border: 1px solid #e9ecef;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF8C42 0%, #E85D04 100%);
  color: white;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.value-text {
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Form Sections */
.form-section {
  padding: 2rem 0;
  border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
  border-bottom: none;
}

.form-section-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.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%;
  margin-right: 1rem;
  font-weight: 700;
  font-size: 1rem;
}

/* Form Elements */
.form-label.required::after {
  content: ' *';
  color: #dc3545;
}

.form-control,
.form-select {
  border-radius: 0;
}

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

.platform-checkboxes,
.content-categories,
.collaboration-types {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
}

.form-check-inline {
  margin-right: 1.5rem;
}

.form-check-input:checked {
  background-color: #FF8C42;
  border-color: #FF8C42;
}

/* Form Footer */
.form-footer {
  padding-top: 2rem;
  border-top: 2px solid #e9ecef;
}

.form-footer .btn-primary {
  background: linear-gradient(135deg, #FF8C42 0%, #E85D04 100%);
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.form-footer .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 140, 66, 0.4);
}

.form-footer .btn-primary svg {
  display: inline-block;
  vertical-align: middle;
}

/* Thank You Section */
.thank-you-section {
  padding: 3rem 0;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #FF8C42 0%, #E85D04 100%);
  color: white;
}

.thank-you-icon svg {
  stroke-width: 2.5;
}

.social-links .btn {
  margin-bottom: 0.5rem;
}

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

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

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

  .value-card {
    margin-bottom: 1.5rem;
  }
}

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

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

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

  .section-title {
    font-size: 1.75rem;
  }

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

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

  .platform-checkboxes,
  .content-categories,
  .collaboration-types {
    flex-direction: column;
    gap: 0.75rem;
  }

  .form-check-inline {
    margin-right: 0;
    display: block;
  }
}

/* Card Enhancements */
.card {
  border: none;
  border-radius: 12px;
}

.card-body {
  border-radius: 12px;
}

/* Utility Classes */
.text-summary {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.application-section,
.thank-you-section {
  animation: fadeInUp 0.6s ease-out;
}

