/* ============================================ */

/* HOW TO SPONSOR PAGE - CSS */

/* ============================================ */

/* HOW HERO */

.how-hero {
  /*min-height: 50vh;*/
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(135deg, rgba(27, 94, 32, 0.95), rgba(46, 125, 50, 0.95)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1200&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 4rem 0 3rem;
  color: #ffffff;
  text-align: center;
}

.how-hero-content {
  max-width: 700px;
  margin: 0 auto;
}

.how-hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.how-hero-subtitle {
  font-size: 1.3rem;
  opacity: 0.95;
}

/* QUICK OVERVIEW */

.quick-overview-section {
  padding: 4rem 0;
  background: var(--background);
}

.quick-overview-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.overview-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 10px var(--shadow);
  border: 1px solid var(--border-color);
  transition: all var(--transition-normal);
}

.overview-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px var(--shadow-hover);
}

.overview-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.overview-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.overview-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin: 0;
}

/* DETAILED STEPS */

.detailed-steps-section {
  padding: 4rem 0;
  background: var(--card-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.step-detail {
  margin-bottom: 5rem;
}

.step-detail:last-child {
  margin-bottom: 0;
}

.step-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.step-detail.reverse .step-content-wrapper {
  direction: rtl;
}

.step-detail.reverse .step-content {
  direction: ltr;
}

.step-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px var(--shadow);
}

.step-badge {
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: var(--primary-color);
  color: white;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.step-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.step-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-secondary);
}

.step-list i {
  color: var(--success);
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* SPONSORSHIP OPTIONS */

.sponsorship-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.option-card {
  background: var(--accent);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--transition-fast);
}

.option-card:hover {
  border-color: var(--primary-solid);
  transform: translateY(-5px);
}

.option-card h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.option-card .price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-solid);
  margin-bottom: 0.75rem;
}

.option-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin: 0;
}

/* SECURITY BADGE */

.security-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--accent);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  margin-top: 2rem;
}

.security-badge i {
  font-size: 2.5rem;
  color: var(--success);
}

.security-badge strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.security-badge p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* HOW FAQ SECTION */

.how-faq-section {
  padding: 4rem 0;
  background: var(--background);
}

.faq-item-how {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px var(--shadow);
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.faq-question-how {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question-how h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}

.faq-question-how i {
  font-size: 1.5rem;
  color: var(--primary-solid);
  transition: transform var(--transition-fast);
}

.faq-item-how.active .faq-question-how i {
  transform: rotate(180deg);
}

.faq-answer-how {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
}

.faq-item-how.active .faq-answer-how {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer-how p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* HOW CTA SECTION */

.how-cta-section {
  background: linear-gradient(135deg, #1B5E20, #2E7D32);
  padding: 5rem 0;
}

.cta-box {
  text-align: center;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* MOBILE RESPONSIVE */

@media (max-width: 992px) {
  .step-content-wrapper, .step-detail.reverse .step-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
}

@media (max-width: 992px) {
  .quick-overview-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .sponsorship-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .how-hero-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .quick-overview-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .step-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .cta-buttons .btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .how-hero {
    padding: 3rem 0 2rem;
  }
}

@media (max-width: 576px) {
  .overview-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .how-hero-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 576px) {
  .how-hero-subtitle {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .cta-box h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .cta-box p {
    font-size: 1.1rem;
  }
}

/* DARK MODE */

[data-bs-theme="dark"] .how-hero, .dark-mode .how-hero, [data-bs-theme="dark"] .how-cta-section, .dark-mode .how-cta-section {
  background: linear-gradient(135deg, rgba(27, 94, 32, 0.9) 0%, rgba(46, 125, 50, 0.8) 100%);
}

[data-bs-theme="dark"] .overview-card, .dark-mode .overview-card, [data-bs-theme="dark"] .faq-item-how, .dark-mode .faq-item-how {
  background: var(--card-bg);
  border-color: var(--border-color);
}

[data-bs-theme="dark"] .option-card, .dark-mode .option-card, [data-bs-theme="dark"] .security-badge, .dark-mode .security-badge {
  background: var(--accent);
  border-color: var(--border-color);
}

[data-bs-theme="dark"] .detailed-steps-section, .dark-mode .detailed-steps-section {
  background: var(--card-bg);
}

[data-bs-theme="dark"] .quick-overview-section, .dark-mode .quick-overview-section, [data-bs-theme="dark"] .how-faq-section, .dark-mode .how-faq-section {
  background: var(--background);
}

