@charset "UTF-8";
body {
  margin: 0;
  font-family: "Lato", sans-serif;
  color: #103558;
}

.top-bar {
  background-color: #203558;
  color: #ffffff;
  padding: 4px 0;
  font-size: 13px;
}
.top-bar .top-bar-inner {
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.top-bar .top-bar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-bar .top-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background-color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #203558;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.top-bar .top-icon:hover {
  transform: translateY(-2px);
}
.top-bar .top-icon--solid i {
  color: #ffffff;
}
.top-bar .top-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
}
.top-bar .top-contact .top-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar .top-contact span {
  white-space: nowrap;
}
.top-bar .top-contact i {
  color: #ffffff;
}

.main-navbar {
  background-color: #ffffff;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
  padding: 14px 0;
}
@media screen and (max-width: 767px) {
  .main-navbar {
    padding: 14px 10px;
  }
}
.main-navbar .main-navbar-inner {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.main-navbar .navbar-brand img {
  max-width: 130px;
}
.main-navbar .navbar-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  margin-left: auto;
  list-style: none;
  flex: 0 0 auto;
}
.main-navbar .nav-item {
  position: relative;
}
.main-navbar .nav-link {
  font-size: 14px;
  color: #103558;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  transition: color 0.2s ease;
}
.main-navbar .nav-link:hover, .main-navbar .nav-link.active {
  color: #203558;
}
.main-navbar .mobile-nav-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (min-width: 991px) {
  .main-navbar .mobile-nav-buttons {
    display: none !important;
  }
}
.main-navbar .mobile-nav-buttons .navbar-toggler {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.main-navbar .mobile-nav-buttons .navbar-toggler:focus {
  box-shadow: none;
}
.main-navbar .mobile-nav-buttons .navbar-toggler:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}
.main-navbar .mobile-nav-buttons .navbar-toggler:active {
  transform: scale(0.95);
}
.main-navbar .mobile-nav-buttons .navbar-toggler .navbar-toggler-icon {
  width: 20px;
  height: 20px;
}
.main-navbar .mobile-call-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: none;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.main-navbar .mobile-call-btn i {
  color: #103558;
  font-size: 18px;
}
.main-navbar .mobile-call-btn:hover {
  background-color: #e0e0e0;
  transform: scale(1.05);
}
.main-navbar .mobile-call-btn:hover i {
  color: #203558;
}
.main-navbar .mobile-call-btn:active {
  transform: scale(0.95);
}
.main-navbar .navbar-toggler {
  border-color: rgba(0, 0, 0, 0.15);
  padding: 6px 10px;
}
.main-navbar .navbar-toggler:focus {
  box-shadow: none;
}
.main-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23103558' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.main-navbar .nav-extra {
  margin-left: 14px;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .main-navbar .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 230px;
    padding: 8px 0;
    margin: 0;
    background-color: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  .main-navbar .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .main-navbar .dropdown-menu .dropdown-item {
    padding: 10px 20px;
    font-size: 14px;
    color: #103558;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-navbar .dropdown-menu .dropdown-item:hover {
    background-color: #f6f8fb;
  }
  .main-navbar .dropdown-menu .dropend {
    position: relative;
  }
  .main-navbar .dropdown-menu .dropend .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .main-navbar .dropdown-menu .dropend .dropdown-toggle::after {
    margin-left: auto;
    margin-right: 0;
    float: none;
    border-top: 0.3em solid transparent;
    border-right: 0;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    vertical-align: middle;
  }
  .main-navbar .dropdown-menu .dropend .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-90deg);
  }
  .main-navbar .dropdown-menu .dropend .dropdown-menu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-top: 0;
    margin-left: 4px;
    min-width: 200px;
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }
  .main-navbar .dropdown-menu .dropend .dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
  .main-navbar .dropdown-menu .dropend:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.language-btn-group .language-btn {
  font-size: 14px;
  border-radius: 8px;
  border-color: #d6dae6;
  color: #103558;
  padding: 6px 18px;
  background-color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .language-btn-group .language-btn {
    display: none;
  }
}
.language-btn-group .language-btn:hover {
  background-color: #f3f5f9;
  border-color: #c5c9d3;
}

.search-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #103558;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
  border: none;
}

