* {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 16px;
}

:root {
  --color-main: #3b82f6;
  --bg-over-lay: rgba(0, 0, 0, 0.6);
  --border-bottom-color: rgb(203, 202, 202);
  --box-shadow-navigation-web: rgba(0, 0, 0, 0.15);
  --bg-thread-table: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --box-shadow-menu-mobile: 0px 2px 20px 0px rgb(0 0 0 / 24%);
  --bg-introduce: linear-gradient(135deg, #e2fefc 0%, #fff7ed 100%);
  --bg-btn-learn-more: #3b82f6;
  --bg-feature-header: linear-gradient(
    135deg,
    #fef3c7 0%,
    #fed7aa 50%,
    #fbbf24 100%
  );
}

/* custome menu mobile */
.ds {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #fff;
  transition: all 0.5s ease-in-out;
}
.ds {
  position: relative;
  width: 100%;
  min-width: 150vh;
}
.menu-mobile a.active {
  color: var(--color-main);
  font-weight: bold;
}
.menu-mobile {
  position: fixed;
  width: 290px;
  height: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: var(--box-shadow-menu-mobile);
  z-index: 1100;
  padding: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  animation: slideInMenu 0.5s ease forwards;
  transform: translateX(-100%);
}
.close-wrapper {
  height: 30px;
}
.close-wrapper i {
  font-size: 25px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 8px 15px 8px 0;
  margin-bottom: 10px;
  color: #0a0a0a;
}
.close {
  height: 34px;
  width: 34px;
  display: block;
  float: right;
  margin: 13px 13px 0 0;
}
#body_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bg-over-lay);
  z-index: 9002;
  display: none;
  z-index: 0;
  opacity: 0.8;
}
.img-son {
  border-bottom: 1px solid var(--border-bottom-color);
}
@keyframes slideInMenu {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}
.menu-mobile ul {
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0 10px;
}
.menu-mobile ul li a {
  width: 100%;
  text-decoration: none;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
}
.menu-mobile .toggle_menu {
  position: absolute;
  top: 20px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.toggle-menu i {
  font-size: 20px;
  margin-right: 10px;
}
nav.hide {
  display: none;
}
.menu-mobile ul li a {
  color: #0a0a0a;
}
.menu-mobile p {
  padding: 15px 0;
  margin: 0;
}

.logo-menu-mobile img {
  width: 180px;
}

.find-driver a {
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  background-image: var(--color-main);
  padding: 8px 15px;
  border-radius: 99px;
  display: block !important;
  text-align: center;
  margin-top: 10px;
}

.menu-items a.active {
  color: #3b82f6;
  position: relative;
}

.menu-items a.active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: #3b82f6;
  border-radius: 1px;
}

/* custome menu  */

.navigator-web {
  box-shadow: 1px 1px 10px var(--box-shadow-navigation-web);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}
.navigator {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
}

.logo-web img {
  width: 190px;
}
.menu-items ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 0;
}
.menu-items ul li {
  list-style: none;
}
.menu-items ul li a {
  text-decoration: none;
  color: #354150;
  font-size: 16px;
  font-weight: 500;
  padding: 5px 10px;
}
.btn-find-driver {
  background-image: linear-gradient(
    269deg,
    #1a1a1a -67.92%,
    var(--color-main) 70%
  );
  padding: 8px 25px;
  border-radius: 99px;
}
.btn-find-driver a {
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 600 !important;
}
.toggle-menu {
  display: none;
}

/* introduce */

.section-introduce {
  background: var(--bg-introduce);
  padding: 30px 0;
}

