:root {
  --primary: #2563eb;
  --secondary: #4f46e5;
  --accent: #f97316;
  --text-primary: #1e293b;
  --text-secondary: #64748b;
  --bg-main: #f8fafc;
  --card-bg: #ffffff;
}

.theme-repair-services {
  padding: 100px 0;
  background: var(--bg-main);
  min-height: 100vh;
}

.inventory-card {
  background: var(--card-bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
  cursor: pointer;
}

.inventory-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.car-image {
  background: linear-gradient(135deg, #e0f2fe, #ede9fe);
  padding: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.car-icon {
  width: 100px;
  height: 100px;
  fill: var(--primary);
  transition: all 0.3s ease;
}

.car-details {
  padding: 1rem;
}

.car-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.quick-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.mileage {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.specs-preview {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.specs-preview span {
  display: flex;
  align-items: center;
}

.info-icon {
  width: 16px;
  height: 16px;
  fill: var(--text-secondary);
  margin-right: 4px;
  vertical-align: -3px;
}

.detail-icon {
  width: 18px;
  height: 18px;
  fill: var(--primary);
  margin-right: 6px;
  vertical-align: -4px;
}

.modal.fade .modal-dialog {
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

.modal-content {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  background: white;
  color: var(--text-primary);
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 2rem;
}

.modal-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.btn-close {
  filter: none;
}

.modal-body {
  padding: 2rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.detail-item {
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: #f1f5f9;
  transform: translateY(-2px);
}

.detail-label {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.detail-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.modal-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.feature-badge {
  background: #f1f5f9;
  color: var(--text-primary);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
}

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

.section-title h5 {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
}

.import-services {
  padding: 100px 0;
  background: var(--bg-main);
  min-height: 100vh;
}

.service-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
  cursor: pointer;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.service-icon {
  width: 48px;
  height: 48px;
  fill: var(--primary);
  margin-bottom: 1.5rem;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.process-timeline {
  margin-top: 4rem;
  position: relative;
  padding: 2rem 0;
}

.process-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  position: relative;
  padding-left: 4rem;
}

.step-number {
  position: absolute;
  left: 0;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.step-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e2e8f0;
  z-index: -1;
}

.about-section {
  padding: 100px 0;
  background: var(--bg-main);
}

.about-content {
  padding-right: 2rem;
}

.about-content h3 {
  color: var(--text-primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.about-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.stat-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.stat-icon {
  width: 40px;
  height: 40px;
  fill: var(--primary);
  margin-bottom: 1rem;
}

.stat-card h4 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.values-section {
  margin-top: 5rem;
}

.value-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.value-icon {
  width: 48px;
  height: 48px;
  fill: var(--primary);
  margin-bottom: 1.5rem;
}

.value-card h4 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.team-section {
  margin-bottom: 3rem;
}

.team-card {
  background: var(--card-bg);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-icon {
  width: 60px;
  height: 60px;
  fill: white;
}

.team-card h4 {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.team-card .position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card p:last-child {
  color: var(--text-secondary);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .theme-repair-services {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
  }
  
  .process-step {
    padding-left: 3rem;
  }
  
  .step-number {
    width: 32px;
    height: 32px;
    font-size: 0.875rem;
  }
  
  .timeline-line {
    left: 16px;
  }
  
  .about-section {
    padding: 60px 0;
  }

  .about-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .team-card {
    margin-bottom: 1.5rem;
  }
}





.import-services {
  padding: 100px 0;
  background: var(--bg-main);
  min-height: 100vh;
}

.service-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
  padding: 2rem;
  height: 100%;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.service-icon {
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 48px;
  height: 48px;
  fill: var(--primary);
}

.service-icon-large svg {
  width: 64px;
  height: 64px;
  fill: var(--primary);
  margin-bottom: 1.5rem;
}

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

.service-description {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.learn-more {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 0.5rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more:hover {
  background: var(--primary);
  color: white;
}

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

.section-title h5 {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

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

.benefit-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.benefit-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.modal.fade .modal-dialog {
  transform: scale(0.7);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.modal.show .modal-dialog {
  transform: scale(1);
  opacity: 1;
}

.modal-content {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-header {
  background: white;
  color: var(--text-primary);
  border-bottom: 1px solid #e2e8f0;
  padding: 1.5rem 2rem;
}

.modal-title {
  font-weight: 700;
  font-size: 1.5rem;
}

.modal-body {
  padding: 2rem;
}

.service-description-full {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

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

@media (max-width: 768px) {
  .import-services {
    padding: 60px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
}













