/* Reusable Dealership Section Styles */
.reusable-dealership-section {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(180deg, #fff 0%, var(--green-50) 50%, #fff 100%);
}

.reusable-dealership-section .dealership-container {
  max-width: 1000px;
  margin: 0 auto;
}

.reusable-dealership-section .section-description {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
  text-align: center;
}

.reusable-dealership-section .section-description strong {
  color: var(--green-700);
  font-weight: 700;
}

/* Benefits Table */
.reusable-dealership-section .dealership-benefits-table-wrap {
  margin: 40px 0;
  overflow-x: auto;
}

.reusable-dealership-section .dealership-benefits-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reusable-dealership-section .dealership-benefits-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.2s ease;
}

.reusable-dealership-section .dealership-benefits-table tbody tr:last-child {
  border-bottom: none;
}

.reusable-dealership-section .dealership-benefits-table tbody tr:hover {
  background: rgba(22, 163, 74, 0.03);
}

.reusable-dealership-section .dealership-benefits-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}

.reusable-dealership-section .dealership-benefits-table tbody tr:nth-child(even):hover {
  background: rgba(22, 163, 74, 0.05);
}

.reusable-dealership-section .benefit-label {
  padding: 16px 20px;
  font-weight: 600;
  color: var(--gray-800);
  width: 30%;
  vertical-align: top;
  border-right: 1px solid var(--gray-200);
}

.reusable-dealership-section .benefit-value {
  padding: 16px 20px;
  color: var(--gray-700);
  width: 70%;
  vertical-align: top;
  line-height: 1.6;
}

.reusable-dealership-section .benefit-value strong {
  color: var(--green-700);
  font-weight: 700;
}

/* Why Choose Annkoot */
.reusable-dealership-section .why-choose-annkoot {
  margin: 50px 0;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.reusable-dealership-section .why-choose-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 24px;
  text-align: center;
}

.reusable-dealership-section .why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
}

.reusable-dealership-section .why-choose-item {
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
  padding: 12px 16px;
  background: var(--green-50);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--green-500);
  transition: all 0.3s ease;
}

.reusable-dealership-section .why-choose-item:hover {
  background: var(--green-100);
  transform: translateX(4px);
}

/* CTA Section */
.reusable-dealership-section .dealership-cta-section {
  text-align: center;
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(22, 163, 74, 0.05), rgba(245, 158, 11, 0.05));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(22, 163, 74, 0.1);
}

.reusable-dealership-section .cta-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 16px;
}

.reusable-dealership-section .cta-description {
  font-size: 1.05rem;
  color: var(--gray-600);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.reusable-dealership-section .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.reusable-dealership-section .cta-buttons .btn-primary,
.reusable-dealership-section .cta-buttons .btn-call,
.reusable-dealership-section .cta-buttons .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.reusable-dealership-section .cta-buttons .btn-primary {
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: #fff;
  box-shadow: 0 4px 14px rgba(22, 163, 74, 0.3);
}

.reusable-dealership-section .cta-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
}

.reusable-dealership-section .cta-buttons .btn-call {
  background: linear-gradient(135deg, var(--amber-500), var(--amber-600));
  color: #fff;
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.3);
}

.reusable-dealership-section .cta-buttons .btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.reusable-dealership-section .cta-buttons .btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.reusable-dealership-section .cta-buttons .btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .reusable-dealership-section {
    padding: 60px 16px;
  }
  
  .reusable-dealership-section .benefit-label,
  .reusable-dealership-section .benefit-value {
    padding: 12px 16px;
    font-size: 0.9rem;
  }
  
  .reusable-dealership-section .benefit-label {
    width: 40%;
  }
  
  .reusable-dealership-section .benefit-value {
    width: 60%;
  }
  
  .reusable-dealership-section .why-choose-annkoot {
    padding: 30px 20px;
  }
  
  .reusable-dealership-section .why-choose-grid {
    grid-template-columns: 1fr;
  }
  
  .reusable-dealership-section .cta-title {
    font-size: 1.5rem;
  }
  
  .reusable-dealership-section .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .reusable-dealership-section .cta-buttons .btn-primary,
  .reusable-dealership-section .cta-buttons .btn-call,
  .reusable-dealership-section .cta-buttons .btn-whatsapp {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .reusable-dealership-section .dealership-benefits-table {
    font-size: 0.85rem;
  }
  
  .reusable-dealership-section .benefit-label {
    width: 45%;
  }
  
  .reusable-dealership-section .benefit-value {
    width: 55%;
  }
}
