/* PARTNER PROGRAM PAGE STYLES */

/* HERO SECTION */
.partner-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  background: linear-gradient(180deg, rgba(180, 22, 22, 0.12) 0%, rgba(0, 0, 0, 0) 100%);
  position: relative;
  overflow: hidden;
}

.partner-hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(180, 22, 22, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.partner-hero-content {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.partner-title {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #fff;
  letter-spacing: -2px;
}

.partner-subtitle {
  font-size: 1.35rem;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 3rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-primary {
  background: linear-gradient(135deg, #b41616 0%, #d11a1a 100%);
  color: #fff;
  border: 2px solid #b41616;
  box-shadow: 0 4px 15px rgba(180, 22, 22, 0.3);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 22, 22, 0.4);
}

.cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* CONTAINER */
.partner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* STATS SECTION */
.stats-section {
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: rgba(30, 30, 30, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 22, 22, 0.3);
  background: rgba(30, 30, 30, 0.7);
}

.stat-icon {
  color: #b41616;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #aaa;
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #aaa;
}

/* BENEFITS SECTION */
.benefits-section {
  padding: 6rem 2rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  border-color: rgba(180, 22, 22, 0.3);
  box-shadow: 0 10px 30px rgba(180, 22, 22, 0.2);
}

.benefit-icon {
  color: #b41616;
  margin-bottom: 1.5rem;
}

.benefit-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.benefit-description {
  font-size: 1rem;
  color: #bbb;
  line-height: 1.7;
}

/* ELIGIBILITY SECTION */
.eligibility-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.01);
}

.eligibility-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.eligibility-card {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.eligibility-card:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 22, 22, 0.4);
  background: rgba(30, 30, 30, 0.8);
}

.eligibility-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(180, 22, 22, 0.1);
  border: 2px solid rgba(180, 22, 22, 0.3);
  border-radius: 50%;
  margin-bottom: 1.5rem;
  color: #b41616;
  transition: all 0.3s ease;
}

.eligibility-card:hover .eligibility-icon {
  background: rgba(180, 22, 22, 0.2);
  border-color: rgba(180, 22, 22, 0.5);
  transform: scale(1.05);
}

.eligibility-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.eligibility-description {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.6;
}

/* APPLICATION CTA SECTION */
.application-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, rgba(180, 22, 22, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.application-cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.application-cta-content {
  background: rgba(30, 30, 30, 0.8);
  border: 1px solid rgba(180, 22, 22, 0.3);
  border-radius: 20px;
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.application-cta-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b41616 0%, #d11a1a 100%);
}

.application-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.5rem;
}

.application-cta-text {
  font-size: 1.15rem;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.application-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 3rem;
  background: linear-gradient(135deg, #b41616 0%, #d11a1a 100%);
  border: 2px solid #b41616;
  border-radius: 50px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(180, 22, 22, 0.3);
}

.application-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(180, 22, 22, 0.4);
}

.application-cta-btn svg {
  transition: transform 0.3s ease;
}

.application-cta-btn:hover svg {
  transform: translateX(5px);
}

.application-cta-note {
  font-size: 0.9rem;
  color: #888;
  margin-top: 1.5rem;
  font-style: italic;
}

/* FAQ SECTION */
.faq-section {
  padding: 6rem 2rem;
  background: rgba(255, 255, 255, 0.01);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.faq-item {
  background: rgba(30, 30, 30, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.faq-question {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.75rem;
}

.faq-answer {
  font-size: 0.95rem;
  color: #aaa;
  line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .partner-hero {
    padding: 6rem 1.5rem 3rem;
    min-height: 50vh;
  }

  .partner-title {
    font-size: 2.5rem;
    letter-spacing: -1px;
  }

  .partner-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .benefits-grid,
  .eligibility-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .application-form {
    padding: 2rem 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .submit-btn {
    width: 100%;
  }

  .success-message {
    padding: 3rem 2rem;
  }
}

@media (max-width: 480px) {
  .partner-hero {
    padding: 5rem 1rem 2rem;
  }

  .partner-title {
    font-size: 2rem;
  }

  .partner-subtitle {
    font-size: 1rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .application-form {
    padding: 1.5rem 1rem;
  }

  .form-section-title {
    font-size: 1.25rem;
  }
}