.sell-btn {
  font-size: 13px;
  padding: 8px 26px;
  border-radius: 8px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  text-decoration: none;
  letter-spacing: 0.35px;
  text-transform: uppercase;
  font-weight: 600;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.sell-btn:hover {
  background-color: #17436c;
}

.browse-bar {
  background-color: rgba(217, 217, 217, 0.5019607843);
  padding: 16px 0;
  border-bottom: 1px solid #e7ecf5;
}
.browse-bar .browse-bar-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}
.browse-bar .browse-bar-content:has(.browse-bar-vehicle-title) {
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.browse-bar .browse-bar-title {
  font-size: 34px;
  font-weight: 800;
  color: #050B20;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .browse-bar .browse-bar-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .browse-bar .browse-bar-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 575px) {
  .browse-bar .browse-bar-title {
    font-size: 16px;
  }
}
.browse-bar .browse-bar-vehicle-title {
  font-size: 36px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 991px) {
  .browse-bar .browse-bar-vehicle-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .browse-bar .browse-bar-vehicle-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .browse-bar .browse-bar-vehicle-title {
    font-size: 20px;
  }
}
.browse-bar .browse-bar-info {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 32px;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .browse-bar .browse-bar-info {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .browse-bar .browse-bar-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}
.browse-bar .browse-bar-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .browse-bar .browse-bar-info-item {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  .browse-bar .browse-bar-info-item {
    font-size: 12px;
  }
}
.browse-bar .browse-bar-label {
  font-weight: 500;
}
.browse-bar .browse-bar-value {
  font-weight: 400;
}
.browse-bar .browse-bar-icon {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .browse-bar .browse-bar-icon {
    font-size: 14px;
  }
}
.browse-bar .browse-bar-icon-heart {
  color: #ff0000;
}
.browse-bar .browse-bar-icon-eye {
  color: #000000;
}
.browse-bar .browse-bar-text {
  font-weight: 400;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .browse-bar .browse-bar-text {
    white-space: normal;
  }
}
.browse-bar .request-callback-btn {
  padding: 12px 24px;
  background-color: #ffffff;
  color: #050B20;
  border: 1px solid #050B20;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.browse-bar .request-callback-btn:hover {
  background-color: #f6f8fb;
  border-color: #0b2a52;
  color: #0b2a52;
}
@media screen and (max-width: 767px) {
  .browse-bar .request-callback-btn {
    padding: 8px 20px;
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  .browse-bar .request-callback-btn {
    padding: 8px 16px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .browse-bar {
    padding: 12px 0;
  }
  .browse-bar .browse-bar-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .browse-bar .browse-bar-content:has(.browse-bar-vehicle-title) {
    align-items: start;
  }
  .browse-bar .request-callback-btn {
    width: 100%;
    text-align: center;
  }
}

.car-detail-section {
  padding: 50px 0 80px;
  background-color: #ffffff;
}
.car-detail-section .row {
  align-items: flex-start;
}
.car-detail-section .breadcrumb-filter-row {
  margin-bottom: 24px;
  padding-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .car-detail-section .breadcrumb-filter-row {
    margin-bottom: 20px;
    padding-bottom: 12px;
  }
}
.car-detail-section .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #000000;
  font-family: "Lato", sans-serif;
}
.car-detail-section .breadcrumb-nav a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}
.car-detail-section .breadcrumb-nav a:hover {
  color: #103558;
  opacity: 0.8;
}
.car-detail-section .breadcrumb-nav .breadcrumb-separator {
  color: #000000;
  font-weight: 400;
  margin: 0 2px;
  opacity: 0.6;
}
.car-detail-section .breadcrumb-nav span:not(.breadcrumb-separator) {
  color: #000000;
  font-weight: 500;
}
.car-detail-section .car-detail-images .car-main-image {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 0;
  overflow: hidden;
  background-color: #f6f8fb;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.car-detail-section .car-detail-images .car-main-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper {
  position: relative;
  margin-top: 20px;
  width: 100%;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .car-gallery-slider {
  position: relative;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .car-gallery-slider::-webkit-scrollbar {
  display: none;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .car-gallery-slider.tns {
  display: block;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .car-gallery-slider:not(.tns) .car-thumbnail-item {
  flex: 0 0 calc(25% - 9px);
  min-width: calc(25% - 9px);
  max-width: calc(25% - 9px);
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .tns-outer {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .tns-inner {
  width: 100%;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .tns-item {
  padding: 0;
  box-sizing: border-box;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .car-thumbnail-item {
  border-radius: 0;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
  background-color: #f6f8fb;
  height: 120px;
  display: block;
  border: 2px solid transparent;
  position: relative;
  width: 100%;
  flex-shrink: 0;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .car-thumbnail-item.active {
  border-color: #0b2a52;
  border-width: 2px;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .car-thumbnail-item:hover {
  transform: scale(1.02);
  opacity: 0.9;
}
.car-detail-section .car-detail-images .car-gallery-slider-wrapper .car-thumbnail-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.car-detail-section .car-detail-info {
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.car-detail-section .car-detail-info .car-price-card {
  background-color: rgba(217, 217, 217, 0.5019607843);
  border-radius: 14px;
  padding: 30px;
}
.car-detail-section .car-detail-info .car-price-card .car-action-buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 22px;
}
.car-detail-section .car-detail-info .car-price-card .car-action-buttons .btn-call-us,
.car-detail-section .car-detail-info .car-price-card .car-action-buttons .btn-whatsapp {
  flex: 1;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.car-detail-section .car-detail-info .car-price-card .car-action-buttons .btn-call-us:hover,
.car-detail-section .car-detail-info .car-price-card .car-action-buttons .btn-whatsapp:hover {
  background-color: #17436c;
}
.car-detail-section .car-detail-info .car-price-card .car-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.car-detail-section .car-detail-info .car-price-card .car-price-row .car-price-title {
  font-size: 22px;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}
.car-detail-section .car-detail-info .car-price-card .car-price-row .car-price-amount {
  font-size: 20px;
  font-weight: 600;
  color: #111111;
}
.car-detail-section .car-detail-info .car-price-card .car-price-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.6509803922);
  margin: 12px 0;
  width: 100%;
}
.car-detail-section .car-detail-info .car-price-card .car-export-options {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  color: #000;
  margin-bottom: 16px;
}
.car-detail-section .car-detail-info .car-price-card .car-export-options .export-label {
  font-weight: 400;
}
.car-detail-section .car-detail-info .car-price-card .car-export-options .export-value {
  font-weight: 400;
  text-align: right;
}
.car-detail-section .car-detail-info .car-price-card .btn-book-now {
  width: 100%;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.car-detail-section .car-detail-info .car-price-card .btn-book-now:hover {
  background-color: #17436c;
}
.car-detail-section .car-detail-info .car-action-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.car-detail-section .car-detail-info .car-action-buttons .btn-call-us,
.car-detail-section .car-detail-info .car-action-buttons .btn-whatsapp {
  flex: 1;
  padding: 12px 24px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-transform: none;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-detail-section .car-detail-info .car-action-buttons .btn-call-us:hover,
.car-detail-section .car-detail-info .car-action-buttons .btn-whatsapp:hover {
  background-color: #17436c;
}
.car-detail-section .car-detail-info .btn-book-now {
  width: 100%;
  padding: 14px 24px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-transform: none;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-detail-section .car-detail-info .btn-book-now:hover {
  background-color: #17436c;
}
.car-detail-section .car-detail-info .car-price-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}
.car-detail-section .car-detail-info .car-price-section .car-price-title {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.car-detail-section .car-detail-info .car-price-section .car-price-amount {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
  line-height: 1.2;
}
.car-detail-section .car-detail-info .car-price-section .car-export-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #000000;
  margin-top: 8px;
}
.car-detail-section .car-detail-info .car-price-section .car-export-options .export-label {
  font-weight: 500;
}
.car-detail-section .car-detail-info .car-price-section .car-export-options .export-value {
  font-weight: 400;
}
.car-detail-section .car-detail-info .car-characteristics {
  margin-top: 32px;
  margin-bottom: 32px;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-title {
  font-size: 24px;
  font-weight: 900;
  color: #000000;
  margin: 0 0 24px;
  text-transform: uppercase;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #F0F0F0;
  border: 1px solid #000000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table tr {
  background-color: #F0F0F0;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table td {
  border-right: 1px solid #000000;
  background-color: #F0F0F0;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table td:last-child {
  border-right: none;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table td:not(:last-child) {
  border-bottom: 1px solid #000000;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table tr:not(:last-child) td {
  border-bottom: 1px solid #000000;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table tr:first-child td:first-child {
  border-top-left-radius: 8px;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table tr:first-child td:last-child {
  border-top-right-radius: 8px;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table tr:last-child td:first-child {
  border-bottom-left-radius: 8px;
  border-bottom: none;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table tr:last-child td:last-child {
  border-bottom-right-radius: 8px;
  border-bottom: none;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table .char-label {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  width: 50%;
  vertical-align: middle;
  background-color: #F0F0F0;
  text-align: left;
}
.car-detail-section .car-detail-info .car-characteristics .car-characteristics-table .char-value {
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  text-align: right;
  vertical-align: middle;
  background-color: #F0F0F0;
}
.car-detail-section .car-description-section {
  margin-top: 40px;
  padding: 32px 28px 36px;
  border-radius: 18px;
  background-color: rgba(217, 217, 217, 0.4);
}
.car-detail-section .car-description-section .car-description-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 28px;
}
.car-detail-section .car-description-section .car-description-header .car-description-title {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.car-detail-section .car-description-section .car-description-header .btn-about-car {
  padding: 12px 28px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  text-transform: none;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-detail-section .car-description-section .car-description-header .btn-about-car:hover {
  background-color: #17436c;
}
.car-detail-section .car-description-section .car-description-content .payment-plans {
  margin-bottom: 50px;
}
.car-detail-section .car-description-section .car-description-content .payment-plans .payment-plans-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 24px;
}
.car-detail-section .car-description-section .car-description-content .payment-plans .payment-plans-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.car-detail-section .car-description-section .car-description-content .payment-plans .payment-plans-list li {
  font-size: 15px;
  color: #000000;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  line-height: 1.8;
}
.car-detail-section .car-description-section .car-description-content .payment-plans .payment-plans-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #0b2a52;
  font-weight: 700;
  font-size: 20px;
}
.car-detail-section .car-description-section .car-description-content .payment-plans .payment-disclaimer {
  font-size: 13px;
  color: rgba(0, 0, 0, 0.65);
  font-style: italic;
  margin: 0;
  padding-left: 10px;
}
.car-detail-section .car-description-section .car-description-content .car-full-description {
  margin-bottom: 50px;
}
.car-detail-section .car-description-section .car-description-content .car-full-description p {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 24px;
}
.car-detail-section .car-description-section .car-description-content .car-full-description p:last-of-type {
  margin-bottom: 0;
}
.car-detail-section .car-description-section .car-description-content .car-full-description .features-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 32px 0 20px;
}
.car-detail-section .car-description-section .car-description-content .car-full-description .features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}
.car-detail-section .car-description-section .car-description-content .car-full-description .features-list li {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}
.car-detail-section .car-description-section .car-description-content .car-full-description .features-list li::before {
  content: "•";
  position: absolute;
  left: 10px;
  color: #0b2a52;
  font-weight: 700;
  font-size: 20px;
}
.car-detail-section .car-description-section .car-description-content .car-full-description .features-list li strong {
  color: #000000;
  font-weight: 600;
}
.car-detail-section .car-description-section .car-description-content .what-we-do {
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
  margin-top: 40px;
}
.car-detail-section .car-description-section .car-description-content .what-we-do .what-we-do-title {
  font-size: 18px;
  font-weight: 600;
  color: #000000;
  margin: 0 0 20px;
}
.car-detail-section .car-description-section .car-description-content .what-we-do p {
  font-size: 15px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .car-detail-section {
    padding: 30px 0 50px;
  }
  .car-detail-section .car-detail-info {
    margin-top: 32px;
    padding-left: 0;
  }
  .car-detail-section .car-detail-info .car-price-section .car-price-amount {
    font-size: 32px;
  }
  .car-detail-section .car-description-section {
    margin-top: 50px;
    padding-top: 30px;
  }
  .car-detail-section .car-description-section .car-description-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .car-detail-section .car-description-section .car-description-header .btn-about-car {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .car-detail-section {
    padding: 24px 0 40px;
  }
  .car-detail-section .car-detail-images .car-main-image {
    height: 350px;
  }
  .car-detail-section .car-detail-images .car-gallery-slider-wrapper .car-thumbnail-item {
    height: 100px;
  }
  .car-detail-section .car-detail-info {
    padding-left: 0;
  }
  .car-detail-section .car-detail-info .car-price-card {
    padding: 18px 16px 16px;
  }
  .car-detail-section .car-detail-info .car-action-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .car-detail-section .car-detail-info .car-action-buttons .btn-call-us,
  .car-detail-section .car-detail-info .car-action-buttons .btn-whatsapp {
    width: 100%;
  }
  .car-detail-section .car-detail-info .car-price-section .car-price-amount {
    font-size: 28px;
  }
  .car-detail-section .car-detail-info .car-price-section .car-export-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .car-detail-section .car-detail-info .car-characteristics .car-characteristics-table .char-label,
  .car-detail-section .car-detail-info .car-characteristics .car-characteristics-table .char-value {
    font-size: 13px;
    padding: 10px;
  }
  .car-detail-section .car-description-section {
    margin-top: 40px;
    padding-top: 24px;
  }
  .car-detail-section .car-description-section .car-description-header .car-description-title {
    font-size: 20px;
  }
  .car-detail-section .car-description-section .car-description-content .payment-plans .payment-plans-list li {
    font-size: 14px;
  }
  .car-detail-section .car-description-section .car-description-content .car-full-description p {
    font-size: 14px;
  }
  .car-detail-section .car-description-section .car-description-content .car-full-description .features-list li {
    font-size: 14px;
  }
  .car-detail-section .car-description-section .car-description-content .what-we-do p {
    font-size: 14px;
  }
}

.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section .hero-slider {
  width: 100%;
}
.hero-section .hero-slide {
  position: relative;
  display: block;
}
.hero-section .hero-slide__image {
  width: 100%;
  height: 700px;
  display: block;
}
@media screen and (max-width: 1200px) {
  .hero-section .hero-slide__image {
    height: 570px;
  }
}
@media screen and (max-width: 991px) {
  .hero-section .hero-slide__image {
    height: 470px;
  }
}
@media screen and (max-width: 767px) {
  .hero-section .hero-slide__image {
    height: 370px;
  }
}
@media screen and (max-width: 575px) {
  .hero-section .hero-slide__image {
    height: 320px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    display: block;
  }
}
.hero-section .hero-slide .container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  z-index: 2;
}
.hero-section .hero-content {
  text-align: center;
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.hero-section .hero-title {
  font-size: 64px;
  font-weight: 700;
  color: #000;
  margin: 0 auto;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  margin-top: 130px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .hero-section .hero-title {
    font-size: 47px;
  }
}
@media screen and (max-width: 991px) {
  .hero-section .hero-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .hero-section .hero-title {
    font-size: 30px;
    margin-top: 80px;
  }
}
@media screen and (max-width: 575px) {
  .hero-section .hero-title {
    font-size: 23px;
    margin-top: 100px;
  }
}
.hero-section .hero-btn {
  display: inline-block;
  padding: 16px 48px;
  background-color: #ffffff;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}
.hero-section .hero-btn:hover {
  background-color: #17436c;
  color: #ffffff;
}
@media screen and (max-width: 1200px) {
  .hero-section .hero-btn {
    margin-bottom: 70px;
  }
}
@media screen and (max-width: 991px) {
  .hero-section .hero-btn {
    padding: 12px 38px;
    font-size: 14px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 767px) {
  .hero-section .hero-btn {
    padding: 10px 32px;
    font-size: 13px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 575px) {
  .hero-section .hero-btn {
    padding: 8px 28px;
  }
}

.hero-section .tns-controls,
.hero-section .tns-nav {
  display: none !important;
}

.car-search-filter-section {
  padding: 30px 0;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.car-search-filter-section .container {
  width: 100%;
  max-width: 1200px;
}
.car-search-filter-section .search-filter-bar {
  display: flex;
  flex-direction: column;
  gap: 0;
  background-color: #CECECE;
  border-radius: 16px;
  padding: 16px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 991px) {
  .car-search-filter-section .search-filter-bar {
    border-radius: 12px;
    padding: 20px;
    gap: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 767px) {
  .car-search-filter-section .search-filter-bar {
    border-radius: 12px;
    padding: 12px;
    gap: 12px;
  }
}
.car-search-filter-section .filter-row {
  display: grid;
  gap: 12px;
  align-items: center;
  padding: 0;
}
.car-search-filter-section .filter-row.filter-row-top {
  grid-template-columns: repeat(4, 1fr) minmax(140px, auto) minmax(140px, auto);
  order: 1;
}
@media screen and (max-width: 1200px) {
  .car-search-filter-section .filter-row.filter-row-top {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .car-search-filter-section .filter-row.filter-row-top {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    row-gap: 20px;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-dropdown-wrapper:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-dropdown-wrapper:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-dropdown-wrapper:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-dropdown-wrapper:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-option-btn {
    grid-column: 1;
    grid-row: 3;
    justify-content: flex-start;
    width: auto;
  }
  .car-search-filter-section .filter-row.filter-row-top .find-car-btn {
    grid-column: 2;
    grid-row: 3;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .car-search-filter-section .filter-row.filter-row-top {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: row;
    gap: 16px;
    row-gap: 20px;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-dropdown-wrapper:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-dropdown-wrapper:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-dropdown-wrapper:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-dropdown-wrapper:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
  .car-search-filter-section .filter-row.filter-row-top .find-car-btn {
    grid-column: 2;
    grid-row: auto;
    width: 100%;
  }
  .car-search-filter-section .filter-row.filter-row-top .filter-option-btn {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }
}
.car-search-filter-section .filter-row.filter-row-bottom {
  grid-template-columns: repeat(4, 1fr) minmax(140px, auto) minmax(140px, auto);
  border-top: 1px solid transparent;
  padding-top: 0;
  margin-top: 0;
  align-items: center;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out, visibility 0.3s ease-in-out, padding-top 0.3s ease-in-out, margin-top 0.3s ease-in-out, border-top-color 0.3s ease-in-out;
  order: 2;
}
.car-search-filter-section .filter-row.filter-row-bottom .filter-spacer {
  display: block;
}
@media screen and (max-width: 1200px) {
  .car-search-filter-section .filter-row.filter-row-bottom {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .car-search-filter-section .filter-row.filter-row-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    row-gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e5e5e5;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-spacer {
    display: none;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-dropdown-wrapper:nth-child(1),
  .car-search-filter-section .filter-row.filter-row-bottom .filter-input-wrapper:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-dropdown-wrapper:nth-child(2),
  .car-search-filter-section .filter-row.filter-row-bottom .filter-input-wrapper:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-dropdown-wrapper:nth-child(3),
  .car-search-filter-section .filter-row.filter-row-bottom .filter-input-wrapper:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-dropdown-wrapper:nth-child(4),
  .car-search-filter-section .filter-row.filter-row-bottom .filter-input-wrapper:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
}
@media screen and (max-width: 767px) {
  .car-search-filter-section .filter-row.filter-row-bottom {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    row-gap: 20px;
    order: 2;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-spacer {
    display: none;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-dropdown-wrapper:nth-child(1),
  .car-search-filter-section .filter-row.filter-row-bottom .filter-input-wrapper:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-dropdown-wrapper:nth-child(2),
  .car-search-filter-section .filter-row.filter-row-bottom .filter-input-wrapper:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-dropdown-wrapper:nth-child(3),
  .car-search-filter-section .filter-row.filter-row-bottom .filter-input-wrapper:nth-child(3) {
    grid-column: 1;
    grid-row: 2;
  }
  .car-search-filter-section .filter-row.filter-row-bottom .filter-dropdown-wrapper:nth-child(4),
  .car-search-filter-section .filter-row.filter-row-bottom .filter-input-wrapper:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
  }
}
.car-search-filter-section .filter-row.filter-row-bottom.show {
  margin-top: 12px;
}
.car-search-filter-section .filter-dropdown-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.car-search-filter-section .filter-dropdown-wrapper .filter-label-text {
  display: none;
}
.car-search-filter-section .filter-dropdown-wrapper .dropdown-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #666666;
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}
.car-search-filter-section .filter-dropdown-wrapper .filter-dropdown {
  width: 100%;
  padding: 8px 30px 8px 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  outline: none;
  background-color: transparent;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  z-index: 1;
  transition: border-color 0.3s ease;
}
.car-search-filter-section .filter-dropdown-wrapper .filter-dropdown:focus {
  border-bottom-color: #0B2A4A;
}
.car-search-filter-section .filter-dropdown-wrapper .filter-dropdown:hover {
  border-bottom-color: #999999;
}
@media screen and (max-width: 767px) {
  .car-search-filter-section .filter-dropdown-wrapper {
    width: 100%;
  }
}
.car-search-filter-section .filter-option-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  background-color: transparent;
  border: none;
  padding: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  height: auto;
  min-width: 140px;
}
.car-search-filter-section .filter-option-btn:hover {
  opacity: 0.8;
}
.car-search-filter-section .filter-option-btn .filter-label-text {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #333333;
  text-transform: none;
  white-space: nowrap;
  line-height: 1.2;
}
.car-search-filter-section .filter-option-btn .toggle-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  position: relative;
}
.car-search-filter-section .filter-option-btn .toggle-icon .toggle-icon-svg {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.car-search-filter-section .filter-option-btn .toggle-icon .toggle-icon-x {
  display: none;
  width: 12px;
  height: 12px;
  position: absolute;
}
.car-search-filter-section .filter-option-btn.expanded .toggle-icon .toggle-icon-svg {
  display: none;
}
.car-search-filter-section .filter-option-btn.expanded .toggle-icon .toggle-icon-x {
  display: block;
}
@media screen and (max-width: 991px) {
  .car-search-filter-section .filter-option-btn {
    min-width: auto;
    width: auto;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .car-search-filter-section .filter-option-btn {
    width: 100%;
    min-width: auto;
    justify-content: flex-start;
  }
}
.car-search-filter-section .filter-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.car-search-filter-section .filter-input-wrapper .filter-label-text {
  display: none;
}
.car-search-filter-section .filter-input-wrapper .filter-input {
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  border: none;
  border-bottom: 1px solid #e5e5e5;
  border-radius: 0;
  outline: none;
  background-color: transparent;
  padding: 8px 0;
  width: 100%;
  height: auto;
  line-height: 1.2;
  transition: border-color 0.3s ease;
}
.car-search-filter-section .filter-input-wrapper .filter-input::placeholder {
  color: #999999;
  font-weight: 400;
}
.car-search-filter-section .filter-input-wrapper .filter-input:focus {
  border-bottom-color: #0B2A4A;
  color: #333333;
}
.car-search-filter-section .filter-input-wrapper .filter-input:hover {
  border-bottom-color: #999999;
}
@media screen and (max-width: 767px) {
  .car-search-filter-section .filter-input-wrapper {
    width: 100%;
  }
}
.car-search-filter-section .additional-filter {
  display: grid;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s ease-in-out;
  margin: 0;
  padding: 0;
  grid-template-columns: inherit;
}
.car-search-filter-section .additional-filter.show {
  opacity: 1;
  max-height: 300px;
  visibility: visible;
}
.car-search-filter-section .find-car-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 20px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.3px;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1.2;
  transition: background-color 0.3s ease, transform 0.2s ease;
  width: 100%;
  min-width: 120px;
}
.car-search-filter-section .find-car-btn:hover {
  background-color: #17436c;
  transform: translateY(-1px);
}
.car-search-filter-section .find-car-btn:active {
  transform: translateY(0);
}
.car-search-filter-section .find-car-btn .search-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .car-search-filter-section .find-car-btn {
    min-width: 100px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 767px) {
  .car-search-filter-section .find-car-btn {
    width: 100%;
    min-width: auto;
    margin-top: 0;
  }
}

.premium-brands-section {
  padding: 90px 0 60px;
  background-color: #f6f8fb;
}
@keyframes brandFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.premium-brands-section .premium-brands-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.premium-brands-section .premium-brands-header h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #0b1220;
}
@media screen and (max-width: 767px) {
  .premium-brands-section .premium-brands-header h2 {
    font-size: 30px;
    text-align: center;
    display: block;
    margin: 0 auto;
  }
}
@media screen and (max-width: 575px) {
  .premium-brands-section .premium-brands-header h2 {
    font-size: 27px;
  }
}
.premium-brands-section .premium-brands-link {
  font-size: 14px;
  font-weight: 600;
  color: #0b1220;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .premium-brands-section .premium-brands-link {
    display: none;
  }
}
.premium-brands-section .premium-brands-link .link-icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.premium-brands-section .premium-brands-link .link-icon svg {
  display: block;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.premium-brands-section .premium-brands-link:hover {
  color: #203558;
  transform: translateX(2px);
}
.premium-brands-section .premium-brands-link:hover .link-icon {
  transform: translate(2px, -2px);
}
.premium-brands-section .premium-brands-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.premium-brands-section .tns-outer {
  position: relative;
}
.premium-brands-section .brand-card {
  display: block;
  flex: 1 0 150px;
  text-align: center;
  padding: 28px 18px 24px;
  background-color: #ffffff;
  border-radius: 22px;
  border: 1px solid #e7ecf5;
  transition: transform 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: #0b1220;
  opacity: 0;
  transform: translateY(30px);
}
.premium-brands-section .brand-card.is-visible {
  animation: brandFadeUp 0.6s ease forwards;
}
.premium-brands-section .brand-card:hover {
  transform: translateY(-8px) scale(1.05);
}
.premium-brands-section .brand-card__logo {
  width: 85px;
  height: 85px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.premium-brands-section .brand-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.premium-brands-section .brand-card:hover .brand-card__logo {
  transform: scale(1.1);
}
.premium-brands-section .brand-card:hover .brand-card__logo img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.premium-brands-section .brand-card__name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: inherit;
  transition: color 0.3s ease;
}
.premium-brands-section .brand-card:hover .brand-card__name {
  color: #103558;
}
.premium-brands-section .tns-controls,
.premium-brands-section .tns-nav {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .premium-brands-section {
    padding: 40px 0 40px;
  }
  .premium-brands-section .premium-brands-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.premium-brands-link-mobile {
  display: none !important;
  margin-top: 32px;
  width: 100%;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}
.premium-brands-link-mobile .link-icon {
  transition: transform 0.3s ease;
}
.premium-brands-link-mobile:hover {
  color: #203558;
  transform: translateX(2px);
}
.premium-brands-link-mobile:hover .link-icon {
  transform: translate(2px, -2px);
}
.premium-brands-link-mobile {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  background-color: #203558;
  padding: 14px 20px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.premium-brands-link-mobile .link-icon {
  display: inline-flex;
  align-items: center;
}
.premium-brands-link-mobile .link-icon svg {
  width: 14px;
  height: 14px;
}
.premium-brands-link-mobile:hover {
  background-color: #162640;
}
@media screen and (max-width: 767px) {
  .premium-brands-link-mobile {
    display: inline-flex !important;
  }
}

.explore-vehicles-section {
  padding: 90px 0 90px;
  background-color: #ffffff;
}
@keyframes vehicleFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes headerFadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.explore-vehicles-section .single-item-slider-section {
  position: relative;
  width: 100%;
  margin-bottom: 0;
}
.explore-vehicles-section .single-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-bottom: 80px;
}
@media screen and (max-width: 575px) {
  .explore-vehicles-section .single-slider-container {
    padding-bottom: 60px;
  }
}
.explore-vehicles-section .single-slider {
  width: 100%;
}
.explore-vehicles-section .single-slide {
  position: relative;
  display: block;
  width: 100%;
}
.explore-vehicles-section .single-slide-content {
  width: 100%;
  display: block;
}
.explore-vehicles-section .single-slide-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media screen and (max-width: 991px) {
  .explore-vehicles-section .single-slide-image {
    height: 400px;
  }
}
@media screen and (max-width: 767px) {
  .explore-vehicles-section .single-slide-image {
    height: 300px;
  }
}
@media screen and (max-width: 575px) {
  .explore-vehicles-section .single-slide-image {
    height: 250px;
  }
}
.explore-vehicles-section .single-slider-prev,
.explore-vehicles-section .single-slider-next {
  position: absolute;
  bottom: 0px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px solid #E9E9E9;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  color: #103558;
  font-size: 18px;
}
.explore-vehicles-section .single-slider-prev:active,
.explore-vehicles-section .single-slider-next:active {
  transform: scale(0.95);
}
@media screen and (max-width: 575px) {
  .explore-vehicles-section .single-slider-prev,
  .explore-vehicles-section .single-slider-next {
    width: 40px;
    height: 40px;
    font-size: 14px;
    bottom: 10px;
  }
}
.explore-vehicles-section .single-slider-prev {
  left: 20px;
}
@media screen and (max-width: 575px) {
  .explore-vehicles-section .single-slider-prev {
    left: calc(50% - 45px);
  }
}
.explore-vehicles-section .single-slider-next {
  left: 90px;
}
@media screen and (max-width: 575px) {
  .explore-vehicles-section .single-slider-next {
    left: calc(50% + 5px);
  }
}
.explore-vehicles-section .single-item-slider-section .tns-controls,
.explore-vehicles-section .single-item-slider-section .tns-nav {
  display: none !important;
}
.explore-vehicles-section .explore-vehicles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
}
.explore-vehicles-section .explore-vehicles-header.is-visible {
  animation: headerFadeUp 0.6s ease forwards;
}
.explore-vehicles-section .explore-vehicles-header h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  color: #0b1220;
}
@media screen and (max-width: 767px) {
  .explore-vehicles-section .explore-vehicles-header h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .explore-vehicles-section .explore-vehicles-header h2 {
    font-size: 27px;
  }
}
.explore-vehicles-section .explore-vehicles-link {
  font-size: 14px;
  font-weight: 600;
  color: #0b1220;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}
@media screen and (max-width: 767px) {
  .explore-vehicles-section .explore-vehicles-link {
    display: none;
  }
}
.explore-vehicles-section .explore-vehicles-link .link-icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.explore-vehicles-section .explore-vehicles-link .link-icon svg {
  display: block;
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.explore-vehicles-section .explore-vehicles-link:hover {
  color: #203558;
}
.explore-vehicles-section .explore-vehicles-link:hover .link-icon {
  transform: translateX(2px);
}
.explore-vehicles-section .explore-vehicles-link:hover .link-icon svg {
  transform: translateX(2px);
}
.explore-vehicles-section .vehicle-tabs {
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 32px;
  padding: 0;
  gap: 0;
}
.explore-vehicles-section .vehicle-tabs .nav-item {
  margin-bottom: 0;
}
.explore-vehicles-section .vehicle-tabs .nav-link {
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  color: #103558;
  border: none;
  border-bottom: 2px solid transparent;
  background-color: transparent;
  border-radius: 0;
  transition: all 0.3s ease;
  position: relative;
}
.explore-vehicles-section .vehicle-tabs .nav-link:hover {
  color: #0b1220;
  border-bottom-color: transparent;
}
.explore-vehicles-section .vehicle-tabs .nav-link.active {
  color: #0b1220;
  background-color: transparent;
  border-bottom: 2px solid #0b1220;
  font-weight: 600;
}
.explore-vehicles-section .vehicle-tabs .nav-link:focus {
  box-shadow: none;
}
.explore-vehicles-section .vehicle-slider-container {
  position: relative;
}
.explore-vehicles-section .vehicle-slider {
  margin-bottom: 40px;
  overflow: hidden;
}
.explore-vehicles-section #relatedVehicleSlider > .tns-item {
  padding-right: 0;
  margin-right: 20px;
}
.explore-vehicles-section .vehicle-card-group {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
  width: 100% !important;
  min-width: 0 !important;
  flex-shrink: 0 !important;
}
@media screen and (max-width: 1400px) {
  .explore-vehicles-section .vehicle-card-group {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}
@media screen and (max-width: 1200px) {
  .explore-vehicles-section .vehicle-card-group {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media screen and (max-width: 992px) {
  .explore-vehicles-section .vehicle-card-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
  }
}
@media screen and (max-width: 768px) {
  .explore-vehicles-section .vehicle-card-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}
.explore-vehicles-section .vehicle-card-group.row-view {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 16px !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: stretch !important;
  height: auto !important;
  min-height: 200px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  padding: 0 !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__image {
  width: 320px !important;
  min-width: 320px !important;
  flex-shrink: 0 !important;
  padding-top: 0 !important;
  height: auto !important;
  position: relative !important;
  background-color: #f6f8fb !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__image img {
  position: relative !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 200px !important;
  object-fit: cover !important;
  display: block !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__image .vehicle-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #103558;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  transition: all 0.3s ease;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__image .vehicle-card__bookmark {
  top: 12px !important;
  right: 12px !important;
  width: 32px !important;
  height: 32px !important;
  border-radius: 4px !important;
  background-color: rgba(255, 255, 255, 0.95) !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__image .vehicle-card__bookmark i {
  font-size: 14px !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body {
  flex: 1 !important;
  padding: 20px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  position: relative !important;
  min-height: 200px !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__title {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0b1220 !important;
  margin: 0 0 8px !important;
  line-height: 1.4 !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__description {
  font-size: 13px !important;
  color: rgba(11, 18, 32, 0.6) !important;
  margin: 0 0 12px !important;
  line-height: 1.4 !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 0 !important;
  margin: 12px 0 !important;
  flex-wrap: wrap !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 13px !important;
  color: rgba(11, 18, 32, 0.75) !important;
  padding-right: 12px !important;
  margin-right: 12px !important;
  position: relative !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item:not(:last-child)::after {
  content: "" !important;
  position: absolute !important;
  right: 0 !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  width: 1px !important;
  height: 16px !important;
  background-color: rgba(11, 18, 32, 0.2) !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item i {
  font-size: 14px !important;
  color: rgba(11, 18, 32, 0.6) !important;
  width: auto !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item span {
  white-space: nowrap !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__footer {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  margin-top: auto !important;
  padding-top: 12px !important;
  border-top: 1px solid #e7ecf5 !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__price {
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #0b1220 !important;
  white-space: nowrap !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #0b1220 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 8px 16px !important;
  background-color: transparent !important;
  border: 1px solid #e7ecf5 !important;
  border-radius: 6px !important;
  transition: all 0.3s ease !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link:hover {
  background-color: #203558 !important;
  color: #ffffff !important;
  border-color: #203558 !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link:hover .link-icon svg {
  fill: #ffffff !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link .link-icon {
  display: inline-flex !important;
  align-items: center !important;
}
.explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link .link-icon svg {
  width: 14px !important;
  height: 14px !important;
  transition: fill 0.3s ease !important;
}
@media screen and (max-width: 992px) {
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__image {
    width: 280px !important;
    min-width: 280px !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body {
    padding: 18px 20px !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__title {
    font-size: 16px !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item {
    font-size: 12px !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__price {
    font-size: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card {
    flex-direction: column !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__image {
    width: 100% !important;
    min-width: 100% !important;
    height: 200px !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__image img {
    min-height: 200px !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body {
    width: 100% !important;
    padding: 16px !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item {
    padding-right: 0 !important;
    margin-right: 0 !important;
  }
  .explore-vehicles-section .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item:not(:last-child)::after {
    display: none !important;
  }
}
.explore-vehicles-section .vehicle-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e7ecf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}
.explore-vehicles-section .vehicle-card.is-visible {
  animation: vehicleFadeUp 0.6s ease forwards;
}
.explore-vehicles-section .vehicle-card__image {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
  background-color: #f6f8fb;
}
.explore-vehicles-section .vehicle-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.explore-vehicles-section .vehicle-card:hover .explore-vehicles-section .vehicle-card__image img {
  transform: scale(1.05);
}
.explore-vehicles-section .vehicle-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #0b1220;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  transition: all 0.3s ease;
}
.explore-vehicles-section .vehicle-card__bookmark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  padding: 0;
}
.explore-vehicles-section .vehicle-card__bookmark i {
  font-size: 16px;
  color: #0b1220;
  transition: color 0.3s ease, transform 0.3s ease;
}
.explore-vehicles-section .vehicle-card__bookmark:hover {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.explore-vehicles-section .vehicle-card__bookmark:hover i {
  color: #203558;
}
.explore-vehicles-section .vehicle-card__body {
  padding: 18px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.explore-vehicles-section .vehicle-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 8px;
  line-height: 1.3;
}
.explore-vehicles-section .vehicle-card__description {
  font-size: 13px;
  color: rgba(11, 18, 32, 0.7);
  margin: 0 0 14px;
  line-height: 1.4;
}
.explore-vehicles-section .vehicle-card__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  margin-bottom: 16px;
}
.explore-vehicles-section .vehicle-card__specs .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.75);
}
.explore-vehicles-section .vehicle-card__specs .spec-item i {
  font-size: 14px;
  color: rgba(11, 18, 32, 0.6);
  width: 16px;
  flex-shrink: 0;
}
.explore-vehicles-section .vehicle-card__specs .spec-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.explore-vehicles-section .vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e7ecf5;
}
.explore-vehicles-section .vehicle-card__price {
  font-size: 20px;
  font-weight: 700;
  color: #0b1220;
  white-space: nowrap;
}
.explore-vehicles-section .vehicle-card__link {
  font-size: 13px;
  font-weight: 600;
  color: #0b1220;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.explore-vehicles-section .vehicle-card__link .link-icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.explore-vehicles-section .vehicle-card__link .link-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.explore-vehicles-section .vehicle-card__link:hover {
  color: #203558;
}
.explore-vehicles-section .vehicle-card__link:hover .link-icon {
  transform: translateX(2px);
}
.explore-vehicles-section .vehicle-card__link:hover .link-icon svg {
  transform: translateX(2px);
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  .explore-vehicles-section {
    padding: 70px 0 50px;
  }
  .explore-vehicles-section .explore-vehicles-header {
    margin-bottom: 28px;
  }
  .explore-vehicles-section .explore-vehicles-header h2 {
    font-size: 32px;
  }
  .explore-vehicles-section .vehicle-card-group {
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 16px !important;
  }
  .explore-vehicles-section .vehicle-card__image {
    padding-top: 68%;
  }
  .explore-vehicles-section .vehicle-card__body {
    padding: 16px 14px 14px;
  }
  .explore-vehicles-section .vehicle-card__title {
    font-size: 15px;
    margin-bottom: 7px;
  }
  .explore-vehicles-section .vehicle-card__description {
    font-size: 12px;
    margin-bottom: 12px;
  }
  .explore-vehicles-section .vehicle-card__specs {
    gap: 8px 10px;
    margin-bottom: 14px;
  }
  .explore-vehicles-section .vehicle-card__specs .spec-item {
    font-size: 11px;
  }
  .explore-vehicles-section .vehicle-card__specs .spec-item i {
    font-size: 13px;
    width: 15px;
  }
  .explore-vehicles-section .vehicle-card__price {
    font-size: 18px;
  }
  .explore-vehicles-section .vehicle-card__link {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .explore-vehicles-section {
    padding: 60px 0 40px;
  }
  .explore-vehicles-section .explore-vehicles-header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  .explore-vehicles-section .explore-vehicles-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .explore-vehicles-section .explore-vehicles-link {
    font-size: 13px;
  }
  .explore-vehicles-section .vehicle-tabs {
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
  }
  .explore-vehicles-section .vehicle-tabs::-webkit-scrollbar {
    display: none;
  }
  .explore-vehicles-section .vehicle-tabs .nav-item {
    display: inline-block;
    margin-bottom: 0;
  }
  .explore-vehicles-section .vehicle-tabs .nav-link {
    padding: 10px 12px;
    font-size: 14px;
    white-space: nowrap;
  }
  .explore-vehicles-section .vehicle-card-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
  .explore-vehicles-section .vehicle-card__image {
    padding-top: 70%;
  }
  .explore-vehicles-section .vehicle-card__badge {
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    font-size: 10px;
  }
  .explore-vehicles-section .vehicle-card__bookmark {
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
  }
  .explore-vehicles-section .vehicle-card__bookmark i {
    font-size: 12px;
  }
  .explore-vehicles-section .vehicle-card__body {
    padding: 12px 10px 10px;
  }
  .explore-vehicles-section .vehicle-card__title {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  .explore-vehicles-section .vehicle-card__description {
    font-size: 11px;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .explore-vehicles-section .vehicle-card__specs {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px 8px;
    margin-bottom: 10px;
  }
  .explore-vehicles-section .vehicle-card__specs .spec-item {
    font-size: 10px;
  }
  .explore-vehicles-section .vehicle-card__specs .spec-item i {
    font-size: 11px;
    width: 12px;
  }
  .explore-vehicles-section .vehicle-card__specs .spec-item span {
    font-size: 10px;
  }
  .explore-vehicles-section .vehicle-card__footer {
    padding-top: 8px;
    gap: 8px;
  }
  .explore-vehicles-section .vehicle-card__price {
    font-size: 16px;
  }
  .explore-vehicles-section .vehicle-card__link {
    font-size: 11px;
  }
  .explore-vehicles-section .vehicle-card__link .link-icon svg {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 575px) {
  .explore-vehicles-section {
    padding: 50px 0 30px;
  }
  .explore-vehicles-section .explore-vehicles-header h2 {
    font-size: 24px;
  }
  .explore-vehicles-section .vehicle-card-group {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .explore-vehicles-section .vehicle-card__image {
    padding-top: 68%;
  }
  .explore-vehicles-section .vehicle-card__badge {
    top: 6px;
    left: 6px;
    padding: 3px 8px;
    font-size: 9px;
  }
  .explore-vehicles-section .vehicle-card__bookmark {
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
  }
  .explore-vehicles-section .vehicle-card__bookmark i {
    font-size: 11px;
  }
  .explore-vehicles-section .vehicle-card__body {
    padding: 10px 8px 8px;
  }
  .explore-vehicles-section .vehicle-card__title {
    font-size: 13px;
    margin-bottom: 4px;
  }
  .explore-vehicles-section .vehicle-card__description {
    font-size: 10px;
    margin-bottom: 8px;
  }
  .explore-vehicles-section .vehicle-card__specs {
    gap: 5px 6px;
    margin-bottom: 8px;
  }
  .explore-vehicles-section .vehicle-card__specs .spec-item {
    font-size: 9px;
  }
  .explore-vehicles-section .vehicle-card__specs .spec-item i {
    font-size: 10px;
    width: 11px;
  }
  .explore-vehicles-section .vehicle-card__specs .spec-item span {
    font-size: 9px;
  }
  .explore-vehicles-section .vehicle-card__footer {
    padding-top: 6px;
    gap: 6px;
  }
  .explore-vehicles-section .vehicle-card__price {
    font-size: 14px;
  }
  .explore-vehicles-section .vehicle-card__link {
    font-size: 10px;
  }
  .explore-vehicles-section .vehicle-card__link .link-icon svg {
    width: 11px;
    height: 11px;
  }
}

.locations-section {
  padding: 80px 0 0px;
  background-color: #ffffff;
}
.locations-section .section-heading {
  margin-bottom: 40px;
}
.locations-section .section-heading h2 {
  font-size: 42px;
  font-weight: 900;
  color: #000;
  margin: 0;
}

.location-card {
  border-radius: 18px;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e0e0e0;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.location-card__image {
  position: relative;
  padding-top: 56%;
  overflow: hidden;
}
.location-card__image img,
.location-card__image iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.location-card__image img {
  object-fit: cover;
}
.location-card__image iframe {
  border: 0;
}
.location-card__body {
  padding: 24px;
}
.location-card__body h5 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-align: center;
  color: #050B20;
}
.location-card__body p {
  font-size: 16px;
  color: #103558;
  margin-bottom: 14px;
  border-top: 1px solid #E9E9E9;
  padding-top: 10px;
}

.car-articles-section {
  padding: 0px 0 40px;
  background-color: #ffffff;
}
.car-articles-section .car-articles-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}
.car-articles-section .car-articles-header h2 {
  margin: 0;
  font-size: 42px;
  font-weight: 900;
  color: #000;
}
.car-articles-section .see-all-link {
  font-size: 14px;
  font-weight: 600;
  color: #0b1220;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}
.car-articles-section .see-all-link .link-icon {
  display: inline-flex;
  align-items: center;
}
.car-articles-section .see-all-link .link-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}
.car-articles-section .see-all-link:hover {
  color: #203558;
}
@media screen and (max-width: 767px) {
  .car-articles-section .see-all-link {
    display: none;
  }
}
.car-articles-section .article-card {
  height: 100%;
  background-color: #ffffff;
  border-radius: 26px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.car-articles-section .article-card__image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  margin-bottom: 18px;
  background-color: #0b1220;
}
.car-articles-section .article-card__image img {
  width: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.car-articles-section .article-card__image .article-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  font-weight: 600;
  color: #0b1220;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 24px rgba(9, 17, 31, 0.18);
}
.car-articles-section .article-card__body {
  padding: 0 2px 6px;
}
.car-articles-section .article-card__meta {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.65);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  gap: 0;
}
.car-articles-section .article-card__meta span {
  display: inline-flex;
  align-items: center;
}
.car-articles-section .article-card__meta span + span::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(11, 18, 32, 0.4);
  margin: 0 12px;
}
.car-articles-section .article-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: #0b1220;
  font-weight: 600;
}

@media (max-width: 991.98px) {
  .car-articles-section {
    padding: 60px 0 30px;
  }
  .car-articles-section .car-articles-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .car-articles-section .car-articles-header h2 {
    font-size: 32px;
  }
}
@media (max-width: 575.98px) {
  .car-articles-section {
    padding: 0px 0 20px;
  }
  .car-articles-section .article-card {
    padding: 18px;
  }
  .car-articles-section .article-card__image .article-card__tag {
    font-size: 11px;
  }
}
.car-finder-section {
  padding: 60px 0 30px;
  background-color: #F9FBFC;
}
@keyframes carFinderFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.car-finder-section .car-finder-content {
  max-width: 800px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
}
.car-finder-section .car-finder-content.is-visible {
  animation: carFinderFadeUp 0.8s ease forwards;
}
.car-finder-section .car-finder-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0b1220;
  text-transform: uppercase;
  margin: 0 0 20px;
  line-height: 1.3;
  letter-spacing: 0.02em;
}
.car-finder-section .car-finder-subtext {
  font-size: 16px;
  color: #0b1220;
  margin: 0 0 32px;
  line-height: 1.6;
}
.car-finder-section .car-finder-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: #103558;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  letter-spacing: 0.35px;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.car-finder-section .car-finder-btn:hover {
  background-color: #17436c;
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .car-finder-section {
    padding: 60px 0;
  }
  .car-finder-section .car-finder-heading {
    font-size: 36px;
  }
  .car-finder-section .car-finder-subtext {
    font-size: 15px;
  }
}
@media (max-width: 767.98px) {
  .car-finder-section {
    padding: 50px 0 30px;
  }
  .car-finder-section .car-finder-heading {
    font-size: 28px;
    margin-bottom: 16px;
  }
  .car-finder-section .car-finder-subtext {
    font-size: 14px;
    margin-bottom: 28px;
  }
  .car-finder-section .car-finder-btn {
    padding: 12px 32px;
    font-size: 13px;
  }
}
.why-choose-us-section {
  padding: 60px 0;
  background-color: #F9FBFC;
  margin-bottom: 40px;
}
.why-choose-us-section .why-choose-us-header {
  margin-bottom: 40px;
}
.why-choose-us-section .why-choose-us-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0b1220;
  margin: 0;
}
.why-choose-us-section .feature-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.why-choose-us-section .feature-card__icon {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.why-choose-us-section .feature-card__icon img {
  max-width: 80px;
  height: auto;
  display: block;
}
.why-choose-us-section .feature-card__title {
  font-size: 18px;
  font-weight: 600;
  color: #0b1220;
  margin: 0 0 12px;
  line-height: 1.4;
}
.why-choose-us-section .feature-card__description {
  font-size: 14px;
  color: rgba(11, 18, 32, 0.75);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991.98px) {
  .why-choose-us-section {
    padding: 50px 0;
  }
  .why-choose-us-section .why-choose-us-header {
    margin-bottom: 32px;
  }
  .why-choose-us-section .why-choose-us-header h2 {
    font-size: 32px;
  }
}
@media (max-width: 767.98px) {
  .why-choose-us-section {
    padding: 40px 0;
  }
  .why-choose-us-section .why-choose-us-header {
    margin-bottom: 28px;
  }
  .why-choose-us-section .why-choose-us-header h2 {
    font-size: 28px;
  }
  .why-choose-us-section .feature-card__icon {
    margin-bottom: 16px;
  }
  .why-choose-us-section .feature-card__icon img {
    max-width: 70px;
  }
  .why-choose-us-section .feature-card__title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .why-choose-us-section .feature-card__description {
    font-size: 13px;
  }
}
@media (max-width: 576.98px) {
  .why-choose-us-section {
    padding: 40px 0;
  }
  .why-choose-us-section .why-choose-us-header {
    margin-bottom: 28px;
  }
  .why-choose-us-section .why-choose-us-header h2 {
    font-size: 24px;
    text-align: center;
  }
  .why-choose-us-section .feature-card__icon {
    margin-bottom: 12px;
    margin-left: auto;
    margin-right: auto;
  }
  .why-choose-us-section .feature-card__icon img {
    max-width: 70px;
  }
  .why-choose-us-section .feature-card__title {
    font-size: 16px;
    margin-bottom: 10px;
    text-align: center;
  }
  .why-choose-us-section .feature-card__description {
    font-size: 13px;
    text-align: center;
  }
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #000;
  margin-bottom: 8px;
}
.contact-line i {
  color: #000;
}
.contact-line a {
  color: inherit;
  text-decoration: none;
}
.contact-line a:hover {
  color: #203558;
}

.specials-offers-section {
  padding: 40px 0 30px;
  background-color: #0b2a52;
}
.specials-offers-section .specials-offers-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 48px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .specials-offers-header {
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
}
.specials-offers-section .specials-offers-title-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .specials-offers-title-wrapper {
    width: 100%;
  }
}
.specials-offers-section .specials-offers-title {
  font-size: 48px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: "Lato", sans-serif;
}
@media screen and (max-width: 991px) {
  .specials-offers-section .specials-offers-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .specials-offers-section .specials-offers-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 575px) {
  .specials-offers-section .specials-offers-title {
    font-size: 28px;
  }
}
.specials-offers-section .title-underline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.specials-offers-section .underline-line {
  height: 2px;
  background-color: #ffffff;
}
.specials-offers-section .underline-line--short {
  width: 60px;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .underline-line--short {
    width: 50px;
  }
}
.specials-offers-section .underline-line--long {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .underline-line--long {
    width: 70px;
  }
}
.specials-offers-section .specials-offers-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s ease;
  position: absolute;
  top: 0;
  right: 0;
}
.specials-offers-section .specials-offers-link i {
  font-size: 16px;
}
.specials-offers-section .specials-offers-link:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .specials-offers-link {
    position: static;
    margin-top: 20px;
  }
}
.specials-offers-section .specials-offers-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.specials-offers-section .specials-offers-slider {
  margin-bottom: 40px;
  overflow: visible;
}
.specials-offers-section .specials-offers-slider .tns-item {
  opacity: 1;
}
.specials-offers-section #specialsOffersSlider-iw {
  margin-top: 20px;
  margin-bottom: 20px;
}
.specials-offers-section .special-offer-slide {
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .special-offer-slide {
    padding: 0 5px;
  }
}
.specials-offers-section .special-offer-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.specials-offers-section .special-offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.specials-offers-section .special-offer-card__image {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #f6f8fb;
  aspect-ratio: 1.54/1;
}
.specials-offers-section .special-offer-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.specials-offers-section .special-offer-card:hover .special-offer-card__image img {
  transform: scale(1.05);
}
.specials-offers-section .special-banner {
  position: absolute;
  top: 81px;
  left: 0;
  background-color: #fab637;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transform: translateX(-11px) rotate(-40deg);
  transform-origin: left center;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 10px 68px;
}
.specials-offers-section .special-offer-card__body {
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .special-offer-card__body {
    padding: 20px 16px 16px;
  }
}
.specials-offers-section .special-offer-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.specials-offers-section .special-offer-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1220;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .special-offer-card__title {
    font-size: 16px;
  }
}
.specials-offers-section .special-offer-card__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 0;
  margin-left: auto;
  flex-shrink: 0;
  background-color: #0b2a52;
  padding: 6px 20px 6px 30px;
  text-align: right;
  position: relative;
  clip-path: polygon(30% 0%, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (max-width: 767px) {
  .specials-offers-section .special-offer-card__pricing {
    margin-bottom: 0;
    align-items: flex-end;
  }
}
.specials-offers-section .old-price {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: line-through;
  margin-bottom: 6px;
  text-align: right;
  line-height: 1.3;
  display: block;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .old-price {
    font-size: 12px;
    margin-bottom: 4px;
  }
}
.specials-offers-section .new-price {
  display: block;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: right;
  line-height: 1.2;
}
.specials-offers-section .special-offer-card__divider {
  height: 1px;
  background-color: #000;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .special-offer-card__divider {
    margin-bottom: 12px;
  }
}
.specials-offers-section .limited-offer-text {
  font-size: 14px;
  font-weight: 600;
  color: #0b1220;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .limited-offer-text {
    font-size: 12px;
  }
}
.specials-offers-section .special-offer-card__specs {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: auto;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .special-offer-card__specs {
    gap: 16px;
    flex-wrap: wrap;
  }
}
.specials-offers-section .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #000;
}
.specials-offers-section .spec-item i {
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .spec-item {
    font-size: 12px;
  }
  .specials-offers-section .spec-item i {
    font-size: 14px;
  }
}
.specials-offers-section .specials-offers-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .specials-offers-controls {
    margin-top: 24px;
    gap: 12px;
  }
}
.specials-offers-section .specials-slider-prev,
.specials-offers-section .specials-slider-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background-color: transparent;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  padding: 0;
}
.specials-offers-section .specials-slider-prev i,
.specials-offers-section .specials-slider-next i {
  font-size: 18px;
  font-weight: 600;
}
.specials-offers-section .specials-slider-prev:hover,
.specials-offers-section .specials-slider-next:hover {
  opacity: 0.8;
}
.specials-offers-section .specials-slider-prev:disabled,
.specials-offers-section .specials-slider-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .specials-slider-prev,
  .specials-offers-section .specials-slider-next {
    width: 40px;
    height: 40px;
  }
  .specials-offers-section .specials-slider-prev i,
  .specials-offers-section .specials-slider-next i {
    font-size: 16px;
  }
}
.specials-offers-section .specials-slider-nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 8px;
  min-height: 20px;
  width: auto;
}
.specials-offers-section .specials-slider-nav .tns-nav {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.specials-offers-section .specials-slider-nav .tns-nav button {
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.4) !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer;
  transition: all 0.2s ease;
  visibility: visible !important;
  opacity: 1 !important;
  display: block !important;
}
.specials-offers-section .specials-slider-nav .tns-nav button:hover {
  background-color: rgba(255, 255, 255, 0.6) !important;
}
.specials-offers-section .specials-slider-nav .tns-nav button.tns-nav-active {
  background-color: #ffffff !important;
  width: 12px !important;
  height: 12px !important;
}
@media screen and (max-width: 767px) {
  .specials-offers-section .specials-slider-nav .tns-nav button {
    width: 8px !important;
    height: 8px !important;
  }
  .specials-offers-section .specials-slider-nav .tns-nav button.tns-nav-active {
    width: 10px !important;
    height: 10px !important;
  }
}
.specials-offers-section .specials-slider-nav:empty::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
}
.specials-offers-section .tns-controls {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .specials-offers-section {
    padding: 70px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .specials-offers-section {
    padding: 60px 0 50px;
  }
}
@media screen and (max-width: 575px) {
  .specials-offers-section {
    padding: 50px 0 40px;
  }
}

.testimonials-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.testimonials-section .testimonials-header {
  margin-bottom: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .testimonials-section .testimonials-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.testimonials-section .testimonials-header .testimonials-title {
  font-size: 42px;
  font-weight: 900;
  color: #000;
  margin: 0;
  line-height: 1.2;
  flex-shrink: 0;
}
@media screen and (max-width: 991px) {
  .testimonials-section .testimonials-header .testimonials-title {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .testimonials-section .testimonials-header .testimonials-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  .testimonials-section .testimonials-header .testimonials-title {
    font-size: 28px;
  }
}
.testimonials-section .testimonials-header .testimonials-rating-text {
  font-size: 16px;
  color: #050B20;
  margin: 0;
  text-align: right;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .testimonials-section .testimonials-header .testimonials-rating-text {
    text-align: left;
  }
}
.testimonials-section .testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
}
.testimonials-section .testimonials-slider {
  overflow: visible;
}
.testimonials-section .testimonials-slider .tns-item {
  opacity: 1;
  display: flex;
  align-items: stretch;
  height: auto;
}
.testimonials-section .testimonials-slider .tns-inner {
  display: flex;
  align-items: stretch;
}
.testimonials-section .testimonial-slide {
  padding: 0 10px;
  display: flex;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .testimonials-section .testimonial-slide {
    padding: 0 5px;
  }
}
.testimonials-section .testimonial-card {
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.testimonials-section .testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.testimonials-section .testimonial-card .testimonial-rating-wrapper {
  display: flex;
  align-items: center;
  justify-content: start;
  margin-bottom: 16px;
  flex-shrink: 0;
}
.testimonials-section .testimonial-card .testimonial-rating {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  margin-right: 20px;
}
.testimonials-section .testimonial-card .testimonial-rating i {
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #103558;
  border-radius: 2px;
}
.testimonials-section .testimonial-card .testimonial-rating i.fa-regular {
  background-color: #D0D0D0;
  color: #ffffff;
}
.testimonials-section .testimonial-card .testimonial-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.testimonials-section .testimonial-card .testimonial-verified .verified-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #6C6C83;
  color: #ffffff;
  font-size: 10px;
}
.testimonials-section .testimonial-card .testimonial-verified .verified-text {
  color: #6C6C83;
  font-size: 12px;
  font-weight: 500;
}
.testimonials-section .testimonial-card .testimonial-headline {
  font-size: 18px;
  font-weight: 600;
  color: #0b1220;
  margin-bottom: 12px;
  line-height: 1.4;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .testimonials-section .testimonial-card .testimonial-headline {
    font-size: 16px;
  }
}
.testimonials-section .testimonial-card .testimonial-text {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
  min-height: 0;
}
.testimonials-section .testimonial-card .testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: #0b1220;
  margin: 0;
  margin-top: auto;
  flex-shrink: 0;
}
.testimonials-section .testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .testimonials-section .testimonials-controls {
    justify-content: center;
    margin-top: 10px;
  }
}
.testimonials-section .testimonials-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background-color: #ffffff;
  color: #0b1220;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonials-section .testimonials-controls button:hover {
  background-color: #203558;
  color: #ffffff;
  border-color: #203558;
}
.testimonials-section .testimonials-controls button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.testimonials-section .testimonials-controls button:disabled:hover {
  background-color: #ffffff;
  color: #0b1220;
  border-color: #e5e7eb;
}
.testimonials-section .testimonials-controls button i {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .testimonials-section .testimonials-controls button {
    width: 40px;
    height: 40px;
  }
  .testimonials-section .testimonials-controls button i {
    font-size: 14px;
  }
}
.testimonials-section .tns-controls {
  display: none !important;
}
@media screen and (max-width: 991px) {
  .testimonials-section {
    padding: 70px 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .testimonials-section {
    padding: 60px 0 50px;
  }
}
@media screen and (max-width: 575px) {
  .testimonials-section {
    padding: 50px 0 40px;
  }
}

.locations-section {
  padding: 30px 0;
  background-color: #ffffff;
  overflow: hidden;
}
.locations-section .locations-header {
  margin-bottom: 40px;
}
.locations-section .locations-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .locations-section .locations-header h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .locations-section .locations-header h2 {
    font-size: 27px;
  }
}
.locations-section .locations-slider {
  width: 100%;
}
.locations-section .locations-slider .location-slide {
  overflow: hidden;
  border-radius: 12px;
}
.locations-section .locations-slider .location-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.4s ease;
  cursor: pointer;
}
.locations-section .locations-slider .location-slide img:hover {
  transform: scale(1.1);
}
.locations-section .tns-outer {
  position: relative;
}
.locations-section .tns-inner {
  overflow: visible;
}
.locations-section .tns-item {
  padding: 0 10px;
}

@media (max-width: 991.98px) {
  .locations-section {
    padding: 50px 0;
  }
  .locations-section .locations-header {
    margin-bottom: 32px;
  }
  .locations-section .tns-item {
    padding: 0 8px;
  }
}
@media (max-width: 575.98px) {
  .locations-section {
    padding: 40px 0;
  }
  .locations-section .locations-header {
    margin-bottom: 28px;
  }
  .locations-section .tns-item {
    padding: 0 5px;
  }
}
.dubai-to-you-section {
  padding: 80px 0;
}
.dubai-to-you-section .dubai-to-you-header {
  margin-bottom: 50px;
}
.dubai-to-you-section .dubai-to-you-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #0b1220;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .dubai-to-you-section .dubai-to-you-header h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 575px) {
  .dubai-to-you-section .dubai-to-you-header h2 {
    font-size: 27px;
  }
}
.dubai-to-you-section .dubai-to-you-content {
  background-color: #F2F4F6;
}
@media screen and (max-width: 767px) {
  .dubai-to-you-section .dubai-to-you-content {
    padding: 20px;
  }
}
.dubai-to-you-section .dubai-to-you-content .dubai-to-you-text {
  padding: 20px 0;
}
.dubai-to-you-section .dubai-to-you-content .dubai-to-you-text p {
  font-size: 15px;
  line-height: 1.8;
  color: #103558;
  margin-bottom: 20px;
}
.dubai-to-you-section .dubai-to-you-content .dubai-to-you-text p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .dubai-to-you-section {
    padding: 60px 0;
  }
  .dubai-to-you-section .dubai-to-you-header {
    margin-bottom: 40px;
  }
  .dubai-to-you-section .dubai-to-you-content .world-map-wrapper {
    margin-bottom: 30px;
  }
  .dubai-to-you-section .dubai-to-you-content .dubai-to-you-text {
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  .dubai-to-you-section {
    padding: 40px 0;
  }
  .dubai-to-you-section .dubai-to-you-header {
    margin-bottom: 32px;
  }
  .dubai-to-you-section .dubai-to-you-content .dubai-to-you-text p {
    font-size: 14px;
    line-height: 1.7;
  }
}

.faq-section {
  padding: 30px 0 30px;
  background-color: #ffffff;
}
.faq-section .container {
  max-width: 920px;
}
.faq-section .faq-header {
  margin-bottom: 36px;
}
.faq-section .faq-header h2 {
  font-size: 42px;
  font-weight: 900;
  color: #000;
  margin: 0;
}
.faq-section .faq-content {
  background-color: #f6f8fb;
  border-radius: 24px;
  padding: 0;
  border: 1px solid #e1e6f0;
  overflow: hidden;
}
.faq-section .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 0;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
}
.faq-section .accordion-item {
  margin: 0;
  border-bottom: 1px solid #dfe3ef;
}
.faq-section .accordion-item:last-child {
  border-bottom: none;
}
.faq-section .accordion-button {
  background-color: #fff;
  border: none;
  padding: 28px 36px;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  text-align: left;
  transition: background-color 0.2s ease;
}
.faq-section .accordion-button:not(.collapsed) {
  background-color: #eef1f7;
  box-shadow: none;
  border-bottom: 1px solid #dfe3ef;
}
.faq-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-section .accordion-button::after {
  display: none;
}
.faq-section .accordion-button .faq-number {
  font-size: 34px;
  font-weight: 700;
  color: #050505;
  min-width: 60px;
  line-height: 1;
}
.faq-section .accordion-button .faq-question {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}
.faq-section .accordion-button .accordion-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eff1f6;
  border: 1px solid #ced4e4;
  color: #0b1220;
  transition: all 0.2s ease;
  flex-shrink: 0;
  position: relative;
}
.faq-section .accordion-button .accordion-icon i {
  font-size: 15px;
  position: absolute;
}
.faq-section .accordion-button.collapsed .accordion-icon {
  background-color: #eff1f6;
  color: #0b1220;
  border-radius: 10px;
}
.faq-section .accordion-button.collapsed .accordion-icon i.fa-xmark {
  display: none;
}
.faq-section .accordion-button.collapsed .accordion-icon i.fa-plus {
  display: block;
}
.faq-section .accordion-button:not(.collapsed) .accordion-icon {
  background-color: #050505;
  border-color: #050505;
  color: #ffffff;
  border-radius: 6px;
}
.faq-section .accordion-button:not(.collapsed) .accordion-icon i.fa-plus {
  display: none;
}
.faq-section .accordion-button:not(.collapsed) .accordion-icon i.fa-xmark {
  display: block;
}
.faq-section .accordion-body {
  padding: 20px 36px 32px 120px;
  font-size: 15px;
  color: #737373;
  line-height: 1.7;
  background-color: #eef1f7;
}

@media (max-width: 767.98px) {
  .faq-section {
    padding: 30px 0;
  }
  .faq-section .faq-header h2 {
    font-size: 32px;
  }
  .faq-section .faq-content {
    border-radius: 18px;
  }
  .faq-section .accordion-button {
    padding: 22px 24px;
    gap: 16px;
  }
  .faq-section .accordion-button .faq-number {
    font-size: 26px;
    min-width: 46px;
  }
  .faq-section .accordion-button .faq-question {
    font-size: 15px;
  }
  .faq-section .accordion-body {
    padding: 16px 24px 24px 68px;
    font-size: 14px;
  }
}
@media (max-width: 575.98px) {
  .faq-section .faq-header h2 {
    font-size: 28px;
  }
  .faq-section .faq-content {
    border-radius: 16px;
  }
  .faq-section .accordion-button {
    padding: 18px 18px;
  }
  .faq-section .accordion-button .faq-number {
    min-width: 40px;
  }
  .faq-section .accordion-body {
    padding: 14px 18px 20px 58px;
    font-size: 13px;
  }
}
.site-footer {
  padding: 50px 0 0px;
  background-color: #ffffff;
  color: #103558;
}
.site-footer .footer-newsletter {
  max-width: 520px;
  margin: 0 auto 60px;
}
.site-footer .footer-newsletter .footer-logo {
  height: 54px;
  margin-bottom: 18px;
}
.site-footer .footer-newsletter .footer-newsletter-text {
  font-size: 15px;
  color: rgba(16, 53, 88, 0.8);
  margin-bottom: 24px;
}
.site-footer .newsletter-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: #f5f7fb;
  border-radius: 40px;
  padding: 6px;
}
.site-footer .newsletter-field input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 18px;
  font-size: 14px;
  outline: none;
  color: #103558;
}
.site-footer .newsletter-field button {
  border: none;
  border-radius: 32px;
  background-color: #103558;
  color: #ffffff;
  padding: 10px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.site-footer .newsletter-field button:hover {
  background-color: #17436c;
}
.site-footer .footer-bg {
  background-color: #103558;
  padding: 50px 0 32px;
}
.site-footer .footer-columns {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 30px;
  margin-bottom: 48px;
}
.site-footer .footer-column h6 {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 16px;
}
.site-footer .footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer .footer-column ul li {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  line-height: 1.5;
}
.site-footer .footer-column a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .footer-column a:hover {
  color: #ffffff;
}
.site-footer .footer-column p {
  font-size: 13px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .footer-hours h6 + p {
  margin-top: 0;
}
.site-footer .footer-social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer .footer-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}
.site-footer .footer-social a:hover {
  border-color: #ffffff;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1);
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.site-footer .footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}
.site-footer .footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-footer .footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-footer .footer-bottom-links a:hover {
  color: #ffffff;
}
.site-footer .footer-bottom-links .divider {
  width: 1px;
  height: 14px;
  background-color: rgba(255, 255, 255, 0.3);
  display: inline-block;
}

.main-nav-offcanvas {
  border: none;
  background-color: #ffffff;
}
.main-nav-offcanvas .offcanvas-header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(16, 53, 88, 0.08);
}
.main-nav-offcanvas .offcanvas-title {
  font-size: 18px;
  font-weight: 600;
  color: #103558;
  margin: 0;
}
.main-nav-offcanvas .btn-close:focus {
  box-shadow: none;
}
.main-nav-offcanvas .offcanvas-body {
  padding: 0;
}

@media (max-width: 991px) {
  .main-nav-offcanvas {
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.08);
  }
  .main-nav-offcanvas .offcanvas-header {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav-offcanvas .offcanvas-title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.02em;
  }
  .main-nav-offcanvas .btn-close {
    opacity: 0.7;
    transition: opacity 0.2s ease;
    padding: 8px;
    margin: -8px;
  }
  .main-nav-offcanvas .btn-close:hover {
    opacity: 1;
  }
  .main-nav-offcanvas .btn-close:focus {
    box-shadow: none;
  }
  .main-nav-offcanvas .offcanvas-body {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .main-nav-offcanvas .nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .main-nav-offcanvas .nav-list .nav-item {
    width: 100%;
    border-bottom: 1px solid rgba(16, 53, 88, 0.05);
  }
  .main-nav-offcanvas .nav-list .nav-item:last-child {
    border-bottom: none;
  }
  .main-nav-offcanvas .nav-list .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #103558;
    text-decoration: none;
    transition: all 0.2s ease;
    width: 100%;
    border: none;
    background: transparent;
    position: relative;
  }
  .main-nav-offcanvas .nav-list .nav-link:hover, .main-nav-offcanvas .nav-list .nav-link:focus {
    background-color: #f6f8fb;
    color: #203558;
  }
  .main-nav-offcanvas .nav-list .nav-link.dropdown-toggle::after {
    margin-left: auto;
    margin-right: 0;
    order: 2;
    border-top: 0.4em solid;
    border-right: 0.4em solid transparent;
    border-bottom: 0;
    border-left: 0.4em solid transparent;
    transition: transform 0.3s ease;
    transform-origin: center;
  }
  .main-nav-offcanvas .nav-list .nav-link.dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(180deg);
  }
  .main-nav-offcanvas .nav-list .dropdown-menu {
    border: none;
    box-shadow: none;
    background-color: #f6f8fb;
    padding: 0;
    margin: 0;
    border-radius: 0;
    border-top: 1px solid rgba(16, 53, 88, 0.05);
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropdown-item {
    padding: 12px 24px 12px 48px;
    font-size: 14px;
    color: rgba(16, 53, 88, 0.8);
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(16, 53, 88, 0.03);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropdown-item:last-child {
    border-bottom: none;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropdown-item:hover, .main-nav-offcanvas .nav-list .dropdown-menu .dropdown-item:focus {
    background-color: #eef1f7;
    color: #103558;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend {
    position: relative;
    border-left: 3px solid rgba(16, 53, 88, 0.15);
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-toggle::after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: auto;
    margin-right: 0;
    border-top: 4px solid rgba(16, 53, 88, 0.6);
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    vertical-align: middle;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(180deg);
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-menu {
    position: relative;
    top: auto;
    left: 0;
    right: 0;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    min-width: 100%;
    width: 100%;
    z-index: 1050;
    display: none;
    background-color: #eef1f7;
    padding: 0;
    border-top: 1px solid rgba(16, 53, 88, 0.05);
    border-bottom: 1px solid rgba(16, 53, 88, 0.05);
    border-left: 3px solid rgba(16, 53, 88, 0.15);
    box-shadow: none;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-menu.show {
    display: block;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-menu .dropdown-item {
    padding-left: 48px;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-menu .dropend {
    border-left: 3px solid rgba(16, 53, 88, 0.15);
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-menu .dropend .dropdown-menu {
    padding-left: 0;
    border-left: 3px solid rgba(16, 53, 88, 0.15);
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-menu .dropend .dropdown-menu .dropdown-item {
    padding-left: 72px;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-menu .dropend .dropdown-menu .dropend {
    border-left: 3px solid rgba(16, 53, 88, 0.15);
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-menu .dropend .dropdown-menu .dropend .dropdown-menu {
    border-left: 3px solid rgba(16, 53, 88, 0.15);
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropend .dropdown-menu .dropend .dropdown-menu .dropend .dropdown-menu .dropdown-item {
    padding-left: 96px;
  }
  .main-nav-offcanvas .nav-list:last-of-type {
    margin-top: auto;
    padding: 20px 24px 0;
    border-top: 1px solid rgba(16, 53, 88, 0.08);
    gap: 16px;
  }
  .main-nav-offcanvas .nav-list:last-of-type .nav-item.nav-extra {
    border-bottom: none;
    width: 100%;
  }
  .main-nav-offcanvas .nav-list:last-of-type .nav-item.nav-extra .language-btn-group {
    width: 100%;
  }
  .main-nav-offcanvas .nav-list:last-of-type .nav-item.nav-extra .language-btn-group .language-btn {
    width: 100%;
    justify-content: space-between;
    padding: 12px 18px;
    border-radius: 8px;
    border-color: #d6dae6;
  }
  .main-nav-offcanvas .nav-list:last-of-type .nav-item.nav-extra .language-btn-group .language-btn::after {
    margin-left: auto;
  }
  .main-nav-offcanvas .nav-list:last-of-type .nav-item.nav-extra .search-btn {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
    display: flex;
  }
  .main-nav-offcanvas .nav-list:last-of-type .nav-item.nav-extra .sell-btn {
    width: 100%;
    text-align: center;
    padding: 14px 26px;
    border-radius: 8px;
    display: block;
  }
}
@media (max-width: 991px) {
  .top-bar .top-bar-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .main-navbar .nav-list {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    align-items: flex-start;
    margin-left: 0;
    flex: 1;
  }
  .nav-extra {
    margin-left: 0;
  }
  .main-nav-offcanvas {
    max-width: 360px;
  }
}
@media (max-width: 767px) {
  .main-nav-offcanvas {
    max-width: 100%;
  }
  .main-nav-offcanvas .offcanvas-header {
    padding: 18px 20px;
  }
  .main-nav-offcanvas .nav-list .nav-link {
    padding: 14px 20px;
    font-size: 14px;
  }
  .main-nav-offcanvas .nav-list .dropdown-menu .dropdown-item {
    padding: 10px 20px 10px 40px;
    font-size: 13px;
  }
  .main-nav-offcanvas .nav-list:last-of-type {
    padding: 16px 20px 20px;
    gap: 12px;
  }
}
@media (max-width: 1199.98px) {
  .site-footer .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 767.98px) {
  .locations-section {
    padding: 40px 0 30px;
  }
  .locations-section .section-heading h2 {
    font-size: 30px;
  }
  .site-footer {
    padding: 30px 0 28px;
  }
  .site-footer .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}
@media (max-width: 575.98px) {
  .locations-section .section-heading h2 {
    font-size: 26px;
  }
  .site-footer {
    margin-top: 20px;
  }
  .site-footer .newsletter-field {
    flex-direction: column;
    padding: 16px;
  }
  .site-footer .newsletter-field button {
    width: 100%;
  }
  .site-footer .footer-columns {
    grid-template-columns: 1fr;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .site-footer .footer-bottom-links {
    justify-content: center;
  }
}
@media (max-width: 575.98px) {
  .top-contact {
    font-size: 11px;
    gap: 12px !important;
  }
  .search-btn {
    width: 36px;
    height: 36px;
  }
}
.buy-used-cars-section {
  padding: 30px 0 30px;
  background-color: #ffffff;
}
.buy-used-cars-section .vehicle-card {
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e7ecf5;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  opacity: 0;
  transform: translateY(30px);
}
.buy-used-cars-section .vehicle-card.is-visible {
  animation: vehicleFadeUp 0.6s ease forwards;
}
.buy-used-cars-section .vehicle-card__image {
  position: relative;
  width: 100%;
  padding-top: 70%;
  overflow: hidden;
  background-color: #f6f8fb;
}
.buy-used-cars-section .vehicle-card__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.buy-used-cars-section .vehicle-card:hover .buy-used-cars-section .vehicle-card__image img {
  transform: scale(1.05);
}
.buy-used-cars-section .vehicle-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #103558;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  transition: all 0.3s ease;
}
.buy-used-cars-section .vehicle-card__bookmark {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
  padding: 0;
}
.buy-used-cars-section .vehicle-card__bookmark i {
  font-size: 16px;
  color: #0b1220;
  transition: color 0.3s ease, transform 0.3s ease;
}
.buy-used-cars-section .vehicle-card__bookmark:hover {
  background-color: #ffffff;
  border-color: rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}
.buy-used-cars-section .vehicle-card__bookmark:hover i {
  color: #203558;
}
.buy-used-cars-section .vehicle-card__body {
  padding: 18px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.buy-used-cars-section .vehicle-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 8px;
  line-height: 1.3;
}
.buy-used-cars-section .vehicle-card__description {
  font-size: 13px;
  color: rgba(11, 18, 32, 0.7);
  margin: 0 0 14px;
  line-height: 1.4;
}
.buy-used-cars-section .vehicle-card__specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  margin-bottom: 16px;
}
.buy-used-cars-section .vehicle-card__specs .spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(11, 18, 32, 0.75);
}
.buy-used-cars-section .vehicle-card__specs .spec-item i {
  font-size: 14px;
  color: rgba(11, 18, 32, 0.6);
  width: 16px;
  flex-shrink: 0;
}
.buy-used-cars-section .vehicle-card__specs .spec-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.buy-used-cars-section .vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e7ecf5;
}
.buy-used-cars-section .vehicle-card__price {
  font-size: 20px;
  font-weight: 700;
  color: #0b1220;
  white-space: nowrap;
}
.buy-used-cars-section .vehicle-card__link {
  font-size: 13px;
  font-weight: 600;
  color: #0b1220;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
  white-space: nowrap;
}
.buy-used-cars-section .vehicle-card__link .link-icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.buy-used-cars-section .vehicle-card__link .link-icon svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}
.buy-used-cars-section .vehicle-card__link:hover {
  color: #203558;
}
.buy-used-cars-section .vehicle-card__link:hover .link-icon {
  transform: translateX(2px);
}
.buy-used-cars-section .vehicle-card__link:hover .link-icon svg {
  transform: translateX(2px);
}
.buy-used-cars-section .breadcrumb-filter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.buy-used-cars-section .breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #000000;
}
.buy-used-cars-section .breadcrumb-nav a {
  color: #000000;
  text-decoration: none;
  transition: color 0.2s ease;
}
.buy-used-cars-section .breadcrumb-nav a:hover {
  color: #103558;
}
.buy-used-cars-section .breadcrumb-nav .breadcrumb-separator {
  color: #000000;
}
.buy-used-cars-section .breadcrumb-nav span:last-child {
  color: #000000;
  font-weight: 500;
}
.buy-used-cars-section .sort-filter-row {
  display: none;
}
@media screen and (max-width: 991px) {
  .buy-used-cars-section .sort-filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .buy-used-cars-section .sort-filter-row {
    margin-bottom: 20px;
    gap: 10px;
  }
}
.buy-used-cars-section .filter-settings-btn {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  border: none;
  background-color: #103558;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.buy-used-cars-section .filter-settings-btn i {
  font-size: 18px;
  color: #ffffff;
}
.buy-used-cars-section .filter-settings-btn:hover {
  background-color: #17436c;
}
.buy-used-cars-section .filter-settings-btn:active {
  transform: scale(0.98);
  background-color: #17436c;
}
@media screen and (max-width: 767px) {
  .buy-used-cars-section .filter-settings-btn {
    width: 44px;
    height: 44px;
  }
  .buy-used-cars-section .filter-settings-btn i {
    font-size: 16px;
  }
}
.buy-used-cars-section .sort-by-dropdown {
  display: flex;
  align-items: center;
  gap: 8px;
}
.buy-used-cars-section .sort-by-dropdown label {
  font-size: 14px;
  color: #103558;
  font-weight: 500;
  white-space: nowrap;
}
.buy-used-cars-section .sort-by-dropdown .form-select {
  padding: 8px 32px 8px 12px;
  border: 1px solid #e7ecf5;
  border-radius: 8px;
  font-size: 14px;
  color: #103558;
  background-color: #ffffff;
  cursor: pointer;
  min-width: 150px;
}
.buy-used-cars-section .sort-by-dropdown .form-select:focus {
  border-color: #0b2a52;
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 42, 82, 0.1);
}
@media screen and (max-width: 991px) {
  .buy-used-cars-section .sort-by-desktop {
    display: none;
  }
}
.buy-used-cars-section .sort-by-mobile {
  display: none;
  flex: 1;
}
@media screen and (max-width: 991px) {
  .buy-used-cars-section .sort-by-mobile {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .buy-used-cars-section .sort-by-mobile .form-select {
    font-size: 13px;
    padding: 8px 28px 8px 10px;
    min-width: auto;
    max-width: 100%;
    width: 100%;
  }
}
.buy-used-cars-section .tabs-header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .buy-used-cars-section .tabs-header-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
.buy-used-cars-section .view-toggle-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #e7ecf5;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #103558;
  transition: all 0.2s ease;
}
.buy-used-cars-section .view-toggle-btn:hover {
  border-color: #203558;
  color: #203558;
}
.buy-used-cars-section .view-toggle-btn i {
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .buy-used-cars-section .view-toggle-btn {
    display: none;
  }
}
.buy-used-cars-section .vehicle-tabs {
  border-bottom: none;
  margin-bottom: 0;
  padding: 0;
  gap: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.buy-used-cars-section .vehicle-tabs .nav-item {
  margin-bottom: 0;
}
.buy-used-cars-section .vehicle-tabs .nav-link {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #103558;
  border: 1px solid #e7ecf5;
  background-color: #ffffff;
  border-radius: 8px;
  transition: all 0.2s ease;
  position: relative;
}
.buy-used-cars-section .vehicle-tabs .nav-link:hover {
  border-color: #203558;
  color: #203558;
}
.buy-used-cars-section .vehicle-tabs .nav-link.active {
  color: #ffffff;
  background-color: #103558;
  border-color: #103558;
  font-weight: 600;
}
.buy-used-cars-section .vehicle-tabs .nav-link:focus {
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .buy-used-cars-section .vehicle-tabs {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap;
    gap: 8px;
  }
  .buy-used-cars-section .vehicle-tabs::-webkit-scrollbar {
    display: none;
  }
  .buy-used-cars-section .vehicle-tabs .nav-item {
    display: inline-block;
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .buy-used-cars-section .vehicle-tabs .nav-link {
    padding: 8px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
}
.buy-used-cars-section .buy-cars-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
}
@media screen and (max-width: 992px) {
  .buy-used-cars-section .buy-cars-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.buy-used-cars-section .filters-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .buy-used-cars-section .filters-sidebar {
    order: 2;
  }
}
.buy-used-cars-section .filters-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e7ecf5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.buy-used-cars-section .filters-section .filters-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 24px;
}
.buy-used-cars-section .filters-section .filter-group {
  margin-bottom: 20px;
}
.buy-used-cars-section .filters-section .filter-group:last-child {
  margin-bottom: 0;
}
.buy-used-cars-section .filters-section .filter-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #103558;
  margin-bottom: 8px;
}
.buy-used-cars-section .filters-section .filter-group .form-select {
  width: 100%;
  padding: 10px 32px 10px 12px;
  border: 1px solid #e7ecf5;
  border-radius: 8px;
  font-size: 14px;
  color: #103558;
  background-color: #ffffff;
  cursor: pointer;
}
.buy-used-cars-section .filters-section .filter-group .form-select:focus {
  border-color: #0b2a52;
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 42, 82, 0.1);
}
.buy-used-cars-section .filters-section .filter-group .price-range-container .form-range {
  width: 100%;
  height: 6px;
  background-color: #e7ecf5;
  border-radius: 3px;
  outline: none;
  margin: 12px 0;
}
.buy-used-cars-section .filters-section .filter-group .price-range-container .form-range::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  background-color: #0b2a52;
  border-radius: 50%;
  cursor: pointer;
}
.buy-used-cars-section .filters-section .filter-group .price-range-container .form-range::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background-color: #0b2a52;
  border-radius: 50%;
  cursor: pointer;
  border: none;
}
.buy-used-cars-section .filters-section .filter-group .price-range-container .price-range-values {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: rgba(16, 53, 88, 0.7);
  margin-top: 8px;
}
.buy-used-cars-section .filters-section .search-filter-btn {
  width: 100%;
  padding: 12px 20px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}
.buy-used-cars-section .filters-section .search-filter-btn:hover {
  background-color: #17436c;
}
.buy-used-cars-section .filters-section .search-filter-btn i {
  font-size: 14px;
}
.buy-used-cars-section .price-calculator-section {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e7ecf5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.buy-used-cars-section .price-calculator-section .calculator-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 12px;
}
.buy-used-cars-section .price-calculator-section .calculator-description {
  font-size: 13px;
  color: rgba(16, 53, 88, 0.7);
  line-height: 1.5;
  margin: 0 0 20px;
}
.buy-used-cars-section .price-calculator-section .calculator-inputs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.buy-used-cars-section .price-calculator-section .calculator-inputs .calculator-inputs-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.buy-used-cars-section .price-calculator-section .calculator-inputs .input-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #103558;
  margin-bottom: 6px;
}
.buy-used-cars-section .price-calculator-section .calculator-inputs .input-group .form-control {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #e7ecf5;
  border-radius: 8px;
  font-size: 14px;
  color: #103558;
  background-color: #ffffff;
}
.buy-used-cars-section .price-calculator-section .calculator-inputs .input-group .form-control:focus {
  border-color: #0b2a52;
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 42, 82, 0.1);
}
.buy-used-cars-section .price-calculator-section .calculator-inputs .calculate-btn {
  width: 100%;
  padding: 12px 20px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease;
}
.buy-used-cars-section .price-calculator-section .calculator-inputs .calculate-btn .link-icon {
  display: inline-flex;
  align-items: center;
}
.buy-used-cars-section .price-calculator-section .calculator-inputs .calculate-btn .link-icon svg {
  width: 14px;
  height: 14px;
}
.buy-used-cars-section .price-calculator-section .calculator-inputs .calculate-btn:hover {
  background-color: #17436c;
}
.buy-used-cars-section .price-calculator-section .calculator-inputs .calculate-btn i {
  font-size: 12px;
}
.buy-used-cars-section .collapsible-section {
  background-color: #ffffff;
  border-radius: 12px;
  border: 1px solid #e7ecf5;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}
.buy-used-cars-section .collapsible-section .collapsible-header {
  width: 100%;
  padding: 16px 20px;
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: #0b1220;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.buy-used-cars-section .collapsible-section .collapsible-header:hover {
  background-color: #eef1f7;
}
.buy-used-cars-section .collapsible-section .collapsible-header i {
  font-size: 14px;
  color: #103558;
  transition: transform 0.2s ease;
}
.buy-used-cars-section .collapsible-section .collapsible-header[aria-expanded=true] i {
  transform: rotate(45deg);
}
.buy-used-cars-section .collapsible-section .collapsible-content {
  padding: 16px 20px;
  font-size: 14px;
  color: rgba(16, 53, 88, 0.7);
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group {
  margin-bottom: 20px;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group:last-child {
  margin-bottom: 0;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group label {
  font-size: 14px;
  font-weight: 600;
  color: #103558;
  margin: 0 0 8px 0;
  display: block;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .filter-group-header label {
  margin: 0;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .filter-group-header .reset-link {
  font-size: 13px;
  color: #0b2a52;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .filter-group-header .reset-link:hover {
  color: #203558;
  text-decoration: underline;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .form-select,
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .form-control {
  width: 100%;
  padding: 8px 28px 8px 10px;
  border: 1px solid #e7ecf5;
  border-radius: 6px;
  font-size: 13px;
  color: #103558;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .form-select:focus,
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .form-control:focus {
  border-color: #0b2a52;
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 42, 82, 0.1);
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .form-select::placeholder,
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .form-control::placeholder {
  color: #999999;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .filter-range-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .range-input-wrapper {
  width: 100%;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .range-input-wrapper .form-select,
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .range-input-wrapper .form-control {
  width: 100%;
  padding: 8px 28px 8px 10px;
  border: 1px solid #e7ecf5;
  border-radius: 6px;
  font-size: 13px;
  color: #103558;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .range-input-wrapper .form-select:focus,
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .range-input-wrapper .form-control:focus {
  border-color: #0b2a52;
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 42, 82, 0.1);
}
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .range-input-wrapper .form-select::placeholder,
.buy-used-cars-section .collapsible-section .collapsible-content .filter-group .range-input-wrapper .form-control::placeholder {
  color: #999999;
}
.buy-used-cars-section .vehicles-grid {
  width: 100%;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 1200px) {
  .buy-used-cars-section .vehicles-grid .vehicle-card-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
}
@media screen and (max-width: 768px) {
  .buy-used-cars-section .vehicles-grid .vehicle-card-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}
@media screen and (max-width: 575px) {
  .buy-used-cars-section .vehicles-grid .vehicle-card-group {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  height: auto;
  min-height: 200px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__image {
  width: 320px;
  min-width: 320px;
  flex-shrink: 0;
  padding-top: 0;
  height: auto;
  position: relative;
  background-color: #f6f8fb;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__image img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__image .vehicle-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background-color: #103558;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  z-index: 2;
  transition: all 0.3s ease;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__image .vehicle-card__bookmark {
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__image .vehicle-card__bookmark i {
  font-size: 14px;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 200px;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1220;
  margin: 0 0 8px;
  line-height: 1.4;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__description {
  font-size: 13px;
  color: rgba(11, 18, 32, 0.6);
  margin: 0 0 12px;
  line-height: 1.4;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  margin: 12px 0;
  flex-wrap: wrap;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.75);
  padding-right: 12px;
  margin-right: 12px;
  position: relative;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 16px;
  background-color: rgba(11, 18, 32, 0.2);
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item i {
  font-size: 14px;
  color: rgba(11, 18, 32, 0.6);
  width: auto;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item span {
  white-space: nowrap;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #e7ecf5;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__price {
  font-size: 22px;
  font-weight: 700;
  color: #0b1220;
  white-space: nowrap;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link {
  font-size: 13px;
  font-weight: 600;
  color: #0b1220;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #e7ecf5;
  border-radius: 6px;
  transition: all 0.3s ease;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link:hover {
  background-color: #203558;
  color: #ffffff;
  border-color: #203558;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link:hover .link-icon svg {
  fill: #ffffff;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link .link-icon {
  display: inline-flex;
  align-items: center;
}
.buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__link .link-icon svg {
  width: 14px;
  height: 14px;
  transition: fill 0.3s ease;
}
@media screen and (max-width: 992px) {
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__image {
    width: 280px;
    min-width: 280px;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body {
    padding: 18px 20px;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__title {
    font-size: 16px;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item {
    font-size: 12px;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__price {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card {
    flex-direction: column;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__image {
    width: 100%;
    min-width: 100%;
    height: 200px;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__image img {
    min-height: 200px;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body {
    width: 100%;
    padding: 16px;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item {
    padding-right: 0;
    margin-right: 0;
  }
  .buy-used-cars-section .vehicles-grid .vehicle-card-group.row-view .vehicle-card .vehicle-card__body .vehicle-card__specs .spec-item:not(:last-child)::after {
    display: none;
  }
}
.buy-used-cars-section .load-more-container {
  margin-top: 40px;
  padding: 20px 0;
}
.buy-used-cars-section .load-more-container .load-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 40px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  font-family: "Lato", sans-serif;
}
.buy-used-cars-section .load-more-container .load-more-btn:hover {
  background-color: #17436c;
  transform: translateY(-2px);
}
.buy-used-cars-section .load-more-container .load-more-btn:active {
  transform: translateY(0);
}
.buy-used-cars-section .load-more-container .load-more-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.buy-used-cars-section .load-more-container .load-more-btn:hover i {
  transform: translateY(2px);
}
@media screen and (max-width: 767px) {
  .buy-used-cars-section {
    padding: 20px 0 40px;
  }
  .buy-used-cars-section .breadcrumb-filter-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
  }
  .buy-used-cars-section .breadcrumb-nav {
    font-size: 13px;
  }
  .buy-used-cars-section .sort-filter-row {
    margin-bottom: 16px;
  }
  .buy-used-cars-section .buy-cars-header {
    margin-bottom: 24px;
  }
  .buy-used-cars-section .filters-sidebar {
    display: none;
  }
  .buy-used-cars-section .filters-section,
  .buy-used-cars-section .price-calculator-section {
    padding: 16px;
  }
}

.not-sure-section {
  margin: 40px 0;
  background: linear-gradient(90deg, #219AF2 0%, #13598C 100%);
  border-radius: 16px;
  overflow: hidden;
}
.not-sure-section .not-sure-image {
  text-align: center;
}
.not-sure-section .not-sure-image img {
  max-width: 190px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .not-sure-section .not-sure-image img {
    max-width: 100%;
  }
}
.not-sure-section .not-sure-content {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .not-sure-section .not-sure-content {
    padding: 15px 0;
    justify-content: center;
  }
}
.not-sure-section .not-sure-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
}
@media screen and (max-width: 991px) {
  .not-sure-section .not-sure-title {
    font-size: 28px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  .not-sure-section .not-sure-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 575px) {
  .not-sure-section .not-sure-title {
    font-size: 20px;
    margin-bottom: 14px;
  }
}
.not-sure-section .not-sure-btn {
  background-color: #ffffff;
  color: #103558;
  border: none;
  padding: 10px 26px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.not-sure-section .not-sure-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.not-sure-section .not-sure-btn:active {
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .not-sure-section .not-sure-btn {
    padding: 10px 28px;
    font-size: 14px;
  }
}
@media screen and (max-width: 575px) {
  .not-sure-section .not-sure-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}
@media screen and (max-width: 991px) {
  .not-sure-section {
    margin: 30px 0;
    padding: 25px 0;
  }
  .not-sure-section .container-fluid {
    padding: 0 20px;
  }
  .not-sure-section .not-sure-content {
    min-height: 120px;
    padding: 15px 0;
  }
}
@media screen and (max-width: 767px) {
  .not-sure-section {
    margin: 24px 0;
    padding: 20px 0;
    border-radius: 12px;
  }
  .not-sure-section .container-fluid {
    padding: 0 16px;
  }
  .not-sure-section .row {
    text-align: center;
  }
  .not-sure-section .not-sure-image {
    margin-bottom: 15px;
  }
  .not-sure-section .not-sure-content {
    min-height: auto;
    padding: 10px 0;
  }
}

#filtersOffcanvas {
  width: 400px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 575px) {
  #filtersOffcanvas {
    width: 85vw;
  }
}
#filtersOffcanvas .offcanvas-header {
  border-bottom: 1px solid #e7ecf5;
  padding: 16px 20px;
  flex-shrink: 0;
}
#filtersOffcanvas .offcanvas-header .offcanvas-title {
  font-size: 18px;
  font-weight: 700;
  color: #0b1220;
  margin: 0;
}
#filtersOffcanvas .offcanvas-header .btn-close {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
}
@media screen and (max-width: 575px) {
  #filtersOffcanvas .offcanvas-header {
    padding: 14px 16px;
  }
  #filtersOffcanvas .offcanvas-header .offcanvas-title {
    font-size: 16px;
  }
}
#filtersOffcanvas .offcanvas-body {
  padding: 20px;
  overflow-y: auto;
  flex: 1;
  min-height: 0;
}
@media screen and (max-width: 575px) {
  #filtersOffcanvas .offcanvas-body {
    padding: 16px;
  }
}
#filtersOffcanvas .filters-offcanvas-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#filtersOffcanvas .filter-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
#filtersOffcanvas .filter-group label {
  font-size: 13px;
  font-weight: 500;
  color: #103558;
  margin: 0;
}
#filtersOffcanvas .filter-group .filter-group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
#filtersOffcanvas .filter-group .filter-group-header label {
  margin: 0;
  font-size: 13px;
}
#filtersOffcanvas .filter-group .filter-group-header .reset-link {
  font-size: 12px;
  color: #0b2a52;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
#filtersOffcanvas .filter-group .filter-group-header .reset-link:hover {
  color: #203558;
  text-decoration: underline;
}
#filtersOffcanvas .filter-group .form-select,
#filtersOffcanvas .filter-group .form-control {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #e7ecf5;
  border-radius: 6px;
  font-size: 13px;
  color: #103558;
  background-color: #ffffff;
  transition: border-color 0.2s ease;
}
#filtersOffcanvas .filter-group .form-select:focus,
#filtersOffcanvas .filter-group .form-control:focus {
  border-color: #0b2a52;
  outline: none;
  box-shadow: 0 0 0 3px rgba(11, 42, 82, 0.1);
}
#filtersOffcanvas .filter-group .form-select::placeholder,
#filtersOffcanvas .filter-group .form-control::placeholder {
  color: #999999;
}
#filtersOffcanvas .filter-group .filter-range-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
#filtersOffcanvas .filter-group .range-input-wrapper {
  width: 100%;
}
#filtersOffcanvas .offcanvas-footer {
  border-top: 1px solid #e7ecf5;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: #ffffff;
  flex-shrink: 0;
}
#filtersOffcanvas .offcanvas-footer .btn {
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  flex: 1;
}
#filtersOffcanvas .offcanvas-footer .btn-reset-all {
  background-color: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}
#filtersOffcanvas .offcanvas-footer .btn-reset-all:hover {
  background-color: #fee2e2;
  border-color: #fca5a5;
}
#filtersOffcanvas .offcanvas-footer .btn-show {
  background-color: #103558;
  color: #ffffff;
}
#filtersOffcanvas .offcanvas-footer .btn-show:hover {
  background-color: #17436c;
}
#filtersOffcanvas .offcanvas-footer .btn-show:active {
  background-color: #17436c;
}
@media screen and (max-width: 575px) {
  #filtersOffcanvas .offcanvas-footer {
    padding: 12px 16px;
    flex-direction: column;
    gap: 8px;
  }
  #filtersOffcanvas .offcanvas-footer .btn {
    width: 100%;
    padding: 10px 20px;
    font-size: 13px;
  }
}

#requestCallbackModal .modal-dialog {
  max-width: 500px;
  margin: 1.75rem auto;
}
@media screen and (max-width: 575px) {
  #requestCallbackModal .modal-dialog {
    max-width: 95%;
    margin: 1rem auto;
  }
}
#requestCallbackModal .modal-content {
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
}
#requestCallbackModal .modal-header {
  border-bottom: 1px solid #e7ecf5;
  padding: 20px 24px;
  border-radius: 16px 16px 0 0;
}
#requestCallbackModal .modal-header .modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #0b1220;
  margin: 0;
}
#requestCallbackModal .modal-header .btn-close {
  padding: 0.5rem;
  margin: -0.5rem -0.5rem -0.5rem auto;
  opacity: 0.7;
}
#requestCallbackModal .modal-header .btn-close:hover {
  opacity: 1;
}
@media screen and (max-width: 575px) {
  #requestCallbackModal .modal-header {
    padding: 16px 20px;
  }
  #requestCallbackModal .modal-header .modal-title {
    font-size: 18px;
  }
}
#requestCallbackModal .modal-body {
  padding: 24px;
  background-color: #ffffff;
}
@media screen and (max-width: 575px) {
  #requestCallbackModal .modal-body {
    padding: 20px;
  }
}
#requestCallbackModal .request-callback-form .form-group {
  margin-bottom: 20px;
}
#requestCallbackModal .request-callback-form .form-group:last-child {
  margin-bottom: 0;
}
#requestCallbackModal .request-callback-form .form-group label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0b1220;
  margin-bottom: 8px;
}
#requestCallbackModal .request-callback-form .form-group .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e7ecf5;
  border-radius: 8px;
  font-size: 14px;
  color: #103558;
  background-color: #ffffff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
}
#requestCallbackModal .request-callback-form .form-group .form-control:focus {
  border-color: #0b2a52;
  outline: none;
  box-shadow: 0 2px 8px rgba(11, 42, 82, 0.1);
}
#requestCallbackModal .request-callback-form .form-group .form-control::placeholder {
  color: #999999;
  font-weight: 400;
}
#requestCallbackModal .request-callback-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
#requestCallbackModal .modal-footer {
  border-top: 1px solid #e7ecf5;
  padding: 20px 24px;
  display: flex;
  justify-content: center;
  background-color: #ffffff;
  border-radius: 0 0 16px 16px;
}
#requestCallbackModal .modal-footer .btn-submit {
  padding: 12px 40px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(11, 42, 82, 0.2);
}
#requestCallbackModal .modal-footer .btn-submit:hover {
  background-color: #17436c;
  box-shadow: 0 4px 8px rgba(11, 42, 82, 0.3);
  transform: translateY(-1px);
}
#requestCallbackModal .modal-footer .btn-submit:active {
  background-color: #17436c;
  transform: translateY(0);
}
@media screen and (max-width: 575px) {
  #requestCallbackModal .modal-footer {
    padding: 16px 20px;
  }
  #requestCallbackModal .modal-footer .btn-submit {
    width: 100%;
    padding: 12px 24px;
  }
}

