@import url("./brixsar-helper.css?v=0.1");
/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: auto;
  margin: 0 auto;
  transition: all 0.35s ease;
  padding: 0 35px;
  height: 95px;
  background-color: #3a524c; /* Header Dark Teal - ZameenOmakan */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 18px;
}
body.home-page .header {
  background-color: #3a524c; /* Header Dark Teal - ZameenOmakan */
}
.navbar {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
  width: 100%;
  margin: 0 auto;
  height: 100%;
  padding: 0;
}
.site-logo {
  font-family: var(--th-body-family);
  font-size: 40px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -1px;
  color: var(--th-primary-color);
  text-transform: lowercase;
  letter-spacing: 1px;
  width: 192px;
  height: 57px;
  display: flex;
  align-items: baseline;
  position: relative;
  z-index: 2;
}
.site-logo span {
  display: block;
  position: relative;
  bottom: 6px;
  line-height: 0;
}
.site-logo img {
  height: 100%;
  object-fit: contain;
}
.menu {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 100px 15px 3rem;
  transition: all 0.4s ease-in-out;
}
.menu.is-active {
  left: 0;
  width: 227px;
  height: 100%;
  background-color: ;
}
.menu-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 1.25rem;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
.menu_item {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
  padding: 10px 0px;
  border-radius: var(--th-radius-5);
  transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
  position: relative;
}
.menu_item::after {
  content: "";
  position: absolute;
  height: 2px;
  bottom: 0px;
  left: 0;
  right: 0;
  background-color: var(--th-primary-color);
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
  -webkit-transform: scale3d(0, 1, 1);
  transform: scale3d(0, 1, 1);
  -webkit-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
  transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
}
.menu_item:hover::after {
  transform: scale3d(1, 1, 1);
  transform-origin: 0% 50%;
}
.menu_item:hover,
.menu_item:focus,
.menu_item {
  color: var(--th-bg-white) !important;
}
.menu_item:hover {
  color: var(--th-primary-color) !important;
}
.menu_item.active::after {
  transform: scale3d(1, 1, 2);
  transform-origin: 0% 50%;
}
.burger {
  position: relative;
  display: block;
  cursor: pointer;
  user-select: none;
  order: -1;
  z-index: 10;
  width: 1.6rem;
  height: 1.15rem;
  border: none;
  outline: none;
  background: none;
  visibility: visible;
  transform: rotate(0deg);
  transition: 0.35s ease;
}
.burger-line {
  position: absolute;
  display: block;
  left: 0;
  width: 100%;
  height: 2px;
  border: none;
  outline: none;
  opacity: 1;
  border-radius: 1rem;
  transform: rotate(0deg);
  background-color: #fff;
  transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
  top: 0px;
}
.burger-line:nth-child(2) {
  top: 0.5rem;
  width: 70%;
}
.burger-line:nth-child(3) {
  top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
  top: 0.5rem;
  transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
  opacity: 0;
  visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
  top: 0.5rem;
  transform: rotate(-135deg);
}
.banner-column {
  position: relative;
  display: grid;
  align-items: center;
  row-gap: 3rem;
}
.header-theme-btn {
  background-color: var(--theme-color);
  color: #fff;
  font-size: 16px;
  line-height: 19px;
  border-radius: 30px;
  display: inline-block;
  padding: 13px 20px;
}
.header-theme-btn:hover {
  background-color: #f2f2f2;
  color: #000;
}
.dropdown-menu {
  background: #2b557f;
  border: 0;
  border-radius: 0;
  min-width: 278px;
  top: 44px !important;
  left: -81px !important;
  padding: 30px 20px;
  font-weight: 500;
}
.dropdown-menu a {
  border-radius: 30px;
  padding-left: 24px !important;
  margin-bottom: 10px;
}
.dropdown-toggle::after {
  border: 0;
  background-image: url(../img/dropdown.svg);
  width: 12px;
  height: 12px !important;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  top: 6px;
}
.dropdown-item.active,
.dropdown-item:active {
  background-color: #fff;
  color: #fff;
}
.dropdown-item:active {
  color: var(--theme-color);
}
.dropdown-menu a {
  color: #fff;
  font-size: 15px;
  padding: 12px 10px;
  white-space: break-spaces;
}
.header-left-link {
  display: flex;
  gap: 15px;
  align-items: center;
}
.header-left-link .menu_item img {
  filter: brightness(10);
}
.menu-inner .th-btn {
  display: none;
}
/*HOMEPAGE FOR HEADER LIGHT */
.home-page .header.header-light.shift .menu_item:hover,
.home-page .header.header-light.shift .menu_item:focus,
.home-page .header.header-light.shift .menu_item {
  color: var(--th-title-color) !important;
}
.home-page .header.header-light.shift .burger-line {
  background-color: var(--th-bg-black);
}
.home-page .header-light.header.menu_item:hover {
  color: var(--th-primary-color) !important;
}
.home-page .header.header-light.shift {
  background-color: var(--th-bg-white) !important;
}
.home-page .header.header-light.shift .header-left-link .menu_item img {
  filter: unset;
}
.home-page .header.header-light.shift .header-left-link .menu_item span {
  color: var(--th-bg-black) !important;
}
/* FOR OTHER PAGES HEADER LIGHT */
.header.header-light .menu_item:hover,
.header.header-light .menu_item:focus,
.header.header-light .menu_item {
  color: var(--th-title-color) !important;
}
.header.header-light .burger-line {
  background-color: var(--th-bg-black);
}
.header-light.header .menu_item:hover {
  color: var(--th-primary-color) !important;
}
.header.header-light {
  background-color: var(--th-bg-white) !important;
}
.header.header-light .header-left-link .menu_item img {
  filter: unset;
}
.header.header-light .header-left-link .menu_item span {
  color: var(--th-bg-black) !important;
}
@keyframes headerAnimation {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  100% {
    transform: translateZ(0);
  }
}
/* FOR HEADER DARK */
.header-dark.header {
  /* background-color: var(--th-bg-black); */
  background-color: transparent;
}
.header-dark.header .menu_item:hover,
.header-dark.header .menu_item:focus,
.header-dark.header .menu_item {
  color: var(--th-color-1) !important;
}
.header-dark.header.menu_item:hover {
  color: var(--th-primary-color) !important;
}
.header.header-dark .header-left-link .menu_item img {
  filter: brightness(8.5);
}
.header.header-dark.shift {
  background-color: var(--th-bg-black) !important;
}
.nav-action-wrap {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.nav-action-wrap .burger {
  margin-left: 20px;
}
/* ================ BANNER ============ */
.home-banner .content_box_wrapper {
  text-align: center;
}
.home-banner .content_box_wrapper p {
  color: #fff;
  font-size: var(--th-font20);
  display: inline-block;
  border-radius: var(--th-radius-5);
  margin: 0;
  font-weight: var(--th-fw-600);
}
body.home-page::after {
  content: "";
  display: block;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    color-stop(10%, #000000),
    color-stop(99%, rgba(0, 0, 0, 0))
  );
  background-image: -webkit-linear-gradient(
    top,
    #000000 10%,
    rgba(0, 0, 0, 0) 99%
  );
  background-image: linear-gradient(
    to bottom,
    #000000 10%,
    rgba(0, 0, 0, 0) 99%
  );
}
.animated-scrolling a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
  padding-top: 60px;
}
.animated-scrolling a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}
.animated-scrolling a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: "";
  width: 10px;
  height: 10px;
  left: 9px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb10 2s infinite;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb10 {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb10 {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ================ th-card-1 ============ */
.th-card-1 {
  padding: 45px 25px 30px;
  background-color: #fff;
  border-radius: var(--th-radius-15);
}
.th-card-1-img {
  width: 100%;
  height: 200px;
}
.trans-rotate-40 {
  transform: rotate(-40deg);
}
/* ================ th-card-2 ============ */
.th-card-2 {
  position: relative;
}
.th-card-2-img {
  width: 100%;
  height: 270px;
  overflow: hidden;
}
.th-card-2-img img {
  transition: all 0.3s ease;
}
.th-card-2:hover .th-card-2-img img {
  transform: scale(1.2);
}
.th-bagde {
  background-color: var(--th-primary-color);
  padding: 5px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}
.pt-left {
  position: absolute;
  top: 0;
  left: 0;
}
.pt-right {
  position: absolute;
  top: 0;
  right: 0;
}
/* ================ th-card-3 ============ */
.th-card-3 {
  position: relative;
  overflow: hidden;
}
.th-card-3-inner {
  height: 500px;
}
.th-card-3-content {
  position: absolute;
  bottom: -29px;
  left: 0;
  width: 70%;
  z-index: 1;
  background-color: var(--th-primary-color);
  color: #fff;
  padding: 10px 15px;
  transition: all 500ms ease;
}
.th-card-3:hover .th-card-3-content {
  bottom: 0;
}
/* SIDE BY SECTION */
.recent-sold-products-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 480px;
}
.recent-sold-products-wrap a {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--th-bg-black);
  padding: 4px;
  background-color: var(--th-bg-light);
}
.recent-sold-products-wrap a img {
  border-radius: 50%;
}
.bg-after-img {
  position: relative;
}
.bg-after-img::after {
  content: "";
  background-image: url(../img/after-imgs/after-arrow-border-dotted.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  position: absolute;
  width: 100px;
  height: 326px;
  right: 0;
  top: 25%;
  transform: translateY(-30%);
  z-index: 0;
  animation: afteranimation 3s infinite;
}
.bg-after-img::after {
  animation: afteranimation 3s infinite ease-in-out;
}
@keyframes afteranimation {
  0% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0);
  }
  75% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bg-after-img-cicle {
  position: relative;
}
.bg-after-img-cicle:after {
  content: "";
  background-image: url(../img/after-imgs/spinner.png);
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  position: absolute;
  width: 160px;
  height: 160px;
  left: -48px;
  bottom: 24px;
  z-index: -1;
  animation: cirlce-motion 3s infinite;
}
@keyframes cirlce-motion {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1turn);
  }
}
/* ================ Search Widget Wrap ================ */
.section-search-widget {
  position: relative;
}
.search-widget-wrap {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 16px;
  padding: 30px 30px 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.search-widget-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #60a5fa, #3b82f6);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.search-widget-inner {
  display: flex;
  gap: 25px;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  flex-wrap: wrap;
}
.overlap-on-banner {
  position: relative;
  top: -65px;
}
.search-widget-inner > div:nth-child(1) {
  flex: 1;
  min-width: 200px;
}
.search-widget-inner > div {
  flex: 0 0 auto;
  width: auto;
  min-width: 150px;
  text-align: left;
}
.search-widget-inner > div.search-dropdown {
  flex: 0 0 180px;
}
.search-widget-inner > div.advance-search {
  flex: 0 0 140px;
}
.search-widget-inner > div:last-child {
  flex: 0 0 160px;
  padding: 0;
  min-width: 160px;
}
.search-widget-inner > div:last-child .th-btn {
  font-weight: 700;
  font-size: 17px;
  height: 50px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.search-widget-inner > div:last-child .th-btn i {
  font-size: 16px;
  line-height: 1;
}
.search-widget-inner > div:last-child .th-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.search-dropdown,
.search-input {
  padding-top: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.search-widget-wrap input {
  height: 50px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0 15px;
  transition: all 0.3s ease;
  font-size: 15px;
  position: relative;
  z-index: 1;
}
.search-widget-wrap input:focus {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.select2-container--default .select2-selection--single {
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  padding: 0 15px;
  height: 50px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  color: #fff !important;
}

/* Override select2 default white background for search widget - highest priority */
.section-search-widget .select2-container--default .select2-selection--single,
#search-widget .select2-container--default .select2-selection--single,
.search-widget-wrap .select2-container--default .select2-selection--single,
.section-search-widget .select2-container .select2-selection--single,
#search-widget .select2-container .select2-selection--single,
.search-widget-wrap .select2-container .select2-selection--single {
  background-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

/* Override any inline white background styles - maximum specificity */
.section-search-widget .select2-container--default .select2-selection--single[style*="background"],
#search-widget .select2-container--default .select2-selection--single[style*="background"],
.search-widget-wrap .select2-container--default .select2-selection--single[style*="background"],
.section-search-widget .select2-container .select2-selection--single[style*="background"],
#search-widget .select2-container .select2-selection--single[style*="background"],
.search-widget-wrap .select2-container .select2-selection--single[style*="background"] {
  background-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.section-search-widget .select2-container--default .select2-selection--single .select2-selection__rendered,
#search-widget .select2-container--default .select2-selection--single .select2-selection__rendered,
.search-widget-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
}

.section-search-widget .select2-container--default .select2-selection--single .select2-selection__placeholder,
#search-widget .select2-container--default .select2-selection--single .select2-selection__placeholder,
.search-widget-wrap .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.select2-container--default.select2-container--focus .select2-selection--single {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
  color: #fff !important;
}
.search-widget-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 400 !important;
  font-size: 15px;
}
.select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
  font-weight: 400 !important;
  font-size: 15px;
}
.search-widget-wrap .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}
.search-widget-wrap label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
  line-height: 1.5;
}
.search-widget-wrap label i {
  color: #60a5fa;
  font-size: 13px;
  margin-right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
/* Icon positioning for inputs */
.search-input {
  position: relative;
}
.search-input input {
  padding-left: 15px !important;
}
.search-dropdown {
  position: relative;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}
.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: 400;
  color: #fff !important;
  padding: 0;
  padding-left: 0;
  line-height: 50px;
}
.select2-container .select2-selection--single,
.select2-container--default
  .select2-selection--single
  .select2-selection__clear {
  height: 50px;
}
/* Select2 Dropdown Styling for Search Widget - More Specific Rules */
.section-search-widget .search-widget-wrap .select2-container--default .select2-selection--single,
.section-search-widget .search-widget-wrap .select2-container .select2-selection--single,
.search-widget-wrap .select2-container--default .select2-selection--single,
.search-widget-wrap .select2-container .select2-selection--single,
.section-search-widget .select2-container--default .select2-selection--single,
.section-search-widget .select2-container .select2-selection--single,
#search-widget .select2-container--default .select2-selection--single,
#search-widget .select2-container .select2-selection--single {
  background-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

