/*--------------------------------------------------------------
# Assets & Logistics Showcase Styles
---------------------------------------------------------------*/

.assets-showcase {
  padding: 40px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 20px;
  margin: 20px 0;
}

.showcase-section {
  margin-bottom: 60px;
  position: relative;
}

.showcase-section::after {
  content: '';
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  border-radius: 2px;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #1e3c72, #2a5298);
  border-radius: 2px;
}

/* Asset Cards Grid */
.assets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 20px;
}

.asset-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.asset-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #1e3c72, #2a5298, #1e3c72);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.asset-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(30, 60, 114, 0.2);
}

.asset-card:hover .card-icon-wrapper {
  transform: rotateY(360deg);
}

.asset-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s ease;
}

.card-icon-wrapper i {
  color: white;
  font-size: 24px;
}

.asset-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}

.asset-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feature-tag {
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.1), rgba(42, 82, 152, 0.1));
  color: #1e3c72;
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(30, 60, 114, 0.2);
  transition: all 0.3s ease;
}

.feature-tag:hover {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: white;
  transform: translateY(-2px);
}

/* Dashboard Cards */
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  margin-top: 20px;
}

.dashboard-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  border-left: 4px solid;
}

.dashboard-card.insurance {
  border-left-color: #28a745;
  background: linear-gradient(135deg, #ffffff 0%, #f8fff9 100%);
}

.dashboard-card.vehicle {
  border-left-color: #007bff;
  background: linear-gradient(135deg, #ffffff 0%, #f6f9ff 100%);
}

.dashboard-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.dashboard-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: #1e3c72;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.dashboard-card .card-icon {
  font-size: 20px;
  color: #1e3c72;
  background: linear-gradient(135deg, rgba(30, 60, 114, 0.1), rgba(42, 82, 152, 0.1));
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Table Styles */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 14px;
}

.custom-table th {
  background: #f8f9fa;
  padding: 10px 8px;
  text-align: left;
  font-weight: 600;
  color: #495057;
  border-bottom: 2px solid #dee2e6;
  font-size: 13px;
  white-space: nowrap;
}

.custom-table td {
  padding: 8px;
  border-bottom: 1px solid #dee2e6;
  font-size: 13px;
}

.custom-table tr:hover {
  background: #f8f9fa;
}

.table-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  flex-wrap: wrap;
  gap: 10px;
}

.export-btn {
  background: #28a745;
  color: white;
  border: none;
  padding: 6px 15px;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 8px;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 500;
}

.export-btn:hover {
  background: #218838;
  transform: translateY(-1px);
}

.add-btn {
  background: #007bff;
  color: white;
  border: none;
  padding: 6px 15px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 12px;
  font-weight: 500;
}

.add-btn:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.action-btn {
  background: #17a2b8;
  color: white;
  border: none;
  padding: 4px 12px;
  border-radius: 3px;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.action-btn:hover {
  background: #138496;
  transform: translateY(-1px);
  align-items: center;
  margin-top: 20px;
}

/* Process Flow */
.process-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.process-step {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  background: #1e3c72;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.step-content h4 {
  color: #1e3c72;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.step-content p {
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta-box {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  color: white;
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  margin-top: 50px;
}

.cta-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-box p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: #1e3c72;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 12px 30px;
  border: 2px solid white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: white;
  color: #1e3c72;
}

/* Responsive */
@media (max-width: 768px) {

  .assets-grid,
  .dashboard-grid,
  .process-flow {
    grid-template-columns: 1fr;
  }

  .table-controls {
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