.status-images {
  display: flex;
  justify-content: center;
  position: relative;
}
.status-images img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.stats-title {
  font-size: 40px;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.3;
}
.stats-description {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.6;
}
.stats-description b {
  font-size: 18px;
}
.btn-learn-more {
  background: var(--bg-btn-learn-more);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
a {
  text-decoration: none;
}
.btn-learn-more:hover {
  background: #2563eb;
}

a:hover {
  text-decoration: none;
}
.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.stat-card-2 {
  top: 10%;
  right: -15%;
  background: white;
  border: 1px solid #e5e7eb;
}
.stat-card {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  min-width: 120px;
  text-align: center;
}
.stat-card-2 .stat-value {
  color: #1f2937;
}

.stat-value {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 12px;
}
.stat-card-2 .stat-label {
  color: #6b7280;
}

.stat-label {
  font-size: 16px;
  color: #374151;
  line-height: 1.4;
}
.decorative-star {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 20px;
  height: 20px;
  background: #fbbf24;
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.contact-container {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  bottom: 0;
  left: 0;
  right: 0;
  padding-bottom: 20px;
}

.slogan {
  background: #f5b510;
  padding: 5px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
}

.slogan p {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: white;
}

.call-me {
  background: white;
  padding: 10px 30px;
  border-radius: 5px;
}

.call-me a,
.call-me span {
  font-size: 18px;
  font-weight: 500;
}

/* set process car */

.title-procedure h2 {
  text-transform: uppercase;
  font-weight: 700;
  color: #1454a5;
  margin-bottom: 50px;
}

.items-one {
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-first {
  display: flex;
  justify-content: space-between;
  margin-right: 4rem;
}

.content-items-one p {
  max-width: 180px;
  font-weight: 600;
  margin-left: 15px;
}

.images-procedure {
  display: flex;
  justify-content: center;
}

.images-procedure span {
  max-width: 80%;
  display: block;
  margin-top: 1.75rem;
  margin-bottom: 1.75rem;
}

.row-two {
  display: flex;
  justify-content: space-between;
  margin-left: 4rem;
}

.img__contain {
  width: 3.5rem;
  height: 3.5rem;
}

.img__contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.font-semibold {
  margin-bottom: 0;
  margin-left: 20px;
  font-size: 16px;
  font-weight: 600;
}

.contact-banner a:hover {
  background-color: #feda17 !important;
}

.contact-banner a {
  text-decoration: none;
  font-weight: bold;
  border-radius: 10px;
  box-shadow: 0px 2px 20px 0px rgb(0 0 0 / 24%);
}

.srction-procedure-mobile {
  display: none;
}

/* why choose we */
.header-why-we h2 {
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-main);
}
.img-icon {
  width: 64px;
  height: 64px;
}
.title-why-we {
  font-weight: 600;
  font-size: 18px;
}
.content-why-we {
  max-width: 70%;
}
.items-why-we {
  box-shadow: 0px 2px 20px 0px rgb(0 0 0 / 24%);
  padding: 20px;
  transition: all ease-in-out 0.4s;
  border-radius: 5px;
}
.items-why-we:hover {
  background-color: var(--color-main);
  transform: translateY(-5px);
}
.items-why-we:hover .title-why-we,
.items-why-we:hover .content-why-we {
  color: white;
}
.items-why-we:hover .img-icon {
  filter: brightness(0) invert(1);
}

/* services */

.features {
  padding: 20px;
  border-radius: 10px;
  border: 1px solid #ebebeb;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 0.1);
  will-change: transform;
  margin-top: 20px;
}

.title-services h2 {
  color: var(--color-main);
  font-weight: 600;
  font-size: 32px;
  text-transform: capitalize;
}

.features:hover {
  box-shadow: -1px 0 15px 0 #e2e2e2;
  transform: translateY(-2px);
  cursor: pointer;
}

.features img {
  max-height: 100px;
  object-fit: cover;
}

/*  pricing  */

.pricing-title {
  font-size: 42px;
  font-weight: bold;
  color: var(--color-main);
  margin-bottom: 16px;
}
.pricing-subtitle {
  font-size: 18px;
  color: #6b7280;
  margin-bottom: 30px;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  overflow: visible;
  table-layout: fixed;
}
.price-table thead {
  background: var(--bg-thread-table);
  color: white;
  position: relative;
  overflow: visible;
}
.price-table th {
  padding: 20px 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  letter-spacing: 0.3px;
  vertical-align: middle;
}
.price-table thead th.featured-header {
  background: var(--bg-feature-header) !important;
  color: #1f2937 !important;
  font-weight: 700;
  position: relative;
  text-shadow: none !important;
  overflow: visible !important;
}
.popular-badge-header {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: white !important;
  padding: 8px 16px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.5);
  white-space: nowrap;
  z-index: 10;
  display: inline-block;
  font-family: "Inter", sans-serif;
  border: 2px solid rgba(255, 255, 255, 0.3);
}
.price-table td {
  padding: 20px 12px;
  text-align: center;
  border-right: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 15px;
  font-weight: 500;
  position: relative;
  vertical-align: middle;
}
.base-price {
  font-weight: 800;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 17px;
  position: relative;
}
.base-price::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #ef4444, #dc2626);
  border-radius: 1px;
}
.km-price {
  background: linear-gradient(135deg, #10b981, #059669);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.wait-fee {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.rain-fee {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}
.price-table tbody tr:hover {
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}
.price-table tbody tr {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.pricing-notes {
  padding: 32px;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  position: relative;
}
.pricing-notes::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #94a3b8, transparent);
}

.pricing-images img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.note-item:nth-child(1) {
  border-left-color: #3b82f6;
}

.note-item {
  background: #fdf8eb;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
  font-size: 15px;
  color: #334155;
  padding: 12px 16px;
  /* background: rgba(255, 255, 255, 0.7); */
  border-radius: 12px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}
.note-icon {
  font-size: 20px;
  margin-right: 16px;
  min-width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.note-text {
  line-height: 1.7;
  font-weight: 600;
  color: #1e293b;
  flex: 1;
  text-align: center;
}
.note-item:nth-child(2) {
  border-left-color: #10b981;
}
.note-item:last-child {
  margin-bottom: 0;
}

.note-item:nth-child(3) {
  border-left-color: #f59e0b;
}
.note-item:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/*  method booking */

.method-icon-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.method-description-centered {
  text-align: center;
  padding: 0 15px;
  max-width: 350px;
  display: inline-block;
  width: fit-content;
}

.method-description {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 35px;
  line-height: 1.6;
}
.btn-explore {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 15px 25px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}
.item-method {
  background: white;
  border-radius: 20px;
  padding: 30px 0;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.booking-title {
  text-transform: capitalize;
  font-weight: 600;
  color: var(--color-main);
  font-size: 35px;
}

/* images about us */
.about-us-images img {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.image-about img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

/* footer */

.bg-footer {
  background: #f7faff;
  margin-top: 60px;
  padding: 30px 0;
}
.logo-footer {
  width: 230px;
}

.title-footer {
  color: var(--color-main);
  font-weight: 600;
  font-size: 20px;
  margin-top: 10px;
  text-transform: uppercase;
}

/* responsive */

@media (max-width: 480px) {
  .menu-items,
  .stat-card,
  .hidden {
    display: none;
  }
  .navigator {
    justify-content: end;
  }
  .toggle-menu,
  .srction-procedure-mobile {
    display: block;
  }
  .stats-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
    width: 100%;
    overflow-x: hidden;
    overflow-y: hidden;
    padding-bottom: 20px;
  }
  .title-procedure h2 {
    margin-bottom: 5px;
  }
  .price-table td {
    word-break: break-word;
    hyphens: auto;
  }
  .price-table td {
    padding: 8px 2px;
    font-size: 9px;
    line-height: 1.3;
    word-wrap: break-word;
  }
  .price-table th:first-child {
    width: 30%;
  }
  .price-table th {
    font-size: 10px;
    padding: 12px 2px;
    line-height: 1.1;
  }
  .popular-badge-header {
    font-size: 6px;
    padding: 2px 6px;
    top: -10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  .pricing-notes {
    padding: 20px 10px;
  }
  .note-text {
    font-size: 14px;
  }
}