/* Override any form-control styling for select2 in search widget */
.section-search-widget .search-widget-wrap .js-select2 + .select2-container .select2-selection--single,
.search-widget-wrap .js-select2 + .select2-container .select2-selection--single,
#search-widget .js-select2 + .select2-container .select2-selection--single,
.section-search-widget .js-select2 + .select2-container .select2-selection--single {
  background-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

/* Force dark background for all select2 in search widget - highest priority */
.section-search-widget .select2-container .select2-selection,
#search-widget .select2-container .select2-selection,
.search-widget-wrap .select2-container .select2-selection {
  background-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.section-search-widget .search-widget-wrap .select2-container--default .select2-selection--single .select2-selection__rendered,
.section-search-widget .search-widget-wrap .select2-container .select2-selection--single .select2-selection__rendered,
.search-widget-wrap .select2-container--default .select2-selection--single .select2-selection__rendered,
.search-widget-wrap .select2-container .select2-selection--single .select2-selection__rendered,
.section-search-widget .select2-container--default .select2-selection--single .select2-selection__rendered,
.section-search-widget .select2-container .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
}

/* Ensure all text inside select2 is white */
.section-search-widget .search-widget-wrap .select2-selection__rendered,
.search-widget-wrap .select2-selection__rendered {
  color: #fff !important;
}

.search-widget-wrap .select2-container--default .select2-selection--single .select2-selection__placeholder,
.search-widget-wrap .select2-container .select2-selection--single .select2-selection__placeholder,
.section-search-widget .select2-container--default .select2-selection--single .select2-selection__placeholder,
.section-search-widget .select2-container .select2-selection--single .select2-selection__placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Ensure select2 selection has dark background on focus */
.section-search-widget .search-widget-wrap .select2-container--default.select2-container--focus .select2-selection--single,
.section-search-widget .search-widget-wrap .select2-container.select2-container--focus .select2-selection--single,
.search-widget-wrap .select2-container--default.select2-container--focus .select2-selection--single,
.search-widget-wrap .select2-container.select2-container--focus .select2-selection--single,
.section-search-widget .select2-container--default.select2-container--focus .select2-selection--single,
.section-search-widget .select2-container.select2-container--focus .select2-selection--single {
  background-color: rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: #3b82f6 !important;
  color: #fff !important;
}

/* Additional override for any white background that might be applied */
.section-search-widget .select2-container--default .select2-selection--single[style*="background"],
.search-widget-wrap .select2-container--default .select2-selection--single[style*="background"],
#search-widget .select2-container--default .select2-selection--single[style*="background"] {
  background-color: rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Force dark styling for select2 - highest specificity */
.section-search-widget #search-widget .select2-container--default .select2-selection--single,
#search-widget .search-widget-wrap .select2-container--default .select2-selection--single,
.section-search-widget .search-widget-wrap .select2-container--default .select2-selection--single,
.search-widget-dark-select2,
.search-widget-select + .select2-container .select2-selection--single {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

/* Override any inline styles with maximum specificity */
.section-search-widget .search-widget-dark-select2,
#search-widget .search-widget-dark-select2,
.search-widget-wrap .search-widget-dark-select2 {
  background: rgba(255, 255, 255, 0.08) !important;
  background-color: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}

.section-search-widget .search-widget-dark-select2 .select2-selection__rendered,
#search-widget .search-widget-dark-select2 .select2-selection__rendered,
.search-widget-wrap .search-widget-dark-select2 .select2-selection__rendered {
  color: #fff !important;
}

.section-search-widget #search-widget .select2-container--default .select2-selection--single .select2-selection__rendered,
#search-widget .search-widget-wrap .select2-container--default .select2-selection--single .select2-selection__rendered,
.section-search-widget .search-widget-wrap .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff !important;
}

/* Select2 Dropdown Results */
.search-widget-wrap .select2-dropdown {
  background-color: #2d2d2d !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 8px !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3) !important;
}

.search-widget-wrap .select2-container--default .select2-results__option {
  background-color: transparent !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 10px 15px !important;
}

.search-widget-wrap .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: rgba(59, 130, 246, 0.2) !important;
  color: #fff !important;
}

