/* ====================================
   DISTRIBUTORS PAGE - MODERN DESIGN
   ==================================== */

/* Distributors Hero Section */
.hero.hero-distributors {
  position: relative;
  background: url('/assets/images/distributors-hero-bg.png') center/cover
    no-repeat;
  color: #ffffff;
  padding: 8rem 0 6rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.hero.hero-distributors h1 {
  font-family: var(--font-family-heading);
  font-weight: 700;
  font-size: 56px;
  line-height: 1.2;
  margin: 0 0 24px 0;
  color: #ffffff;
}

.hero.hero-distributors h3 {
  font-family: var(--font-family-body);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: #ffffff;
}

/* Distributors Section */
.distributors-section {
  padding: 100px 0;
  background: var(--color-white);
}

/* Accordion Styling */
.distributors-accordion {
  margin-bottom: 40px;
}

.distributors-accordion .accordion-item {
  border: none;
  border-radius: 12px !important;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.distributors-accordion .accordion-button {
  background: var(--color-gray);
  border: none;
  border-radius: 12px !important;
  padding: 24px 32px;
  font-family: var(--font-family-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-primary);
}

.distributors-accordion .accordion-button:not(.collapsed) {
  background: var(--color-primary);
  color: var(--color-white);
}

.distributors-accordion .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.distributors-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.distributors-accordion .accordion-body {
  padding: 40px 32px;
  background: var(--color-white);
  border-top: 1px solid var(--color-gray);
}

/* Distributor Cards */
.distributor-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease;
}

.distributor-card:hover {
  transform: translateY(-4px);
}

.distributor-logo {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-bottom: 24px;
  border-radius: 8px;
}

.distributor-card h4 {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: var(--font-family-heading);
}

.distributor-card p {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-family-body);
}

/* CTA Section */
.distributors-cta-section {
  padding: 100px 0;
  background: var(--color-gray);
  text-align: center;
}

.distributors-cta-section .btn__primary {
  margin: 0 auto;
}

.distributors-cta-section h2 {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-family-heading);
}

.distributors-cta-section .lead {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.6;
  font-family: var(--font-family-body);
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
}
.btn__primary span {
  display: inline-flex !important;
}
/* Mobile Responsive */
@media (max-width: 768px) {
  .hero.hero-distributors {
    padding: 12rem 0 12rem;
    min-height: 100vh;
  }

  .hero.hero-distributors h1 {
    font-size: 48px;
  }

  .hero.hero-distributors h3 {
    font-size: 18px;
  }

  .distributors-section,
  .distributors-cta-section {
    padding: 80px 0;
  }

  .distributors-accordion .accordion-button {
    font-size: 20px;
    padding: 20px 24px;
  }

  .distributors-accordion .accordion-body {
    padding: 24px 20px;
  }

  .distributor-card {
    padding: 24px;
    margin-bottom: 30px;
  }

  .distributor-logo {
    height: 100px;
  }

  .distributor-card h4 {
    font-size: 20px;
  }

  .distributor-card p {
    font-size: 16px;
  }

  .distributors-cta-section h2 {
    font-size: 48px;
  }

  .distributors-cta-section .lead {
    font-size: 18px;
  }
}

/* CryptoPay Distributor Page Specific Styling */
.partnership-section {
  padding: 100px 0;
  background: var(--color-white);
}

.partnership-content h2 {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
  font-family: var(--font-family-heading);
}

.partnership-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.partnership-benefits li {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-family: var(--font-family-body);
  position: relative;
  padding-left: 24px;
}

.partnership-benefits li::before {
  content: '•';
  color: var(--color-primary);
  font-weight: 700;
  position: absolute;
  left: 0;
}

.partnership-image-container {
  text-align: center;
}

.partnership-image {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

/* Revenue Section */
.revenue-section {
  padding: 100px 0;
  background: var(--color-gray);
}

.revenue-content h2 {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  font-family: var(--font-family-heading);
}

.revenue-content p {
  color: var(--color-black);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  font-family: var(--font-family-body);
}

.revenue-content .highlight-text {
  color: var(--color-primary);
  font-size: 20px;
  font-style: italic;
}

.revenue-image {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
}

/* Testimonial Section */
.testimonial-section {
  padding: 100px 0;
  background: var(--color-white);
}

.testimonial-section h2 {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-family-heading);
}

.testimonial-section .lead {
  color: var(--color-black);
  font-size: 20px;
  line-height: 1.6;
  font-family: var(--font-family-body);
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.testimonial-image {
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  margin-bottom: 24px;
}

.testimonial-link {
  text-align: center;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: var(--color-gray);
  text-align: center;
}

.cta-section h2 {
  color: var(--color-primary);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  font-family: var(--font-family-heading);
}

.cta-section .lead {
  color: var(--color-black);
  font-size: 20px;
  line-height: 1.6;
  font-family: var(--font-family-body);
}

.btn-large {
  padding: 16px 40px;
  font-size: 18px;
  font-weight: 600;
}

/* Mobile Responsive for CryptoPay */
@media (max-width: 768px) {
  .partnership-section,
  .revenue-section,
  .testimonial-section,
  .cta-section {
    padding: 80px 0;
  }

  .partnership-content h2,
  .revenue-content h2,
  .testimonial-section h2,
  .cta-section h2 {
    font-size: 32px;
  }

  .partnership-content,
  .revenue-content {
    margin-bottom: 40px;
  }

  .partnership-benefits li,
  .revenue-content p {
    font-size: 16px;
  }

  .testimonial-section .lead,
  .cta-section .lead {
    font-size: 18px;
  }
}
