@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --header-height: 80px;

  /* Brand Colors */
  --primary-color: #0d8ee9;
  --secondary-color: #ff9107;

  /* Neutral Scale */
  --gray-100: #f4f4f4;
  --gray-200: #d8d8d8;
  --gray-300: #acacac;
  --gray-400: #7d7d7d;

  /* Links */
  --active-link-color: var(--primary-color);
  --hover-link-color: var(--secondary-color);

  --white-color: #fff;
  --black-color: #000;
  --border-radius: 14px;
  --background-color: #fbf9f9;

  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease, fill 0.3s ease, stroke 0.3s ease;
}

/* Default Theme: Orange */
:root,
[data-theme="orange"] {
  --theme-color-100: #fff8e9;
  --theme-color-200: #ffc57c;
  --theme-color-300: var(--secondary-color, #ff9107);
  --theme-color-400: #be6900;
  --highlighted-paragraph-color: #a4390f;
}

/* Blue Theme */
[data-theme="blue"] {
  --theme-color-100: #edf7ff;
  --theme-color-200: #77c7ff;
  --theme-color-300: var(--primary-color, #0d8ee9);
  --theme-color-400: #0d47b2;
  --highlighted-paragraph-color: #cfe9ff;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif !important;
  background-color: var(--white-color);
  transition: all 0.3s ease;
}

.swal-confirm-btn {
  font-size: 1.6rem !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
}

.home-hero-section {
  min-height: 80vh;
}

.hero-content input:focus {
  font-size: 14px !important;
}

.hero-bg img {
  min-height: 60vh;
  transition: background-image 0.5s ease-in-out;
}

[data-theme="blue"] .hero-bg img {
  content: url("/assets/images/home/hero-dark--2.png");
}

.home-hero-section:has(.hero-tabs .tab.domestic-ca.active) .hero-bg img {
  content: url("/assets/images/home/ca-hero.png");
}

.container-wrapper {
  max-width: 90%;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

.gradient-text {
  background: linear-gradient(
    90deg,
    var(--theme-color-400),
    var(--theme-color-300),
    var(--theme-color-400)
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: normal;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

/* Country Search Styles */
.country-search-container {
  position: relative;
  width: 100%;
}

.country-search-input {
  width: 100%;
  padding: 12px 16px;
  border: none;
  font-size: 16px;
  background-color: transparent;
  color: var(--gray-400);
}

.country-search-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white-color);
  border: 1px solid var(--gray-200);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.country-result {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--gray-100);
  transition: background-color 0.2s ease;
}

.country-result:hover,
.country-result.highlight {
  background-color: var(--theme-color-100);
}

.country-result:last-child {
  border-bottom: none;
}

.country-name {
  font-weight: 500;
  color: var(--black-color);
}

.country-code {
  font-size: 12px;
  color: var(--gray-400);
  background-color: var(--gray-100);
  padding: 2px 6px;
  border-radius: 4px;
}

.no-results,
.search-error {
  padding: 12px 16px;
  text-align: center;
  color: var(--gray-400);
  font-style: italic;
}

.search-error {
  color: #dc3545;
}

/* Zip Code Search Styles */
.zip-search-container {
  position: relative;
  flex: 1;
}

.loading-spinner {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 2;
  display: none;
}

.loading-spinner::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border: 2.5px solid transparent;
  border-top: 2.5px solid var(--theme-color-400);
  border-right: 2.5px solid var(--theme-color-300);
  border-radius: 50%;
  animation: spin 1s ease-in-out infinite;
  box-shadow: 0 0 8px rgba(var(--theme-color-rgb), 0.3);
}

.loading-spinner.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-spinner.active::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  z-index: -1;
}

.zip-results {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  background: var(--white-color);
  border: 2px solid var(--theme-color-200);
  border-radius: var(--border-radius);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  max-height: 250px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  animation: fadeInDown 0.2s ease-out;
}

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

.zip-results::-webkit-scrollbar-track {
  background: var(--gray-100);
  border-radius: 3px;
}

.zip-results::-webkit-scrollbar-thumb {
  background: var(--theme-color-300);
  border-radius: 3px;
}

.zip-results::-webkit-scrollbar-thumb:hover {
  background: var(--theme-color-400);
}

.single_zip_div {
  cursor: pointer;
  padding: 0 16px;
  min-height: 35px;
  border-bottom: 1px solid var(--gray-100);
  transition: all 0.15s ease;
  font-size: 14px;
  color: var(--black-color);
  display: flex;
  align-items: center;
  margin: 0;
  line-height: 1.4;
  text-align: left;
  border-bottom: 1px solid var(--gray-100);
  margin-bottom: 8px;
  gap: 10px;
}

.single_zip_div:hover,
.single_zip_div.highlight {
  background: linear-gradient(
    90deg,
    var(--theme-color-100),
    var(--theme-color-200)
  );
  padding: 0 16px;
  color: var(--theme-color-400);
}

.single_zip_div:last-child {
  border-bottom: none;
}

.single_zip_div:first-child {
  border-top-left-radius: calc(var(--border-radius) - 2px);
  border-top-right-radius: calc(var(--border-radius) - 2px);
}

.single_zip_div:last-child {
  border-bottom-left-radius: calc(var(--border-radius) - 2px);
  border-bottom-right-radius: calc(var(--border-radius) - 2px);
}

.single_zip_div::before {
  content: "📍";
  font-size: 12px;
  opacity: 0.7;
  margin-right: 8px;
  flex-shrink: 0;
}

.single_zip_div:hover::before {
  opacity: 1;
}

.logo img {
  max-width: 100%;
  object-fit: contain;
}

figure > img {
  object-fit: contain;
  max-width: 100%;
  width: 100%;
  height: 100%;
}

.btn-primary {
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  color: var(--white-color);
}

.btn-primary a:hover {
  background: orange;
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius);
  color: var(--white-color);
}

