:root {
  --laut-primary: #007bff;
  --laut-secondary: #00c6ff;
  --laut-gradient: linear-gradient(135deg, rgb(0, 76, 228), #00c6ff);

  --udara-primary: #f7971e;
  --udara-secondary: #ffd200;
  --udara-gradient: linear-gradient(135deg, rgb(247, 141, 11), rgb(252, 217, 64));

  --darat-primary: #28a745;
  --darat-secondary: #a8e063;
  --darat-gradient: linear-gradient(135deg, rgb(28, 143, 55), rgb(185, 252, 102));
}

body {
  /* background-color: #eef2f7; */
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
}

.card {
  border-radius: 5px !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03) !important;
  border: 1px solid #d1d5db !important;
  background-color: #ffffff;
  overflow: hidden;
}

.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  border-radius: 16px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2) !important;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-header {
  position: relative;
  padding: 1.5rem;
  text-align: center;
  color: white;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* Transport icon styling */
.icon-container {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: -40px auto 10px;
}

.icon-inner {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-inner i {
  font-size: 26px;
}

.card-content {
  padding: 1rem 1.5rem 2rem;
}
/* Sektor styling */
.sektor-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 1.75rem;
}

.sektor-number {
  position: relative;
  display: inline-block;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transform: translateX(-20px);
}

.sektor-title {
  position: relative;
  padding: 0.75rem 0;
  line-height: 1.5;
  color: #475569;
}

.sektor-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 2px;
  background-color: #d1d5db;
}

.sektor-item:last-child:before {
  height: 100px;
}

.sektor-item:after {
  content: "";
  position: absolute;
  top: 10px;
  left: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

/* Mode-specific styling */
.laut-mode .premium-header {
  background: var(--laut-gradient);
}

.laut-mode .icon-inner {
  background: var(--laut-gradient);
  color: white;
}

.laut-mode .sektor-number {
  background-color: rgba(2, 132, 199, 0.1);
  color: var(--laut-primary);
}

.laut-mode .sektor-item:after {
  background-color: var(--laut-primary);
  box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.2);
}

.udara-mode .premium-header {
  background: var(--udara-gradient);
}

.udara-mode .icon-inner {
  background: var(--udara-gradient);
  color: white;
}

.udara-mode .sektor-number {
  background-color: rgba(234, 88, 12, 0.1);
  color: var(--udara-primary);
}

.udara-mode .sektor-item:after {
  background-color: var(--udara-primary);
  box-shadow: 0 0 0 3px rgba(234, 88, 12, 0.2);
}

.darat-mode .premium-header {
  background: var(--darat-gradient);
}

.darat-mode .icon-inner {
  background: var(--darat-gradient);
  color: white;
}

.darat-mode .sektor-number {
  background-color: rgba(22, 163, 74, 0.1);
  color: var(--darat-primary);
}

.darat-mode .sektor-item:after {
  background-color: var(--darat-primary);
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
}
