* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: sans-serif;
}

:root {
  --yellow: #ba7629;
  --lightyellow: #fce3a2;
  --black: #000;
}

.text-center {
  text-align: center;
}

.gap-3 {
  gap: 12px;
}

a {
  text-decoration: none;
}

ul {
  padding: 0px;
  list-style: none;
}

.section {
  padding: 50px 0;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 15px;
}

.section-text {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}

body {
  background: var(--black);
  color: #fff;
}

.lf-shadow-lg {
  z-index: 1 !important;
}

.arrow {
  width: 60px;
  height: 2px;
  background: var(--yellow);
  position: relative;
  transition: 0.3s;
}
.arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--yellow);
  border-right: 2px solid var(--yellow);
  transform: rotate(45deg);
}

.commonbtn {
  background: linear-gradient(135deg, var(--yellow), var(--lightyellow));
  padding: 10px 26px;
  border-radius: 40px;
  color: #000;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  transition: all 0.25s ease;
  box-shadow: 0 4px 12px rgba(186, 118, 41, 0.4);
  white-space: nowrap;
}
.commonbtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(186, 118, 41, 0.6);
  background: var(--black);
  color: #fff;
}

/* =========================
   HEADER BASE
========================= */
.main-header {
  position: absolute;
  width: 100%;
  z-index: 999;
  padding: 18px 0;
  transition: all 0.3s ease;
}
.main-header .logo img {
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
.main-header {
  /* =========================
     NAVIGATION
  ========================= */
}
.main-header .nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-header .nav-list li {
  position: relative;
}
.main-header .nav-list li a {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.25s ease;
  display: inline-block;
}
.main-header .nav-list li a.active, .main-header .nav-list li a:hover {
  color: var(--yellow);
}
.main-header {
  /* =========================
     MEGA MENU (IMPROVED)
  ========================= */
}
.main-header .has-mega {
  position: relative;
}
.main-header .has-mega:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-header .mega-menu {
  position: absolute;
  top: 110%;
  left: 0;
  width: 720px;
  background: #fff;
  display: flex;
  padding: 15px 20px;
  gap: 35px;
  border-radius: 6px;
  /* performance */
  will-change: transform, opacity;
  /* animation */
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.main-header .mega-menu .mega-col {
  flex: 1;
}
.main-header .mega-menu .mega-col h6 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  color: #555;
}
.main-header .mega-menu .mega-col a {
  display: block;
  color: #000;
  font-size: 14px;
  margin-bottom: 8px;
  transition: 0.2s;
}
.main-header .mega-menu .mega-col a:hover {
  color: var(--yellow);
  transform: translateX(3px);
}
.main-header {
  /* =========================
     DROPDOWN MENU
  ========================= */
}
.main-header .has-dropdown {
  position: relative;
}
.main-header .has-dropdown:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-header .dropdown-menu-custom {
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  width: 240px;
  border-radius: 6px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}
.main-header .dropdown-menu-custom li {
  border-bottom: 1px solid #eee;
}
.main-header .dropdown-menu-custom li:last-child {
  border-bottom: none;
}
.main-header .dropdown-menu-custom li a {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  color: #000;
  transition: 0.2s;
}
.main-header .dropdown-menu-custom li a:hover {
  background: #f8f8f8;
  color: var(--yellow);
}

/* =========================
   MOBILE MENU
========================= */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 350px;
  height: 100%;
  background: #0d0d0d;
  transition: 0.3s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  left: 0;
}
.mobile-menu .mobile-inner {
  padding: 20px;
  color: #fff;
  overflow-y: auto;
}
.mobile-menu .mobile-inner .mobile_header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
.mobile-menu .mobile-inner .mobile_header .mobile-logo {
  width: 150px;
}
.mobile-menu .mobile-inner .mobile_header .close-menu {
  background: transparent;
  color: #fff;
  box-shadow: none;
  border: none;
  outline: none;
}
.mobile-menu .mobile-inner .mobile-contact p,
.mobile-menu .mobile-inner .mobile-contact a {
  display: flex;
  gap: 10px;
  color: #fff;
  align-items: center;
  margin-top: 10px;
}
.mobile-menu ul {
  list-style: none;
  padding: 0;
}
.mobile-menu ul li {
  margin-bottom: 14px;
}
.mobile-menu ul li a {
  color: #fff;
  font-size: 15px;
  text-decoration: none;
}
.mobile-menu {
  /* =========================
     MOBILE DROPDOWN
  ========================= */
}
.mobile-menu .mobile-dropdown .dropdown-header {
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 500;
}
.mobile-menu .mobile-dropdown .mobile-sub {
  max-height: 0;
  overflow: auto;
  transition: max-height 0.3s ease;
  background: #fff;
  border-radius: 5px;
  transition: 0.3s;
}
.mobile-menu .mobile-dropdown .mobile-sub h6 {
  color: var(--black);
  margin-top: 10px;
  font-weight: 600;
}
.mobile-menu .mobile-dropdown .mobile-sub a {
  display: block;
  padding: 5px 0px;
  color: var(--black);
  display: block;
}
.mobile-menu .mobile-dropdown .dropdown-header.active + .mobile-sub {
  max-height: 500px;
  padding: 10px;
  margin-top: 10px;
}

