html, body {
  height: 100%;
  margin: 0;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: #111;
  color: white;
  font-family: Arial, sans-serif;
}

.left-section {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.hotline-group {
  text-align: right;
}

.hotline {
  font-size: 16px;
  line-height: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-left: 1%;
}

.hotline {
  color: #b3e5ff;
}

.bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.overlay {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: start center; /* Дээш боллоо */
  padding: 88px 24px 24px;
}

.card {
  width: 100%;
  max-width: 960px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  backdrop-filter: blur(4px);
  padding: 24px;
  overflow: hidden;
}

.card-title {
  margin: 0 0 8px 0;
  font-size: 20px;
}

.subtext {
  color: #c8d6e5;
  font-size: 14px;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.grid > div {
  min-width: 0;
}

label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #ddd;
}

input[type="text"], input[type="tel"], input[type="password"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

input[type="text"]:focus, input[type="tel"]:focus, input[type="password"]:focus {
  outline: none;
  border-color: #1f6feb;
  box-shadow: 0 0 0 3px rgba(31,111,235,0.25);
}

select, .status-select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.table select { width: auto; max-width: 100%; }

.map {
  width: 100%;
  height: 360px;
  border-radius: 8px;
  overflow: hidden;
}

.actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

button {
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  background: #1f6feb;
  color: #fff;
  cursor: pointer;
}

button.secondary {
  background: rgba(255,255,255,0.08);
  margin-top: 1%;
}

button.small { padding: 6px 10px; font-size: 13px; }

.table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  overflow: hidden;
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

.table th, .table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.table thead th {
  background: rgba(255,255,255,0.06);
  text-align: left;
}

.notice {
  margin-top: 8px;
  font-size: 13px;
  color: #b3e5ff;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.header a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
}

@media (max-width: 800px) {
  .grid { grid-template-columns: 1fr; }
  .map { height: 240px; }
  .navbar { padding: 10px 14px; }
  .card { padding: 16px; }
}

@media (max-width: 480px) {
  .map { height: 200px; }
  .card { max-width: 560px; }
  .actions { flex-direction: column; }
  .hotline { font-size: 14px; }
}

.section {
  padding: 24px;
}

.section-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.fleet-title {
  margin: 0 0 12px 0;
  font-size: 20px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.fleet-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 16px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.fleet-icon {
  font-size: 28px;
}

.fleet-name {
  font-weight: 600;
}

.fleet-capacity {
  color: #c8d6e5;
  font-size: 14px;
}

@media (max-width: 900px) {
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .fleet-grid { grid-template-columns: 1fr; }
}
.hotline a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hotline a:hover {
  text-decoration: underline;
}

.label {
  font-size: 12px;
  color: white;
}

.number {
  color: #ffffff;
  font-weight: bold;
}