.search-widget-wrap .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #3b82f6 !important;
  color: #fff !important;
}

.search-widget-wrap .select2-container--default .select2-results__option[data-selected=true] {
  background-color: rgba(59, 130, 246, 0.3) !important;
  color: #fff !important;
}

.search-widget-wrap .select2-search--dropdown .select2-search__field {
  background-color: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border-radius: 6px !important;
}

.search-widget-wrap .select2-search--dropdown .select2-search__field::placeholder {
  color: rgba(255, 255, 255, 0.5) !important;
}

.search-widget-wrap .select2-container--default .select2-results__option--loading {
  background-color: transparent !important;
  color: rgba(255, 255, 255, 0.7) !important;
}
.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: rgba(255, 255, 255, 0.7) transparent transparent transparent;
  border-width: 6px 5px 0 5px;
  transition: all 0.3s ease;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent rgba(255, 255, 255, 0.7) transparent;
  border-width: 0 5px 6px 5px;
}
.select2.select2-container.select2-container--default {
  width: 100% !important;
}
.advance-search {
  padding-top: 0;
}
.advance-search button {
  color: #fff !important;
}
.advance-search button.advance-btn {
  width: 100%;
  height: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  color: #fff !important;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  padding: 0 15px;
}
.advance-search button:hover {
  color: #fff !important;
}
.advance-search button.advance-btn:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  border-color: #3b82f6;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  color: #fff !important;
}
.advance-search button.advance-btn i {
  color: #60a5fa;
  font-size: 16px;
}
.search-btn {
  padding-top: 0;
  display: flex;
  align-items: flex-end;
}
.search-btn .th-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.search-btn .th-btn i {
  font-size: 16px;
  line-height: 1;
}
.search-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.search-submit-btn i {
  font-size: 16px;
}
.search-dropdown label {
  position: relative;
  display: block;
}
/* Advance feature */
.advance-seacrh-wrap,
.other-feature-wrap {
  display: none;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.advance-seacrh-wrap.active,
.other-feature-wrap.active {
  display: block;
}
.advance-seacrh-inner {
  padding-bottom: 20px;
}
.flex-wrap-4 {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.flex-wrap-4 > div {
  width: calc(25% - 20px);
  text-align: left;
}
/* OTHER FEATURE */
.other-feature {
  padding-bottom: 20px;
  padding-top: 10px;
}
.other-feature button {
  border: 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  gap: 7px;
  align-items: center;
  background: transparent;
  padding: 0;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.other-feature button:hover {
  color: #60a5fa;
  transform: translateX(3px);
}
.other-feature button i {
  transition: transform 0.3s ease;
  color: #60a5fa;
}
.other-feature button:hover i {
  transform: rotate(90deg);
}
.other-feature-wrap {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.feature-checkbox {
  padding: 8px 0;
}
.feature-checkbox .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-checkbox .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.feature-checkbox .form-check-input:checked {
  background-color: #3b82f6;
  border-color: #3b82f6;
}
.feature-checkbox .form-check-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.3s ease;
}
.feature-checkbox .form-check-input:checked + .form-check-label {
  color: #fff;
}
/* =========== SECTION PROCESS ========== */
.process-icon-wrap {
  width: 80px;
  height: 80px;
  background-color: var(--th-bg-light);
  border-radius: var(--th-radius-50);
  margin: 0 auto 20px auto;
  position: relative;
}
.process-icon-wrap img {
  width: 34px;
  height: 34px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: invert(1);
}
.animated-border {
  position: relative;
}
.animated-border::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(var(--wdtBorderColorRgb), 0.3) 50%,
    transparent 50%
  );
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  background-size: 15px 2px, 0px 0px, 0px 0px, 0px 0px;
  background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px;
  animation: moving-border 5s infinite linear;
  -webkit-animation: moving-border 10s infinite linear;
  right: -61px;
  top: 13px;
  z-index: 11;
}
@keyframes moving-border {
  0% {
    background-position: 0px 0px, 0px 0px, 0px 0px, 0px 0px;
  }
  100% {
    background-position: 300px 0px, 0px 0px, 0px 0px, 0px 0px;
  }
}
/* =========== PARTNER ========== */
.section_partner-item {
  height: 255px;
  position: relative;
  border-left: 1px solid var(--th-primary-color);
  background-image: url("../img/banners/home1.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: var(--th-bg-black);
  cursor: pointer;
}
.section_partner-item::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #bbd9e9;
  opacity: 0.6;
}
.section_partner-item::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: var(--th-bg-black);
  width: 100%;
  height: 100%;
  transition: all 0.3s linear 0s;
  z-index: 1;
}
.section_partner-item:hover::after {
  width: 0;
  left: auto;
  z-index: 0;
}
.section_partner-item img {
  width: 250px !important;
  height: 140px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
/*============ PROPERTY CARD ============= */
.property-card-images {
  position: relative;
  transition: all 0.2s ease-in-out;
  overflow: hidden;
  height: 250px;
  width: 100%;
  flex-shrink: 0;
}
.property-card-images img,
.property-card-images .obj_fit {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.property-card-images::after {
  left: 0;
  top: 0;
}
.property-card-images::before {
  right: 0;
  top: 0;
}
.property-card-images::after,
.property-card-images::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  background-color: rgba(239, 50, 166, 0.1);
  z-index: 2;
  transition: all 0.3s linear;
  border-radius: var(--th-radius-5);
}
.property-card-images:hover::before,
.property-card-images:hover::after {
  width: 0;
}
.property-card-imag-item {
  width: 100%;
  height: 293px;
  display: block;
  border-radius: var(--th-radius-5);
}
.property-card-imag-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: var(--th-radius-5);
}
.property-card-images .owl-theme .owl-nav.disabled + .owl-dots {
  margin: 0;
}
.property-card-images .owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 4px 4px;
  background: var(--th-bg-black);
  border-radius: 0px;
}
.property-card-images .owl-theme .owl-dot.active span {
  background: var(--th-primary-color);
}
.property-card-images .owl-dots {
  width: fit-content;
  position: absolute;
  bottom: 0px;
  right: 6px;
}
.p-left {
  position: absolute;
  left: 0;
  top: 15px;
  z-index: 2;
}
.p-right {
  position: absolute;
  top: 15px;
  right: 0px;
  z-index: 2;
}
.property-badge {
  border-radius: 5px;
  padding: 0 13px;
  backdrop-filter: blur(8px) brightness(130%);
  background-color: rgba(255, 255, 255, 0.64);
  display: flex;
  height: 30px;
  line-height: 30px;
  font-size: 13px;
  font-weight: 400;
  color: var(--th-primary-color);
  font-weight: 600;
  font-family: var(--th-heading-family);
}
.p-left .property-badge {
  border-radius: 0 5px 5px 0;
}
.p-right .property-badge {
  border-radius: 5px 0px 0px 5px;
}
.add-to-fav {
  transform: translateY(30px);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
.property-card-images:hover .add-to-fav {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.star {
  display: flex;
  align-items: center;
}
.location-wrap {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-bottom: 12px;
  flex-shrink: 0;
}
.location-wrap img {
  width: 16px !important;
  height: 20px !important;
  object-fit: contain;
  margin-top: 2px;
  flex-shrink: 0;
}
.location-wrap p {
  font-size: 13px;
  color: var(--th-bg-black);
  min-height: auto;
  line-height: 1.4;
  margin: 0;
  word-wrap: break-word;
  flex: 1;
}
.property-card {
  background: #fff;
  border-radius: var(--th-radius-5);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.property-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.property-card-content {
  padding: 15px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  gap: 0;
}
.property-other-detail {
  border-bottom: 1px solid #e8e8e8;
  margin-bottom: 12px;
  padding-bottom: 12px;
  flex-shrink: 0;
  min-height: 70px;
}
.property-other-detail h3 {
  font-size: 18px;
  color: var(--th-bg-black);
  line-height: 1.4;
  margin: 0;
  font-weight: 600;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 50px;
  max-height: 50px;
  padding: 0;
}
.property-other-detail p {
  font-size: var(--th-font14);
  margin: 0;
  line-height: 1.5;
}
.property-price-and-specs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  flex-shrink: 0;
  gap: 20px;
  flex-wrap: wrap;
}
.property-price {
  flex-shrink: 0;
  min-width: fit-content;
}
.property-price h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--th-primary-color, #2596be);
  margin: 0;
  white-space: nowrap;
  line-height: 1.2;
}
.property-specs {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  flex-shrink: 1;
  min-width: 0;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .property-price-and-specs {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding-top: 12px;
  }
  .property-specs {
    justify-content: flex-start;
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
  }
  .property-price h4 {
    font-size: 16px;
  }
  .spec-item {
    gap: 4px;
  }
  .spec-item img {
    width: 16px !important;
    height: 16px !important;
  }
  .spec-item span {
    font-size: 12px;
  }
}
.spec-item {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  min-width: fit-content;
  padding: 0;
  margin: 0;
}
.spec-item img {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  margin: 0;
  padding: 0;
}
.spec-item span {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  color: var(--th-bg-black);
  white-space: nowrap;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
/*============ THEME PRICE CARD ============= */
.th-price-card {
  position: relative;
  border: 1px solid var(--th-primary-color);
  border-radius: var(--th-radius-5);
  transition: all 0.3s ease;
  overflow: hidden;
}
.th-price-card:hover {
  transform: translateY(-12px);
}
.scale-up {
  transform: scale(1.05) !important;
}
.th-price-card-head {
  border-bottom: 1px solid var(--th-primary-color);
}
.th-price-card-bottom,
.th-price-card-head {
  padding: 40px;
}
.th-price-card-head {
  padding-bottom: 20px;
}
.th-price-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.th-price-plan-name {
  color: var(--th-bg-black);
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin: 0;
}
.price {
  font-weight: 700;
  color: #000;
  font-size: 32px;
  line-height: 1.2;
}
.seperator,
.period {
  font-size: 16px;
  color: #b2bbc5;
}
.feature-lists ul {
  list-style: none;
}
.feature-lists li {
  margin-bottom: 7px;
}
.feature-lists li span {
  font-size: 15px;
  font-family: var(--th-heading-family);
  padding-left: 10px;
}
.feature-lists li.included span {
  color: var(--th-bg-black);
}
.feature-lists li.included i {
  color: var(--th-primary-color);
}
.feature-lists li.not-included i {
  color: #acb7c3;
}
.is-featured {
  background: var(--th-primary-color);
  position: absolute;
  width: 200px;
  text-align: center;
  transform: rotate(41deg);
  right: -58px;
  height: 43px;
  line-height: 43px;
  top: 16px;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 1;
}
.th-price-card-img {
  padding-right: 25px;
}
/* PACKAGE CARDS */
.package-item {
  border-radius: var(--th-radius-10) var(--th-radius-10) 0 0;
  background-color: var(--th-bg-white);
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
    rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}
.package-item-header {
  padding: 33px 15px 20px;
  min-height: 158px;
}
.package-item-header h3 {
  font-family: var(--th-body-family);
  margin-bottom: 0;
  color: #333;
}
.package-tab-line {
  font-size: var(--th-font14);
  color: var(--th-primary-color);
  font-weight: 600;
  line-height: 21px;
}
.package_content {
  padding: 0px 15px 20px;
}
.package_content p {
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  margin-bottom: 6px;
  color: #000;
  position: relative;
  padding-left: 22px;
}
.package_content.text-white p {
  color: #fff;
}
.check::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 2px;
  background-image: url(../img/icons/check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 25px;
}
.cross::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 2px;
  background-image: url(../img/icons/cross.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 25px;
}
.line-through {
  font-weight: 500 !important;
  text-decoration: line-through;
}
.package_bottom {
  background: linear-gradient(91deg, rgba(239, 50, 166, 1) 0%, rgba(104, 39, 79, 1) 0%, rgba(34, 33, 33, 1) 50%);
  padding: 33px 0px 0px;
  text-align: center;
  position: relative;
}
.package_bottom .badge{
  padding:7px 12px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 4px;
  font-size: 10px;
}
.package_bottom h3 {
  font-size: 27px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  padding: 0 10px;
}
.package_bottom .th-btn {
  border-radius: 0;
}
/*  */
.section-packages .form-wrap {
  padding: 33px 15px 20px;
}
.section-packages .form-wrap h3 {
  font-family: var(--th-body-family);
}
/* BOOTSTRAP NAV TAB OVERRIHT */
.nav-pills .nav-link {
  font-size: 16px;
  font-weight: 600;
  border-radius: 35px !important;
  color: var(--th-bg-black);
  padding: 10px 35px !important;
  background-color: var(--th-bg-white) !important;
  transition-timing-function: cubic-bezier(0.8, 0, 0.2, 1);
  height: 65px;
  border: 1px solid #dd4d4d8e !important;
}
.nav-pills .nav-link:hover {
  color: var(--th-primary-color) !important;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: var(--th-primary-color) !important;
}
.nav-pills .nav-link.active:hover,
.nav-pills .show > .nav-link:hover {
  color: var(--th-color-4) !important;
}
.package_tabs {
  justify-content: center;
}
/* ========== LISTING PAGE  ============ */
.sort-by {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: end;
}
.sort-by .form-select {
  width: 200px;
  border: 0;
}
/*============ PROPERTY DETAIL ============ */
.section-top-detail {
  display: flex;
  align-items: center;
  gap: 7px;
}
.section-top-detail p:not(:last-child) {
  border-right: 1px solid #ddd;
  padding-right: 7px;
}
.p-type {
  position: relative;
  color: var(--th-primary-color);
}
.section-top-feature {
  display: flex;
  gap: 15px;
}
.section-top-other-detail {
  text-align: end;
}
.action-wrap {
  display: flex;
  align-items: baseline;
  justify-content: end;
  gap: 12px;
}
.icon-box {
  border: 1px solid #ddd !important;
  border-radius: var(--th-radius-5);
  height: 35px;
  width: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box:hover {
  border-color: var(--th-bg-black) !important;
}
.default-box-white {
  background-color: var(--th-bg-white);
  padding: 24px;
  border-radius: var(--th-radius-15);
  margin-bottom: 20px;
  box-shadow: 0 1px 4px rgba(24, 26, 32, 0.07);
}
.property-detail-images-wrap {
  position: relative;
  min-height: 400px;
}
.tabs-overlay {
  position: absolute;
  right: 40px;
  top: 40px;
  z-index: 2;
}
.tabs-overlay.nav-pills {
  gap: 5px;
}
.tabs-overlay.nav-pills .nav-link {
  height: auto !important;
  padding: 0;
  padding: 9px 30px !important;
}
.property-detail-slider-wrap .property-detail-slider2 .swiper-slide {
  height: 430px;
  border-radius: var(--th-radius-15);
  overflow: hidden;
}
.property-detail-slider-wrap .property-detail-slider .swiper-slide {
  height: 100px;
}
.property-detail-slider2
  .swiper-pagination-clickable
  .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
}
.property-detail-slider2
  .swiper-pagination-clickable
  .swiper-pagination-bullet {
  background-color: var(--th-bg-white) !important;
}
.property-detail-slider2
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--th-primary-color) !important;
}
.property-detail-slider .swiper-slide {
  border-radius: var(--th-radius-5);
  border: 3px solid transparent;
  overflow: hidden;
}
.property-detail-slider .swiper-slide.swiper-slide-thumb-active {
  border: 3px solid var(--th-primary-color);
}
.property-detail-slider-wrap .swiper-button-next::after,
.property-detail-slider-wrap .swiper-button-prev::after {
  display: none;
}
.property-detail-slider-wrap .swiper-button-next,
.property-detail-slider-wrap .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  color: var(--th-primary-color);
}
.property-overview-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.property-overview-item .icon-wrap{
  position: relative;
}
.property-overview-item .icon-wrap img{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.icon-wrap {
  border: 1px solid #ddd;
  border-radius: var(--th-radius-10);
  color: var(--th-bg-black);
  display: block;
  font-size: 20px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 50px;
  transition: all 0.3s ease;
}
.property-overview-item .property-overview-content {
  flex-grow: 1;
}
.property-overview-content p {
  font-weight: 600;
  color: gray;
}
.property-overview-content span {
  font-weight: 400 !important;
  color: var(--th-bg-black);
}
.property-overview-item:hover .icon-wrap,
.icon-wrap:hover {
  background-color: var(--th-primary-color);
  border-color: var(--th-primary-color);
}
.property-overview-item:hover .icon-wrap i,
.icon-wrap:hover i {
  color: #fff;
}
.property-overview-item:hover h6 {
  color: var(--th-primary-color);
}
.property-description-content p,
.property-description-content li {
  font-size: var(--th-font14);
  color: var(--th-bg-black);
  font-weight: 400;
}
.property-description-content strong,
.property-description-content b {
  color: #788593 !important;
}
.property-description-content h1 .property-description-content h2,
.property-description-content h3,
.property-description-content h4,
.property-description-content h5,
.property-description-content h6 {
  font-weight: 500;
}
.property-description-content h1 {
  font-size: 27px;
}
.property-description-content h2 {
  font-size: 25px;
}
.property-description-content h3 {
  font-size: 23px;
}
.property-description-content h4 {
  font-size: 21px;
}
.property-description-content h5 {
  font-size: 19px;
}
.property-description-content h6 {
  font-size: 17px;
}
.block-info-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--th-bg-light);
  padding: 3px 10px;
  border-radius: var(--th-radius-5);
  margin-bottom: 3px;
}
.block-info-item p {
  color: var(--th-primary-color);
  font-weight: 500;
}
.features-item p {
  position: relative;
  padding-left: 15px;
}
.features-item p::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--th-primary-color);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.address-area-wrap iframe {
  border-radius: var(--th-radius-10);
}
.floor-plan-wrap {
  width: 100%;
  border-radius: var(--th-radius-10);
}
.floor-plan-wrap img {
  border-radius: var(--th-radius-10);
}
.right-side-block {
  position: sticky;
  top: 110px;
}