.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 120px;
}
.hero__content {
  position: relative;
  z-index: 2;
  margin-left: auto;
  padding-left: 30px;
}
.hero__content h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero__content p {
  font-size: 15px;
  line-height: 1.7;
  color: #ddd;
  margin-bottom: 30px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.hero__link {
  font-size: 14px;
  color: #fff;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero__link:hover .arrow {
  width: 80px;
}
.hero__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(to left, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("../images/Group11.webp") center/cover no-repeat;
  border-top-left-radius: 50% 100%;
  border-bottom-left-radius: 50% 100%;
}

.features {
  background: #1a1a1f;
}
.features .container {
  display: flex;
  align-items: center;
  gap: 50px;
}
.features__left {
  flex: 1;
  max-width: 380px;
}
.features__cards {
  flex: 2;
  display: flex;
  gap: 20px;
}
.features .card {
  background: linear-gradient(39deg, #7d7f83 0, #474a5a 100%);
  padding: 25px;
  border-radius: 10px;
  flex: 1;
  transition: 0.3s;
  height: 100%;
}
.features .card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  color: #fff;
}
.features .card__icon {
  font-size: 22px;
  color: var(--yellow);
}
.features .card__number {
  font-weight: 700;
  opacity: 0.6;
  font-size: 24px;
}
.features .card__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.features .card__text {
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}
.features .card:hover {
  transform: translateY(-5px);
}
.features .card {
  /* ACTIVE (yellow card) */
}
.features .card:hover {
  background: linear-gradient(135deg, var(--yellow), #f0a54a);
  color: #000;
}
.features .card:hover .card__text,
.features .card:hover .card__title,
.features .card:hover .card__number,
.features .card:hover .card__icon {
  color: #fff;
}
.features .card:hover .card__number {
  opacity: 1;
}

.brand {
  background: linear-gradient(90deg, #24242c 0%, #414040 100%);
  position: relative;
}
.brand .container {
  position: relative;
  overflow: hidden;
}
.brand .brand-marquee {
  padding: 24px 0;
  overflow: hidden;
  position: relative;
}
.brand .brand-track {
  display: flex;
  align-items: center;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 40s linear infinite;
}
.brand-marquee:hover .brand .brand-track {
  animation-play-state: paused;
}
.brand .brand-item {
  flex: 0 0 auto;
  padding: 0 30px;
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand .brand-item img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%) brightness(1.2);
  transition: all 0.4s ease;
}
.brand .brand-item:hover img {
  opacity: 1;
  filter: grayscale(0%) brightness(1.4);
  transform: scale(1.05);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.fleet {
  background: linear-gradient(90deg, #1c1c24, #1f1f27);
  /* FILTER */
}
.fleet .fleet-filter {
  gap: 25px;
}
.fleet .fleet-filter li {
  color: #aaa;
  cursor: pointer;
  transition: 0.25s;
}
.fleet .fleet-filter li.active, .fleet .fleet-filter li:hover {
  color: var(--yellow);
}
.fleet {
  /* CARD */
}
.fleet .fltbox {
  position: relative;
  padding: 20px;
  border-radius: 10px;
  height: 100%;
  transition: transform 0.3s ease;
}
.fleet .fltbox:hover {
  transform: translateY(-6px);
}
.fleet .fltbox .findRate {
  text-align: right;
}
.fleet .fltbox .find-rates-btn {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  font-size: 14px;
  color: var(--yellow);
  text-decoration: none;
}
.fleet .fltbox .find-rates-btn img {
  margin-left: 6px;
}
.fleet .fltbox .imgsec img {
  display: block;
  margin: 30px auto;
  max-height: 180px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  will-change: transform;
}
.fleet .fltbox .capsec h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
}
.fleet .fltbox .capsec p {
  font-size: 14px;
  color: #ccc;
}
.fleet .fltbox .capsec .bknow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fleet .fltbox .capsec .bknow ul {
  display: flex;
  gap: 10px;
  margin: 15px 0;
}
.fleet .fltbox .capsec .bknow ul li {
  font-size: 11px;
  color: #ddd;
  text-align: center;
}
.fleet .fltbox .capsec .bknow ul li img {
  display: block;
  margin: 0px auto;
  margin-bottom: 10px;
}
.fleet .fltbox .capsec .bknow ul li span {
  color: #ddd;
}
.fleet {
  /* NAV */
}
.fleet .fleet-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 25px;
}
.fleet .fleet-nav .swiper-button-prev,
.fleet .fleet-nav .swiper-button-next {
  position: static;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid #666;
  color: #fff;
}
.fleet .fleet-nav .swiper-button-prev svg,
.fleet .fleet-nav .swiper-button-next svg {
  width: 10px;
}
.fleet .fleet-nav .swiper-button-prev::after,
.fleet .fleet-nav .swiper-button-next::after {
  font-size: 12px;
}
.fleet .fleet-nav .swiper-button-prev:hover,
.fleet .fleet-nav .swiper-button-next:hover {
  border-color: #fff;
}
.fleet .fleet-filter-mobile {
  display: none;
}
@media (max-width: 991px) {
  .fleet .fleet-filter-mobile {
    display: block;
    margin-bottom: 20px;
  }
  .fleet .fleet-filter-mobile select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    background: #1c1c24;
    color: #fff;
    border: 1px solid #666;
  }
}

.ourPremuiChau {
  background: #0f1117;
  color: #fff;
  text-align: center;
  padding: 50px 0px;
}
.ourPremuiChau .sec-title {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: 0.5px;
}
.ourPremuiChau .innrsec {
  max-width: 1200px;
  margin: 0 auto;
}
.ourPremuiChau .cuscol {
  margin-bottom: 40px;
}
.ourPremuiChau .itm {
  padding: 20px 15px;
  transition: all 0.3s ease;
}
.ourPremuiChau .itm:hover {
  transform: translateY(-6px);
}
.ourPremuiChau .itm:hover .imgsec {
  box-shadow: 0 0 30px rgba(255, 180, 80, 0.6);
}
.ourPremuiChau .imgsec {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(circle, #f4c06b 0%, #c8923c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(255, 179, 80, 0.551);
  transition: all 0.3s ease;
  filter: drop-shadow(0px 1px 8.1pxrgba 252, 163, 67, 0.515 3);
}
.ourPremuiChau .imgsec img {
  filter: brightness(0) invert(0);
}
.ourPremuiChau .capsec .main {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.ourPremuiChau .capsec p {
  font-size: 14px;
  line-height: 1.7;
  color: #cfcfcf;
  margin: 0;
}
.ourPremuiChau .min {
  font-size: 15px;
  line-height: 1.8;
  color: #d6d6d6;
  margin-left: auto;
  margin-right: auto;
}
.ourPremuiChau .cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 15px;
  color: #f4c06b;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}
.ourPremuiChau .cta-link i {
  transition: transform 0.3s ease;
}
.ourPremuiChau .cta-link:hover {
  color: #fff;
}
.ourPremuiChau .cta-link:hover i {
  transform: translateX(5px);
}

.premService {
  background: #0b0d12;
}
.premService .section-text {
  max-width: 700px;
}
.premService .serviceCard {
  background: #12151c;
  border-radius: 14px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.premService .serviceCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(186, 118, 41, 0.25);
}
.premService .serviceCard:hover img {
  transform: scale(1.05);
}
.premService .serviceCard .imgsec {
  height: 200px;
  overflow: hidden;
}
.premService .serviceCard .imgsec img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease;
}
.premService .serviceCard .capsec {
  padding: 18px;
}
.premService .serviceCard .capsec h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}
.premService .serviceCard .capsec p {
  font-size: 14px;
  color: #bfbfbf;
  line-height: 1.6;
  margin-bottom: 15px;
  min-height: 72px;
}
.premService .serviceCard .capsec .commonbtn {
  width: 100%;
  text-align: center;
}

/* Hide extra items initially */
.serviceItem {
  display: none;
}

.serviceItem.show {
  display: block;
}

.testimonial {
  background: #0b0d12;
}
.testimonial .testimonialSlider {
  padding: 0px 10px 60px 10px;
}
.testimonial .tCard {
  background: #111;
  border-radius: 14px;
  padding: 25px;
  min-height: 336px;
  position: relative;
  transition: 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 5px 5px 20px rgba(229, 229, 229, 0.301);
}
.testimonial .tCard:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(186, 118, 41, 0.3);
}
.testimonial .tText {
  position: relative;
  margin-bottom: 20px;
}
.testimonial .tText .quote {
  font-size: 18px;
  color: var(--yellow);
  position: absolute;
  top: -10px;
  left: -10px;
}
.testimonial .tText p {
  font-size: 14px;
  color: #ddd;
  line-height: 1.7;
  padding-left: 15px;
}
.testimonial .tText a {
  color: var(--lightyellow);
}
.testimonial .tUser {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial .tUser .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #1c1f26;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 18px;
  border: 2px solid rgba(255, 255, 255, 0.2666666667);
}
.testimonial .tUser h4 {
  font-size: 15px;
  margin: 0;
}
.testimonial .tUser .stars {
  font-size: 12px;
  color: var(--lightyellow);
}
.testimonial {
  /* arrows */
}
.testimonial .swiper-button-prev,
.testimonial .swiper-button-next {
  color: #fff;
  width: 10px;
}
.testimonial .swiper-button-prev:after,
.testimonial .swiper-button-next:after {
  font-size: 18px;
}
.testimonial {
  /* dots */
}
.testimonial .swiper-pagination-bullet {
  background: #777;
  opacity: 1;
}
.testimonial .swiper-pagination {
  transform: translateY(0px);
}
.testimonial .swiper-pagination-bullet-active {
  background: var(--yellow);
}
.testimonial .reviewBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #555;
  padding: 10px 20px;
  border-radius: 40px;
  color: #fff;
  margin-top: 10px;
  transition: 0.3s;
}
.testimonial .reviewBtn img {
  width: 20px;
}
.testimonial .reviewBtn:hover {
  background: var(--yellow);
  color: #000;
}

