@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Work+Sans:wght@800&display=swap");
:root {
  --primary-color: #2476ff;
  --secondary-color: #16bcdc;
  --info-color: #128ac5;
  --text-dark: #2e2e2e;
  --text-muted: #757575;
  --bg-light: #f0f2f4; }

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; }

body {
  font-family: "Manrope", sans-serif;
  color: #2e2e2e;
  background-color: #ffffff;
  overflow-x: hidden; }

/* header */
.header {
  position: sticky;
  top: 24px;
  z-index: 1000;
  transition: box-shadow 0.3s ease; }
  .header .navbar {
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    padding-left: 1.5rem;
    padding-right: 1.5rem; }
    .header .navbar .header-logo {
      height: 45px;
      transition: transform 0.3s ease; }
      .header .navbar .header-logo:hover {
        transform: scale(1.05); }
    .header .navbar .navbar-nav {
      gap: 0.5rem; }
      .header .navbar .navbar-nav .nav-item .nav-link {
        color: var(--text-dark);
        font-weight: 600;
        font-size: 15px;
        padding: 0.75rem 1.25rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        position: relative;
        display: flex;
        align-items: center; }
        .header .navbar .navbar-nav .nav-item .nav-link::before {
          content: "";
          position: absolute;
          bottom: 8px;
          left: 50%;
          transform: translateX(-50%) scaleX(0);
          width: 60%;
          height: 2px;
          background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
          border-radius: 2px;
          transition: transform 0.3s ease; }
        .header .navbar .navbar-nav .nav-item .nav-link::after {
          display: none; }
        .header .navbar .navbar-nav .nav-item .nav-link .dropdown-icon {
          font-size: 12px;
          transition: transform 0.3s ease; }
        .header .navbar .navbar-nav .nav-item .nav-link:hover {
          color: var(--primary-color);
          background-color: rgba(36, 118, 255, 0.05); }
          .header .navbar .navbar-nav .nav-item .nav-link:hover .dropdown-icon {
            transform: rotate(180deg); }
        .header .navbar .navbar-nav .nav-item .nav-link:hover::before {
          transform: translateX(-50%) scaleX(1); }
      .header .navbar .navbar-nav .nav-item .dropdown-menu-custom {
        border: none;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        padding: 0.5rem;
        margin-top: 0;
        min-width: 240px;
        animation: dropdownSlide 0.3s ease;
        display: block;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
        transform: translateY(-10px); }
        .header .navbar .navbar-nav .nav-item .dropdown-menu-custom .dropdown-item {
          padding: 0.875rem 1.25rem;
          border-radius: 8px;
          font-weight: 500;
          color: var(--text-dark);
          transition: all 0.2s ease;
          display: flex;
          align-items: center; }
          .header .navbar .navbar-nav .nav-item .dropdown-menu-custom .dropdown-item:hover {
            background: linear-gradient(90deg, rgba(36, 118, 255, 0.08), rgba(22, 188, 220, 0.08));
            color: var(--primary-color);
            transform: translateX(4px); }
            .header .navbar .navbar-nav .nav-item .dropdown-menu-custom .dropdown-item:hover i {
              transform: scale(1.1); }
          .header .navbar .navbar-nav .nav-item .dropdown-menu-custom .dropdown-item i {
            font-size: 18px;
            color: var(--primary-color);
            transition: transform 0.2s ease; }
      .header .navbar .navbar-nav .nav-item.dropdown:hover .dropdown-menu-custom {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0); }
    .header .navbar .header-auth-group {
      display: flex;
      align-items: center;
      border: 1px solid #e9ecef;
      border-radius: 100px;
      background-color: white;
      height: 48px;
      padding: 0.25rem; }
    .header .navbar .header-link {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      padding: 4px 1rem;
      font-weight: 600;
      font-size: 14px;
      text-decoration: none;
      border-radius: 100px;
      transition: all 0.3s ease;
      position: relative;
      height: 40px;
      background-color: transparent;
      color: #6c757d;
      box-shadow: none; }
      .header .navbar .header-link img {
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease; }
      .header .navbar .header-link.active {
        background-color: #f0f2f4;
        color: var(--text-dark, #343a40); }
        .header .navbar .header-link.active img {
          filter: none;
          opacity: 1; }
    .header .navbar .btn-post-auction {
      background: #16bcdc;
      color: white;
      height: 48px;
      border: none;
      border-radius: 24px;
      padding: 0.75rem 1.75rem;
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(22, 188, 220, 0.3);
      position: relative;
      overflow: hidden; }
      .header .navbar .btn-post-auction::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s ease, height 0.6s ease; }
      .header .navbar .btn-post-auction i {
        transition: all 0.4s ease-in-out; }
      .header .navbar .btn-post-auction span {
        transition: all 0.4s ease-in-out; }
      .header .navbar .btn-post-auction:hover {
        background-color: #0fd186; }
        .header .navbar .btn-post-auction:hover i {
          transform: translateX(130px); }
        .header .navbar .btn-post-auction:hover span {
          transform: translateX(-25px); }
      .header .navbar .btn-post-auction:active {
        transform: translateY(0); }

.hero-section {
  margin-top: -90px;
  background-image: url("../images/01-Home-Page-V3/Slide.png");
  padding: 80px 0;
  position: relative;
  background-color: #ffffff;
  width: 100%;
  height: 800px; }
  .hero-section .container {
    position: relative; }
  .hero-section .hero-title {
    font-size: 40px;
    font-weight: 800;
    color: #128ac5;
    line-height: 1.4;
    margin-bottom: 16px;
    padding-right: 170px; }
  .hero-section .hero-subtitle {
    font-size: 24px;
    font-weight: 800;
    color: #0fd186;
    margin-bottom: 64px; }
  .hero-section .search-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    gap: 12px;
    width: 544px;
    height: 216px;
    margin-top: 54px;
    position: relative;
    z-index: 1; }
    .hero-section .search-card .input-group-text {
      color: #16bcdc;
      background-color: #f0f2f4 !important; }
    .hero-section .search-card .form-control,
    .hero-section .search-card .form-select {
      border-color: #dee2e6;
      background-color: #f0f2f4;
      height: 48px; }
      .hero-section .search-card .form-control:focus,
      .hero-section .search-card .form-select:focus {
        box-shadow: none;
        border-color: #00bcd4; }
    .hero-section .search-card .btn-primary {
      background-color: #16bcdc;
      border: none;
      font-weight: bold;
      border-radius: 100px;
      gap: 12px;
      height: 48px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .hero-section .search-card .btn-primary i {
        font-size: 20px;
        transition: all 0.4s ease-in-out; }
      .hero-section .search-card .btn-primary span {
        transition: all 0.4s ease-in-out; }
      .hero-section .search-card .btn-primary:hover {
        background-color: #0fd186; }
        .hero-section .search-card .btn-primary:hover i {
          transform: translateX(135px); }
        .hero-section .search-card .btn-primary:hover span {
          transform: translateX(-40px); }
  .hero-section .info-card {
    background: linear-gradient(to right, #e8f8fc, #e0f7fa);
    border: 1.5px;
    border-radius: 24px !important;
    position: absolute;
    padding: 24px;
    gap: 20px; }
  .hero-section .image-card {
    width: 142%;
    right: 233px;
    bottom: 45px;
    position: relative;
    border: none;
    background: transparent; }
    .hero-section .image-card img {
      border-radius: 0.5rem; }
  .hero-section .img-cars {
    position: absolute;
    background: transparent;
    bottom: 27%;
    right: 70px;
    animation: popIn 0.5s ease-out 0s forwards; }
  .hero-section .banner-box {
    position: absolute;
    bottom: 50%;
    font-weight: 600;
    color: #333;
    line-height: 140%;
    display: flex;
    gap: 10px;
    z-index: 20; }
    .hero-section .banner-box .overlay-icon,
    .hero-section .banner-box .overlay-box {
      opacity: 0; }
    .hero-section .banner-box .overlay-icon {
      position: relative;
      background-color: #ffffff;
      border-radius: 50%;
      width: 64px;
      height: 64px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      justify-content: center;
      align-items: center;
      z-index: 20; }
      .hero-section .banner-box .overlay-icon img {
        width: 40px;
        height: 40px;
        object-fit: contain; }
      .hero-section .banner-box .overlay-icon.icon-person {
        animation: popIn 0.6s ease-out 0s forwards, wobble-pop 0.1s ease-in-out 0.6s infinite alternate; }
    .hero-section .banner-box .icon-bid {
      left: 330px;
      bottom: 43px;
      animation: slideInFromBottomLeft 0.6s ease-out 0.2s forwards, wobble-rotate 0.1s ease-in-out 0.8s infinite alternate; }
    .hero-section .banner-box .icon-gavel {
      left: 340px;
      top: 30px;
      animation: slideInFromTopRight 0.6s ease-out 0.4s forwards, wobble-rotate 0.1s ease-in-out 1s infinite alternate; }
    .hero-section .banner-box .box-top-left {
      position: absolute;
      top: -140px;
      left: -60px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      font-size: 16px;
      background-color: #ffffff;
      border-radius: 24px;
      padding: 16px 20px 12px 12px;
      display: flex;
      gap: 12px;
      align-items: center;
      animation: slideInFromTopLeft 0.6s ease-out 0.1s forwards, wobble-rotate 2s ease-in-out 0.7s infinite alternate; }
      .hero-section .banner-box .box-top-left:before {
        content: url("../images/01-Home-Page-V3/Vector_tick.svg"); }
    .hero-section .banner-box .box-top-right {
      bottom: 157px;
      right: -175%;
      position: absolute;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      font-size: 16px;
      background-color: #ffffff;
      border-radius: 24px;
      padding: 16px 20px 12px 12px;
      display: flex;
      gap: 12px;
      align-items: center;
      animation: slideInFromTopRight 0.6s ease-out 0.3s forwards, wobble-rotate 2s ease-in-out 0.9s infinite alternate; }
      .hero-section .banner-box .box-top-right:before {
        content: url("../images/01-Home-Page-V3/Vector_tick.svg"); }
    .hero-section .banner-box .box-center {
      top: 12px;
      right: -170px;
      position: absolute;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      font-size: 16px;
      background-color: #ffffff;
      border-radius: 24px;
      padding: 16px 20px 12px 12px;
      display: flex;
      gap: 12px;
      align-items: center;
      animation: slideInFromBottomRight 0.6s ease-out 0.5s forwards, wobble-rotate 2s ease-in-out 1.1s infinite alternate; }
      .hero-section .banner-box .box-center:before {
        content: url("../images/01-Home-Page-V3/Vector_tick.svg"); }
    @media (max-width: 1400px) {
      .hero-section .banner-box {
        left: 20%;
        bottom: 20%; }
        .hero-section .banner-box .overlay-icon {
          width: 44px;
          height: 44px; }
          .hero-section .banner-box .overlay-icon img {
            width: 28px;
            height: 28px; }
        .hero-section .banner-box .icon-bid {
          left: 260px;
          bottom: 43px; }
        .hero-section .banner-box .icon-gavel {
          left: 280px;
          top: 10px; }
        .hero-section .banner-box .box-top-left {
          top: -140px;
          left: -78px; }
          .hero-section .banner-box .box-top-left:before {
            content: url("../images/01-Home-Page-V3/Vector_tick.svg"); }
        .hero-section .banner-box .box-center {
          top: -50px; } }
    @media (max-width: 991px) {
      .hero-section .banner-box {
        display: none; } }
@keyframes slideInFromTopLeft {
  from {
    transform: translate(-40px, -40px);
    opacity: 0; }
  to {
    transform: translate(0, 0);
    opacity: 1; } }
@keyframes slideInFromTopRight {
  from {
    transform: translate(40px, -40px);
    opacity: 0; }
  to {
    transform: translate(0, 0);
    opacity: 1; } }
@keyframes slideInFromBottomRight {
  from {
    transform: translate(40px, 40px);
    opacity: 0; }
  to {
    transform: translate(0, 0);
    opacity: 1; } }
@keyframes slideInFromBottomLeft {
  from {
    transform: translate(-40px, 40px);
    opacity: 0; }
  to {
    transform: translate(0, 0);
    opacity: 1; } }
@keyframes popIn {
  from {
    transform: scale(0.5);
    opacity: 0; }
  to {
    transform: scale(1);
    opacity: 1; } }
@keyframes wobble-rotate {
  from {
    transform: rotate(-5deg); }
  to {
    transform: rotate(5deg); } }
@keyframes wobble-pop {
  from {
    transform: scale(1) rotate(-6deg); }
  to {
    transform: scale(1) rotate(6deg); } }
  .hero-section .info-card-top-right {
    top: 17%;
    right: -37%;
    width: 272px;
    height: 320px;
    color: #2e2e2e;
    border: 1.5px solid #ffffff; }
    .hero-section .info-card-top-right h4 {
      font-weight: 800;
      font-size: 20px;
      line-height: 140%; }
    .hero-section .info-card-top-right p {
      font-weight: 400;
      font-size: 16px;
      line-height: 160%; }
    .hero-section .info-card-top-right span {
      font-weight: bold;
      color: #2e2e2e; }
    .hero-section .info-card-top-right .statistic-graph {
      height: 150px; }
      .hero-section .info-card-top-right .statistic-graph::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 35%;
        background: url("../images/01-Home-Page-V3/image_39-min_1.png") repeat-x center bottom;
        background-size: 100% 100%;
        opacity: 0.3; }
  .hero-section .info-card-bottom-right {
    position: absolute;
    right: -37%;
    bottom: 13%; }
  @media (max-width: 991.98px) {
    .hero-section {
      margin-top: -180px;
      height: auto;
      padding: 40px 0; }
      .hero-section .container {
        margin-top: 160px;
        top: auto;
        position: static; }
      .hero-section .hero-title {
        font-size: 32px;
        padding-right: 0; }
      .hero-section .hero-subtitle {
        font-size: 20px;
        margin-bottom: 32px; }
      .hero-section .search-card {
        margin-top: 32px;
        width: 100%;
        height: auto;
        z-index: 0; }
      .hero-section .image-card {
        display: none; }
      .hero-section .info-card {
        position: static !important;
        width: 100% !important;
        margin-top: 1rem;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important; }
      .hero-section .info-card-top-right {
        display: none; }
      .hero-section .info-card-bottom-right {
        display: none; } }

.brand-section {
  background-color: #ffffff;
  padding: 80px 0; }
  .brand-section .brand-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    margin-top: 24px; }
    .brand-section .brand-grid .brand-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      transition: transform 0.3s ease; }
      .brand-section .brand-grid .brand-item:hover .brand-name {
        font-weight: bold; }
      .brand-section .brand-grid .brand-item:hover .brand-logo {
        background: #F0F2F4;
        transition: box-shadow 0.1s ease; }
      .brand-section .brand-grid .brand-item .brand-logo {
        width: 96px;
        height: 96px;
        background: #ffffff;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 16px;
        box-shadow: none;
        transition: box-shadow 0.1s ease; }
        .brand-section .brand-grid .brand-item .brand-logo img {
          width: 100%;
          height: 100%;
          object-fit: contain; }
      .brand-section .brand-grid .brand-item .brand-name {
        font-size: 14px;
        font-weight: 500;
        text-align: center;
        transition: font-weight 0.1s ease; }

.section-title {
  font-size: 24px;
  font-weight: 800;
  color: #2e2e2e;
  line-height: 140%; }

.product-section {
  background-color: #f0f2f4;
  padding: 48px 0;
  border-radius: 40px;
  margin: 0 auto;
  max-width: 1824px;
  position: relative; }
  .product-section .container {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0; }
  .product-section .section-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    width: 100%;
    padding-left: 48px;
    padding-right: 48px;
    box-sizing: border-box; }
    .product-section .section-header .filter-tabs {
      display: flex;
      gap: 0; }
      .product-section .section-header .filter-tabs .btn-tab {
        padding: 9px 21px;
        border-radius: 100px;
        border: none;
        background: transparent;
        color: #757575;
        font-weight: 700;
        line-height: 140%;
        font-size: 14px; }
        .product-section .section-header .filter-tabs .btn-tab .bi-gavel::before {
          content: url("../images/01-Home-Page-V3/Vector_nau.png"); }
        .product-section .section-header .filter-tabs .btn-tab.active {
          background-color: #0fd186;
          color: #ffffff; }
        .product-section .section-header .filter-tabs .btn-tab:hover:not(.active) {
          background-color: #0fd186;
          color: white; }
      .product-section .section-header .filter-tabs .success-tab {
        margin-left: 70px; }
    .product-section .section-header .view-all {
      margin-left: auto;
      color: #2e2e2e;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 4px; }
      .product-section .section-header .view-all i {
        transform: rotate(-40deg); }
      .product-section .section-header .view-all:hover {
        color: #16bcdc; }
        .product-section .section-header .view-all:hover i {
          transition: transform 0.3s ease;
          transform: translateX(4px); }
  .product-section .product-carousel {
    position: relative;
    padding: 0 40px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    cursor: pointer; }
    .product-section .product-carousel .product-card {
      width: 100%;
      border-radius: 16px;
      border: none;
      padding: 12px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
      transition: box-shadow 0.3s;
      gap: 12px;
      display: flex;
      flex-direction: column;
      overflow: hidden; }
      .product-section .product-carousel .product-card.is-expanded {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12); }
        .product-section .product-carousel .product-card.is-expanded .card-title {
          max-height: var(--expanded-title-height) !important;
          -webkit-line-clamp: unset !important; }
        .product-section .product-carousel .product-card.is-expanded .card-img-top {
          height: var(--adjusted-img-height) !important; }
      .product-section .product-carousel .product-card .card-img-top {
        height: 190px;
        object-fit: cover;
        border-radius: 8px;
        transition: height 0.4s ease-in-out; }
      .product-section .product-carousel .product-card .verify-badge {
        position: absolute;
        top: 8px;
        right: 8px;
        width: 22px;
        height: 22px;
        background-color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        box-shadow: 0 0 4px rgba(0, 0, 0, 0.1); }
        .product-section .product-carousel .product-card .verify-badge .bi-patch-check-fill::before {
          content: "\f4b5";
          width: 15px;
          height: 15px;
          color: #3ba500; }
      .product-section .product-carousel .product-card .card-body {
        margin: -12px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
        overflow: hidden; }
        .product-section .product-carousel .product-card .card-body .status-badge {
          align-self: flex-start;
          background-color: #ebf6e6;
          color: var(--text-dark);
          font-weight: 400;
          padding: 4px 12px 4px 8px;
          font-size: 12px;
          border-radius: 100px; }
          .product-section .product-carousel .product-card .card-body .status-badge i {
            font-size: 14px; }
          .product-section .product-carousel .product-card .card-body .status-badge .bi-gavel::before {
            content: url("../images/icons/Vector_green.svg"); }
        .product-section .product-carousel .product-card .card-body .card-title {
          font-size: 14px;
          line-height: 1.4;
          height: 40px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          overflow: hidden;
          transition: max-height 0.4s ease-in-out; }
        .product-section .product-carousel .product-card .card-body .car-info {
          margin-top: auto;
          background-color: var(--bg-light);
          padding: 8px;
          border-radius: 8px; }
          .product-section .product-carousel .product-card .card-body .car-info small {
            font-size: 12px; }
          .product-section .product-carousel .product-card .card-body .car-info i {
            font-size: 14px; }
        .product-section .product-carousel .product-card .card-body .text-muted {
          font-weight: 500;
          font-size: 12px;
          line-height: 120%;
          color: #666666; }
        .product-section .product-carousel .product-card .card-body .text-info {
          color: #128ac5 !important; }
        .product-section .product-carousel .product-card .card-body .btn-primary {
          background-color: var(--secondary-color);
          border-color: var(--secondary-color);
          font-weight: 700;
          font-size: 14px;
          padding: 10px 24px;
          display: flex;
          align-items: center;
          justify-content: center;
          overflow: hidden; }
          .product-section .product-carousel .product-card .card-body .btn-primary i {
            margin-right: 8px;
            transition: all 0.4s ease-in-out; }
          .product-section .product-carousel .product-card .card-body .btn-primary span {
            transition: all 0.4s ease-in-out; }
          .product-section .product-carousel .product-card .card-body .btn-primary:hover {
            background-color: #0fd186;
            border-color: #0fd186; }
            .product-section .product-carousel .product-card .card-body .btn-primary:hover i {
              transform: translateX(147px); }
            .product-section .product-carousel .product-card .card-body .btn-primary:hover span {
              transform: translateX(-22px); }
      .product-section .product-carousel .product-card.is-expanded .card-title {
        max-height: var(--expanded-title-height) !important;
        -webkit-line-clamp: unset !important; }
      .product-section .product-carousel .product-card.is-expanded .card-img-top {
        height: var(--adjusted-img-height) !important; }
    .product-section .product-carousel .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #ffffff;
      border: none;
      box-shadow: 0 0 16px rgba(0, 0, 0, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer; }
      .product-section .product-carousel .carousel-btn.prev-btn {
        left: 0; }
      .product-section .product-carousel .carousel-btn.next-btn {
        right: 0; }
      .product-section .product-carousel .carousel-btn:hover {
        background-color: #f0f2f4; }
      .product-section .product-carousel .carousel-btn i {
        font-size: 16px; }
    @media (max-width: 575px) {
      .product-section .product-carousel .product-card {
        width: 100% !important; } }
  .product-section .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px; }
    .product-section .carousel-indicators .indicator {
      width: 24px;
      height: 1px;
      border-radius: 100px;
      background-color: rgba(0, 0, 0, 0.24);
      cursor: pointer; }
      .product-section .carousel-indicators .indicator.active {
        width: 64px;
        height: 3px;
        background-color: #16bcdc; }

.steps-section {
  background-color: #ffffff;
  padding: 80px 0; }
  .steps-section .steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 56px;
    margin-top: 40px;
    position: relative; }
    .steps-section .steps-container .step-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 24px;
      position: relative;
      z-index: 1; }
      .steps-section .steps-container .step-item::before {
        content: "";
        position: absolute;
        top: 50px;
        height: 1px;
        width: 120px;
        left: 190px;
        border-top: 1px dashed #bfbfbf;
        z-index: 0; }
      .steps-section .steps-container .step-item:last-child::before {
        display: none; }
      .steps-section .steps-container .step-item .step-number {
        font-size: 100px;
        font-weight: 900;
        font-style: italic;
        font-family: "SF Pro Display", sans-serif;
        color: #cae4f2;
        line-height: 1;
        position: relative; }
        .steps-section .steps-container .step-item .step-number::after {
          content: "";
          position: absolute;
          right: -25px;
          bottom: 14px;
          width: 40px;
          height: 40px;
          background: url("../images/01-Home-Page-V3/profile-tick.svg") no-repeat center;
          background-size: contain; }
      .steps-section .steps-container .step-item:nth-child(2) .step-number::after {
        background-image: url("../images/01-Home-Page-V3/group.svg"); }
      .steps-section .steps-container .step-item:nth-child(3) .step-number::after {
        background-image: url("../images/01-Home-Page-V3/monitor-mobbile.svg"); }
      .steps-section .steps-container .step-item:nth-child(4) .step-number::after {
        background: url("../images/01-Home-Page-V3/archive-tick.svg") no-repeat top left;
        background-size: cover; }
      .steps-section .steps-container .step-item:nth-child(5) .step-number::after {
        background-image: url("../images/01-Home-Page-V3/card-tick.svg"); }
      .steps-section .steps-container .step-item .step-title {
        font-size: 16px;
        font-weight: 800;
        line-height: 1.4; }
      .steps-section .steps-container .step-item .step-description {
        font-size: 14px;
        font-weight: 500;
        color: #666666;
        line-height: 1.4; }

@media (max-width: 768px) {
  .steps-section .steps-container .step-item::before {
    display: none; } }
.news-section {
  background-color: #ffffff;
  padding: 80px 0; }
  .news-section .news-carousel {
    position: relative;
    padding-top: 40px; }
  .news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; }
    .news-section .news-grid::-webkit-scrollbar {
      display: none; }
  .news-section .news-card {
    background: #ffffff;
    border: 1px solid #e7edf9;
    border-radius: 16px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease; }
    .news-section .news-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); }
      .news-section .news-card:hover .news-content .news-details-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(0); }
    .news-section .news-card .news-image {
      position: relative;
      height: 221px;
      overflow: hidden; }
      .news-section .news-card .news-image img {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .news-section .news-card .news-image .news-date {
        position: relative;
        bottom: 25px;
        left: 20px;
        font-size: 14px;
        color: #757575; }
    .news-section .news-card .news-content {
      padding: 24px; }
      .news-section .news-card .news-content .news-title {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.4;
        margin-bottom: 16px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .news-section .news-card .news-content .news-description {
        font-size: 14px;
        font-weight: 400;
        color: #666666;
        line-height: 1.4;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden; }
      .news-section .news-card .news-content .news-details-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 16px;
        font-size: 14px;
        font-weight: 700;
        color: #2e2e2e;
        text-decoration: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, color 0.3s ease; }
        .news-section .news-card .news-content .news-details-btn i {
          display: inline-block;
          transform: rotate(-40deg); }
        .news-section .news-card .news-content .news-details-btn:hover {
          color: #16bcdc; }
          .news-section .news-card .news-content .news-details-btn:hover i {
            transition: transform 0.3s ease;
            transform: translateX(4px); }
  .news-section .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10; }
    .news-section .carousel-btn.next-btn {
      right: 0; }
    .news-section .carousel-btn:hover {
      background-color: #f0f2f4; }
  .news-section .view-all {
    margin-left: auto;
    color: #2e2e2e;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    gap: 4px; }
    .news-section .view-all:hover {
      color: #16bcdc; }
      .news-section .view-all:hover i {
        transition: transform 0.3s ease;
        transform: translateX(4px); }
    .news-section .view-all i {
      display: inline-block;
      transform: rotate(-40deg); }

.contact-section {
  background-color: #f0f2f4;
  background-repeat: no-repeat;
  padding: 80px 0;
  border-radius: 40px;
  margin: 0 48px;
  max-width: 1824px;
  position: relative; }
  .contact-section .container {
    max-width: 100%;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0; }
  .contact-section > .container > .row {
    padding-left: 70px;
    padding-right: 178px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 0; }
  .contact-section::before {
    content: "";
    position: absolute;
    background-size: cover;
    opacity: 20%; }
  .contact-section::before {
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background-image: url("https://c.animaapp.com/mgrlrs425bzV8m/img/home-5-bg-1-1.png");
    z-index: 0; }
  .contact-section .contact-info {
    background: linear-gradient(to bottom right, #ffffffcc, #ffffff1a);
    padding: 80px 80px 50px 80px;
    border-radius: 24px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    margin-right: 80px; }
    .contact-section .contact-info .contact-title {
      font-size: 40px;
      font-weight: 600;
      margin-bottom: 40px; }
    .contact-section .contact-info .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 24px;
      margin-bottom: 40px; }
      .contact-section .contact-info .contact-item .contact-icon {
        width: 44px;
        height: 44px;
        background-color: #0fd186;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0; }
        .contact-section .contact-info .contact-item .contact-icon i {
          color: #ffffff;
          font-size: 24px; }
      .contact-section .contact-info .contact-item .contact-text {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding-right: 73px; }
        .contact-section .contact-info .contact-item .contact-text .contact-label {
          font-size: 16px;
          font-weight: 600;
          color: #949494; }
        .contact-section .contact-info .contact-item .contact-text .contact-value {
          font-size: 16px;
          font-weight: 600;
          color: #2e2e2e; }
  .contact-section .contact-form {
    margin-left: -25px; }
    .contact-section .contact-form .form-control,
    .contact-section .contact-form textarea {
      width: 480px;
      background-color: #ffffff;
      border: 2px solid #e7edf9;
      border-radius: 12px;
      padding: 20px 24px;
      font-size: 16px; }
      .contact-section .contact-form .form-control::placeholder,
      .contact-section .contact-form textarea::placeholder {
        color: #949494; }
      .contact-section .contact-form .form-control:focus,
      .contact-section .contact-form textarea:focus {
        border-color: #16bcdc;
        box-shadow: none; }
    .contact-section .contact-form textarea {
      resize: none; }
    .contact-section .contact-form .btn-primary {
      width: 480px !important;
      background-color: #16bcdc;
      border: none;
      padding: 16px 40px;
      border-radius: 100px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px; }
      .contact-section .contact-form .btn-primary i {
        transition: all 0.4s ease-in-out; }
      .contact-section .contact-form .btn-primary span {
        transition: all 0.4s ease-in-out; }
      .contact-section .contact-form .btn-primary:hover {
        background-color: #0fd186; }
        .contact-section .contact-form .btn-primary:hover i {
          transform: translateX(110px); }
        .contact-section .contact-form .btn-primary:hover span {
          transform: translateX(-30px); }
  .contact-section .col-md-5 {
    position: absolute;
    width: 600px;
    left: 66%;
    bottom: 30%;
    height: 600px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.15);
    animation: bobbing 1.5s ease-in-out infinite alternate; }
    .contact-section .col-md-5 .img-fluid {
      width: auto;
      position: absolute;
      height: auto;
      left: 90px;
      bottom: -10px;
      z-index: 2; }
    .contact-section .col-md-5 .png-tree {
      bottom: -8px;
      position: absolute;
      z-index: 1; }
@keyframes bobbing {
  from {
    transform: translateY(100px); }
  to {
    transform: translateY(10px); } }
.partners-section {
  background-color: #ffffff;
  padding: 50px 0 64px;
  overflow: hidden; }
  .partners-section .partners-slider {
    margin-top: 40px;
    overflow: hidden; }
    .partners-section .partners-slider .partners-track {
      display: flex;
      gap: 24px;
      animation: scroll 30s linear infinite; }
      .partners-section .partners-slider .partners-track img {
        width: 162px;
        height: 110px;
        object-fit: contain;
        padding: 12px 24px;
        border-radius: 12px;
        background: #ffffff; }

@keyframes scroll {
  0% {
    transform: translateX(0); }
  100% {
    transform: translateX(-50%); } }
.footer {
  background-image: url("../images/01-Home-Page-V3/bg_light.png");
  position: relative;
  margin: 0 auto;
  height: 587px;
  max-width: 1824px;
  width: calc(100% - 76px);
  border-radius: 38px;
  background-color: white !important;
  bottom: 43px;
  /* === KHỐI RESPONSIVE CHO MOBILE === */ }
  .footer::before, .footer::after {
    content: "";
    position: absolute;
    background-size: cover;
    opacity: 20%; }
  .footer::before {
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background-image: url("https://c.animaapp.com/mgrlrs425bzV8m/img/home-5-bg-1-1.png"); }
  .footer::after {
    bottom: 0;
    right: 0;
    width: 35%;
    height: 90%;
    background-image: url("https://c.animaapp.com/mgrlrs425bzV8m/img/home-5-bg-1-1.png"); }
  .footer h5 {
    font-size: 18px;
    font-weight: 800;
    line-height: 140%;
    color: #2e2e2e; }
  .footer p,
  .footer a {
    position: relative;
    font-size: 16px;
    font-weight: 500;
    line-height: 160%;
    color: #757575 !important;
    z-index: 2; }
  .footer .text-center {
    margin: 18px; }
  .footer .payment-icons {
    position: relative;
    bottom: 80px;
    right: 115px;
    z-index: 2; }
  .footer .social-icons a {
    position: relative;
    bottom: 80px;
    color: rgba(255, 255, 255, 0.6);
    right: 250px;
    margin-right: 16px;
    font-size: 20px;
    transition: color 0.3s; }
    .footer .social-icons a:hover {
      color: #0dcaf0 !important; }
  .footer p.text-muted {
    color: #757575;
    font-size: 0.9rem; }
  .footer .payment-icons img {
    margin-right: 8px;
    cursor: pointer; }
  @media (max-width: 768px) {
    .footer {
      text-align: left;
      border-radius: 0;
      width: 100%;
      height: auto;
      margin: 0;
      padding: 2rem 1rem;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat; }
      .footer .col-md-4,
      .footer .col-md-3,
      .footer .col-md-2 {
        margin-bottom: 2rem; }
      .footer .d-flex.align-items-center {
        justify-content: left !important; }
      .footer .social-icons {
        position: static;
        bottom: auto;
        right: auto;
        margin-bottom: 1.5rem; }
      .footer .social-icons a {
        position: static;
        /* Reset vị trí */
        bottom: auto;
        right: auto;
        margin: 0 10px; }
      .footer .payment-icons {
        position: static;
        bottom: auto;
        right: auto;
        justify-content: center;
        flex-wrap: wrap; }
      .footer .payment-icons img {
        margin: 5px; } }

.phone-call {
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 50%;
  line-height: 48px;
  background-color: #b00020;
  /* Background of the button */
  display: flex;
  justify-content: center;
  align-items: center;
  left: 16px;
  bottom: 150px;
  cursor: pointer;
  position: fixed;
  z-index: 10;
  transition: transform 0.3s ease-in-out; }
  .phone-call:hover {
    transform: scale(1.1);
    /* Slight scaling on hover */ }
  .phone-call:before {
    content: "";
    position: absolute;
    background: radial-gradient(60.42% 60.42% at 50% 50%, rgba(176, 0, 32, 0.72) 0%, rgba(176, 0, 32, 0) 100%);
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    border-radius: 50%;
    animation: pulse 1s linear infinite; }
  .phone-call .icon-phone-call {
    width: 24px;
    height: 24px;
    background: url("../images/icons/phone-call.svg") no-repeat center center;
    background-size: contain;
    position: relative;
    z-index: 1;
    animation: changeIcon 1s linear infinite;
    animation-delay: 0.3s; }

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1; }
  100% {
    transform: scale(1.4);
    opacity: 0; } }
/* Keyframes for icon change (optional effect) */
@keyframes changeIcon {
  0%,
    100% {
    transform: scale(1); }
  50% {
    transform: scale(1.2);
    /* Slight zoom effect */ } }
.connect-social {
  cursor: pointer;
  right: 0;
  bottom: 160px;
  position: fixed; }
  .connect-social .cicon-mess {
    margin-top: -30px; }
  .connect-social .cicon-logo {
    margin-left: 10px; }

.scroll {
  background: #16bcdc;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  position: fixed;
  cursor: pointer;
  right: 30px;
  bottom: 130px; }
  .scroll .icon-scroll {
    width: 24px;
    height: 24px;
    display: block;
    background: url(../images/icons/icon-chevron-up.svg);
    margin: 12px auto; }

@media (max-width: 1400px) {
  .hero-section .image-card {
    width: 132%;
    right: 95px;
    top: 65px; }
    .hero-section .image-card img {
      border-radius: 0.5rem; }
  .hero-section .img-cars {
    width: 80%;
    bottom: 10%;
    right: 30px; }
  .hero-section .info-card-bottom-right {
    display: none; }
  .hero-section .info-card-top-right {
    display: none; } }
@media (max-width: 767.98px) {
  .product-section {
    padding: 24px 0;
    margin: 24px 0;
    border-radius: 0; }
    .product-section .section-header {
      flex-direction: column;
      align-items: flex-start;
      gap: 16px;
      padding-left: 16px;
      padding-right: 16px; }
      .product-section .section-header .section-title {
        font-size: 20px; }
      .product-section .section-header .filter-tabs {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-bottom: 0; }
        .product-section .section-header .filter-tabs .btn-tab {
          width: 100%;
          margin-bottom: 0.5rem;
          font-size: 13px;
          padding: 8px 16px; }
          .product-section .section-header .filter-tabs .btn-tab:last-child {
            margin-bottom: 0; }
      .product-section .section-header .view-all {
        margin-left: 0;
        align-self: flex-end;
        font-size: 13px; }
    .product-section .product-carousel {
      padding: 0; }
      .product-section .product-carousel .product-grid .row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin-left: 0;
        margin-right: 0;
        padding-left: 16px;
        padding-right: 16px;
        padding-bottom: 16px;
        --bs-gutter-x: 12px; }
      .product-section .product-carousel .product-grid .col-md-2 {
        flex: 0 0 auto;
        width: auto;
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        padding-right: calc(var(--bs-gutter-x) * 0.5); }
      .product-section .product-carousel .product-card .card-title {
        font-size: 13px;
        min-height: 40px; }
      .product-section .product-carousel .product-card .car-info small,
      .product-section .product-carousel .product-card .row.mb-3 small {
        font-size: 11px; }
      .product-section .product-carousel .product-card .btn-primary {
        font-size: 13px;
        padding: 8px 16px; }
      .product-section .product-carousel .carousel-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        background-color: white;
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
        cursor: pointer;
        transition: opacity 0.3s, background-color 0.3s; }
        .product-section .product-carousel .carousel-btn:hover {
          background-color: #f8f9fa; }
        .product-section .product-carousel .carousel-btn.prev-btn {
          left: 0px; }
        .product-section .product-carousel .carousel-btn.next-btn {
          right: 0px; }
        .product-section .product-carousel .carousel-btn.hidden {
          opacity: 0;
          pointer-events: none; }
      .product-section .product-carousel .carousel-indicators {
        display: none; } }
@media (max-width: 991px) {
  .header {
    top: 0; }
    .header .container-fluid {
      padding-left: 0 !important;
      padding-right: 0 !important; }
      .header .container-fluid .navbar {
        border-radius: 0; }
        .header .container-fluid .navbar .navbar-nav .nav-item .nav-link:before {
          display: none; }
        .header .container-fluid .navbar .navbar-nav .nav-item .dropdown-menu {
          position: absolute; }
      .header .container-fluid .header-divider {
        display: none; }
      .header .container-fluid .btn-post-auction {
        width: 100%;
        justify-content: center;
        margin-top: 1rem; }

  .hero-section .hero-title {
    font-size: 32px; }
  .hero-section .hero-subtitle {
    font-size: 20px; }
  .hero-section .search-box .form-select,
  .hero-section .search-box .search-input-wrapper {
    flex: 1 1 100%; }
  .hero-section .img-cars {
    display: none; }

  .steps-section .steps-container {
    grid-template-columns: 1fr;
    gap: 40px; }
    .steps-section .steps-container::before {
      display: none; }

  .contact-section {
    background-image: none; }
    .contact-section > .container > .row {
      padding-left: 16px;
      padding-right: 16px; }
    .contact-section .contact-info {
      padding: 40px;
      margin-bottom: 40px;
      margin-right: 0; }
      .contact-section .contact-info .contact-title {
        font-size: 32px; }
    .contact-section .col-lg-7 .row {
      flex-direction: column-reverse; }
    .contact-section .col-lg-7 .col-md-5 {
      display: none; }

  .product-carousel,
  .news-carousel {
    padding: 0 20px; } }
@media (max-width: 767px) {
  .section-title {
    font-size: 20px; }

  .product-section,
  .contact-section {
    border-radius: 20px;
    margin: 24px 16px; }
    .product-section > .container > .row,
    .contact-section > .container > .row {
      padding-left: 0;
      padding-right: 0; }

  .brand-section .brand-grid {
    grid-template-columns: repeat(3, 1fr); }

  .contact-section .contact-info {
    padding: 24px; }
    .contact-section .contact-info .contact-title {
      font-size: 28px; }
    .contact-section .contact-info .contact-item {
      margin-bottom: 24px;
      gap: 16px; }
    .contact-section .contact-info .contact-icon {
      width: 40px;
      height: 40px; }
      .contact-section .contact-info .contact-icon i {
        font-size: 20px; }
  .contact-section .contact-form {
    margin-left: 0; }
    .contact-section .contact-form .form-control,
    .contact-section .contact-form textarea {
      width: 100%; }
    .contact-section .contact-form .btn-primary {
      width: 100% !important; }
  .contact-section .col-lg-7 .col-md-5 {
    display: none; }

  .brand-section .brand-grid {
    grid-template-columns: repeat(3, 1fr); } }

/*# sourceMappingURL=01-Home-Page-V3.css.map */