.btn-primary a:hover {
  background: orange;
}

.btn-gray {
  background-color: var(--gray-300);
  border-radius: var(--border-radius);
  color: var(--white-color);
}

.btn-primary *,
.btn-secondary *,
.btn-gray * {
  color: var(--white-color);
}

/* HOME */
.home-hero-section {
  position: relative;
  text-align: center;
  color: #333;
  padding-top: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
}

.hero-bg img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-bottom: 2rem;
  padding-right: 1rem;
  padding-left: 1rem;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.hero-content h1 {
  color: var(--white-color);
  font-size: 56px;
  text-transform: uppercase;
  font-weight: bolder;
  text-shadow: -1px 0 var(--theme-color-400), 1px 0 var(--theme-color-400),
    0 -1px var(--theme-color-400), 0 3px rgba(0, 0, 0, 0.3),
    -1px -1px var(--theme-color-400), 1px 1px var(--theme-color-400),
    -1px 1px var(--theme-color-400), 1px -1px var(--theme-color-400);
  line-height: 100%;
  display: none;
}

.hero-content h1 > p {
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.hero-content h1 > p span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding-top: 10px;
}

[data-theme="blue"] h1 > p > span img {
  content: url("/assets/images/home/check-mark-2.svg");
}

.hero-tabs {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 1rem;
}

[data-theme="orange"] .hero-content h1.orange-mode,
[data-theme="blue"] .hero-content h1.blue-mode {
  display: none;
}

[data-theme="orange"] .hero-content h1.orange-mode-mobile,
[data-theme="blue"] .hero-content h1.blue-mode-mobile {
  display: block;
}

.hero-tabs .tab {
  padding: 0.5rem 2rem;
  color: var(--theme-color-400);
  font-weight: bold;
  border: none;
  cursor: pointer;
  position: relative;
  font-size: 2rem;
  background: linear-gradient(
    to top,
    var(--gray-200) 0%,
    var(--white-color) 60%
  );
  border: 1px solid var(--gray-300);
  border-radius: 10px 10px 0 0;
}

.hero-tabs .tab.domestic-ca {
  color: #894c00;
}

.hero-tabs .tab.domestic-ca.active {
  background: #e98200;
  border-color: #e98200;
}

.hero-tabs .active {
  background: var(--theme-color-300);
  color: var(--white-color) !important;
  border-radius: 10px 10px 0 0;
  border-color: var(--theme-color-300);
}

.hero-search-form .search-input {
  position: relative;
}

.inputs-holder {
  display: flex;
  justify-content: center;
  gap: 1rem;
  justify-content: space-between;
  border-radius: 0 40px 0 40px;
}

[data-theme="blue"] .inputs-holder .domestic {
  display: none;
}

[data-theme="orange"] .inputs-holder .international {
  display: none;
}

/* Style international section to match domestic inputs */
.international {
  position: relative;
  padding: 15px;
  background-color: var(--white-color);
  border-radius: 0 0 0 35px;
  width: 85%;
  display: flex;
  border: var(--theme-color-300) 5px solid;
}

.international::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-color-200);
  width: 1px;
  height: 80%;
  border-radius: 90%;
}

.international .filter-block {
  display: flex;
  width: 100%;
  gap: 0;
}

.international .home_select_country {
  padding: 0.7rem;
  flex: 1;
  border: none;
  outline: none;
  width: 100%;
  background: transparent;
  appearance: none;
}

.hero-tabs:has(.tab.domestic-ca.active)
  ~ .hero-search-form
  .search-input
  .domestic {
  border-color: #e98200;
}

.hero-tabs:has(.tab.domestic-ca.active)
  ~ .hero-search-form
  .search-input
  .search-btn {
  background: #e98200;
}

.inputs-holder > div:first-of-type {
  position: relative;
  padding: 15px;
  background-color: var(--white-color);
  border-radius: 0 0 0 35px;
  width: 85%;
  display: flex;
  border: var(--theme-color-300) 5px solid;
}

.hero-search-form input {
  padding: 0.7rem;
  flex: 1;
  border: none;
  outline: none;
  width: 100%;
}

.hero-search-form input::placeholder {
  color: var(--gray-400);
  font-size: 16px;
}

.inputs-holder > div:first-of-type::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-color-200);
  width: 1px;
  height: 80%;
  border-radius: 90%;
  z-index: 1;
}

.hero-search-form .search-btn {
  text-align: right;
  background: var(--theme-color-300);
  width: 15%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 35px 35px 0;
  border-right: 5px solid var(--theme-color-200);
  font-size: 2rem;
}

.hero-search-form .search-btn:hover {
  background: linear-gradient(
    90deg,
    var(--theme-color-200),
    var(--theme-color-300)
  );
}