.download-section {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
}
.download-section .hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ba7629 0%, #fce3a2 100%);
  opacity: 0.95;
  z-index: 0;
}
.download-section .grid-overlay {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.download-section .container {
  position: relative;
  z-index: 2;
}
.download-section {
  /* TITLE */
}
.download-section .hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}
.download-section .hero-title span {
  display: inline-block;
}
@media (max-width: 991px) {
  .download-section .hero-title br {
    display: none;
  }
  .download-section .hero-title {
    text-align: center;
  }
  .download-section .phone-mobile img {
    margin: 0 auto;
  }
  .download-section .feature-pills, .download-section .download-buttons {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .download-section .hero-title {
    font-size: 36px;
  }
}
.download-section {
  /* PILLS */
}
.download-section .feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.download-section .feature-pills .pill {
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.download-section .feature-pills .pill i {
  color: var(--lightyellow);
}
.download-section {
  /* STORE BUTTONS */
}
.download-section .download-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.download-section .download-buttons .store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  color: #000;
  padding: 12px 18px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-align: center;
}
.download-section .download-buttons .store-btn i {
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #ba7629 0, #fce3a2 100%);
  border-radius: 12px;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  line-height: 40px;
}
.download-section .download-buttons .store-btn small {
  display: block;
  font-size: 11px;
}
.download-section .download-buttons .store-btn:hover {
  transform: translateY(-3px);
}
.download-section {
  /* STATS */
}
.download-section .stats {
  margin-top: 20px;
}
.download-section .stats .stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
}
.download-section .stats h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.download-section .stats p {
  font-size: 13px;
  color: #eee;
}
.download-section {
  /* PHONE */
}
.download-section .phone-desktop img {
  max-width: 320px;
  margin: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
}
.download-section .phone-mobile img {
  max-width: 260px;
}

