/* Dealer Page Styles */

/* Dealer Hero Section */
.dealer-hero {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.dealer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.dealer-content h2 {
  margin-bottom: var(--space-md);
  font-size: 2.2rem;
  position: relative;
  padding-bottom: var(--space-sm);
}

.dealer-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-red);
}

.dealer-content p {
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
  line-height: 1.6;
}

.dealer-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: var(--space-xs);
  font-family: var(--heading-font);
}

.stat-label {
  color: var(--dark-gray);
  font-weight: 500;
}

.dealer-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.dealer-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Benefits Section */
.dealer-benefits {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

.benefits-heading {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.benefits-heading h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-bottom: var(--space-sm);
  display: inline-block;
}

.benefits-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-red);
}

.benefits-heading p {
  max-width: 800px;
  margin: 0 auto;
  color: var(--dark-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  border: 1px solid var(--border-color);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: var(--light-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--primary-red);
  font-size: 1.8rem;
  transition: all var(--transition-medium);
}

.benefit-card:hover .benefit-icon {
  background: var(--primary-red);
  color: var(--white);
}

.benefit-title {
  margin-bottom: var(--space-sm);
  font-size: 1.3rem;
  color: var(--primary-black);
}

.benefit-text {
  color: var(--dark-gray);
}

/* Requirements Section */
.dealer-requirements {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.requirements-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.requirements-content h2 {
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.requirements-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-red);
}

.requirements-list {
  margin-top: var(--space-md);
}

.requirement-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}

.check-icon {
  color: var(--primary-red);
  margin-right: var(--space-sm);
  min-width: 20px;
  font-size: 1.1rem;
}

.requirement-text {
  color: var(--dark-gray);
}

.requirement-text strong {
  color: var(--primary-black);
  display: block;
  margin-bottom: 5px;
}

.requirements-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.requirements-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Process Section */
.dealer-process {
  padding: var(--space-xl) 0;
  background-color: var(--light-gray);
}

.process-heading {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 30px;
  width: calc(100% - 60px);
  height: 2px;
  background: var(--border-color);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 25%;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
  font-size: 1.5rem;
  position: relative;
}

.step-number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid var(--primary-red);
  opacity: 0.3;
}

.step-title {
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--primary-black);
}

.step-description {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

/* Testimonials Section */
.dealer-testimonials {
  padding: var(--space-xl) 0;
  background-color: var(--white);
}

.testimonials-heading {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonials-heading h2 {
  margin-bottom: var(--space-sm);
  position: relative;
  padding-bottom: var(--space-sm);
  display: inline-block;
}

.testimonials-heading h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-red);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  transition: all var(--transition-medium);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-quote {
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
  font-style: italic;
  position: relative;
  padding-left: var(--space-md);
}

.testimonial-quote::before {
  content: "\201C";
  font-size: 4rem;
  font-family: serif;
  position: absolute;
  top: -20px;
  left: -10px;
  color: rgba(243, 0, 0, 0.1);
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: var(--space-sm);
  border: 2px solid var(--border-color);
}

.author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-details h4 {
  margin-bottom: 5px;
  color: var(--primary-black);
}

.author-position {
  color: var(--dark-gray);
  font-size: 0.9rem;
}

/* Application Section */
.dealer-application {
  padding: var(--space-xl) 0;
  background: linear-gradient(to right, var(--primary-red), #ff5757);
  color: var(--white);
}

.application-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.application-content h2 {
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
  font-size: 2.2rem;
}

.application-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--white);
}