/* ABOUT PAGE */
.about-img-wrap {
  width: 100%;
  height: 350px;
}
.about-block-item p {
  letter-spacing: 1px;
}
.about-img-wrap-2 {
  width: 535px;
  height: 460px;
  position: relative;
}
.about-img-wrap-2::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  background-color: #ef32a63d;
  right: -8%;
  top: -8%;
  z-index: -1;
  animation: grow 6s infinite alternate;
  -webkit-animation: grow 6s infinite alternate;
}
@keyframes grow {
  0% {
    transform: translateX(-70%);
    -webkit-transform: translateX(-70%);
  }

  25% {
    transform: translateX(0) translateY(0px);
    -webkit-transform: translateX(0) translateY(0px);
  }
  50% {
    transform: translateX(0) translateY(25%);
    -webkit-transform: translateX(0) translateY(25%);
  }
  100% {
    transform: translateX(0) translateY(0px);
    -webkit-transform: translateX(0) translateY(0px);
  }
}
.service-block-item {
  background-color: var(--th-bg-white);
  padding: 20px 20px;
  border-radius: var(--th-radius-5);
}
.sec-sticky {
  position: sticky;
  top: 140px;
}
.faq-img {
  border-radius: var(--th-radius-15);
  overflow: hidden;
  position: relative;
  z-index: 2;
  height: 550px;
}
.faq-img::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background-color: rgba(0, 0, 0, 0.212);
  z-index: 0;
}
.set-position {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: 90%;
  z-index: 1;
}