.video-section .video-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
}
.video-section .video-card .video-img {
  width: 100%;
  height: 420px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.video-section .video-card:hover .video-img {
  transform: scale(1.05);
}
.video-section {
  /* Gradient overlay */
}
.video-section .video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(186, 118, 41, 0.85) 0%, rgba(186, 118, 41, 0.5) 40%, rgba(0, 0, 0, 0.4) 100%);
}
.video-section {
  /* PLAY BUTTON */
}
.video-section .play-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-section .play-btn {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--lightyellow));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 rgba(255, 215, 0, 0.6);
  animation: pulse 2s infinite;
}
.video-section .play-btn i {
  margin-left: 3px;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.6);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(255, 215, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
  }
}
.video-section {
  /* TEXT */
}
.video-section .video-content {
  position: absolute;
  left: 30px;
  bottom: 25px;
  z-index: 2;
}
.video-section .video-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 5px;
}
.video-section .video-content p {
  font-size: 14px;
  color: #ddd;
}
.video-section .video-content p i {
  margin-right: 5px;
}

.custom-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}
.custom-modal.active {
  display: block;
}
.custom-modal .modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(6px);
  z-index: -1;
}
.custom-modal .modal-box {
  position: relative;
  width: 90%;
  max-width: 800px;
  margin: auto;
  top: 50%;
  transform: translateY(-50%);
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
}
.custom-modal .modal-box iframe {
  width: 100%;
  height: 450px;
  display: block;
}
.custom-modal .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  z-index: 3;
  cursor: pointer;
}