.application-content p {
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.application-form {
  background-color: var(--white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.form-title {
  margin-bottom: var(--space-md);
  color: var(--primary-black);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--primary-black);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-family: var(--body-font);
  transition: all var(--transition-medium);
}

.form-control:focus {
  border-color: var(--primary-red);
  box-shadow: 0 0 0 3px rgba(243, 0, 0, 0.1);
  outline: none;
}

.form-text {
  font-size: 0.85rem;
  color: var(--dark-gray);
  margin-top: 5px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
}

.form-check-input {
  margin-right: var(--space-xs);
  margin-top: 3px;
}

.form-check-label {
  font-size: 0.9rem;
  color: var(--dark-gray);
}

.btn-submit {
  background: var(--primary-red);
  color: var(--white);
  padding: 14px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-medium);
  width: 100%;
}

.btn-submit:hover {
  background: var(--red-gradient);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Responsive Styles */
@media (max-width: 991px) {
  .dealer-grid,
  .requirements-wrapper,
  .application-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .dealer-stats {
    margin-bottom: var(--space-lg);
  }

  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .process-steps::before {
    display: none;
  }

  .process-step {
    width: 100%;
    margin-bottom: var(--space-lg);
  }

  .process-steps {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .dealer-content h2,
  .application-content h2 {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .benefit-card,
  .testimonial-card {
    padding: var(--space-md);
  }

  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .application-form {
    padding: var(--space-md);
  }
}

@media (max-width: 480px) {
  .dealer-stats {
    grid-template-columns: 1fr;
  }

  .stat-item {
    margin-bottom: var(--space-sm);
  }

  .form-title {
    font-size: 1.5rem;
  }
}

/* Dealer Intro Section */
.dealer-intro {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
  align-items: center;
}

.column-content h2 {
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.column-content h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary-red);
}

.column-content p {
  margin-bottom: var(--space-md);
  color: var(--dark-gray);
  line-height: 1.6;
}

.column-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  height: 400px;
}

.column-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.column-image:hover img {
  transform: scale(1.05);
}

.rounded-image {
  border-radius: var(--radius-lg);
}

/* Dealer Benefits Section */
.dealer-benefits {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.benefit-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--border-color);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: var(--space-md);
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.benefit-card p {
  color: var(--dark-gray);
  font-size: 0.95rem;
}

/* Dealer Types Section */
.dealer-types {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

.dealer-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-lg);
}

.dealer-type-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-medium);
  border: 1px solid var(--border-color);
  position: relative;
}

.dealer-type-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.dealer-type-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-red);
  color: var(--white);
  padding: 5px 15px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: var(--shadow-sm);
}

.dealer-type-header {
  padding: var(--space-lg);
  text-align: center;
  background-color: var(--light-gray);
  border-bottom: 1px solid var(--border-color);
}

.dealer-type-icon {
  font-size: 2.5rem;
  color: var(--primary-red);
  margin-bottom: var(--space-sm);
}

.dealer-type-header h3 {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.dealer-type-body {
  padding: var(--space-lg);
}

.dealer-features {
  list-style: none;
  margin-bottom: var(--space-lg);
}

.dealer-features li {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-sm);
  color: var(--dark-gray);
}

.dealer-features i {
  color: var(--primary-red);
  margin-right: var(--space-sm);
  flex-shrink: 0;
}

.dealer-type-investment {
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.dealer-type-investment span {
  display: block;
  font-weight: 500;
  color: var(--dark-gray);
  margin-bottom: var(--space-xs);
}

.dealer-type-investment p {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-red);
  margin: 0;
  font-family: var(--heading-font);
}

.dealer-type-footer {
  padding: var(--space-md);
  text-align: center;
  background-color: var(--light-gray);
  border-top: 1px solid var(--border-color);
}

.featured-dealer-type {
  border: 2px solid var(--primary-red);
  box-shadow: var(--shadow-lg);
}

/* Dealer Testimonials */
.dealer-testimonials {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
  position: relative;
}

.dealer-testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(243, 0, 0, 0.03) 0%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: 0;
}

.dealer-testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonial-slider {
  max-width: 900px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.testimonial-item {
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.testimonial-quote {
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--primary-black);
  margin-bottom: var(--space-md);
  position: relative;
  padding: 0 var(--space-md);
}

.testimonial-quote::before {
  content: "\201C";
  font-size: 4rem;
  color: rgba(243, 0, 0, 0.1);
  position: absolute;
  top: -40px;
  left: 0;
  font-family: serif;
}

.testimonial-author {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-black);
  margin-bottom: 5px;
}