.faq-banner {
  background-image: url("../images/faqs-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .faq-banner {
    height: 350px;
    min-height: 350px;
  }
}
@media screen and (max-width: 767px) {
  .faq-banner {
    height: 300px;
    min-height: 300px;
  }
}
@media screen and (max-width: 575px) {
  .faq-banner {
    height: 250px;
    min-height: 250px;
  }
}
.faq-banner .faq-banner-content {
  text-align: center;
  position: relative;
  width: 100%;
  padding: 0 20px;
}
.faq-banner .faq-breadcrumb {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .faq-banner .faq-breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.faq-banner .faq-banner-title {
  font-size: 80px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 3;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .faq-banner .faq-banner-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 767px) {
  .faq-banner .faq-banner-title {
    font-size: 45px;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 575px) {
  .faq-banner .faq-banner-title {
    font-size: 35px;
  }
}
.faq-banner .faq-banner-description {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 991px) {
  .faq-banner .faq-banner-description {
    font-size: 16px;
    margin: 18px 0 25px;
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  .faq-banner .faq-banner-description {
    font-size: 15px;
    margin: 15px 0 20px;
    max-width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .faq-banner .faq-banner-description {
    font-size: 14px;
    margin: 12px 0 18px;
  }
}
.faq-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.values-banner {
  background-image: url("../images/value.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .values-banner {
    min-height: 400px;
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .values-banner {
    min-height: 350px;
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .values-banner {
    min-height: 300px;
    padding: 40px 0;
  }
}
.values-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.values-banner .container {
  position: relative;
  z-index: 2;
}
.values-banner .values-banner-content {
  position: relative;
  z-index: 3;
  padding-right: 80px;
}
@media screen and (max-width: 991px) {
  .values-banner .values-banner-content {
    padding-right: 0;
    text-align: center;
  }
}
.values-banner .values-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 767px) {
  .values-banner .values-breadcrumb {
    font-size: 14px;
    margin-bottom: 15px;
    justify-content: center;
  }
}
.values-banner .values-breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s ease;
}
.values-banner .values-breadcrumb a:hover {
  color: #ffffff;
}
.values-banner .values-breadcrumb .breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
}
.values-banner .values-breadcrumb span:last-child {
  color: #ffffff;
  font-weight: 500;
}
.values-banner .values-banner-title {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  .values-banner .values-banner-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  .values-banner .values-banner-title {
    font-size: 50px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .values-banner .values-banner-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 575px) {
  .values-banner .values-banner-title {
    font-size: 32px;
  }
}

.payment-banner {
  background-image: url("../images/value.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .payment-banner {
    min-height: 450px;
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .payment-banner {
    min-height: 400px;
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .payment-banner {
    min-height: 350px;
    padding: 40px 0;
  }
}
.payment-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.payment-banner .container {
  position: relative;
  z-index: 2;
}
.payment-banner .payment-banner-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.payment-banner .payment-banner-title {
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  .payment-banner .payment-banner-title {
    font-size: 56px;
  }
}
@media screen and (max-width: 991px) {
  .payment-banner .payment-banner-title {
    font-size: 48px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  .payment-banner .payment-banner-title {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 575px) {
  .payment-banner .payment-banner-title {
    font-size: 32px;
    margin-bottom: 14px;
  }
}
.payment-banner .payment-banner-subtitle {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 30px 0;
  font-weight: 400;
  opacity: 0.95;
}
@media screen and (max-width: 991px) {
  .payment-banner .payment-banner-subtitle {
    font-size: 16px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .payment-banner .payment-banner-subtitle {
    font-size: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .payment-banner .payment-banner-subtitle {
    font-size: 14px;
    margin-bottom: 18px;
  }
}
.payment-banner .payment-see-more-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #ffffff;
  color: #103558;
  border: none;
  border-radius: 8px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: none;
  letter-spacing: 0.3px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}
.payment-banner .payment-see-more-btn:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  color: #103558;
  text-decoration: none;
}
.payment-banner .payment-see-more-btn:active {
  transform: translateY(0);
}
@media screen and (max-width: 767px) {
  .payment-banner .payment-see-more-btn {
    padding: 10px 28px;
    font-size: 13px;
  }
}

.join-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .join-banner {
    min-height: 380px;
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .join-banner {
    min-height: 340px;
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .join-banner {
    min-height: 300px;
    padding: 40px 0;
  }
}
.join-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 24, 46, 0.78);
  z-index: 1;
}
.join-banner .container {
  position: relative;
  z-index: 2;
}
.join-banner .join-banner-content {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  color: #ffffff;
}
.join-banner .join-banner-title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}
.join-banner .join-banner-subtitle {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.95;
  max-width: 680px;
  margin: 0 auto 28px auto;
}
.join-banner .join-banner-actions {
  display: inline-flex;
  gap: 14px;
}
.join-banner .join-primary-btn,
.join-banner .join-outline-btn {
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 4px;
  border: 1px solid #ffffff;
  text-transform: none;
}
.join-banner .join-primary-btn {
  background-color: #ffffff;
  color: #103558;
}
.join-banner .join-outline-btn {
  background-color: transparent;
  color: #ffffff;
}

.join-positions-section {
  padding: 80px 0;
  background-color: #f5f7fb;
}

.join-positions-title {
  font-size: 32px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 40px 0;
}

.join-positions-layout {
  align-items: flex-start;
}

.join-tabs {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  padding: 8px 0;
}

.join-tabs .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0;
  padding: 12px 18px;
  color: #4b5563;
  font-size: 14px;
  border-left: 3px solid transparent;
}

.join-tabs .nav-link.active {
  background-color: #f3f4ff;
  color: #111827;
  border-left-color: #103558;
  font-weight: 600;
}

.join-tab-label {
  font-weight: 500;
}

.join-tab-count {
  color: #6b7280;
  font-size: 13px;
}

.join-tabs-note {
  margin-top: 20px;
  font-size: 13px;
  color: #4b5563;
}

.join-tabs-note p {
  margin-bottom: 12px;
}

.join-share-btn {
  padding: 8px 18px;
  font-size: 13px;
  border-radius: 999px;
  border: 1px solid #103558;
  color: #103558;
  background-color: #ffffff;
}

.join-share-btn:hover {
  background-color: #103558;
  color: #ffffff;
}

.join-job-card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  padding: 22px 24px;
  margin-bottom: 20px;
}

.join-job-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 10px;
}

.join-job-title {
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.join-job-tags {
  display: flex;
  gap: 6px;
}

.join-tag {
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #f3f4ff;
  color: #111827;
}

.join-job-text {
  font-size: 14px;
  line-height: 1.7;
  color: #4b5563;
  margin: 0 0 16px 0;
}

.join-job-footer {
  display: flex;
  justify-content: flex-end;
}

.join-job-btn {
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 999px;
  background-color: #103558;
  color: #ffffff;
}

.join-job-btn:hover {
  color: #ffffff;
  background-color: #0b2742;
}

@media screen and (max-width: 991px) {
  .join-positions-section {
    padding: 60px 0;
  }
  .join-positions-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .join-positions-layout {
    row-gap: 24px;
  }
}
.payment-methods-section {
  padding: 80px 0;
  background-color: #ffffff;
}

@media screen and (max-width: 767px) {
  .payment-methods-section {
    padding: 60px 0;
  }
}
.payment-methods-title {
  font-size: 32px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 767px) {
  .payment-methods-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .payment-method-row img {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .payment-method-row {
    margin-bottom: 40px;
  }
}
.payment-method-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 26px;
  background-color: #103558;
  color: #ffffff;
  border-radius: 0;
  font-size: 18px;
  font-weight: 600;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  width: 100%;
}

.payment-method-number {
  font-weight: 700;
  font-size: 18px;
}

.payment-method-name {
  font-weight: 600;
}

.payment-method-icon {
  display: inline-flex;
  align-items: center;
}

.payment-method-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.payment-method-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-top: 16px;
  margin-bottom: 0;
}

.payment-method-image {
  max-width: 100%;
  height: auto;
}

.payment-content-section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .payment-content-section {
    padding: 60px 0;
  }
}

.refund-policy-section {
  padding: 80px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .refund-policy-section {
    padding: 60px 0;
  }
}

.refund-policy-title {
  font-size: 32px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 40px 0;
}

@media screen and (max-width: 767px) {
  .refund-policy-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
.refund-block {
  margin-bottom: 50px;
}
.refund-block img {
  max-width: 250px;
}
@media screen and (max-width: 991px) {
  .refund-block {
    margin-bottom: 30px;
  }
}

.refund-block:last-child {
  margin-bottom: 0;
}

.refund-block-heading {
  background-color: #103558;
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding: 14px 20px;
  margin-bottom: 24px;
}

.refund-block-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 12px;
}

.refund-block-text p:last-child {
  margin-bottom: 0;
}

.refund-block-image {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 991px) {
  .refund-block-row + .refund-block-row {
    margin-top: 30px;
  }
}
.core-values-section {
  padding: 80px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  .core-values-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .core-values-section {
    padding: 40px 0;
  }
}
.core-values-section .core-values-header {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .core-values-section .core-values-header {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .core-values-section .core-values-header {
    margin-bottom: 40px;
  }
}
.core-values-section .core-values-title {
  font-size: 48px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 30px 0;
  text-align: center;
  background-color: #f5f5f5;
  padding: 20px 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 991px) {
  .core-values-section .core-values-title {
    font-size: 40px;
    padding: 18px 0;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .core-values-section .core-values-title {
    font-size: 32px;
    padding: 15px 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .core-values-section .core-values-title {
    font-size: 28px;
    padding: 12px 0;
  }
}
.core-values-section .core-values-description {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 991px) {
  .core-values-section .core-values-description {
    font-size: 15px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 767px) {
  .core-values-section .core-values-description {
    font-size: 14px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 575px) {
  .core-values-section .core-values-description {
    font-size: 13px;
    padding: 0 15px;
  }
}
.core-values-section .core-values-items {
  margin-top: 50px;
}
@media screen and (max-width: 991px) {
  .core-values-section .core-values-items {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .core-values-section .core-values-items {
    margin-top: 30px;
  }
}
.core-values-section .core-values-items .col-lg-3,
.core-values-section .core-values-items .col-md-6,
.core-values-section .core-values-items .col-sm-6 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .core-values-section .core-values-items .col-lg-3,
  .core-values-section .core-values-items .col-md-6,
  .core-values-section .core-values-items .col-sm-6 {
    margin-bottom: 25px;
  }
}
.core-values-section .core-value-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}
.core-values-section .core-value-item:hover {
  transform: translateY(-5px);
}
@media screen and (max-width: 767px) {
  .core-values-section .core-value-item {
    padding: 15px;
  }
}
.core-values-section .core-value-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
}
@media screen and (max-width: 991px) {
  .core-values-section .core-value-icon {
    height: 100px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  .core-values-section .core-value-icon {
    height: 90px;
    margin-bottom: 12px;
  }
}
.core-values-section .core-value-icon img {
  max-width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.core-values-section .core-value-label {
  font-size: 20px;
  font-weight: 600;
  color: #103558;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 991px) {
  .core-values-section .core-value-label {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .core-values-section .core-value-label {
    font-size: 16px;
  }
}
@media screen and (max-width: 575px) {
  .core-values-section .core-value-label {
    font-size: 15px;
  }
}

.vision-mission-section {
  padding: 0 0 40px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  .vision-mission-section {
    padding: 0 0 30px 0;
  }
}
@media screen and (max-width: 767px) {
  .vision-mission-section {
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  .vision-mission-section .row {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .vision-mission-section .col-lg-6,
  .vision-mission-section .col-md-6 {
    margin-bottom: 30px;
  }
}

.vision-mission-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}

.vision-mission-header {
  background-color: #103558;
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  padding: 20px 30px;
  margin: 0 0 25px 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 991px) {
  .vision-mission-header {
    font-size: 24px;
    padding: 18px 25px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .vision-mission-header {
    font-size: 22px;
    padding: 15px 20px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 575px) {
  .vision-mission-header {
    font-size: 20px;
    padding: 12px 15px;
    margin-bottom: 15px;
  }
}

.vision-mission-content {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  margin: 0;
  text-align: left;
  padding: 0 10px;
}
@media screen and (max-width: 991px) {
  .vision-mission-content {
    font-size: 15px;
    padding: 0 5px;
  }
}
@media screen and (max-width: 767px) {
  .vision-mission-content {
    font-size: 14px;
    padding: 0;
  }
}
@media screen and (max-width: 575px) {
  .vision-mission-content {
    font-size: 13px;
  }
}

.trust-section {
  background-color: #ffffff;
  padding-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .trust-section {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .trust-section {
    padding-bottom: 40px;
  }
}

.trust-banner {
  background-color: #103558;
  padding: 40px 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
  .trust-banner {
    padding: 35px 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .trust-banner {
    padding: 30px 0;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 575px) {
  .trust-banner {
    padding: 25px 0;
    margin-bottom: 30px;
  }
}

.trust-banner-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 991px) {
  .trust-banner-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .trust-banner-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .trust-banner-title {
    font-size: 24px;
  }
}

.trust-content {
  max-width: 1200px;
  margin: 0 auto;
}

.trust-item {
  margin-bottom: 50px;
}
.trust-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .trust-item {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .trust-item {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 575px) {
  .trust-item {
    margin-bottom: 30px;
  }
}

.trust-item-heading {
  font-size: 28px;
  font-weight: 700;
  color: #103558;
  text-align: center;
  margin: 0 0 20px 0;
  text-transform: capitalize;
}
@media screen and (max-width: 991px) {
  .trust-item-heading {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 767px) {
  .trust-item-heading {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 575px) {
  .trust-item-heading {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.trust-item-content {
  font-size: 16px;
  color: #000000;
  line-height: 1.7;
  margin: 0;
  text-align: left;
  padding: 0 20px;
}
@media screen and (max-width: 991px) {
  .trust-item-content {
    font-size: 15px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  .trust-item-content {
    font-size: 14px;
    padding: 0 10px;
  }
}
@media screen and (max-width: 575px) {
  .trust-item-content {
    font-size: 13px;
    padding: 0;
  }
}

.blog-banner {
  background-image: url("../images/blog-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .blog-banner {
    min-height: 500px;
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .blog-banner {
    min-height: 450px;
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .blog-banner {
    min-height: 400px;
    padding: 40px 0;
  }
}
.blog-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.blog-banner .container {
  position: relative;
  z-index: 2;
}
.blog-banner .blog-banner-content {
  position: relative;
  z-index: 3;
  padding-right: 80px;
}
@media screen and (max-width: 1200px) {
  .blog-banner .blog-banner-content {
    padding-right: 60px;
  }
}
@media screen and (max-width: 991px) {
  .blog-banner .blog-banner-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}
.blog-banner .blog-banner-title {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  .blog-banner .blog-banner-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  .blog-banner .blog-banner-title {
    font-size: 50px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .blog-banner .blog-banner-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .blog-banner .blog-banner-title {
    font-size: 32px;
  }
}
.blog-banner .blog-banner-title .title-line {
  display: block;
}
.blog-banner .blog-banner-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .blog-banner .blog-banner-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .blog-banner .blog-banner-text {
    font-size: 14px;
  }
}
.blog-banner .blog-banner-image {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-left: 40px;
}
@media screen and (max-width: 1200px) {
  .blog-banner .blog-banner-image {
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .blog-banner .blog-banner-image {
    padding-left: 0;
    margin-top: 20px;
  }
}
.blog-banner .blog-banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-posts-section {
  padding: 60px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  .blog-posts-section {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .blog-posts-section {
    padding: 30px 0;
  }
}
.blog-posts-section .blog-posts-header {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-posts-header {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-posts-header {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-posts-header .row {
    gap: 20px;
  }
}
.blog-posts-section .blog-posts-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b1220;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-posts-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-posts-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.blog-posts-section .blog-category-tabs {
  border-bottom: 2px solid #e7ecf5;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
.blog-posts-section .blog-category-tabs .nav-item {
  margin-bottom: -2px;
}
.blog-posts-section .blog-category-tabs .nav-item .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-category-tabs .nav-item .nav-link {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.blog-posts-section .blog-category-tabs .nav-item .nav-link:hover {
  color: #0b1220;
  border-bottom-color: #e7ecf5;
}
.blog-posts-section .blog-category-tabs .nav-item .nav-link.active {
  color: #0b1220;
  border-bottom-color: #0b1220;
  background: transparent;
}
.blog-posts-section .blog-search-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-search-wrapper {
    justify-content: flex-start;
    margin-top: 15px;
  }
}
.blog-posts-section .blog-search-group {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-search-group {
    max-width: 100%;
  }
}
.blog-posts-section .blog-search-input {
  border: 1px solid #e7ecf5;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0b1220;
}
.blog-posts-section .blog-search-input:focus {
  border-color: #0b1220;
  box-shadow: none;
  outline: none;
}
.blog-posts-section .blog-search-input::placeholder {
  color: #9ca3af;
}
.blog-posts-section .blog-search-btn {
  border: 1px solid #e7ecf5;
  border-left: none;
  border-radius: 0 8px 8px 0;
  background-color: #103558;
  color: #ffffff;
  padding: 12px 20px;
  transition: background-color 0.3s ease;
}
.blog-posts-section .blog-search-btn:hover {
  background-color: #203558;
}
.blog-posts-section .blog-search-btn i {
  font-size: 16px;
}
.blog-posts-section .blog-posts-content {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-posts-content {
    margin-top: 30px;
  }
}
.blog-posts-section .blog-post-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}
.blog-posts-section .blog-post-card .row {
  height: 100%;
}
.blog-posts-section .blog-post-card__image {
  height: 100%;
  overflow: hidden;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__image {
    min-height: 220px;
    height: 220px;
  }
}
.blog-posts-section .blog-post-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__content {
    padding: 20px;
    min-height: auto;
  }
}
.blog-posts-section .blog-post-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #0b1220;
  margin: 0 0 16px 0;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__title {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.blog-posts-section .blog-post-card__meta {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__meta {
    font-size: 12px;
    margin-bottom: 14px;
  }
}
.blog-posts-section .blog-post-card__meta .author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
}
.blog-posts-section .blog-post-card__meta span {
  display: inline-flex;
  align-items: center;
}
.blog-posts-section .blog-post-card__meta span + span {
  margin-left: 12px;
  position: relative;
}
.blog-posts-section .blog-post-card__meta span + span::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #9ca3af;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__meta span + span {
    margin-left: 10px;
  }
  .blog-posts-section .blog-post-card__meta span + span::before {
    left: -7px;
  }
}
.blog-posts-section .blog-post-card__excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__excerpt {
    font-size: 13px;
    margin-bottom: 16px;
  }
}
.blog-posts-section .blog-post-card__btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #0b2a52;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  border: none;
}
.blog-posts-section .blog-post-card__btn:hover {
  background-color: #203558;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}

.faq-content-section {
  padding: 80px 0;
}
@media screen and (max-width: 991px) {
  .faq-content-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .faq-content-section {
    padding: 40px 0;
  }
}
.faq-content-section .container {
  max-width: 1200px;
}
@media screen and (max-width: 991px) {
  .faq-content-section .faq-left-content {
    padding-right: 40px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .faq-content-section .faq-left-content {
    padding: 30px 20px;
  }
}
.faq-content-section .faq-header-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.faq-content-section .faq-header-badge .faq-badge-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #103558;
  color: #ffffff;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}
.faq-content-section .faq-header-badge .faq-badge-text {
  font-size: 16px;
  font-weight: 600;
  color: #4d5667;
}
.faq-content-section .faq-main-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b1220;
  line-height: 1.4;
  margin-bottom: 40px;
  margin-top: 0;
}
@media screen and (max-width: 991px) {
  .faq-content-section .faq-main-title {
    font-size: 32px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .faq-content-section .faq-main-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .faq-content-section .faq-main-title {
    font-size: 24px;
  }
}
.faq-content-section .faq-accordion-wrapper .accordion {
  --bs-accordion-bg: transparent;
  --bs-accordion-border-color: transparent;
  --bs-accordion-border-radius: 0;
  --bs-accordion-btn-padding-x: 0;
  --bs-accordion-btn-padding-y: 0;
  --bs-accordion-body-padding-x: 0;
  --bs-accordion-body-padding-y: 0;
}
.faq-content-section .faq-accordion-wrapper .accordion-item {
  border: none;
  background-color: #F8F8F8;
  padding: 0;
  overflow: hidden;
  margin-bottom: 3px;
}
.faq-content-section .faq-accordion-wrapper .accordion-item:last-child {
  border-bottom: 1px solid #e1e6f0;
  margin-bottom: 0;
}
.faq-content-section .faq-accordion-wrapper .accordion-button {
  background-color: #f6f8f8;
  border: none;
  padding: 20px 24px;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease;
}
.faq-content-section .faq-accordion-wrapper .accordion-button:not(.collapsed) {
  background-color: #f6f8f8;
  box-shadow: none;
}
.faq-content-section .faq-accordion-wrapper .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.faq-content-section .faq-accordion-wrapper .accordion-button::after {
  display: none;
}
.faq-content-section .faq-accordion-wrapper .accordion-button .faq-q-prefix {
  font-size: 16px;
  font-weight: 600;
  color: #4d5667;
  flex-shrink: 0;
}
.faq-content-section .faq-accordion-wrapper .accordion-button .faq-question-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: #0b1220;
  line-height: 1.5;
}
.faq-content-section .faq-accordion-wrapper .accordion-button .accordion-arrow {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 50%;
  flex-shrink: 0;
  margin-left: auto;
  transition: all 0.3s ease;
  border: 1px solid #141C21;
}
.faq-content-section .faq-accordion-wrapper .accordion-button .accordion-arrow i {
  font-size: 14px;
  color: #141C21;
  transition: transform 0.3s ease;
}
.faq-content-section .faq-accordion-wrapper .accordion-button:not(.collapsed) .accordion-arrow i {
  transform: rotate(180deg);
}
.faq-content-section .faq-accordion-wrapper .accordion-body {
  padding: 0 24px 20px 28px;
  font-size: 15px;
  color: #4d5667;
  line-height: 1.7;
  background-color: #f6f8fb;
  display: flex;
  gap: 12px;
}
.faq-content-section .faq-accordion-wrapper .accordion-body .faq-a-prefix {
  font-size: 16px;
  font-weight: 600;
  color: #4d5667;
  flex-shrink: 0;
}
.faq-content-section .faq-accordion-wrapper .accordion-body p {
  margin: 0;
  flex: 1;
}
.faq-content-section .faq-contact-form-wrapper {
  padding-left: 40px;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(20, 28, 33, 0.2);
}
@media screen and (max-width: 991px) {
  .faq-content-section .faq-contact-form-wrapper {
    padding-left: 40px;
  }
}
@media screen and (max-width: 767px) {
  .faq-content-section .faq-contact-form-wrapper {
    padding: 30px 20px;
  }
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-title {
  font-size: 32px;
  font-weight: 700;
  color: #0b1220;
  margin-bottom: 30px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .faq-content-section .faq-contact-form-wrapper .faq-contact-title {
    font-size: 28px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 575px) {
  .faq-content-section .faq-contact-form-wrapper .faq-contact-title {
    font-size: 24px;
  }
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .form-group {
  margin-bottom: 20px;
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .form-group .form-control {
  width: 100%;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 15px;
  color: #0b1220;
  background-color: #F8F8F8;
  transition: all 0.3s ease;
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .form-group .form-control::placeholder {
  color: #9ca3af;
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #103558;
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(16, 53, 88, 0.1);
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .faq-submit-btn {
  width: 100%;
  padding: 16px 24px;
  background-color: #103558;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .faq-submit-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .faq-submit-btn:hover {
  background-color: #17436c;
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .faq-submit-btn:hover i {
  transform: translateX(4px);
}
.faq-content-section .faq-contact-form-wrapper .faq-contact-form .faq-submit-btn:active {
  transform: translateY(0);
}

@media (max-width: 575.98px) {
  .faq-section .faq-header h2 {
    font-size: 28px;
  }
  .faq-section .faq-content {
    border-radius: 16px;
  }
  .faq-section .accordion-button {
    padding: 18px 18px;
  }
  .faq-section .accordion-button .faq-number {
    min-width: 40px;
  }
  .faq-section .accordion-body {
    padding: 14px 18px 20px 58px;
    font-size: 13px;
  }
}
.contact-section {
  background-image: url("../images/contact-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: calc(100vh - 140px);
  min-height: 600px;
  padding: 20px 0;
  position: relative;
  display: flex;
  align-items: center;
}
.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.contact-section .container {
  position: relative;
  z-index: 2;
}
.contact-section .contact-form-wrapper {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}
.contact-section .contact-form-wrapper::-webkit-scrollbar {
  width: 6px;
}
.contact-section .contact-form-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.contact-section .contact-form-wrapper::-webkit-scrollbar-thumb {
  background: #103558;
  border-radius: 10px;
}
.contact-section .contact-form-wrapper .contact-form-title {
  font-size: 28px;
  font-weight: 700;
  color: #103558;
  margin-bottom: 8px;
}
.contact-section .contact-form-wrapper .contact-form-subtitle {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.contact-section .contact-form-wrapper .contact-form .form-group {
  margin-bottom: 15px;
}
.contact-section .contact-form-wrapper .contact-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #103558;
  margin-bottom: 6px;
}
.contact-section .contact-form-wrapper .contact-form .form-group label .required {
  color: #dc3545;
}
.contact-section .contact-form-wrapper .contact-form .form-group .form-control {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  color: #103558;
  transition: all 0.3s ease;
}
.contact-section .contact-form-wrapper .contact-form .form-group .form-control:focus {
  outline: none;
  border-color: #103558;
  box-shadow: 0 0 0 3px rgba(16, 53, 88, 0.1);
}
.contact-section .contact-form-wrapper .contact-form .form-group .form-control::placeholder {
  color: #999;
}
.contact-section .contact-form-wrapper .contact-form .form-group textarea.form-control {
  resize: vertical;
  min-height: 80px;
  max-height: 100px;
}
.contact-section .contact-form-wrapper .contact-form .contact-submit-btn {
  background-color: #103558;
  color: #ffffff;
  padding: 12px 30px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 5px;
}
.contact-section .contact-form-wrapper .contact-form .contact-submit-btn:hover {
  background-color: #203558;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 53, 88, 0.3);
}
.contact-section .contact-form-wrapper .contact-form .contact-submit-btn:active {
  transform: translateY(0);
}
@media screen and (max-width: 991px) {
  .contact-section {
    height: calc(100vh - 120px);
    padding: 15px 0;
  }
  .contact-section .contact-form-wrapper {
    padding: 25px 20px;
    max-height: calc(100vh - 180px);
  }
  .contact-section .contact-form-wrapper .contact-form-title {
    font-size: 24px;
  }
  .contact-section .contact-form-wrapper .contact-form-subtitle {
    font-size: 13px;
    margin-bottom: 18px;
  }
  .contact-section .contact-form-wrapper .contact-form .form-group {
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 575px) {
  .contact-section {
    height: auto;
    min-height: 75vh;
    padding: 20px 0;
  }
  .contact-section .contact-form-wrapper {
    padding: 20px 15px;
    max-height: none;
  }
  .contact-section .contact-form-wrapper .contact-form-title {
    font-size: 22px;
  }
  .contact-section .contact-form-wrapper .contact-form-subtitle {
    font-size: 12px;
    margin-bottom: 15px;
  }
  .contact-section .contact-form-wrapper .contact-form .form-group {
    margin-bottom: 12px;
  }
  .contact-section .contact-form-wrapper .contact-form .form-group textarea.form-control {
    min-height: 70px;
  }
}

.contact-info-section {
  padding: 60px 0;
  background-color: #ffffff;
}
.contact-info-section .contact-info-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
.contact-info-section .contact-info-item .contact-info-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #103558;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-section .contact-info-item .contact-info-icon i {
  color: #ffffff;
  font-size: 24px;
}
.contact-info-section .contact-info-item .contact-info-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.contact-info-section .contact-info-item .contact-info-title {
  font-size: 16px;
  font-weight: 600;
  color: #103558;
  margin-bottom: 8px;
  margin-top: 0;
}
.contact-info-section .contact-info-item .contact-info-text {
  font-size: 14px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .contact-info-section {
    padding: 50px 0;
  }
  .contact-info-section .contact-info-item .contact-info-icon {
    width: 55px;
    height: 55px;
    margin-bottom: 14px;
  }
  .contact-info-section .contact-info-item .contact-info-icon i {
    font-size: 22px;
  }
  .contact-info-section .contact-info-item .contact-info-title {
    font-size: 15px;
  }
  .contact-info-section .contact-info-item .contact-info-text {
    font-size: 13px;
  }
}
@media screen and (max-width: 575px) {
  .contact-info-section {
    padding: 40px 0;
  }
  .contact-info-section .contact-info-item {
    align-items: center;
    text-align: left;
    margin-bottom: 30px;
    gap: 12px;
  }
  .contact-info-section .contact-info-item .contact-info-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
  }
  .contact-info-section .contact-info-item .contact-info-icon i {
    font-size: 20px;
  }
  .contact-info-section .contact-info-item .contact-info-content {
    text-align: left;
  }
  .contact-info-section .contact-info-item .contact-info-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .contact-info-section .contact-info-item .contact-info-text {
    font-size: 13px;
  }
}

.about-us-section {
  padding: 60px 0 80px;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  .about-us-section {
    padding: 50px 0 70px;
  }
}
@media screen and (max-width: 767px) {
  .about-us-section {
    padding: 40px 0 40px;
  }
}
.about-us-section .about-us-header {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about-us-section .about-us-header {
    margin-bottom: 40px;
  }
}
.about-us-section .about-us-title {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 16px;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .about-us-section .about-us-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-us-section .about-us-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 575px) {
  .about-us-section .about-us-title {
    font-size: 28px;
  }
}
.about-us-section .about-us-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #103558;
}
.about-us-section .about-us-breadcrumb a {
  color: rgba(16, 53, 88, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.about-us-section .about-us-breadcrumb a:hover {
  color: #103558;
}
.about-us-section .about-us-breadcrumb .breadcrumb-separator {
  color: rgba(16, 53, 88, 0.5);
}
.about-us-section .about-us-breadcrumb span:last-child {
  color: #000;
  font-weight: 500;
}
.about-us-section .about-us-content {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}
@media screen and (max-width: 1199px) {
  .about-us-section .about-us-content {
    gap: 40px;
  }
}
@media screen and (max-width: 991px) {
  .about-us-section .about-us-content {
    flex-direction: column;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about-us-section .about-us-content {
    gap: 40px;
  }
}
.about-us-section .about-us-slogan {
  flex: 0 0 auto;
  min-width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .about-us-section .about-us-slogan {
    min-width: auto;
    text-align: center;
  }
}
.about-us-section .about-us-slogan .slogan-line {
  font-size: 42px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
  margin-bottom: 4px;
}
@media screen and (max-width: 1199px) {
  .about-us-section .about-us-slogan .slogan-line {
    font-size: 36px;
  }
}
@media screen and (max-width: 991px) {
  .about-us-section .about-us-slogan .slogan-line {
    font-size: 32px;
    display: block;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) {
  .about-us-section .about-us-slogan .slogan-line {
    font-size: 28px;
  }
}
@media screen and (max-width: 575px) {
  .about-us-section .about-us-slogan .slogan-line {
    font-size: 24px;
  }
}
.about-us-section .about-us-features {
  flex: 1;
  display: flex;
  gap: 60px;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 1199px) {
  .about-us-section .about-us-features {
    gap: 40px;
    padding: 0 15px;
  }
}
@media screen and (max-width: 991px) {
  .about-us-section .about-us-features {
    gap: 30px;
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .about-us-section .about-us-features {
    flex-direction: column;
    gap: 0;
  }
}
.about-us-section .features-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 1199px) {
  .about-us-section .features-column {
    gap: 35px;
  }
}
@media screen and (max-width: 991px) {
  .about-us-section .features-column {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .about-us-section .features-column {
    gap: 30px;
    padding-bottom: 30px;
  }
  .about-us-section .features-column:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.about-us-section .feature-item .feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 12px;
  line-height: 1.3;
}
@media screen and (max-width: 991px) {
  .about-us-section .feature-item .feature-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .about-us-section .feature-item .feature-title {
    font-size: 17px;
    margin-bottom: 10px;
  }
}
.about-us-section .feature-item .feature-description {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.6;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .about-us-section .feature-item .feature-description {
    font-size: 13px;
  }
}
.about-us-section img {
  margin-top: 50px;
  border-radius: 30px;
}

.about-stats-section {
  padding: 0 0 80px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  .about-stats-section {
    padding: 60px 0;
  }
}
@media screen and (max-width: 767px) {
  .about-stats-section {
    padding: 50px 0;
  }
}
@media screen and (max-width: 576px) {
  .about-stats-section {
    padding: 20px 0 40px 0;
  }
}
.about-stats-section .container {
  max-width: 1200px;
}
.about-stats-section .stats-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-bottom: 80px;
}
@media screen and (max-width: 991px) {
  .about-stats-section .stats-row {
    gap: 60px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 767px) {
  .about-stats-section .stats-row {
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 575px) {
  .about-stats-section .stats-row {
    gap: 20px;
    margin-bottom: 30px;
  }
}
.about-stats-section .stat-item {
  text-align: center;
  flex: 0 0 auto;
}
.about-stats-section .stat-item .stat-number {
  font-size: 56px;
  font-weight: 700;
  color: #1A3B6A;
  line-height: 1.2;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 991px) {
  .about-stats-section .stat-item .stat-number {
    font-size: 48px;
  }
}
@media screen and (max-width: 767px) {
  .about-stats-section .stat-item .stat-number {
    font-size: 36px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .about-stats-section .stat-item .stat-number {
    font-size: 29px;
  }
}
.about-stats-section .stat-item .stat-label {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .about-stats-section .stat-item .stat-label {
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .about-stats-section .stat-item .stat-label {
    font-size: 14px;
  }
}
.about-stats-section .content-heading-block {
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about-stats-section .content-heading-block {
    margin-bottom: 25px;
  }
}
.about-stats-section .content-main-heading {
  font-size: 42px;
  font-weight: 700;
  color: #1A3B6A;
  line-height: 1.3;
  margin: 0 0 12px;
}
@media screen and (max-width: 991px) {
  .about-stats-section .content-main-heading {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .about-stats-section .content-main-heading {
    font-size: 30px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 575px) {
  .about-stats-section .content-main-heading {
    font-size: 26px;
  }
}
.about-stats-section .heading-divider {
  width: 60px;
  height: 2px;
  background-color: #103558;
  margin: 0px auto 10px;
  border-radius: 2px;
}
@media screen and (max-width: 767px) {
  .about-stats-section .heading-divider {
    width: 60px;
    height: 2px;
    margin: 0px auto 10px;
  }
}
@media screen and (max-width: 575px) {
  .about-stats-section .heading-divider {
    width: 50px;
    margin: 0px auto 10px;
  }
}
.about-stats-section .content-sub-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1A3B6A;
  line-height: 1.3;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .about-stats-section .content-sub-heading {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .about-stats-section .content-sub-heading {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .about-stats-section .content-sub-heading {
    font-size: 20px;
  }
}
.about-stats-section .content-paragraph {
  margin-bottom: 50px;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .about-stats-section .content-paragraph {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-stats-section .content-paragraph {
    margin-bottom: 35px;
  }
}
.about-stats-section .content-paragraph p {
  font-size: 16px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .about-stats-section .content-paragraph p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media screen and (max-width: 575px) {
  .about-stats-section .content-paragraph p {
    font-size: 14px;
  }
}
.about-stats-section .content-cta {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 991px) {
  .about-stats-section .content-cta {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .about-stats-section .content-cta {
    margin-top: 40px;
  }
}
.about-stats-section .view-more-btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  background-color: #103558;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(26, 59, 106, 0.2);
}
@media screen and (max-width: 767px) {
  .about-stats-section .view-more-btn {
    padding: 12px 35px;
    font-size: 15px;
  }
}
@media screen and (max-width: 575px) {
  .about-stats-section .view-more-btn {
    padding: 11px 30px;
    font-size: 14px;
  }
}
.about-stats-section .view-more-btn:hover {
  background-color: #17436c;
  color: #ffffff;
}
.about-stats-section .view-more-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(26, 59, 106, 0.2);
}

.blog-banner {
  background-image: url("../images/blog-banner.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 600px;
  position: relative;
  display: flex;
  align-items: center;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .blog-banner {
    min-height: 500px;
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .blog-banner {
    min-height: 450px;
    padding: 60px 0;
  }
}
@media screen and (max-width: 575px) {
  .blog-banner {
    min-height: 400px;
    padding: 40px 0;
  }
}
.blog-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.blog-banner .container {
  position: relative;
  z-index: 2;
}
.blog-banner .blog-banner-content {
  position: relative;
  z-index: 3;
  padding-right: 80px;
}
@media screen and (max-width: 1200px) {
  .blog-banner .blog-banner-content {
    padding-right: 60px;
  }
}
@media screen and (max-width: 991px) {
  .blog-banner .blog-banner-content {
    padding-right: 0;
    margin-bottom: 40px;
    text-align: center;
  }
}
.blog-banner .blog-banner-title {
  font-size: 72px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 30px 0;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
}
@media screen and (max-width: 1200px) {
  .blog-banner .blog-banner-title {
    font-size: 60px;
  }
}
@media screen and (max-width: 991px) {
  .blog-banner .blog-banner-title {
    font-size: 50px;
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  .blog-banner .blog-banner-title {
    font-size: 40px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .blog-banner .blog-banner-title {
    font-size: 32px;
  }
}
.blog-banner .blog-banner-title .title-line {
  display: block;
}
.blog-banner .blog-banner-text {
  font-size: 16px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  max-width: 100%;
}
@media screen and (max-width: 991px) {
  .blog-banner .blog-banner-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 767px) {
  .blog-banner .blog-banner-text {
    font-size: 14px;
  }
}
.blog-banner .blog-banner-image {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-left: 40px;
}
@media screen and (max-width: 1200px) {
  .blog-banner .blog-banner-image {
    padding-left: 30px;
  }
}
@media screen and (max-width: 991px) {
  .blog-banner .blog-banner-image {
    padding-left: 0;
    margin-top: 20px;
  }
}
.blog-banner .blog-banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-posts-section {
  padding: 60px 0;
  background-color: #ffffff;
}
@media screen and (max-width: 991px) {
  .blog-posts-section {
    padding: 40px 0;
  }
}
@media screen and (max-width: 767px) {
  .blog-posts-section {
    padding: 30px 0;
  }
}
.blog-posts-section .blog-posts-header {
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-posts-header {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-posts-header {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-posts-header .row {
    gap: 20px;
  }
}
.blog-posts-section .blog-posts-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b1220;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-posts-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-posts-title {
    font-size: 28px;
    margin-bottom: 15px;
  }
}
.blog-posts-section .blog-category-tabs {
  border-bottom: 2px solid #e7ecf5;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-category-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    overflow-y: hidden;
  }
}
.blog-posts-section .blog-category-tabs .nav-item {
  margin-bottom: -2px;
}
.blog-posts-section .blog-category-tabs .nav-item .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #6b7280;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 20px;
  transition: all 0.3s ease;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-category-tabs .nav-item .nav-link {
    padding: 10px 16px;
    font-size: 14px;
  }
}
.blog-posts-section .blog-category-tabs .nav-item .nav-link:hover {
  color: #0b1220;
  border-bottom-color: #e7ecf5;
}
.blog-posts-section .blog-category-tabs .nav-item .nav-link.active {
  color: #0b1220;
  border-bottom-color: #103558;
  background: transparent;
}
.blog-posts-section .blog-search-wrapper {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-search-wrapper {
    justify-content: flex-start;
    margin-top: 15px;
  }
}
.blog-posts-section .blog-search-group {
  max-width: 300px;
  width: 100%;
}
@media screen and (max-width: 991px) {
  .blog-posts-section .blog-search-group {
    max-width: 100%;
  }
}
.blog-posts-section .blog-search-input {
  border: 1px solid #e7ecf5;
  border-radius: 8px 0 0 8px;
  padding: 12px 16px;
  font-size: 14px;
  color: #0b1220;
}
.blog-posts-section .blog-search-input:focus {
  border-color: #0b1220;
  box-shadow: none;
  outline: none;
}
.blog-posts-section .blog-search-input::placeholder {
  color: #9ca3af;
}
.blog-posts-section .blog-search-btn {
  border: 1px solid #e7ecf5;
  border-left: none;
  border-radius: 0 8px 8px 0;
  background-color: #103558;
  color: #ffffff;
  padding: 12px 20px;
  transition: background-color 0.3s ease;
}
.blog-posts-section .blog-search-btn:hover {
  background-color: #203558;
}
.blog-posts-section .blog-search-btn i {
  font-size: 16px;
}
.blog-posts-section .blog-posts-content {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-posts-content {
    margin-top: 30px;
  }
}
.blog-posts-section .blog-post-card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  height: 100%;
}
.blog-posts-section .blog-post-card .row {
  height: 100%;
}
.blog-posts-section .blog-post-card__image {
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.blog-posts-section .blog-post-card__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.blog-posts-section .blog-post-card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__content {
    padding: 20px;
    min-height: auto;
  }
}
.blog-posts-section .blog-post-card__title {
  font-size: 20px;
  font-weight: 600;
  color: #0b1220;
  margin: 0 0 16px 0;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__title {
    font-size: 18px;
    margin-bottom: 14px;
  }
}
.blog-posts-section .blog-post-card__meta {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  font-size: 13px;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__meta {
    font-size: 12px;
    margin-bottom: 14px;
  }
}
.blog-posts-section .blog-post-card__meta .author-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 8px;
}
.blog-posts-section .blog-post-card__meta span {
  display: inline-flex;
  align-items: center;
}
.blog-posts-section .blog-post-card__meta span + span {
  margin-left: 12px;
  position: relative;
}
.blog-posts-section .blog-post-card__meta span + span::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #9ca3af;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__meta span + span {
    margin-left: 10px;
  }
  .blog-posts-section .blog-post-card__meta span + span::before {
    left: -7px;
  }
}
.blog-posts-section .blog-post-card__excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__excerpt {
    font-size: 13px;
    margin-bottom: 16px;
  }
}
.blog-posts-section .blog-post-card__btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  background-color: #103558;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  align-self: flex-start;
  border: none;
}
.blog-posts-section .blog-post-card__btn:hover {
  background-color: #203558;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .blog-posts-section .blog-post-card__btn {
    font-size: 13px;
    padding: 10px 20px;
  }
}

.blog-detailed {
  padding: 0;
  margin: 0;
}
.blog-detailed .container-fluid {
  padding: 0;
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .blog-detailed .container-fluid {
    margin-bottom: 40px;
  }
}
.blog-detailed .container-fluid img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-detailed .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .blog-detailed .container {
    padding: 0 15px;
  }
}

.blog-detail-content {
  max-width: 890px;
  margin: 0 auto;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .blog-detail-content {
    padding-bottom: 40px;
  }
}

.blog-detail-title {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 24px 0;
  line-height: 1.2;
}
@media screen and (max-width: 991px) {
  .blog-detail-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .blog-detail-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 575px) {
  .blog-detail-title {
    font-size: 28px;
  }
}

.blog-detail-meta {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  gap: 12px;
  font-size: 16px;
  color: #4a4a4a;
}
@media screen and (max-width: 767px) {
  .blog-detail-meta {
    font-size: 14px;
    margin-bottom: 30px;
    gap: 10px;
  }
}
.blog-detail-meta .author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 767px) {
  .blog-detail-meta .author-avatar {
    width: 32px;
    height: 32px;
  }
}
.blog-detail-meta .author-name {
  font-weight: 400;
  color: #4a4a4a;
}
.blog-detail-meta .meta-separator {
  color: #4a4a4a;
  font-size: 14px;
}
.blog-detail-meta .publish-date,
.blog-detail-meta .read-time {
  font-weight: 400;
  color: #4a4a4a;
}

.blog-detail-body .blog-section-heading {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 20px 0;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .blog-detail-body .blog-section-heading {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.blog-detail-body .blog-paragraph {
  font-size: 16px;
  line-height: 1.8;
  color: #6b6b6b;
  margin: 0 0 24px 0;
}
@media screen and (max-width: 767px) {
  .blog-detail-body .blog-paragraph {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}
.blog-detail-body .blog-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}
@media screen and (max-width: 767px) {
  .blog-detail-body .blog-list {
    margin-bottom: 20px;
  }
}
.blog-detail-body .blog-list li {
  font-size: 16px;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .blog-detail-body .blog-list li {
    font-size: 15px;
    padding-left: 20px;
    margin-bottom: 10px;
  }
}
.blog-detail-body .blog-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #4a4a4a;
  font-size: 20px;
  line-height: 1.8;
}
.blog-detail-body .blog-list li:last-child {
  margin-bottom: 0;
}

.blog-categories-slider-section {
  padding: 0 0 60px 0;
}
@media screen and (max-width: 767px) {
  .blog-categories-slider-section {
    padding: 0 0 40px 0;
  }
}

.blog-categories-header {
  margin-bottom: 40px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .blog-categories-header {
    margin-bottom: 30px;
  }
}

.blog-categories-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}
@media screen and (max-width: 991px) {
  .blog-categories-title {
    font-size: 32px;
  }
}
@media screen and (max-width: 767px) {
  .blog-categories-title {
    font-size: 28px;
  }
}

.blog-categories-slider-wrapper {
  position: relative;
}

.blog-categories-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .blog-categories-slider {
    gap: 15px;
  }
}
.blog-categories-slider > .tns-item {
  padding: 0;
}

#blogCategoriesSlider {
  padding: 20px;
}

.category-card {
  display: block;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  width: 100%;
  min-width: 0;
}
@media screen and (max-width: 991px) {
  .category-card {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .category-card {
    width: 100%;
  }
}
@media screen and (max-width: 575px) {
  .category-card {
    width: 100%;
  }
}
.category-card .category-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background-color: #e9ecef;
}
@media screen and (max-width: 767px) {
  .category-card .category-card-image {
    height: 180px;
  }
}
@media screen and (max-width: 575px) {
  .category-card .category-card-image {
    height: 200px;
  }
}
.category-card .category-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.category-card .category-card-content {
  padding: 24px;
}
@media screen and (max-width: 767px) {
  .category-card .category-card-content {
    padding: 20px;
  }
}
.category-card .category-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 12px 0;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .category-card .category-card-title {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.category-card .category-card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #6b6b6b;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .category-card .category-card-description {
    font-size: 14px;
  }
}

.category-slider-prev,
.category-slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff;
  border: 2px solid #e9ecef;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 767px) {
  .category-slider-prev,
  .category-slider-next {
    width: 40px;
    height: 40px;
  }
}
.category-slider-prev:active,
.category-slider-next:active {
  transform: translateY(-50%) scale(0.95);
}
.category-slider-prev i,
.category-slider-next i {
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .category-slider-prev i,
  .category-slider-next i {
    font-size: 16px;
  }
}

.category-slider-prev {
  left: -24px;
}
@media screen and (max-width: 991px) {
  .category-slider-prev {
    left: -20px;
  }
}
@media screen and (max-width: 767px) {
  .category-slider-prev {
    left: -15px;
  }
}
@media screen and (max-width: 575px) {
  .category-slider-prev {
    left: 10px;
  }
}

.category-slider-next {
  right: -24px;
}
@media screen and (max-width: 991px) {
  .category-slider-next {
    right: -20px;
  }
}
@media screen and (max-width: 767px) {
  .category-slider-next {
    right: -15px;
  }
}
@media screen and (max-width: 575px) {
  .category-slider-next {
    right: 10px;
  }
}

#blogCategoriesSlider > .tns-item {
  padding: 0px !important;
}

.search-modal-content {
  border-radius: 12px;
  border: none;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}
.search-modal-content .search-modal-header {
  border-bottom: 1px solid #e5e5e5;
  padding: 20px 24px;
}
.search-modal-content .search-modal-header .modal-title {
  font-size: 20px;
  font-weight: 700;
  color: #103558;
  margin: 0;
}
.search-modal-content .search-modal-header .btn-close {
  padding: 8px;
  margin: -8px -8px -8px auto;
}
.search-modal-content .search-modal-body {
  padding: 24px;
}

.search-form-wrapper .search-form {
  margin-bottom: 20px;
}
.search-form-wrapper .search-form .search-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.search-form-wrapper .search-form .search-input-wrapper .search-input {
  width: 100%;
  padding: 14px 50px 14px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-size: 16px;
  color: #103558;
  transition: all 0.3s ease;
}
.search-form-wrapper .search-form .search-input-wrapper .search-input:focus {
  outline: none;
  border-color: #103558;
  box-shadow: 0 0 0 3px rgba(16, 53, 88, 0.1);
}
.search-form-wrapper .search-form .search-input-wrapper .search-input::placeholder {
  color: #999;
}
.search-form-wrapper .search-form .search-input-wrapper .search-submit-btn {
  position: absolute;
  right: 8px;
  background: #103558;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-form-wrapper .search-form .search-input-wrapper .search-submit-btn:hover {
  background: #0a2540;
}
.search-form-wrapper .search-form .search-input-wrapper .search-submit-btn i {
  font-size: 16px;
}

.search-results {
  max-height: 500px;
  overflow-y: auto;
}
.search-results .search-results-loading {
  text-align: center;
  padding: 40px 20px;
  color: #103558;
}
.search-results .search-results-loading i {
  font-size: 24px;
  margin-right: 10px;
}
.search-results .search-results-content .search-results-section {
  margin-bottom: 24px;
}
.search-results .search-results-content .search-results-section:last-child {
  margin-bottom: 0;
}
.search-results .search-results-content .search-results-section .search-results-title {
  font-size: 16px;
  font-weight: 700;
  color: #103558;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #e5e5e5;
}

.search-products-list,
.search-categories-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.search-product-item,
.search-category-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.search-product-item:hover,
.search-category-item:hover {
  border-color: #103558;
  background-color: #f8f9fa;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.search-product-item .search-product-image,
.search-product-item .search-category-image,
.search-category-item .search-product-image,
.search-category-item .search-category-image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f5f5;
}
.search-product-item .search-product-image img,
.search-product-item .search-category-image img,
.search-category-item .search-product-image img,
.search-category-item .search-category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-product-item .search-product-info,
.search-product-item .search-category-info,
.search-category-item .search-product-info,
.search-category-item .search-category-info {
  flex: 1;
  min-width: 0;
}
.search-product-item .search-product-info .search-product-title,
.search-product-item .search-product-info .search-category-name,
.search-product-item .search-category-info .search-product-title,
.search-product-item .search-category-info .search-category-name,
.search-category-item .search-product-info .search-product-title,
.search-category-item .search-product-info .search-category-name,
.search-category-item .search-category-info .search-product-title,
.search-category-item .search-category-info .search-category-name {
  font-size: 15px;
  font-weight: 600;
  color: #103558;
  margin: 0 0 4px 0;
  line-height: 1.4;
}
.search-product-item .search-product-info .search-product-price,
.search-product-item .search-category-info .search-product-price,
.search-category-item .search-product-info .search-product-price,
.search-category-item .search-category-info .search-product-price {
  font-size: 14px;
  font-weight: 700;
  color: #103558;
  margin-top: 4px;
}
.search-product-item .search-product-info .search-category-count,
.search-product-item .search-category-info .search-category-count,
.search-category-item .search-product-info .search-category-count,
.search-category-item .search-category-info .search-category-count {
  font-size: 13px;
  color: #666;
}

.search-no-results,
.search-error {
  text-align: center;
  padding: 40px 20px;
  color: #666;
  font-size: 15px;
}

.search-results::-webkit-scrollbar {
  width: 6px;
}

.search-results::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.search-results::-webkit-scrollbar-thumb:hover {
  background: #999;
}

@media screen and (max-width: 767px) {
  .search-modal-content .search-modal-header {
    padding: 16px 20px;
  }
  .search-modal-content .search-modal-header .modal-title {
    font-size: 18px;
  }
  .search-modal-content .search-modal-body {
    padding: 20px;
  }
  .search-form-wrapper .search-form .search-input-wrapper .search-input {
    padding: 12px 45px 12px 16px;
    font-size: 15px;
  }
  .search-form-wrapper .search-form .search-input-wrapper .search-submit-btn {
    padding: 8px 12px;
  }
  .search-form-wrapper .search-form .search-input-wrapper .search-submit-btn i {
    font-size: 14px;
  }
  .search-product-item,
  .search-category-item {
    padding: 10px;
    gap: 12px;
  }
  .search-product-item .search-product-image,
  .search-product-item .search-category-image,
  .search-category-item .search-product-image,
  .search-category-item .search-category-image {
    width: 50px;
    height: 50px;
  }
  .search-product-item .search-product-info .search-product-title,
  .search-product-item .search-product-info .search-category-name,
  .search-product-item .search-category-info .search-product-title,
  .search-product-item .search-category-info .search-category-name,
  .search-category-item .search-product-info .search-product-title,
  .search-category-item .search-product-info .search-category-name,
  .search-category-item .search-category-info .search-product-title,
  .search-category-item .search-category-info .search-category-name {
    font-size: 14px;
  }
  .search-product-item .search-product-info .search-product-price,
  .search-product-item .search-category-info .search-product-price,
  .search-category-item .search-product-info .search-product-price,
  .search-category-item .search-category-info .search-product-price {
    font-size: 13px;
  }
  .search-product-item .search-product-info .search-category-count,
  .search-product-item .search-category-info .search-category-count,
  .search-category-item .search-product-info .search-category-count,
  .search-category-item .search-category-info .search-category-count {
    font-size: 12px;
  }
}
.search-results-page {
  padding: 60px 0 80px;
  min-height: 60vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.search-results-page .search-results-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.search-results-page .search-results-header {
  margin-bottom: 40px;
}
.search-results-page .search-results-header .search-results-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.search-results-page .search-results-header .search-results-header-content .search-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #103558 0%, #203558 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.search-results-page .search-results-header .search-results-header-content .search-icon-wrapper i {
  font-size: 24px;
  color: #fff;
}
.search-results-page .search-results-header .search-results-header-content .search-results-title-wrapper {
  flex: 1;
}
.search-results-page .search-results-header .search-results-header-content .search-results-title-wrapper .search-results-title {
  font-size: 28px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 8px 0;
}
.search-results-page .search-results-header .search-results-header-content .search-results-title-wrapper .search-results-title .search-query {
  color: #203558;
  font-weight: 900;
}
.search-results-page .search-results-header .search-results-header-content .search-results-title-wrapper .search-results-count {
  font-size: 15px;
  color: #666;
  margin: 0;
}
.search-results-page .search-results-content .search-results-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.search-results-page .search-results-content .search-pagination {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}
.search-results-page .search-results-content .search-pagination .page-numbers {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-results-page .search-results-content .search-pagination .page-numbers li a,
.search-results-page .search-results-content .search-pagination .page-numbers li span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background: #fff;
  color: #103558;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.search-results-page .search-results-content .search-pagination .page-numbers li a:hover,
.search-results-page .search-results-content .search-pagination .page-numbers li span:hover {
  background: #103558;
  color: #fff;
  border-color: #103558;
}
.search-results-page .search-results-content .search-pagination .page-numbers li .current {
  background: #103558;
  color: #fff;
  border-color: #103558;
}
.search-results-page .search-no-results {
  padding: 80px 20px;
  text-align: center;
}
.search-results-page .search-no-results .search-no-results-content {
  max-width: 600px;
  margin: 0 auto;
}
.search-results-page .search-no-results .search-no-results-content .no-results-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-results-page .search-no-results .search-no-results-content .no-results-icon i {
  font-size: 48px;
  color: #103558;
}
.search-results-page .search-no-results .search-no-results-content .no-results-title {
  font-size: 32px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 16px 0;
}
.search-results-page .search-no-results .search-no-results-content .no-results-message {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 30px 0;
}
.search-results-page .search-no-results .search-no-results-content .no-results-message strong {
  color: #103558;
  font-weight: 700;
}
.search-results-page .search-no-results .search-no-results-content .no-results-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.search-results-page .search-no-results .search-no-results-content .no-results-actions .search-form {
  width: 100%;
  max-width: 500px;
}
.search-results-page .search-no-results .search-no-results-content .no-results-actions .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #103558;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.search-results-page .search-no-results .search-no-results-content .no-results-actions .btn-home:hover {
  background: #203558;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 53, 88, 0.3);
}

.error-404-page {
  padding: 80px 0 100px;
  min-height: 70vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.error-404-page .error-404-wrapper {
  max-width: 900px;
  margin: 0 auto;
}
.error-404-page .error-404-content {
  text-align: center;
}
.error-404-page .error-404-content .error-404-icon {
  position: relative;
  margin: 0 auto 40px;
  width: 200px;
  height: 200px;
}
.error-404-page .error-404-content .error-404-icon .error-number {
  font-size: 120px;
  font-weight: 900;
  color: #103558;
  line-height: 1;
  opacity: 0.1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.error-404-page .error-404-content .error-404-icon .error-icon-circle {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto;
  background: linear-gradient(135deg, #103558 0%, #203558 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(16, 53, 88, 0.3);
  z-index: 2;
}
.error-404-page .error-404-content .error-404-icon .error-icon-circle i {
  font-size: 64px;
  color: #fff;
}
.error-404-page .error-404-content .error-404-title {
  font-size: 36px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 16px 0;
}
.error-404-page .error-404-content .error-404-message {
  font-size: 18px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.error-404-page .error-404-content .error-404-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.error-404-page .error-404-content .error-404-actions .btn-home-page,
.error-404-page .error-404-content .error-404-actions .btn-search-page {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #103558;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.error-404-page .error-404-content .error-404-actions .btn-home-page:hover,
.error-404-page .error-404-content .error-404-actions .btn-search-page:hover {
  background: #203558;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 53, 88, 0.3);
}
.error-404-page .error-404-content .error-404-actions .btn-search-page {
  background: #fff;
  color: #103558;
  border: 2px solid #103558;
}
.error-404-page .error-404-content .error-404-actions .btn-search-page:hover {
  background: #103558;
  color: #fff;
}
.error-404-page .error-404-content .error-404-search {
  margin-bottom: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.error-404-page .error-404-content .error-404-search .error-search-title {
  font-size: 20px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 20px 0;
}
.error-404-page .error-404-content .error-404-search .search-form {
  max-width: 500px;
  margin: 0 auto;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box .suggestion-title {
  font-size: 18px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box .suggestion-title i {
  font-size: 20px;
  color: #203558;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box .suggestion-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box .suggestion-list li {
  margin-bottom: 12px;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box .suggestion-list li:last-child {
  margin-bottom: 0;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box .suggestion-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #666;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box .suggestion-list li a:hover {
  color: #103558;
  padding-left: 8px;
}
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box .suggestion-list li a .category-count,
.error-404-page .error-404-content .error-404-suggestions .suggestions-grid .suggestion-box .suggestion-list li a .tag-count {
  font-size: 13px;
  color: #999;
  font-weight: 600;
}

@media screen and (max-width: 991px) {
  .search-results-page {
    padding: 40px 0 60px;
  }
  .search-results-page .search-results-header .search-results-header-content {
    flex-direction: column;
    text-align: center;
  }
  .search-results-page .search-results-header .search-results-header-content .search-icon-wrapper {
    margin: 0 auto;
  }
  .error-404-page {
    padding: 60px 0 80px;
  }
  .error-404-page .error-404-content .error-404-icon {
    width: 160px;
    height: 160px;
  }
  .error-404-page .error-404-content .error-404-icon .error-number {
    font-size: 100px;
  }
  .error-404-page .error-404-content .error-404-icon .error-icon-circle {
    width: 130px;
    height: 130px;
  }
  .error-404-page .error-404-content .error-404-icon .error-icon-circle i {
    font-size: 52px;
  }
  .error-404-page .error-404-content .error-404-title {
    font-size: 28px;
  }
  .error-404-page .error-404-content .error-404-message {
    font-size: 16px;
  }
  .error-404-page .error-404-content .error-404-suggestions .suggestions-grid {
    grid-template-columns: 1fr;
  }
}
.search-result-item .search-result-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}
.search-result-item .search-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
.search-result-item .search-result-card .search-result-image {
  flex-shrink: 0;
  width: 200px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  background: #f5f5f5;
}
.search-result-item .search-result-card .search-result-image a {
  display: block;
  width: 100%;
  height: 100%;
}
.search-result-item .search-result-card .search-result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.search-result-item .search-result-card .search-result-image:hover img {
  transform: scale(1.05);
}
.search-result-item .search-result-card .search-result-content {
  flex: 1;
  min-width: 0;
}
.search-result-item .search-result-card .search-result-content .entry-header {
  margin-bottom: 12px;
}
.search-result-item .search-result-card .search-result-content .entry-header .search-result-type {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  background: #f0f4f8;
  color: #103558;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}
.search-result-item .search-result-card .search-result-content .entry-header .search-result-type i {
  font-size: 12px;
}
.search-result-item .search-result-card .search-result-content .entry-header .entry-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 8px 0;
}
.search-result-item .search-result-card .search-result-content .entry-header .entry-title a {
  color: #103558;
  text-decoration: none;
  transition: color 0.3s ease;
}
.search-result-item .search-result-card .search-result-content .entry-header .entry-title a:hover {
  color: #203558;
}
.search-result-item .search-result-card .search-result-content .entry-header .entry-meta {
  font-size: 14px;
  color: #666;
  margin-top: 8px;
}
.search-result-item .search-result-card .search-result-content .entry-summary {
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
  font-size: 15px;
}
.search-result-item .search-result-card .search-result-content .entry-footer .read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #103558;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.search-result-item .search-result-card .search-result-content .entry-footer .read-more-link:hover {
  color: #203558;
  gap: 12px;
}
.search-result-item .search-result-card .search-result-content .entry-footer .read-more-link:hover i {
  transform: translateX(4px);
}
.search-result-item .search-result-card .search-result-content .entry-footer .read-more-link i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.search-form,
.widget_search .search-form {
  display: flex;
  gap: 0;
  max-width: 100%;
}
.search-form label,
.widget_search .search-form label {
  flex: 1;
  margin: 0;
}
.search-form label .screen-reader-text,
.widget_search .search-form label .screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
.search-form label .search-field,
.widget_search .search-form label .search-field {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #e5e5e5;
  border-radius: 8px 0 0 8px;
  font-size: 16px;
  color: #103558;
  transition: all 0.3s ease;
}
.search-form label .search-field:focus,
.widget_search .search-form label .search-field:focus {
  outline: none;
  border-color: #103558;
  box-shadow: 0 0 0 3px rgba(16, 53, 88, 0.1);
}
.search-form label .search-field::placeholder,
.widget_search .search-form label .search-field::placeholder {
  color: #999;
}
.search-form .search-submit,
.widget_search .search-form .search-submit {
  padding: 14px 24px;
  background: #103558;
  color: #fff;
  border: 2px solid #103558;
  border-radius: 0 8px 8px 0;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-form .search-submit:hover,
.widget_search .search-form .search-submit:hover {
  background: #203558;
  border-color: #203558;
}

@media screen and (max-width: 767px) {
  .search-results-page {
    padding: 30px 0 50px;
  }
  .search-results-page .search-results-header {
    margin-bottom: 30px;
  }
  .search-results-page .search-results-header .search-results-header-content {
    padding: 20px;
  }
  .search-results-page .search-results-header .search-results-header-content .search-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .search-results-page .search-results-header .search-results-header-content .search-icon-wrapper i {
    font-size: 20px;
  }
  .search-results-page .search-results-header .search-results-header-content .search-results-title-wrapper .search-results-title {
    font-size: 22px;
  }
  .search-results-page .search-results-header .search-results-header-content .search-results-title-wrapper .search-results-count {
    font-size: 14px;
  }
  .search-results-page .search-results-content .search-results-grid {
    gap: 20px;
  }
  .search-results-page .search-no-results {
    padding: 50px 20px;
  }
  .search-results-page .search-no-results .search-no-results-content .no-results-icon {
    width: 100px;
    height: 100px;
  }
  .search-results-page .search-no-results .search-no-results-content .no-results-icon i {
    font-size: 40px;
  }
  .search-results-page .search-no-results .search-no-results-content .no-results-title {
    font-size: 24px;
  }
  .search-results-page .search-no-results .search-no-results-content .no-results-message {
    font-size: 15px;
  }
  .error-404-page {
    padding: 40px 0 60px;
  }
  .error-404-page .error-404-content .error-404-icon {
    width: 140px;
    height: 140px;
  }
  .error-404-page .error-404-content .error-404-icon .error-number {
    font-size: 80px;
  }
  .error-404-page .error-404-content .error-404-icon .error-icon-circle {
    width: 110px;
    height: 110px;
  }
  .error-404-page .error-404-content .error-404-icon .error-icon-circle i {
    font-size: 44px;
  }
  .error-404-page .error-404-content .error-404-title {
    font-size: 24px;
  }
  .error-404-page .error-404-content .error-404-message {
    font-size: 15px;
  }
  .error-404-page .error-404-content .error-404-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .error-404-page .error-404-content .error-404-actions .btn-home-page,
  .error-404-page .error-404-content .error-404-actions .btn-search-page {
    width: 100%;
    justify-content: center;
  }
  .error-404-page .error-404-content .error-404-search {
    padding: 20px;
  }
  .error-404-page .error-404-content .error-404-search .error-search-title {
    font-size: 18px;
  }
  .search-result-item .search-result-card {
    flex-direction: column;
    padding: 20px;
  }
  .search-result-item .search-result-card .search-result-image {
    width: 100%;
    height: 200px;
  }
  .search-result-item .search-result-card .search-result-content .entry-header .entry-title {
    font-size: 20px;
  }
}
.blog-search-wrapper .blog-search-form .blog-search-group .blog-search-input {
  border: 2px solid #e5e5e5;
  border-radius: 8px 0 0 8px;
  transition: all 0.3s ease;
}
.blog-search-wrapper .blog-search-form .blog-search-group .blog-search-input:focus {
  outline: none;
  border-color: #103558;
  box-shadow: 0 0 0 3px rgba(16, 53, 88, 0.1);
}
.blog-search-wrapper .blog-search-form .blog-search-group .blog-search-btn {
  background: #103558;
  color: #fff;
  border: 2px solid #103558;
  border-radius: 0 8px 8px 0;
  padding: 10px 16px;
  transition: all 0.3s ease;
}
.blog-search-wrapper .blog-search-form .blog-search-group .blog-search-btn:hover {
  background: #203558;
  border-color: #203558;
}
.blog-search-wrapper .blog-search-form .blog-search-group .blog-search-btn i {
  font-size: 16px;
}

.blog-post-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.blog-post-card.search-hidden {
  opacity: 0;
  transform: scale(0.95);
}

.blog-no-results-msg {
  padding: 40px 20px;
  text-align: center;
}
.blog-no-results-msg i {
  font-size: 48px;
  color: #ccc;
  margin-bottom: 16px;
}
.blog-no-results-msg p {
  font-size: 18px;
  color: #666;
  margin: 0;
}

.blog-detailed {
  padding: 40px 0 60px;
}
.blog-detailed .blog-detail-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}
.blog-detailed .blog-detail-content .blog-detail-title {
  font-size: 36px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 24px 0;
  line-height: 1.3;
}
.blog-detailed .blog-detail-content .blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
  flex-wrap: wrap;
}
.blog-detailed .blog-detail-content .blog-detail-meta .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}
.blog-detailed .blog-detail-content .blog-detail-meta .author-name {
  font-weight: 600;
  color: #103558;
}
.blog-detailed .blog-detail-content .blog-detail-meta .meta-separator {
  color: #999;
}
.blog-detailed .blog-detail-content .blog-detail-meta .publish-date,
.blog-detailed .blog-detail-content .blog-detail-meta .read-time {
  color: #666;
  font-size: 14px;
}
.blog-detailed .blog-detail-content .blog-detail-body {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}
.blog-detailed .blog-detail-content .blog-detail-body .blog-section-heading {
  font-size: 24px;
  font-weight: 700;
  color: #103558;
  margin: 32px 0 16px 0;
}
.blog-detailed .blog-detail-content .blog-detail-body .blog-paragraph {
  margin-bottom: 16px;
}
.blog-detailed .blog-detail-content .blog-detail-body .blog-list {
  margin: 24px 0;
  padding-left: 24px;
}
.blog-detailed .blog-detail-content .blog-detail-body .blog-list li {
  margin-bottom: 12px;
  color: #666;
}
.blog-detailed .blog-detail-content .blog-detail-footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e5e5e5;
}
.blog-detailed .blog-detail-content .blog-detail-footer .blog-categories,
.blog-detailed .blog-detail-content .blog-detail-footer .blog-tags {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.blog-detailed .blog-detail-content .blog-detail-footer .blog-categories .blog-footer-label,
.blog-detailed .blog-detail-content .blog-detail-footer .blog-tags .blog-footer-label {
  font-weight: 600;
  color: #103558;
  margin-right: 8px;
}
.blog-detailed .blog-detail-content .blog-detail-footer .blog-categories .blog-category-tag,
.blog-detailed .blog-detail-content .blog-detail-footer .blog-categories .blog-tag,
.blog-detailed .blog-detail-content .blog-detail-footer .blog-tags .blog-category-tag,
.blog-detailed .blog-detail-content .blog-detail-footer .blog-tags .blog-tag {
  display: inline-block;
  padding: 6px 12px;
  background: #f0f4f8;
  color: #103558;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}
.blog-detailed .blog-detail-content .blog-detail-footer .blog-categories .blog-category-tag:hover,
.blog-detailed .blog-detail-content .blog-detail-footer .blog-categories .blog-tag:hover,
.blog-detailed .blog-detail-content .blog-detail-footer .blog-tags .blog-category-tag:hover,
.blog-detailed .blog-detail-content .blog-detail-footer .blog-tags .blog-tag:hover {
  background: #103558;
  color: #fff;
}

.blog-archive-page {
  padding: 60px 0 80px;
  min-height: 60vh;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}
.blog-archive-page .blog-archive-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}
.blog-archive-page .blog-archive-header {
  margin-bottom: 40px;
}
.blog-archive-page .blog-archive-header .blog-archive-header-content {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.blog-archive-page .blog-archive-header .blog-archive-header-content .archive-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #103558 0%, #203558 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-archive-page .blog-archive-header .blog-archive-header-content .archive-icon-wrapper i {
  font-size: 24px;
  color: #fff;
}
.blog-archive-page .blog-archive-header .blog-archive-header-content .archive-title-wrapper {
  flex: 1;
}
.blog-archive-page .blog-archive-header .blog-archive-header-content .archive-title-wrapper .blog-archive-title {
  font-size: 28px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 8px 0;
}
.blog-archive-page .blog-archive-header .blog-archive-header-content .archive-title-wrapper .blog-archive-description {
  font-size: 15px;
  color: #666;
  margin: 0 0 8px 0;
}
.blog-archive-page .blog-archive-header .blog-archive-header-content .archive-title-wrapper .blog-archive-count {
  font-size: 15px;
  color: #666;
  margin: 0;
}
.blog-archive-page .blog-archive-content .blog-archive-pagination {
  display: flex;
  justify-content: center;
  padding: 30px 0;
}
.blog-archive-page .blog-archive-no-results {
  padding: 80px 20px;
  text-align: center;
}
.blog-archive-page .blog-archive-no-results .no-results-content {
  max-width: 600px;
  margin: 0 auto;
}
.blog-archive-page .blog-archive-no-results .no-results-content .no-results-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-archive-page .blog-archive-no-results .no-results-content .no-results-icon i {
  font-size: 48px;
  color: #103558;
}
.blog-archive-page .blog-archive-no-results .no-results-content .no-results-title {
  font-size: 32px;
  font-weight: 700;
  color: #103558;
  margin: 0 0 16px 0;
}
.blog-archive-page .blog-archive-no-results .no-results-content .no-results-message {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 30px 0;
}
.blog-archive-page .blog-archive-no-results .no-results-content .no-results-actions .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #103558;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.blog-archive-page .blog-archive-no-results .no-results-content .no-results-actions .btn-home:hover {
  background: #203558;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(16, 53, 88, 0.3);
}

@media screen and (max-width: 991px) {
  .blog-detailed .blog-detail-content .blog-detail-title {
    font-size: 28px;
  }
  .blog-detailed .blog-detail-content .blog-detail-body .blog-section-heading {
    font-size: 22px;
  }
  .blog-archive-page {
    padding: 40px 0 60px;
  }
  .blog-archive-page .blog-archive-header .blog-archive-header-content {
    flex-direction: column;
    text-align: center;
  }
  .blog-archive-page .blog-archive-header .blog-archive-header-content .archive-icon-wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .blog-detailed {
    padding: 30px 0 50px;
  }
  .blog-detailed .blog-detail-content {
    padding: 20px 15px;
  }
  .blog-detailed .blog-detail-content .blog-detail-title {
    font-size: 24px;
  }
  .blog-detailed .blog-detail-content .blog-detail-meta {
    font-size: 14px;
  }
  .blog-detailed .blog-detail-content .blog-detail-body {
    font-size: 15px;
  }
  .blog-detailed .blog-detail-content .blog-detail-body .blog-section-heading {
    font-size: 20px;
  }
  .blog-archive-page {
    padding: 30px 0 50px;
  }
  .blog-archive-page .blog-archive-header {
    margin-bottom: 30px;
  }
  .blog-archive-page .blog-archive-header .blog-archive-header-content {
    padding: 20px;
  }
  .blog-archive-page .blog-archive-header .blog-archive-header-content .archive-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .blog-archive-page .blog-archive-header .blog-archive-header-content .archive-icon-wrapper i {
    font-size: 20px;
  }
  .blog-archive-page .blog-archive-header .blog-archive-header-content .archive-title-wrapper .blog-archive-title {
    font-size: 22px;
  }
}

/*# sourceMappingURL=style.css.map */