/* Fix click issue */
.video-gradient,
.play-wrapper {
  pointer-events: none;
}

.play-btn {
  pointer-events: auto;
}

.weprovide_home .image-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
}
.weprovide_home .image-grid .img-box {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
}
.weprovide_home .image-grid .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s ease;
}
.weprovide_home .image-grid .img-box:hover img {
  transform: scale(1.07);
}
.weprovide_home .image-grid .big {
  height: 260px;
}
.weprovide_home .image-grid .small {
  height: 220px;
}
.weprovide_home .image-grid {
  /* bottom layout */
}
.weprovide_home .image-grid .img-box:nth-child(3) {
  grid-column: 1/2;
}
.weprovide_home .image-grid .img-box:nth-child(4) {
  grid-column: 2/3;
}
.weprovide_home .content-box {
  padding-left: 30px;
}
.weprovide_home .content-box h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.3;
}
.weprovide_home .content-box p {
  font-size: 15px;
  color: #ccc;
  line-height: 1.7;
  margin-bottom: 20px;
}
.weprovide_home .content-box ul {
  padding: 0;
  list-style: none;
}
.weprovide_home .content-box ul li {
  text-align: left;
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #ddd;
  line-height: 1.6;
}
.weprovide_home .content-box ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--yellow), var(--lightyellow));
}