.testimonial-position {
  font-size: 0.9rem;
  color: var(--complementary-gray);
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: var(--space-md);
  gap: 8px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: all var(--transition-medium);
}

.slider-dot.active {
  background-color: var(--primary-red);
  transform: scale(1.2);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  color: var(--primary-black);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-medium);
  z-index: 2;
}

.slider-btn:hover {
  background-color: var(--primary-red);
  color: var(--white);
  border-color: var(--primary-red);
}

.slider-btn-prev {
  left: 20px;
}

.slider-btn-next {
  right: 20px;
}

/* Application Process */
.application-process {
  position: relative;
  padding: calc(var(--space-3xl) + 150px) 0 calc(var(--space-3xl) + 250px) 0;
  background: linear-gradient(120deg, #fcfcfc, #f7f7f7);
  overflow: hidden;
  margin-bottom: 0;
  min-height: 900px;
}

.application-process .section-title {
  background: linear-gradient(90deg, var(--primary-red), #ff5050);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 3rem;
  margin-bottom: var(--space-xl);
  padding-top: 80px;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  position: relative;
  text-align: center;
  width: 100%;
}

.application-process .section-subtitle {
  text-align: center;
  margin-bottom: calc(var(--space-2xl) + 80px);
  font-size: 1.3rem;
  color: var(--text-dark);
  padding: 0 var(--space-xl);
}

.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: var(--space-2xl);
  padding: 0 var(--space-lg);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-red), #ff5757);
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 24%;
  position: relative;
  z-index: 2;
  padding: 0 var(--space-xs);
}

.process-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 110px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 3;
  font-family: "Orbitron", sans-serif;
  box-shadow: 0 5px 15px rgba(243, 0, 0, 0.3);
  transition: all var(--transition-medium);
}

.process-step-number::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  animation: spin 30s linear infinite;
}

.process-step-number::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  animation: ripple 2s linear infinite;
}

.process-step-content {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  text-align: center;
  border: 1px solid rgba(243, 0, 0, 0.1);
  transition: all var(--transition-medium);
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.process-step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: var(--primary-red);
  transition: height var(--transition-medium);
}

.process-step:hover .process-step-content::before {
  height: 100%;
}

.process-step-content h3 {
  font-size: 1.5rem;
  margin: 0 0 var(--space-lg) 0;
  color: var(--text-dark);
  position: relative;
  display: inline-block;
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

.process-step-content h3::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: var(--primary-red);
}

.process-step-content p {
  color: var(--text-gray);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step:hover .process-step-number {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 30px rgba(243, 0, 0, 0.4);
}

.process-step:hover .process-step-content {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(243, 0, 0, 0.2);
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ripple {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.3);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2);
  }
}

@media (max-width: 991px) {
  .process-steps::before {
    top: 40px;
    left: 40px;
    width: calc(100% - 80px);
  }

  .process-step-number {
    width: 90px;
    height: 90px;
    font-size: 2.5rem;
  }

  .process-step-number::before {
    width: 70px;
    height: 70px;
  }

  .process-step-number::after {
    width: 50px;
    height: 50px;
  }

  .process-step-content {
    height: 320px;
    padding: var(--space-lg);
  }

  .process-step-content h3 {
    font-size: 1.3rem;
    min-height: 45px;
  }
}

