.vg-categories-page,
.vg-static-page,
.vg-contact-page {
  background: #f8f9fa;
  min-height: 100vh;
  padding: 30px 0 60px;
}

.vg-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-size: 14px;
}

.vg-breadcrumb a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vg-breadcrumb a:hover {
  color: #eeab10;
}

.vg-breadcrumb-sep {
  font-size: 12px;
  color: #ccc;
}

.vg-breadcrumb-current {
  color: #333;
  font-weight: 500;
}

.vg-page-header {
  text-align: center;
  margin-bottom: 40px;
}

.vg-page-title {
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px;
}

.vg-page-subtitle {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.vg-title-underline {
  width: 60px;
  height: 4px;
  background: #eeab10;
  border-radius: 2px;
  margin: 0 auto;
}

.vg-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #eeab10;
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.vg-btn-primary:hover {
  background: #d99a0a;
  color: #fff;
  transform: translateY(-2px);
}

.vg-empty-state {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.vg-empty-icon {
  width: 100px;
  height: 100px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.vg-empty-icon i {
  font-size: 40px;
  color: #666;
  opacity: 0.5;
}

.vg-selected-vehicle-banner {
  align-items: center;
  background: linear-gradient(135deg, rgba(238, 171, 16, 0.12) 0%, rgba(217, 154, 10, 0.04) 100%);
  border: 1px solid rgba(238, 171, 16, 0.22);
  border-radius: 12px;
  color: #333;
  display: flex;
  gap: 16px;
  margin: 0 auto 30px;
  max-width: 720px;
  padding: 18px 22px;
}

.vg-selected-vehicle-banner strong,
.vg-selected-vehicle-banner span {
  display: block;
}

.vg-selected-vehicle-banner strong {
  font-size: 14px;
  margin-bottom: 4px;
}

.vg-selected-vehicle-banner span {
  color: #666;
  font-size: 15px;
  font-weight: 500;
}

.vg-selected-vehicle-icon {
  align-items: center;
  background: linear-gradient(135deg, #eeab10 0%, #d99a0a 100%);
  border-radius: 14px;
  color: #fff;
  display: flex;
  flex: 0 0 52px;
  font-size: 22px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.vg-categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  align-items: stretch;
}

.vg-category-group {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.vg-category-group:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-3px);
}

.vg-category-header {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 25px;
  background: linear-gradient(135deg, #eeab10 0%, #d99a0a 100%);
  color: #fff;
}

.vg-category-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.vg-category-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.vg-category-list {
  flex: 1 1 auto;
  list-style: none;
  margin: 0;
  padding: 20px;
  min-height: 210px;
}

.vg-category-list li {
  margin-bottom: 8px;
}

.vg-category-list li:last-child {
  margin-bottom: 0;
}

.vg-category-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.vg-category-list a i {
  color: #eeab10;
  font-size: 12px;
  transition: all 0.3s ease;
}

.vg-category-list a:hover {
  background: #f8f9fa;
  color: #eeab10;
  padding-left: 18px;
}

.vg-category-list a:hover i {
  transform: translateX(4px);
}

.vg-view-all-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 25px;
  background: #f8f9fa;
  color: #666;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

.vg-view-all-link:hover {
  background: #eeab10;
  color: #fff;
}

.vg-view-all-link i {
  font-size: 12px;
  transition: all 0.3s ease;
}

.vg-view-all-link:hover i {
  transform: translateX(4px);
}

.vg-page-content {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 50px;
  max-width: 900px;
  margin: 0 auto;
}

.vg-content-wrapper {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.vg-content-wrapper h2,
.vg-content-wrapper h3 {
  color: #1a1a1a;
  margin: 30px 0 15px;
}

.vg-content-wrapper h2 {
  font-size: 24px;
}

.vg-content-wrapper h3 {
  font-size: 20px;
}

.vg-content-wrapper p,
.vg-content-wrapper ul,
.vg-content-wrapper ol {
  margin-bottom: 20px;
}

.vg-content-wrapper ul,
.vg-content-wrapper ol {
  padding-left: 22px;
}

.vg-content-wrapper strong {
  color: #1a1a1a;
}

.vg-contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.vg-contact-grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 30px;
}

.vg-contact-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 40px;
  height: fit-content;
}

.vg-contact-card h2 {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin: 0 0 25px;
}

.vg-contact-details {
  margin-bottom: 30px;
}

.vg-contact-details p {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 15px;
}

.vg-contact-details strong {
  color: #333;
}

.vg-contact-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.vg-contact-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vg-contact-btn i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.vg-contact-btn div {
  display: flex;
  flex-direction: column;
}

.vg-contact-btn div span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.vg-contact-btn div strong {
  font-size: 16px;
  font-weight: 600;
}

.vg-btn-phone {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.vg-btn-phone i {
  background: #22c55e;
  color: #fff;
}

.vg-btn-phone div span {
  color: #22c55e;
}

.vg-btn-phone:hover {
  background: #dcfce7;
  transform: translateX(5px);
}

.vg-btn-email {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
}

.vg-btn-email i {
  background: #3b82f6;
  color: #fff;
}

.vg-btn-email div span {
  color: #3b82f6;
}

.vg-btn-email:hover {
  background: #dbeafe;
  transform: translateX(5px);
}

.vg-btn-navigate {
  background: #fef3c7;
  color: #92400e;
  border: 1px solid #fde68a;
}

.vg-btn-navigate i {
  background: #eeab10;
  color: #fff;
}

.vg-btn-navigate div span {
  color: #d99a0a;
}

.vg-btn-navigate:hover {
  background: #fde68a;
  transform: translateX(5px);
}

.vg-working-hours {
  padding-top: 25px;
  border-top: 1px solid #e5e5e5;
}

.vg-working-hours h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.vg-working-hours h3 i {
  color: #eeab10;
}

.vg-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px dashed #e5e5e5;
}

.vg-hours-row span {
  color: #666;
}

.vg-hours-row strong {
  color: #333;
  font-weight: 500;
}

.vg-map-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  min-height: 500px;
  position: relative;
}

.vg-map-card iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 1199px) {
  .vg-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .vg-contact-grid {
    grid-template-columns: 1fr;
  }

  .vg-map-card {
    min-height: 350px;
    order: -1;
  }

  .vg-contact-card,
  .vg-page-content {
    padding: 30px;
  }

  .vg-selected-vehicle-banner {
    margin-bottom: 24px;
  }
}

@media (max-width: 767px) {
  .vg-categories-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .vg-page-title {
    font-size: 26px;
  }

  .vg-contact-card,
  .vg-page-content {
    padding: 25px;
  }

  .vg-contact-btn {
    padding: 14px 16px;
  }

  .vg-contact-btn i {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .vg-contact-btn div strong {
    font-size: 15px;
  }

  .vg-map-card {
    min-height: 300px;
  }

  .vg-selected-vehicle-banner {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }
}