.footer {
  background: #0a0a0a;
  color: #fff;
}
.footer .main-footer {
  padding: 60px 0 40px;
}
.footer .footlogo {
  display: block;
  width: 200px;
  margin-bottom: 10px;
}
.footer .footlogo img {
  width: 100%;
}
.footer p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.6;
  margin-bottom: 6px;
}
.footer .time {
  color: var(--lightyellow);
  margin: 8px 0;
}
.footer {
  /* Contact Links */
}
.footer .call {
  display: block;
  margin-top: 10px;
  font-size: 13px;
  color: #d6a85c;
}
.footer .call i {
  margin-right: 6px;
}
.footer .call:hover {
  color: var(--lightyellow);
}
.footer .ico {
  width: 90px;
  margin-top: 15px;
}
.footer {
  /* Section Headings */
}
.footer h4 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}
.footer h4::after {
  content: "";
  width: 25px;
  height: 2px;
  background: var(--yellow);
  position: absolute;
  left: 0;
  bottom: -4px;
}
.footer ul {
  padding-left: 0;
  list-style: none;
}
.footer ul li {
  margin-bottom: 10px;
}
.footer ul li a {
  color: #ddd;
  text-decoration: none;
  font-size: 14px;
}
.footer ul li a:hover {
  color: var(--lightyellow);
}
.footer .fleet-wrap {
  display: flex;
  gap: 40px;
}
.footer .footer-bottom {
  background: #050505;
  padding: 15px 0;
}
.footer .copy {
  font-size: 12px;
  color: #aaa;
  margin: 0;
}
.footer .socialMedia {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.footer .socialMedia a {
  margin-left: 15px;
  color: #fff;
  font-size: 14px;
}
.footer .socialMedia a:hover {
  color: var(--yellow);
}
.footer {
  /* Responsive */
}
@media (max-width: 768px) {
  .footer .fleet-wrap {
    flex-direction: column;
    gap: 0;
  }
  .footer .footer-bottom {
    text-align: center;
  }
  .footer .footer-bottom .text-md-end {
    text-align: center !important;
    margin-top: 10px;
  }
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 9999;
}

/* Base button */
.pab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Scroll Top (black + orange ring style) */
.fab-dark {
  background: #000;
  color: #fff;
  font-size: 18px;
  position: relative;
  border: 5px solid var(--yellow);
}

/* Hover */
.fab-dark:hover {
  transform: translateY(-3px);
}

/* WhatsApp button */
.fab-whatsapp {
  background: #25d366;
}

/* Hover */
.fab-whatsapp:hover {
  transform: scale(1.08);
}

/* Hide scroll button initially */
#scrollTopBtn {
  opacity: 0;
  visibility: hidden;
}