@media (max-width: 767px) {
  .process-steps {
    flex-direction: column;
    margin-top: var(--space-lg);
    padding: 0;
  }

  .process-steps::before {
    width: 3px;
    height: calc(100% - 100px);
    top: 50px;
    left: 45px;
    background: linear-gradient(to bottom, var(--primary-red), #ff5757);
  }

  .process-step {
    width: 100%;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-md);
  }

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

  .process-step-number {
    width: 80px;
    height: 80px;
    font-size: 2rem;
    margin-right: var(--space-lg);
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-step-number::before {
    width: 60px;
    height: 60px;
  }

  .process-step-number::after {
    width: 40px;
    height: 40px;
  }

  .process-step-content {
    text-align: left;
    height: auto;
    min-height: 200px;
    padding: var(--space-lg);
  }

  .process-step-content h3 {
    text-align: left;
    margin-left: 0;
    justify-content: flex-start;
    min-height: auto;
  }

  .process-step-content h3::after {
    left: 0;
    transform: none;
  }

  .process-step-content p {
    justify-content: flex-start;
  }
}

/* Dealer Application Form */
.dealer-application {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
  position: relative;
  margin-top: 0;
}

.dealer-application::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../../images/pattern-bg.svg") repeat;
  opacity: 0.03;
  z-index: 0;
}

.application-form-wrapper {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.application-form-wrapper h2 {
  background-color: var(--primary-red);
  color: var(--white);
  padding: var(--space-lg);
  margin: 0;
  font-size: 1.8rem;
  position: relative;
}

.application-form-wrapper p {
  padding: var(--space-lg) var(--space-lg) 0;
  margin-bottom: 0;
  color: var(--dark-gray);
}

.dealer-form {
  padding: var(--space-lg);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--primary-black);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--white);
  color: var(--primary-black);
  font-family: var(--body-font);
  transition: all var(--transition-fast);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary-red);
  outline: none;
  box-shadow: 0 0 0 3px rgba(243, 0, 0, 0.1);
}

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23808285' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 15px) center;
  padding-right: 40px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 5px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: normal;
}

.checkbox-group a {
  color: var(--primary-red);
  text-decoration: underline;
}

.form-actions {
  margin-top: var(--space-lg);
  text-align: center;
}

.btn-lg {
  padding: 15px 35px;
  font-size: 1.1rem;
}

/* Dealer FAQs */
.dealer-faqs {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: var(--space-md);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  padding: var(--space-md) var(--space-lg);
  background-color: var(--white);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-fast);
}

.faq-question:hover {
  background-color: var(--light-gray);
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--primary-black);
  flex-grow: 1;
}

.faq-toggle {
  color: var(--primary-red);
  transform: rotate(0);
  transition: transform var(--transition-medium);
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 var(--space-lg);
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-medium);
}

.faq-item.active .faq-answer {
  padding: 0 var(--space-lg) var(--space-md);
  max-height: 1000px;
}

.faq-answer p {
  margin: 0;
  color: var(--dark-gray);
}

/* Form Validation */
.error-message {
  display: none;
  color: #dc3545;
  font-size: 0.85rem;
  margin-top: 5px;
  animation: fadeIn 0.3s ease-out;
}

input.error,
select.error,
textarea.error {
  border-color: #dc3545;
}

.error-message.visible {
  display: block;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive Styles */
@media (max-width: 991px) {
  .two-column-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .column-image {
    height: 300px;
    margin-top: var(--space-md);
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dealer-types-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .process-steps::before {
    left: 22px;
  }

  .process-step-number {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .process-step-content {
    padding: var(--space-md);
  }

  .process-step-content h3 {
    font-size: 1.1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .testimonial-slider {
    padding: var(--space-lg);
  }

  .testimonial-quote {
    font-size: 1rem;
  }

  .slider-btn {
    display: none;
  }
}

@media (max-width: 576px) {
  .column-content h2 {
    font-size: 1.8rem;
  }

  .application-form-wrapper h2 {
    font-size: 1.5rem;
    padding: var(--space-md);
  }

  .application-form-wrapper p {
    padding: var(--space-md) var(--space-md) 0;
  }

  .dealer-form {
    padding: var(--space-md);
  }

  .faq-question h3 {
    font-size: 1rem;
  }

  .faq-question {
    padding: var(--space-md);
  }

  .faq-item.active .faq-answer {
    padding: 0 var(--space-md) var(--space-md);
  }
}