.hero-search-form .search-btn:hover button {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-search-form button {
  background: transparent;
  color: var(--white-color);
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 0 0 10px 10px;
  width: 100%;
  height: 100%;
}

.hero-highlights {
  display: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.hero-highlights::-webkit-scrollbar {
  display: none;
}

.highlight-box {
  position: relative;
  flex: 1;
  padding: 1rem 2rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.highlight-box:nth-child(1) {
  right: -40px;
  clip-path: polygon(
    0 0,
    /* top-left */ 100% 7%,
    /* top-right shifted down a bit */ 100% 93%,
    /* bottom-right */ 0% 100% /* bottom-left */
  );
}

.highlight-box:nth-child(2) {
  right: -20px;
  clip-path: polygon(
    0 0,
    /* top-left */ 100% 7%,
    /* top-right shifted down a bit */ 100% 93%,
    /* bottom-right */ 0% 100% /* bottom-left */
  );
}

.highlight-box:nth-child(4) {
  left: -20px;
  z-index: 1;
  clip-path: polygon(
    0% 93%,
    /* top-left */ 0% 7%,
    /* top-right */ 100% 0%,
    /* bottom-right */ 100% 100% /* bottom-left */
  );
}

.highlight-box:nth-child(5) {
  left: -40px;
  clip-path: polygon(
    0% 93%,
    /* top-left */ 0% 7%,
    /* top-right */ 100% 0%,
    /* bottom-right */ 100% 100% /* bottom-left */
  );
}

.highlight-box:nth-child(1),
.highlight-box:nth-child(5) {
  height: 16rem;
}

.highlight-box:nth-child(2),
.highlight-box:nth-child(4) {
  height: 16rem;
}

.highlight-box:nth-child(3) {
  height: 20rem;
  border-radius: 25px;
}

/* First two boxes */
.highlight-box:nth-child(1),
.highlight-box:nth-child(2) {
  background: linear-gradient(
    90deg,
    var(--theme-color-100) 0%,
    var(--theme-color-200) 15%,
    var(--theme-color-300) 85%,
    var(--theme-color-400) 100%
  );
}

/* Last two boxes */
.highlight-box:nth-child(4),
.highlight-box:nth-child(5) {
  background: linear-gradient(
    270deg,
    var(--theme-color-100) 0%,
    var(--theme-color-200) 15%,
    var(--theme-color-300) 85%,
    var(--theme-color-400) 100%
  );
}

.highlight-box h4 {
  text-transform: uppercase;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: bold;
}

.highlight-box p {
  color: var(--highlighted-paragraph-color);
  font-size: 1rem;
}

.highlight-box.trustpilot .note {
  font-size: 1rem;
  color: var(--theme-color-300);
}

[data-theme="blue"] .highlight-box p {
  color: #333;
}

.highlight-box small {
  color: #333;
  font-weight: 800;
}

.highlight-box.trustpilot {
  background: var(--white-color);
  background: radial-gradient(
    circle,
    var(--white-color) 25%,
    var(--theme-color-200) 100%
  );
  z-index: 2;
}

.highlight-box.trustpilot h3 {
  font-size: 5rem;
  color: var(--theme-color-300);
  font-weight: bold;
  margin: 0;
  text-shadow: -2px -2px 0 var(--white-color), 2px -2px 0 var(--white-color),
    -2px 2px 0 var(--white-color), 2px 2px 0 var(--white-color);
}

.highlight-box.trustpilot .read-reviews {
  color: var(--white-color);
  background-color: var(--theme-color-300);
  border-radius: var(--border-radius);
  font-size: 1.3rem;
  padding: 5px 14px;
  text-transform: uppercase;
}

.highlights-swiper-container .customer-reviews-head-box > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.highlights-swiper-container .customer-reviews-head-box {
  margin: 12px 0;
}

.customer-reviews-head-box .note {
  color: var(--theme-color-300);
  font-weight: bold;
  font-size: 8px;
}

.highlights-swiper-container .customer-reviews-head-box > div h3 {
  font-size: 48px;
  font-weight: 900;
  margin: 0;

  background: linear-gradient(
    to top,
    var(--theme-color-400),
    var(--theme-color-300)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.highlights-swiper-container .customer-reviews-head-box p {
  font-weight: 900;
  font-size: 14px;
  color: var(--theme-color-400);
  margin: 0;
  text-shadow: -3px -3px 0 var(--white-color), 3px -3px 0 var(--white-color),
    -3px 3px 0 var(--white-color), 3px 3px 0 var(--white-color);
}

.highlights-swiper {
  position: relative;
  width: 100%;
  padding: 10px 0 !important;
  border-radius: 10px;
  border: 1px solid var(--theme-color-200);
  box-shadow: 0 0 10px var(--theme-color-200);
}

.highlights-swiper::before,
.highlights-swiper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, #8d622c, #ffffff00);
  pointer-events: none;
  z-index: 2;
}

.highlights-swiper::after {
  left: auto;
  right: 0;
  background: linear-gradient(to left, #8d622c, #ffffff00);
}

[data-theme="blue"] .highlights-swiper::before,
[data-theme="blue"] .highlights-swiper::after {
  background: linear-gradient(to right, #335189, #ffffff00);
}

[data-theme="blue"] .highlights-swiper::after {
  background: linear-gradient(to left, #335189, #ffffff00);
}

.highlights-swiper .swiper-slide {
  width: 180px !important;
  height: 80px;
  background: linear-gradient(
    to left,
    var(--theme-color-200) 0%,
    var(--theme-color-200) 20%,
    var(--theme-color-100) 50%,
    var(--theme-color-200) 80%,
    var(--theme-color-200) 100%
  );
  border-radius: 10px;
  text-align: center;
  padding: 6px 0;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: 1px solid var(--theme-color-300);
}

.highlights-swiper .swiper-slide h4 {
  font-size: 14px;
  text-transform: uppercase;
  margin: 0;
  color: #4e2b00;
  font-weight: bold;
}

.highlights-swiper .swiper-slide h4 small {
  font-size: 12px;
  color: #4e2b00;
  font-weight: bold;
}

.highlights-swiper .swiper-slide p {
  font-size: 12px;
  margin-bottom: 0;
  color: var(--highlighted-paragraph-color);
}

[data-theme="blue"] .highlights-swiper .swiper-slide h4,
.highlights-swiper .swiper-slide h4 small {
  color: var(--theme-color-400);
}

[data-theme="blue"] .highlights-swiper .swiper-slide p {
  color: #0f55a4;
}

/* Navigation buttons */
.highlights-swiper .swiper-button-prev,
.highlights-swiper .swiper-button-next {
  color: var(--theme-color-200);
  width: 15px !important;
  height: 20px !important;
  background: var(--white-color);
  transform: translateY(50%) !important;
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
}

.highlights-swiper .swiper-button-next {
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.hero-features .container-wrapper {
  display: grid;
  grid-template-columns: repeat(2 1fr);
  text-align: center;
}

.feature {
  padding: 0 10px;
}

.feature .refund {
  display: none;
}

[data-theme="orange"] .refund-default {
  display: inline;
}

[data-theme="blue"] .refund-blue {
  display: inline;
}

.feature:last-of-type {
  border-right: none;
}

.feature h5 {
  color: var(--theme-color-400);
  font-weight: bold;
  margin-bottom: 5px;
}

.feature p {
  color: var(--gray-400);
  font-size: 14px;
}

/* Responsive Media Queries - Added without changing existing styles */

@media (min-width: 1023px) {
  .hero-highlights {
    display: flex;
    justify-content: flex-start;
    margin: 2rem auto;
    padding: 1rem 2rem;
    max-width: 100%;
    gap: 1.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    width: 100%;
    align-items: center;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scroll-padding: 0 2rem;
  }

  .highlights-swiper-container {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero-bg img {
    max-height: 90vh;
  }

  .highlight-box p {
    font-size: 1.5rem;
  }

  .hero-content {
    bottom: -9rem;
  }

  [data-theme="orange"] .hero-content h1.orange-mode,
  [data-theme="blue"] .hero-content h1.blue-mode {
    display: block;
  }

  [data-theme="orange"] .hero-content h1.orange-mode-mobile,
  [data-theme="blue"] .hero-content h1.blue-mode-mobile {
    display: none;
  }

  .hero-features .container-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }

  .highlight-box p {
    font-size: 1.5rem;
  }
}

/* Extra Small Devices (320px - 479px) */
@media (max-width: 479px) {
  .gradient-text {
    margin-bottom: 10px;
  }

  .hero-content {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }

  .home-hero-section {
    padding-bottom: 12px;
    min-height: auto;
  }

  .hero-features {
    padding-top: 12px;
  }

  [data-theme="orange"] .hero-bg img {
    content: url("/assets/images/home/hero-mobile-orange-2.png");
  }

  [data-theme="blue"] .hero-bg img {
    content: url("/assets/images/home/hero-mobile-dark-2.png");
  }

  .home-hero-section:has(.hero-tabs .tab.domestic-ca.active) .hero-bg img {
    content: url("/assets/images/home/ca-hero-mobile.png");
  }

  .hero-bg img {
    margin-top: 80px;
    min-height: 190px;
    height: 190px;
  }

  .hero-tabs {
    justify-content: center;
    border-radius: 5px;
  }

  #city_to_div.zip-results {
    left: 100%;
    transform: translateX(-100%);
  }

  .hero-features .container-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .hero-content h1 {
    margin: 60px 0 30px;
    font-size: 22px;
    letter-spacing: 1px;
    line-height: 1.3;
    text-shadow: -1px 0 var(--theme-color-400), 0.5px 0 var(--theme-color-400),
      0 -0.5px var(--theme-color-400), 0 0.5px rgba(0, 0, 0, 0.3),
      -0.5px -0.5px var(--theme-color-400), 0.5px 0.5px var(--theme-color-400),
      -0.5px 0.5px var(--theme-color-400), 0.5px -0.5px var(--theme-color-400);
  }

  .hero-content h1 > p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
  }

  /* Highlighted Keywords */
  .hero-content h1 > p > span {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  /* Icons inside span */
  h1 > p > span img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    vertical-align: middle;
    filter: drop-shadow(0 0 1px rgba(0, 0, 0, 0.15));
  }

  .hero-tabs .tab {
    font-size: 1.2rem;
  }

  .inputs-holder {
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }

  .inputs-holder > div:first-of-type,
  .international {
    width: 100%;
    flex-direction: column;
    border: none;
    background-color: transparent;
    padding: 0;
    border: 3px solid var(--theme-color-300);
    border-radius: 10px;
  }

  .domestic,
  .international {
    position: relative;
    border-radius: 10px;
  }

  .inputs-holder > div:first-of-type::before,
  .international::before {
    display: none;
  }

  .domestic::after,
  .international::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 2px;
    background-color: var(--gray-200);
  }

  .filter-block {
    flex-direction: column;
  }

  .search-input {
    display: flex;
    align-items: center !important;
    justify-content: center !important;
  }

  .inputs-holder input {
    background-color: white;
    padding: 15px;
    border-radius: 10px;
  }

  .hero-search-form button {
    font-size: 22px;
  }

  #city_from_div,
  #city_to_div {
    width: 100%;
  }

  .hero-search-form .search-btn {
    width: 221px;
    height: 46px;
    border-radius: 10px;
    margin: 0 auto;
  }

  .highlight-box {
    flex: 0 0 280px;
    right: 0 !important;
    left: 0 !important;
    clip-path: none;
    border-radius: 10px;
    height: auto !important;
    min-height: 12rem;
    scroll-snap-align: start;
  }

  .highlight-box h4 {
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .highlight-box p {
    font-size: 1.2rem;
  }

  .hero-search-form .search-btn {
    font-size: 1.5rem;
    padding: 7px;
    border: none;
  }
}

/* Small Devices (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content h1 > p {
    font-size: 24px;
    flex-wrap: wrap;
  }

  .hero-tabs .tab {
    font-size: 1.5rem;
  }

  .inputs-holder {
    flex-direction: column;
    gap: 0;
  }

  .inputs-holder > div:first-of-type {
    width: 100%;
    border-radius: 35px 35px 0 0;
  }

  .international {
    width: 100%;
    border-radius: 35px 35px 0 0;
  }

  .hero-search-form .search-btn {
    width: 100%;
    border-radius: 0 0 35px 35px;
    font-size: 2rem;
  }
}

/* Medium Devices (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
  .hero-bg img {
    max-height: 90vh;
  }

  .hero-content h1 {
    font-size: 44px;
  }

  .hero-content h1 > p {
    font-size: 32px;
  }
}

/* Original desktop styles maintained */
@media (min-width: 1024px) {
  .highlight-box h4 {
    font-size: 2rem;
  }
}

@media (min-width: 1200px) {
  .container-wrapper {
    max-width: 920px;
  }

  .hero-content {
    bottom: -8rem;
  }

  .feature {
    border-right: 2px solid transparent;
    border-image: linear-gradient(
        to bottom,
        var(--white-color) 0%,
        var(--gray-200) 30%,
        var(--gray-200) 70%,
        var(--white-color) 100%
      )
      1;
  }

  .hero-features .container-wrapper {
    grid-template-columns: repeat(6, 1fr);
  }
}

@media (min-width: 1440px) {
  .container-wrapper {
    max-width: 1300px;
  }

  .hero-content {
    bottom: -3rem;
  }
}

@media (max-width: 767px) {
  .hero-content {
    position: relative;
    margin-top: -50%;
    padding-bottom: 0;
  }

  .feature {
    border: 2px solid var(--theme-color-200) !important;
    border-radius: 10px;
    padding: 6px;
  }
}

/* HOME */
/* How LuggageToShip Works */
.how-LuggageToShip-works {
  display: none;
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}

.how-LuggageToShip-works .bg-img {
  background-image: url("/assets/images/home/how-LuggageToShip-works.png");
  background-repeat: no-repeat;
  background-size: cover;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  color: var(--white-color) !important;
  border-bottom: 10px solid transparent;
  border-image: linear-gradient(
      to right,
      var(--theme-color-400) 0%,
      var(--theme-color-300) 90%,
      var(--theme-color-300) 90%,
      var(--theme-color-400) 100%
    )
    1;
  position: relative;
  overflow: hidden;
}

.how-LuggageToShip-works .bg-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.how-LuggageToShip-works .bg-img h2 {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
  font-size: 2rem;
}

[data-theme="blue"] .how-LuggageToShip-works .bg-img {
  background-image: url("/assets/images/home/how-LuggageToShip-works--blue.png");
}

.how-LuggageToShip-works .how-LuggageToShip-works-footer {
  position: relative;
  font-weight: bold;
  top: -4rem;
}

.how-LuggageToShip-works .how-LuggageToShip-works-footer div {
  cursor: pointer;
  position: relative;
  background-color: var(--theme-color-300);
  padding: 16px 48px;
  border-radius: 15px;
  font-size: 22px;
  margin: 0 auto;
  width: fit-content;
  color: var(--white-color);
  z-index: 1;
}

.how-LuggageToShip-works .how-LuggageToShip-works-footer::before {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: linear-gradient(
    to right,
    var(--white-color),
    var(--theme-color-300),
    var(--theme-color-100)
  );
  height: 3px;
  width: 60%;
  border-radius: var(--border-radius);
  pointer-events: none;
}

.how-LuggageToShip-works-img figure {
  width: 100%;
  object-fit: contain;
}

.how-LuggageToShip-works .container-wrapper > h3 {
  font-size: 2rem;
  font-weight: bold;
  color: var(--white-color);
  background-color: var(--theme-color-300);
  width: fit-content;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 15px;
}

.how-LuggageToShip-works .container-wrapper p {
  color: var(--gray-400);
}

.how-works-articles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  bottom: 13rem;
}

.how-works-articles article {
  position: relative;
  background-color: var(--white-color);
  color: var(--theme-color-300);
  text-align: center;
  padding: 2rem;
  border-radius: 22px;

  box-shadow: inset 0 5px 12px rgba(0, 0, 0, 0.1),
    /* top */ inset 0 -5px 12px rgba(0, 0, 0, 0.1),
    /* bottom */ inset 5px 0 12px rgba(0, 0, 0, 0.1),
    /* left */ inset -5px 0 12px rgba(0, 0, 0, 0.1),
    /* right */ 0 4px 10px rgba(0, 0, 0, 0.15); /* outer shadow */

  transition: all 0.3s ease;
}

.how-works-articles article:hover {
  background-color: var(--theme-color-300);
  color: var(--white-color);
}

.how-works-articles article:hover p {
  color: var(--white-color);
}

.how-works-articles img {
  border: 2px solid var(--white-color);
  border-radius: 15px;
}

/* Section Slider */
.how-LuggageToShip-works-slider {
  background-image: url("/assets/images/home/how-LuggageToShip-works-orange.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

[data-theme="blue"] .how-LuggageToShip-works-slider {
  background-image: url("/assets/images/home/how-LuggageToShip-works-dark.png");
}

.how-LuggageToShip-works-slider h2,
.how-LuggageToShip-works-slider h3,
.how-LuggageToShip-works-slider p {
  margin: 0;
}

.how-LuggageToShip-works-slider h2 {
  text-align: center;
  color: var(--white-color);
  font-weight: 700;
  font-size: 18px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
}

.how-LuggageToShip-works-slider h3 {
  color: var(--theme-color-300);
  font-weight: 700;
  font-size: 14px;
  width: 100%;
}

.how-LuggageToShip-works-slider p {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: 6px;
  max-width: 90%;
}

.how-works-slider article {
  display: flex;
  align-items: center;
}

.how-works-slider .swiper-wrapper {
  display: flex;
  align-items: stretch;
  margin: 21px 0 17px;
}

.how-works-slider article .article-count {
  font-size: 11rem;
  font-weight: bolder;
  color: var(--theme-color-100);
  width: fit-content;
  text-shadow: 0px 0px 0 var(--theme-color-100),
    1px 0px 0 var(--theme-color-200), 2px 0px 0 var(--theme-color-200),
    3px 0px 0 var(--theme-color-300), 4px 0px 0 var(--theme-color-300),
    5px 0px 0 var(--highlighted-paragraph-color),
    6px 0px 0 var(--highlighted-paragraph-color),
    7px 0px 0 var(--highlighted-paragraph-color),
    8px 0px 0 var(--highlighted-paragraph-color),
    7px 0px 0 var(--highlighted-paragraph-color),
    10px 0px 0 var(--highlighted-paragraph-color),
    11px 0px 0 var(--highlighted-paragraph-color),
    12px 0px 11px rgba(0, 0, 0, 0.33), 12px 0px 1px rgba(0, 0, 0, 0.5),
    0px 0px 11px rgba(0, 0, 0, 0.2);
}

.how-works-slider .swiper-slide {
  height: 100px;
}

.how-works-slider article .article-content {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  background-color: var(--white-color);
  border-radius: 10px;
}

.how-works-slider article .article-content img {
  border-radius: 0 10px 0 10px !important;
  width: 112px;
  height: 100px;
}

.how-LuggageToShip-works-slider .how-LuggageToShip-works-footer {
  position: relative;
  display: flex;
  justify-content: center;
}

.how-LuggageToShip-works-slider button {
  background-color: var(--theme-color-300);
  border: 1px solid var(--white-color);
  font-size: 12px;
  font-weight: 700;
  color: var(--white-color);
  border-radius: 6px;
  line-height: 22px;
  padding: 4px 12px;
}

.how-LuggageToShip-works-slider .how-LuggageToShip-works-footer::before {
  content: "";
  width: 90%;
  height: 3px;
  background: linear-gradient(
    to right,
    transparent,
    var(--theme-color-300),
    var(--theme-color-100),
    var(--theme-color-300),
    transparent
  );
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: var(--border-radius);
  z-index: -1;
}

.how-LuggageToShip-works-slider .swiper-button-prev {
  left: -2% !important;
  bottom: 0 !important;
  top: auto !important;
}

.how-LuggageToShip-works-slider .swiper-button-next {
  right: -2% !important;
  bottom: 0 !important;
  top: auto !important;
}

.how-LuggageToShip-works-slider .swiper-button-next span,
.how-LuggageToShip-works-slider .swiper-button-prev span {
  width: 12px !important;
  height: 16px !important;
  background: var(--theme-color-100);
  transform: translateY(50%) !important;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.how-LuggageToShip-works-slider .swiper-button-prev span {
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
}

@media (min-width: 1024px) {
  .how-LuggageToShip-works {
    display: block;
  }

  .how-LuggageToShip-works-slider {
    display: none;
  }

  .highlight-box h4 {
    font-size: 2rem;
  }

  .how-LuggageToShip-works .bg-img h2 {
    font-size: 4rem;
  }
}

/* How LuggageToShip Works */

/* Start Customer reviews */
.customer-reviews-section {
  position: relative;
  overflow: hidden;
  background-color: var(--white-color);
}

.customer-reviews-section .quote-icon {
  width: 35px;
  height: 68px;
  background-color: #ffe9cd;
  -webkit-mask: url("/assets/images/home/quote.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask: url("/assets/images/home/quote.svg") no-repeat center;
  mask-size: contain;
}

[data-theme="blue"] .customer-reviews-section .quote-icon {
  background-color: #d3edff;
}

.customer-reviews-section .container-wrapper {
  padding: 0 20px;
}

.customer-reviews-section .container-wrapper .icons-container {
  display: flex;
  gap: 1rem;
  position: absolute;
}

.customer-reviews-section .container-wrapper .icons-container:first-of-type {
  top: -60px;
  left: -10px;
}

.customer-reviews-section .container-wrapper .icons-container:last-of-type {
  right: -10px;
  bottom: -50px;
}

.customer-reviews-section
  .container-wrapper
  .icons-container:last-of-type
  .quote-icon {
  transform: rotate(180deg);
}

.customer-reviews .swiper-slide {
  height: auto;
  display: flex;
  overflow: visible;
  padding: 30px 10px;
  width: 100%;
}

/* Hide Swiper’s default arrow styles */
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.customer-reviews::after {
  content: "";
  width: 90%;
  height: 50%;
  background: var(--theme-color-100);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.customer-reviews article {
  background-color: var(--white-color);
  padding: 10px;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--theme-color-300);
  position: relative;
  width: 100%;
}

.customer-reviews article > div {
  position: absolute;
  display: flex;
  align-items: center;
  height: 16px;
  gap: 5px;
  bottom: -8px;
  left: 50%;
  background-color: var(--white-color);
  transform: translateX(-50%);
  border-radius: 4px;
  border: 2px solid var(--theme-color-300);
  padding: 3px;
  color: var(--gray-400);
  font-size: 12px;
  text-transform: capitalize;
}

.customer-reviews article > div img {
  width: 45px;
}

.customer-reviews article > div span {
  font-size: 8px;
  font-weight: bold;
}

.customer-reviews article > figure > img {
  transform: scale(1.5);
}

.customer-reviews h3 {
  color: var(--theme-color-300);
  font-size: 16px;
  font-weight: semi-bold;
  text-align: center;
}

.customer-reviews p {
  color: var(--gray-400);
}

.reviews-providers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 0;
  position: relative;
}

.reviews-providers::after {
  content: "";
  width: 60%;
  height: 3px;
  background: linear-gradient(
    to right,
    var(--white-color),
    var(--theme-color-300),
    var(--theme-color-100)
  );
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  /* z-index: 0; */
  border-radius: var(--border-radius);
}

.reviews-providers figure {
  background: linear-gradient(
    to right,
    var(--white-color),
    var(--theme-color-100)
  );
  border: 1px solid var(--theme-color-300);
  border-radius: 0 var(--border-radius) var(--border-radius) 0;
  padding: 8px;
  width: 170px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  left: -10px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.reviews-providers figure img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.reviews-providers figure:first-of-type {
  background: linear-gradient(
    to right,
    var(--theme-color-100),
    var(--white-color)
  );
  left: 10px;
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.customer-reviews .swiper-slide article a {
  margin-top: 10px;
  display: block;
}

.reviews-providers div {
  background-color: var(--theme-color-100);
  border: 1px solid var(--theme-color-300);
  z-index: 1;
  width: 79px;
  height: 55px;
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--theme-color-400);
  font-weight: bold;
  z-index: 2;
}

.customer-reviews-section .custom-prev,
.customer-reviews-section .custom-next {
  background: var(--theme-color-100);
  color: var(--theme-color-300) !important;
  width: 25px !important;
  height: 25px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--theme-color-300);
  transition: all 0.3s ease;
}

.customer-reviews-section .custom-prev {
  left: -2% !important;
}

.customer-reviews-section .custom-next {
  right: -2% !important;
}

.customer-reviews-section .custom-next span,
.customer-reviews-section .custom-prev span {
  width: 7px !important;
  height: 9px !important;
  background: var(--theme-color-200);
  transform: translateY(50%) !important;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  margin-bottom: 6px;
}

.customer-reviews-section .custom-prev span {
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
}

@media (min-width: 768px) {
  .customer-reviews article {
    padding: 10px 20px 20px;
  }

  .customer-reviews-section .container-wrapper {
    padding: 0;
  }

  .reviews-providers {
    margin: 5rem auto 0;
  }

  .customer-reviews-section .quote-icon {
    width: 53px;
    height: 100px;
  }

  .customer-reviews-section .container-wrapper .icons-container:first-of-type {
    top: -100px;
    left: 0;
  }

  .customer-reviews-section .container-wrapper .icons-container:last-of-type {
    right: 0;
    bottom: -110px;
  }

  .customer-reviews article > div {
    height: 30px;
    gap: 5px;
    bottom: -15px;
    border-radius: var(--border-radius);
    padding: 8px;
  }

  .customer-reviews article > div img {
    width: auto;
  }

  .customer-reviews article > div span {
    font-size: 14px;
  }

  .customer-reviews-section .custom-prev {
    left: -3% !important;
  }

  .customer-reviews-section .custom-next {
    right: -3% !important;
  }
}

/* End Customer reviews */

/* Start Shipping Partners */
.shipping-partners-section {
  position: relative;
  overflow: hidden;
}

.shipping-partners-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 55%;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    to top,
    var(--theme-color-300) 0%,
    var(--theme-color-300) 60%,
    white 100%
  );
  clip-path: ellipse(110% 100% at 50% 100%);
  z-index: 0;
}

.shipping-partners-section .container-wrapper {
  gap: 8rem;
}

.shipping-partners-section h2 {
  line-height: normal;
}

.shipping-partners {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2rem auto 24px;
}

.shipping-partners > div figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.shipping-partners figure img {
  max-width: 70%;
  object-fit: contain;
}

.shipping-partners-content {
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--white-color);
}

.shipping-partners-content img {
  border-radius: 20px;
  max-width: 120px;
  width: 100%;
  object-fit: contain;
  border: 2px solid var(--white-color);
}

.shipping-partners-content h3 {
  font-size: 18px;
  font-weight: 700;
}

.shipping-partners-content h4 {
  font-size: 14px;
}

.shipping-partners-content p {
  font-size: 12px;
}

@media (min-width: 768px) {
  .shipping-partners-content {
    gap: 2rem;
  }

  .shipping-partners {
    justify-content: space-around;
    max-width: 80%;
    margin: 2rem auto 12rem;
  }

  .shipping-partners-content img {
    border-radius: 98px;
    max-width: 550px;
    border-width: 8px;
  }

  .shipping-partners-content h3 {
    font-size: 44px;
  }

  .shipping-partners-content h4 {
    font-size: 32px;
  }

  .shipping-partners-content p {
    font-size: 24px;
  }
}

/* End Shipping Partners */

/* Start What We Ship */
.what-we-ship-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 90px 10px;
  margin-top: 10rem;
}

.what-we-ship-grid article {
  text-align: center;
  background: linear-gradient(
    to top,
    var(--theme-color-100),
    var(--white-color)
  );
  position: relative;
  padding: 50px 10px 20px;
  border: 1px solid var(--theme-color-300);
  border-radius: var(--border-radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.what-we-ship-grid article img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -70px;
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}

.what-we-ship-grid article h3 {
  color: var(--theme-color-300);
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.what-we-ship-grid article p {
  color: var(--gray-400);
  font-size: 12px;
  margin: 0 auto;
}

.what-we-ship-grid article span {
  position: absolute;
  height: 22px;
  bottom: -10px;
  left: 50%;
  color: var(--white-color);
  background-color: var(--theme-color-300);
  transform: translateX(-50%);
  border-radius: 5px;
  font-size: 10px;
  width: 125px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .what-we-ship-section > .container-wrapper {
    padding: 0 100px;
  }
}

@media (min-width: 768px) {
  .what-we-ship-grid {
    gap: 120px 40px;
  }

  .what-we-ship-grid article {
    padding: 70px 20px 30px;
  }

  .what-we-ship-grid article img {
    max-width: 140px;
    max-height: 140px;
  }

  .what-we-ship-grid article h3 {
    font-size: 24px;
  }

  .what-we-ship-grid article p {
    font-size: 16px;
  }

  .what-we-ship-grid article span {
    height: 25px;
    border-radius: var(--border-radius);
    font-size: 14px;
    width: 175px;
  }
}
/* End What We Ship */

/* Start LuggageToShip In Media & News */
.news-swiper-section {
  background: linear-gradient(
    to right,
    var(--theme-color-200) 0%,
    var(--theme-color-100) 20%,
    var(--theme-color-100) 80%,
    var(--theme-color-200) 100%
  );
}

.news-swiper {
  position: relative;
  width: 100%;
  padding: 0 !important;
}

.news-swiper .swiper-slide {
  min-width: 250px;
  border-radius: var(--border-radius);
  overflow: hidden;
  cursor: pointer;
  padding: 10px;
  filter: blur(1px);
  opacity: 0.8;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.news-swiper .swiper-slide article {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius);
  height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.news-swiper .swiper-slide article .news-content {
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.news-swiper .swiper-slide article .news-content h3 {
  color: var(--theme-color-300);
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 0;
}

.news-swiper .swiper-slide article .news-content p {
  color: var(--gray-400);
  font-size: 14px;
  flex-grow: 1;
  word-spacing: 2px;
}

.news-swiper .swiper-slide article .news-content p span {
  margin-top: 10px;
  display: block;
  color: var(--primary-color);
  font-size: 13px;
}

.news-swiper .swiper-slide article .news-content span {
  margin-bottom: 10px;
  color: var(--gray-400);
  font-size: 10px;
}

.news-swiper .swiper-slide article .news-logo {
  background-color: var(--gray-200);
  padding: 10px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  text-align: center;
}

.news-swiper .swiper-slide article div img {
  filter: grayscale();
  max-width: 150px;
  margin: 0 auto;
}

/* Center active slide */
.news-swiper .swiper-slide.center-active {
  filter: none !important;
  opacity: 1 !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

.news-swiper .swiper-slide.center-active article div img {
  filter: none;
}

/* Pagination bullets */
.news-swiper .swiper-pagination-bullet {
  display: none;
  background: var(--gray-300);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.news-swiper .swiper-pagination-bullet-active {
  background: var(--gray-400);
  opacity: 1;
}

/* Swiper arrows */
.news-swiper-wrapper .swiper-button-prev,
.news-swiper-wrapper .swiper-button-next {
  color: var(--theme-color-300);
  width: 30px;
  height: 30px;
  font-weight: bold;
  z-index: 10;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white-color);
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

}

.news-swiper-wrapper .swiper-button-prev span,
.news-swiper-wrapper .swiper-button-next span {
  width: 12px !important;
  height: 16px !important;
  background: var(--theme-color-300);
  transform: translateY(50%) !important;
  clip-path: polygon(100% 100%, 100% 0, 0 50%);
  margin-bottom: 15px;
}

.news-swiper-wrapper .swiper-button-next span {
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.news-swiper-wrapper .swiper-button-prev {
  left: -3% !important;
}

.news-swiper-wrapper .swiper-button-next {
  right: -3% !important;
}

/* Mobile */
@media (min-width: 479px) {
  .news-swiper-section {
    background: transparent;
  }

  .news-swiper {
    padding: 10px 0 50px !important;
  }

  .news-swiper .swiper-slide article {
    background-color: var(--white-color);
  }

  .news-swiper .swiper-pagination-bullet {
    display: inline-block;
  }
}

/* End LuggageToShip In Media & News */

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
    opacity: 0.8;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(360deg);
    opacity: 0.8;
  }
}
