:root {
  --section-gap: 30px;
  --radius: 12px;
}
.banner {
  position: relative;
  margin-bottom: 35px;
}
/* .banner::after {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
} */
.banner-img {
  width: 100%;
  height: var(--banner-img-height);
  object-fit: cover;
}
.visa-wrap {
  background-color: var(--white);
  padding: 30px 24px;
  border-radius: var(--radius);
  margin-bottom: var(--section-gap);
}

.btn-blue,
.btn-blue:hover,
.btn-blue:focus {
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: normal !important;
}

.sec-title {
  font-size: 20px;
  font-family: var(--pf-medium);
}
.wwv-card .img-sec {
  position: relative;
  margin-bottom: 10px;
}
.wwv-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
  transform: translateZ(0); /* prevents blur */
  will-change: transform; /* hint for smoother GPU rendering */
}

.wwv-card:hover .wwv-img {
  transform: scale(1.03);
}
.flag-wrap {
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.flag-img {
  width: 50px;
  height: 30px;
  object-fit: contain;
}
.wwv-card .country {
  font-size: 16px;
  font-family: var(--pf-medium);
}
.info-row {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--text-gray);
  margin-bottom: 10px;
}
.wwv-card .price-sec {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.wwv-card .price {
  font-size: 17px;
  font-family: var(--pf-medium);
  color: var(--hm-blue);
}

.btn-md,
.btn-md:hover,
.btn-md:focus {
  background: var(--hm-blue);
  color: var(--white);
  padding: 4px 10px;
  font-size: var(--font-s);
  font-family: var(--pf-light);
  border-radius: 8px;
}
.vwp-row {
  gap: 15px;
}
.vwp-row > div {
  width: 100%;
  flex-grow: 1;
}
.ui-autocomplete,
.ui-autocomplete:hover {
  box-shadow: none;
  border: 1px solid var(--border-color) !important;
  border-top: 0 !important;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.custom-auto-suggest,
.custom-auto-suggest:hover,
.custom-auto-suggest.ui-state-focus {
  background: var(--white);
  border: 0;
  padding: 0 !important;
  margin: 0 !important;
  color: var(--text-gray) !important;
  font-family: var(--pf-light);
}
.flag-row {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  gap: 6px;
}
.flag-row:hover {
  background: var(--this-body-bg);
}
.flag-img-wrap {
  flex-shrink: 0;
}
.flag-img-wrap .flag-img {
  width: 35px;
  height: 15px;
  object-fit: contain;
}
@media (min-width: 576px) {
  .vwp-row > div {
    width: 48%;
  }
  .wwv-img {
    height: 280px;
  }
  .sec-title {
    font-size: 25px;
  }
}
@media (min-width: 992px) {
  .vwp-row > div {
    width: 31%;
  }
}