/* SIGN UP AND SIGN IN*/
.group-form-wrap {
  overflow: hidden;
  position: relative;
}
.group-form-wrap .form-item {
  width: 526px;
  position: relative;
  transition: all 0.5s ease-in;
}
.group-form-wrap .form-item-2 {
  top: -248px;
  position: relative;
}
.group-form-wrap.sign-in .form-item-2 {
  transform: translateX(530px);
}
.group-form-wrap.sign-in .form-item-1 {
  transform: translateX(0px);
}
.group-form-wrap.sign-up .form-item-1 {
  transform: translateX(-530px);
}
.group-form-wrap.sign-up .form-item-2 {
  transform: translateX(0px);
}

/* BLOG */
.blog-img-wrap{
  width: 100%;
  height: 450px;
  overflow: hidden;
  border-radius: var(--th-radius-15);
}


/*============ MAINTAINESS PAGE ============= */
.maintenance-item-inner{
  display: flex;
  align-items: center;
  gap: 15px;
}
.maintenance-item-inner img{
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: invert(1);
}
.maintenance-item-inner p{
  margin: 0;
  color: #fff;
  font-size: var(--th-font16);
}
.maintenance-item a{
  background-color: var(--th-bg-black);
  padding: 20px;
  border-radius: 10px;
  display: block;
}
.section-maintainer-tabs .nav-pills .nav-link{
  height: auto;
  cursor: pointer;
  padding: 15px 21px !important;
  display: flex;
  align-items: center;
  gap: 15px;
  border-color: #333 !important;
}
.section-maintainer-tabs .nav-pills .nav-link.active{
  border-color: var(--th-primary-color) !important;
}
.section-maintainer-tabs .nav-pills .nav-link img{
  width: 25px;
  height: 25px;
  object-fit: contain;
}
.section-maintainer-tabs .nav-pills .nav-link span{
  flex-grow: 1;
}
.section-maintainer-tabs .nav-pills .nav-link.active img{
  filter: invert(1);
}
.section-maintainer-tabs .form-check label{
  font-size: var(--th-font16) !important;
  font-weight: var(--th-fw-500);
}
/* guranted-rent-full-management-wrapper */
.guranted-rent-full-management-wrapper .item{
  padding: 15px;
  border-radius: var(--th-radius-10);
}
/*============ THEME FOOTER ============= */
.social-footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info h6 {
  font-size: 16px;
}
.social-footer a {
  background-color: var(--th-bg-light);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-footer a i {
  color: var(--th-primary-color);
}
.info-title {
  color: var(--th-bg-black);
  font-family: var(--th-heading-family);
  margin-bottom: 5px;
}
.link-style1 a {
  display: block;
  font-family: var(--th-heading-family);
  line-height: 40px;
  position: relative;
  transition: all 0.3s ease;
  font-weight: var(--bd-fw-normal);
  font-size: 14px;
  line-height: 35px;
  position: relative;
}
.link-style1 ul {
  list-style: none;
}
.input_button-group {
  position: relative;
}
.input_button-group .form-control {
  background-color: #fff;
  border: none;
  border-radius: 12px;
  color: var(--th-bg-black);
  font-size: 14px;
  font-weight: 400;
  height: 70px;
  padding-left: 30px;
  padding-right: 120px;
}
.input_button-group button {
  background-color: transparent;
  border: none;
  color: var(--th-bg-black);
  font-size: 15px;
  font-weight: 600;
  position: absolute;
  right: 25px;
  top: 20px;
}
.input_button-group .form-control:focus {
  box-shadow: none;
  border: 1px solid #333;
}
.ff-heading p,
.ff-heading a {
  font-size: 14px;
}

/* ============== RECENTLY LISTED PROPERTIES SECTION ============== */
.section-recently-listed {
  position: relative;
}

/* Modern Property Card */
.property-card-modern {
  background: #fff;
  border-radius: var(--th-radius-5);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.property-card-modern:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transform: translateY(-6px) scale(1.01);
}

.property-card-modern .property-card-images {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: #f5f5f5;
}

.property-card-modern .property-card-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-card-modern:hover .property-card-images img {
  transform: scale(1.1);
}

.property-card-modern .overlap-property-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 12px;
  pointer-events: none;
}

