/* DEALER / DISTRIBUTORSHIP PAGE */

.dealer-hero {
  padding: 40px 2% 20px 2%;
  text-align: center;
}

.dealer-hero .hero-subtitle {
  max-width: 800px;
  margin: 15px auto 0 auto;
  font-size: 18px;
  color: #444;
  line-height: 1.6;
}

.dealer-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  padding: 30px 2%;
  max-width: 1200px;
  margin: 0 auto;
}

.dealer-benefit-card {
  background: var(--theme-white);
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--brand-red);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dealer-benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.dealer-benefit-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.dealer-benefit-card h3 {
  font-size: 20px;
  color: var(--brand-black);
  margin-bottom: 10px;
  font-weight: 600;
}

.dealer-benefit-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.5;
}

/* PROCESS SECTION */
.dealer-process-section {
  background: var(--brand-grey);
  padding: 40px 2%;
  margin-top: 30px;
}

.dealer-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 30px auto 0 auto;
}

.dealer-step-card {
  background: var(--theme-white);
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.dealer-step-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--brand-red);
  color: var(--theme-white);
  font-weight: 700;
  font-size: 18px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.dealer-step-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--brand-black);
}

.dealer-step-card p {
  font-size: 14px;
  color: #666;
}

/* DIRECT CONTACT & ACTION CARDS */
.dealer-contact-section {
  padding: 50px 2%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.dealer-contact-subtitle {
  max-width: 750px;
  margin: 15px auto 35px auto;
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.dealer-action-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 40px;
}

.dealer-action-card {
  background: var(--theme-white);
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-top: 5px solid #ccc;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.whatsapp-card {
  border-top-color: #25D366;
}

.call-card {
  border-top-color: var(--brand-red);
}

.email-card {
  border-top-color: #1a1a1a;
}

.dealer-action-icon {
  font-size: 45px;
  margin-bottom: 15px;
}

.dealer-action-card h3 {
  font-size: 22px;
  color: var(--brand-black);
  margin-bottom: 10px;
}

.dealer-action-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  min-height: 42px;
}

.dealer-contact-detail {
  font-size: 18px;
  font-weight: 700;
  color: var(--brand-black);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.dealer-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: opacity 0.2s ease, transform 0.2s ease;
  margin-top: auto;
}

.dealer-card-btn:hover {
  opacity: 0.9;
  transform: scale(1.02);
}

.whatsapp-btn {
  background: #25D366;
}

.call-btn {
  background: var(--brand-red);
}

.email-btn {
  background: #1a1a1a;
}

/* ELIGIBILITY BANNER */
.dealer-eligibility-banner {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 30px 25px;
  border: 1px dashed var(--theme-border-grey);
  margin-top: 20px;
}

.dealer-eligibility-banner h3 {
  font-size: 20px;
  margin-bottom: 18px;
  color: var(--brand-black);
}

.eligibility-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.eligibility-tag {
  background: var(--theme-white);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e2e2;
}

@media (max-width: 600px) {
  .dealer-action-cards-grid {
    grid-template-columns: 1fr;
  }
}