/* Show when active */
#scrollTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* Mobile tweak */
@media (max-width: 768px) {
  .floating-actions {
    right: 15px;
    bottom: 15px;
  }
  .pab {
    width: 48px;
    height: 48px;
  }
}
.tp-edge-glow {
  position: fixed;
  right: -45px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #111;
  padding: 10px 15px;
  border-radius: 10px 10px 0 0;
  z-index: 9999;
  box-shadow: 0 0 0 rgba(0, 182, 122, 0);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.tp-edge-glow img {
  height: 25px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: filter 0.3s ease;
}
.tp-edge-glow:hover {
  box-shadow: 0 0 22px rgba(0, 182, 122, 0.65);
}

.booking_engine_container .lf-w-full.lf-bg-white.lf-shadow-lg.lf-dropdown {
  background: #ffffff !important;
  border-radius: 20px;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.12) !important;
  overflow: hidden;
  /* padding: 10px 10px; */
}
.booking_engine_container .lf-grid.lf-grid-cols-3.lf-mb-2 {
  background: #f3f4f6;
  border-radius: 15px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.booking_engine_container .lf-flex.lf-rounded-full {
  background: #f3f3f3;
  padding: 6px;
  border-radius: 999px;
}
.booking_engine_container .lf-flex.lf-rounded-full button {
  color: #777 !important;
  font-weight: 500;
  border-radius: 999px;
  padding: 10px 18px;
  background: transparent;
}
.booking_engine_container .lf-flex.lf-rounded-full button.lf-bg-black {
  background: #000000 !important;
  color: #ffffff !important;
}
.booking_engine_container label {
  color: #666666 !important;
  font-size: 14px;
  font-weight: 500;
}
.booking_engine_container input:not(.datepicker-calendar-icon) {
  background: #f7f7f7 !important;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  color: #000000 !important;
  margin-bottom: 14px;
}
.booking_engine_container input:not(.datepicker-calendar-icon)::-moz-placeholder {
  color: #9a9a9a;
}
.booking_engine_container input:not(.datepicker-calendar-icon)::placeholder {
  color: #9a9a9a;
}
.booking_engine_container input:not(.datepicker-calendar-icon):focus {
  outline: none;
  border-color: #000000;
  background: #ffffff;
}
.booking_engine_container #differentAddress {
  margin-bottom: 0 !important;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 {
  border-top: 1px solid #eaeaea;
  /* padding: 12px 0;
  margin-top: 10px; */
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button {
  color: #000000 !important;
  font-weight: 500;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button .lf-text-sm {
  border: 1px solid #000000 !important;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  line-height: 16px;
  font-size: 11px;
  margin-right: 8px;
}
.booking_engine_container .lf-flex.lf-items-center.lf-justify-end.lf-gap-2 button .lf-text-sm::before {
  margin-left: 3px;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner {
  box-shadow: none !important;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button {
  width: 95%;
  background: #000000 !important;
  color: #ffffff !important;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  border-radius: 12px;
}
.booking_engine_container .lf-mt-5.lf-flex.lf-justify-center.lf-py-2.lf-shadow-inner button:hover {
  background: #111111 !important;
}
.booking_engine_container .lf-cursor-pointer.lf-relative button {
  color: #000000 !important;
}
.booking_engine_container .lf-top-2\/4 {
  top: 38% !important;
  color: #000000;
}
.lf-max-w-\[180px\] button.lf-pl-2\.5, .lf-max-w-\[180px\] .lf-py-1\.5 i.lf-right-1, .lf-max-w-\[180px\] .lf-py-1\.5 i.lf-right-2 {
  color: #000;
}


.contact-card {
  background: #f4f4f4;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 2;
  position: relative;
}
.contact-card .error {
  color: red;
  margin-top: 5px;
  display: block;
}
.contact-card .row {
  display: flex;
  flex-wrap: wrap;
}
.contact-card .contact-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: serif;
}
.contact-card .form-label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #333;
}
.contact-card .form-control,
.contact-card .form-select {
  border-radius: 6px;
  border: 1px solid #ddd;
  padding: 10px;
  font-size: 14px;
  transition: 0.2s;
  background-color: #fff;
}
.contact-card .form-control:focus,
.contact-card .form-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 0.15rem rgba(186, 118, 41, 0.25);
}
.contact-card textarea.form-control {
  resize: none;
}
.contact-card label, .contact-card input, .contact-card select, .contact-card textarea {
  display: block;
  width: 100%;
}
.contact-card .field {
  width: 100%;
}
.contact-card .submit-btn {
  width: 100%;
  border-radius: 5px;
  border: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 15px;
  cursor: pointer;
}
.contact-card .submit-btn span {
  margin-left: 15px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 1200px) {
  .mega-menu {
    width: 620px;
    gap: 25px;
  }
}
@media (max-width: 992px) {
  .main-nav,
  .header-cta {
    display: none !important;
  }
  .menu-toggle {
    display: block;
    font-size: 30px;
    color: #fff;
    background: none;
    border: none;
  }
  .brand {
    padding: 20px 0;
  }
  .brand .brand-item {
    height: 65px;
    padding: 0 20px;
  }
  .fleet .car-img {
    max-height: 150px;
  }
  .ourPremuiChau .imgsec {
    width: 80px;
    height: 80px;
  }
  .ourPremuiChau .imgsec img {
    width: 50px;
    height: 50px;
  }
  .weprovide_home .content-box {
    padding-left: 0;
    text-align: center;
  }
  .weprovide_home .image-grid {
    grid-template-columns: 1fr 1fr;
  }
  .weprovide_home .image-grid .big,
  .weprovide_home .image-grid .small {
    height: 200px;
  }
  .hero {
    padding-top: 0px;
  }
  .ourPremuiChau, .section {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .main-header {
    padding: 14px 0;
  }
  .logo img {
    height: 40px;
  }
  .video-section .video-card .video-img {
    height: 260px;
  }
  .play-btn {
    width: 70px;
    height: 70px;
    font-size: 20px;
  }
  .video-content h3 {
    font-size: 20px;
  }
}
@media (max-width: 576px) {
  .logo img {
    height: 34px;
  }
  .commonbtn {
    font-size: 13px;
    padding: 8px 20px;
    white-space: nowrap;
  }
  .hero .hero__content {
    padding: 0px;
  }
  .hero .hero__content h1 {
    font-size: 32px;
  }
  .hero .hero__content .hero__actions {
    flex-wrap: wrap;
  }
  .brand {
    padding: 16px 0;
  }
  .brand .brand-item {
    height: 55px;
    padding: 0 14px;
  }
  .fleet .car-img {
    max-height: 130px;
  }
  .ourPremuiChau .min {
    font-size: 14px;
  }
  .weprovide_home .image-grid {
    gap: 10px;
  }
  .weprovide_home .image-grid .big,
  .weprovide_home .image-grid .small {
    height: 160px;
  }
  .footer .cuscol {
    margin-top: 20px;
  }
  .download-section .download-buttons .store-btn {
    gap: 8px;
    padding: 10px 15px;
  }
}/*# sourceMappingURL=home-style.css.map */