.property-card-modern .property-type {
  pointer-events: auto;
}

.property-card-modern .property-new-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  pointer-events: auto;
}

.property-card-modern .property-distance-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  pointer-events: auto;
}

.badge-new {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
  animation: pulse-badge 2s infinite;
}

/* Featured badge - same style as new badge */
.property-new-badge .badge-new {
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.badge-distance {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
}

.badge-distance i {
  font-size: 10px;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.property-card-modern .property-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  gap: 0;
}

.property-card-modern .property-other-detail h3 a {
  color: var(--th-bg-black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.property-card-modern .property-other-detail h3 a:hover {
  color: var(--th-primary-color, #2596be);
}

/* Skeleton Loaders */
.property-card-skeleton {
  background: #fff;
  border-radius: var(--th-radius-5);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.skeleton-image {
  width: 100%;
  height: 250px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
}

.skeleton-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.skeleton-line {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

.skeleton-line-title {
  width: 80%;
  height: 20px;
}

.skeleton-line-location {
  width: 60%;
  height: 14px;
}

.skeleton-line-price {
  width: 40%;
  height: 18px;
}

.skeleton-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
}

.skeleton-specs {
  display: flex;
  gap: 12px;
}

.skeleton-spec-item {
  width: 40px;
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s ease-in-out infinite;
  border-radius: 4px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .property-card-modern .property-card-images {
    height: 220px;
  }
  
  .skeleton-image {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .section-recently-listed .row.mb-5 {
    margin-bottom: 2rem !important;
  }
  
  .section-recently-listed .col-lg-3.text-end {
    text-align: center !important;
    margin-top: 1rem;
  }
  
  .property-card-modern .property-card-images {
    height: 200px;
  }
  
  .skeleton-image {
    height: 200px;
  }
  
  .property-card-modern .property-card-content {
    padding: 15px;
  }
  
  .skeleton-content {
    padding: 15px;
  }
  
  .badge-new,
  .badge-distance {
    font-size: 10px;
    padding: 4px 8px;
  }
}

@media (max-width: 576px) {
  .property-card-modern {
    margin-bottom: 1.5rem;
  }
  
  .property-card-modern .property-card-images {
    height: 180px;
  }
  
  .skeleton-image {
    height: 180px;
  }
}

/* Accessibility Improvements */
.property-card-modern:focus-within {
  outline: 2px solid var(--th-primary-color, #2596be);
  outline-offset: 2px;
}

.property-card-modern a:focus {
  outline: 2px solid var(--th-primary-color, #2596be);
  outline-offset: 2px;
  border-radius: 4px;
}

/* Keyboard Navigation Support */
.property-card-modern a {
  display: block;
}

.property-card-modern a:focus-visible {
  outline: 2px solid var(--th-primary-color, #2596be);
  outline-offset: 2px;
}

/* ============== RECENTLY LISTED PROPERTIES SLIDER ============== */
.recently-listed-slider-wrapper {
  position: relative;
  padding: 0 20px;
  overflow: hidden !important;
  max-height: calc((var(--card-height, 500px) * 2) + 30px);
}

.recently-listed-swiper {
  width: 100%;
  padding-bottom: 60px;
  overflow: hidden !important;
  height: auto;
  max-height: none;
  position: relative;
}

/* Limit to 2 rows only - strict overflow - no third row visible */
.recently-listed-swiper.swiper-grid {
  max-height: calc((var(--card-height, 500px) * 2) + 30px) !important;
  height: calc((var(--card-height, 500px) * 2) + 30px) !important;
  overflow: hidden !important;
  position: relative;
}

.recently-listed-swiper.swiper-grid .swiper-wrapper {
  max-height: calc((var(--card-height, 500px) * 2) + 30px) !important;
  height: calc((var(--card-height, 500px) * 2) + 30px) !important;
  overflow: hidden !important;
  position: relative;
}

.recently-listed-slider-wrapper {
  max-height: calc((var(--card-height, 500px) * 2) + 30px) !important;
  overflow: hidden !important;
}

.recently-listed-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.recently-listed-swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0 15px;
}

.recently-listed-swiper .swiper-slide .property-card-modern {
  height: 100%;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

/* Grid layout - ensure only 2 rows visible */
.recently-listed-swiper.swiper-grid .swiper-wrapper {
  display: flex !important;
  flex-wrap: wrap !important;
  height: auto !important;
}

.recently-listed-swiper.swiper-grid .swiper-slide {
  width: calc(33.333% - 30px) !important;
  margin: 0 15px 30px 15px !important;
  flex-shrink: 0;
}


/* Pagination */
.recently-listed-pagination {
  bottom: 10px !important;
  position: absolute;
  width: 100%;
  text-align: center;
}

.recently-listed-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #ddd;
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.recently-listed-pagination .swiper-pagination-bullet-active {
  background: var(--th-primary-color, #2596be);
  width: 30px;
  border-radius: 6px;
}

/* Responsive Design for Slider */
@media (max-width: 992px) {
  .recently-listed-slider-wrapper {
    padding: 0 15px;
  }
  
  .recently-listed-swiper.swiper-grid .swiper-slide {
    width: calc(50% - 20px) !important;
    margin: 0 10px 20px 10px !important;
  }
}

@media (max-width: 768px) {
  .recently-listed-slider-wrapper {
    padding: 0 15px;
  }
  
  .recently-listed-swiper.swiper-grid .swiper-slide {
    width: calc(50% - 20px) !important;
    margin: 0 10px 20px 10px !important;
  }
  
  .recently-listed-swiper {
    padding-bottom: 50px;
  }
}

@media (max-width: 576px) {
  .recently-listed-slider-wrapper {
    padding: 0 10px;
  }
  
  .recently-listed-swiper.swiper-grid .swiper-slide {
    width: calc(100% - 20px) !important;
    margin: 0 10px 20px 10px !important;
  }
}