.mobile-menu-container {
  background: #c7e2ff;
  width: 100%;
  height: 55px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11000;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Nút mở menu */
.mobile-menu-btn {
  font-size: 28px;
  color: #f59118;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  transition: transform 0.2s ease;
}

.mobile-menu-btn:hover {
  transform: scale(1.1);
}

/* ===== SIDEBAR MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -280px;
  width: 280px;
  height: 100vh;
  background: #c7e2ff;
  padding-top: 60px;
  transition: left 0.35s ease;
  z-index: 9999;
  overflow-y: auto;
}

.mobile-menu.open {
  left: 0;
}

/* Nút đóng */
.mobile-menu .close-menu {
  position: absolute;
  top: 20px;
  right: 15px;
  background: none;
  border: none;
  font-size: 30px;
  color: #5ca545;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.mobile-menu .close-menu:hover {
  transform: rotate(90deg);
}

/* DANH SÁCH MENU */
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu li {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu li:last-child {
  border-bottom: none;
}

.mobile-menu a {
  display: block;
  padding: 12px 15px;
  color: #000;
  font-size: 15px;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.25s ease;
}

.mobile-menu a:hover {
  color: #f59219;
}

/* ===== DROPDOWN MENU ===== */
.menu-item-has-children {
  position: relative;
}

.menu-item-has-children > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Mũi tên */
.menu-item-has-children .arrow {
  font-size: 12px;
  margin-left: 8px;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Xoay mũi tên khi mở */
.menu-item-has-children.open .arrow {
  transform: rotate(180deg);
}

/* SUBMENU */
.submenu {
  display: none;
  padding-left: 20px;
}

.menu-item-has-children.open .submenu {
  display: block;
}

.submenu a {
  padding: 10px 15px;
  font-size: 14px;
  font-weight: normal;
  color: #333;
}

.submenu a:hover {
  color: #f59219;
}

@media (min-width: 576px) {
  .mobile-menu,
  .mobile-menu-container {
    display: none !important;
  }
}

input:-webkit-autofill {
  background: white !important;
  box-shadow: 0 0 0 1000px white inset !important;
}

.header-search-menu {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  padding: 5px 10px;
  border: 1px solid #ddd;
}

.search-input {
  border: none;
  outline: none;
  width: 180px;
  padding: 5px 10px;
}

.search-btn {
  background: none;
  border: none;
  color: #ff385c;
  font-size: 16px;
  cursor: pointer;
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children .arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  pointer-events: none;
  z-index: 10;
  transition: transform 0.3s ease;
}

.menu-item-has-children.open .arrow {
  transform: translateY(-50%) rotate(180deg);
}

.menu-item-has-children {
  position: relative;
}

.menu-item-has-children .arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg) !important;
  background: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  font-size: 12px;
  pointer-events: none;
  z-index: 10;
  transition: transform 0.25s ease;
}

.menu-item-has-children.open .arrow {
  transform: translateY(-50%) rotate(180deg) !important;
}

/* =========================
   HEADER LAYOUT CHÍNH
========================= */
.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  gap: 20px;
  max-width: 1521px;
}

.left-side,
.right-side-menu {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* =========================
   LOGO
========================= */
.banner-column img {
  height: 51px;
  width: auto;
  object-fit: contain;
  transition: 0.2s ease;
}

/* Sticky thu nhỏ logo */
#header-container.sticky .banner-column img {
  height: 40px;
}

/* Responsive logo */
@media (max-width: 576px) {
  .banner-column img {
    height: 40px;
  }
}

/* =========================
   MENU CHÍNH
========================= */
#navigation {
  display: flex;
  align-items: center;
}

#navigation #responsive {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

#navigation #responsive > li {
  position: relative;
}

#navigation #responsive > li > a {
  display: block;
  padding: 10px 14px;
  font-size: 15px;
  font-weight: 600;
  color: #003c47;
  text-decoration: none;
  transition: 0.2s;
}

#navigation #responsive > li > a:hover {
  color: #d81b60;
}

/* =========================
   SUBMENU XỔ XUỐNG NHẸ – ĐẸP
========================= */
#navigation ul.submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 8px 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.18s ease;
  z-index: 50;
}

#navigation li:hover > ul.submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#navigation ul.submenu li a {
  display: block;
  padding: 8px 14px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

#navigation ul.submenu li a:hover {
  background: #f7f7f7;
  color: #d81b60;
}

/* ===== MENU CHÍNH ===== */
#navigation #responsive {
  list-style: none;
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

#navigation #responsive > li {
  position: relative;
}

#navigation #responsive > li > a {
  padding: 10px 14px;
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #003c47;
  text-decoration: none;
}

#navigation #responsive > li > a:hover {
  color: #d4a017;
}

/* ===== SUBMENU CẤP 1 (XUỐNG DƯỚI) ===== */
#navigation ul.submenu,
#navigation ul li > ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  list-style: none;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  z-index: 999;
}

#navigation li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Item submenu */
#navigation ul li a {
  padding: 10px 14px;
  display: block;
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

#navigation ul li a:hover {
  background: #f5f5f5;
  color: #d4a017;
}

/* Thêm mũi tên ▼ cho menu có submenu */
#navigation #responsive li.menu-item-has-children > a::after {
  content: " ▼";
  font-size: 12px;
  margin-left: 4px;
  transition: 0.2s ease;
  color: #555;
}

/* Hiệu ứng khi hover */
#navigation #responsive li.menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
  color: #d4a017;
}

#navigation #responsive li.menu-item-has-children > a:hover {
  color: #d4a017;
}

/* ===== SUBMENU CẤP 2 (MỞ NGANG SANG BÊN PHẢI) ===== */
#navigation ul li ul ul {
  top: 0;
  left: 100%;
  transform: translateX(10px);
}

#navigation li:hover ul ul {
  transform: translateX(0);
}

/* ===== FIX LỖI TRÀN MÀN HÌNH ===== */
#navigation ul li {
  position: relative;
  white-space: nowrap;
}

/* =========================
   NÚT ĐĂNG KÝ / ĐĂNG NHẬP + ICON
========================= */
.right-side-menu .auth-btn {
  padding: 1rem 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 400;
  transition: 0.2s ease;
  font-size: 1.5rem;
}

.icon-btn {
  padding: 1rem;
  border-radius: 10px;
  color: #d81b60;
  border: 1px solid rgba(216, 27, 96, 0.1);
  background: rgba(216, 27, 96, 0.05);
  cursor: pointer;
}

.auth-btn {
  background: #003c47;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}
.auth-btn:hover {
  color: #fff;
}
/* Hover */
.right-side-menu a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

/* =========================
   STICKY HEADER
========================= */
#header-container {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

#header-container.sticky {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(6px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .container-header {
    gap: 8px;
  }

  #navigation #responsive > li > a {
    padding: 8px 10px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .right-side-menu {
    display: none;
  }

  #navigation {
    display: none;
  }

  /* bật menu mobile nếu bạn có */
}

.icon-search:before {
  content: "\e954";
}

/* KHUNG SLIDER */
.slider-home {
  position: relative;
  width: 100%;
  height: auto;
}

/* ẢNH SLIDE */
.slider-home .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition:
    transform 0.5s ease,
    filter 0.5s ease;
}

/* HIỆU ỨNG MỜ + SÁNG LÊN */
.slider-home .swiper-slide {
  filter: brightness(90%);
}

.slider-home .swiper-slide-active {
  filter: brightness(100%);
  transform: scale(1.02);
}

/* NÚT TÌM KIẾM */
#intro-section img,
#intro-section img:hover {
  transform: none !important;
  transition: none !important;
}

.search-box {
  position: absolute;
  bottom: 375px;
  left: 50%;
  transform: translateX(-50%);
  width: 37%;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  gap: 10px;
  z-index: 50;
  margin: 40px auto;
  padding: 25px;
  border-radius: 14px;
}

.search-overlay {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 760px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 25px;
  border-radius: 14px;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  margin-top: 0px;
}

/* Tabs */
.search-tabs {
  display: flex;
  justify-content: center;
  gap: 45px;
  margin-bottom: 18px;
}

.search-tabs .tab {
  color: #ffffffc9;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
}

.search-tabs .tab.active {
  color: #f6c667;
}

.search-tabs .tab.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: #ff9788;
  border-radius: 10px;
}

/* Form search */
.form-box {
  display: none;
}

.form-box.active {
  display: flex;
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  align-items: center;
  gap: 12px;
}

.icon-search {
  font-size: 18px;
  opacity: 0.6;
}

.form-box input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
}

.btn-search {
  background: #0fb9b1;
  color: #fff;
  border: none;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 480px) {
  .search-overlay {
    padding: 18px;
    margin-top: 0px;
  }

  .search-tabs {
    gap: 20px;
  }
}

.btn-search:hover {
  opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .search-tabs {
    gap: 20px;
  }

  .btn-search {
    padding: 8px 14px;
  }
}

/* NÚT NEXT – PREV */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.7);
}

/* MOBILE */
@media (max-width: 768px) {
  .slider-home {
    height: auto;
    width: 100%;
  }

  .slider-home .swiper-slide img {
    height: auto;
    width: 100%;
  }

  .search-box {
    bottom: 10px;
    width: 92%;
    padding: 12px;
  }

  .search-box input,
  .search-box button {
    font-size: 14px;
    padding: 10px;
  }
}
/* ==== INTRO SECTION ==== */
.intro-section {
  padding: 40px 20px;
  background: #f1f5f9;
  text-align: center;
  border-bottom: 0px solid #e5e8ec;
}

.intro-section .container {
  max-width: 900px;
  margin: auto;
}

.intro-title {
  font-size: 24px;
  font-weight: 700;
  color: #003c47;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.intro-desc {
  font-size: 17px;
  line-height: 1.6;
  color: #003c47;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* Button */
.intro-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(45deg, #003c47, #0fb9b1);
  color: #fff;
  font-size: 15px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.intro-btn:hover {
  background: linear-gradient(45deg, #0047c5, #00a7d7);
  transform: translateY(-3px);
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .intro-title {
    font-size: 26px;
  }

  .intro-desc {
    font-size: 17px;
  }

  .intro-btn {
    font-size: 17px;
    padding: 10px 24px;
  }
}

@media (max-width: 480px) {
  .intro-title {
    font-size: 27px;
    line-height: 34px;
    margin-top: 69px;
  }

  .intro-desc {
    font-size: 15px;
  }
}

.project-section {
  text-align: center;
  padding: 50px 20px;
  background: #f4f7ff;
}

.project-section .title {
  font-size: 24px;
  font-weight: 700;
  color: #003c47;
}

.project-section .subtitle {
  font-size: 17px;
  color: #003c47;
  margin-bottom: 25px;
}

.filter-btns {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.btn-filter {
  padding: 10px 22px;
  border-radius: 25px;
  border: 1px solid #cfd7e4;
  background: #fff;
  cursor: pointer;
  font-size: 15px;
  transition: 0.25s;
}

.btn-filter.active,
.btn-filter:hover {
  background: #e5b85a;
  color: #003c47;
}

.project-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.project-item {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  text-align: left;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.project-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.project-item img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 10px;
}

.project-item h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0a2a68;
}

.project-section {
  padding: 40px 20px;
  background: #f4f7ff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.project-item {
  background: #fff;
  border-radius: 7px 7px 0px 0px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.project-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.project-img {
  position: relative;
}

.project-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* TAG */
.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  font-weight: 600;
}

/* Mở bán */
.tag-open {
  background: #e8f7ee;
  color: #2e8b57;
}

/* Sắp mở bán */
.tag-coming {
  background: #fff5d6;
  color: #e5b85a;
}

/* Hot */
.tag-hot {
  background: #e5f0ff;
  color: #0a66c2;
}

.project-content {
  padding: 15px;
}

.project-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #003c47;
  margin-bottom: 5px;
}

.location {
  font-size: 14px;
  color: rgba(0, 60, 71, 0.75);
  margin-bottom: 5px;
}

.price {
  font-size: 15px;
  color: #e5b85a;
}

.price strong {
  color: #003c47;
}

/* SECTION */
.sale-section {
  padding: 45px 15px;
  background: #f5f8ff;
}

.sale-title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  color: #003c47;
  margin-bottom: 5px;
}

.sale-subtitle {
  text-align: center;
  color: #003c47;
  margin-bottom: 25px;
  margin-top: 13px;
}

/* GRID */
.sale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* ITEM */
.sale-item {
  background: #ffffff;
  border-radius: 7px 7px 0px 0px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.sale-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.sale-img {
  position: relative;
  height: 210px;
}

.sale-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sale-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #003c47;
  margin-bottom: 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: calc(1.4em * 2);
}

.sale-price {
  color: #003c47;
  font-size: 18px;
  font-weight: 800;
  margin-top: 8px;
}

/* BUTTON */
.sale-load {
  display: block;
  margin: 28px auto 0 auto;
  padding: 12px 34px;
  background: #0fb9b1;
  color: #fff;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
}

.sale-load:hover {
  background: #003c47;
}

/* DESKTOP */
@media (min-width: 768px) {
  .sale-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1225px) {
  .sale-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* SECTION */
.rent-section {
  padding: 10px 20px;
  background: #f5f8ff;
  text-align: center;
}

.rent-title {
  font-size: 24px;
  font-weight: 800;
  color: #003c47;
}

.rent-subtitle {
  color: #003c47;
  margin-bottom: 25px;
  margin-top: 13px;
}

/* GRID */
.rent-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* ITEM */
.rent-item {
  background: #ffffff;
  border-radius: 7px 7px 0px 0px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.rent-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* IMAGE */
.rent-img {
  position: relative;
}

.rent-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* PRICE TAG */
.rent-price {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.75);
  padding: 6px 12px;
  border-radius: 6px;
  color: #fff;
  font-size: 14px;
}

/* CONTENT */
.rent-content {
  text-align: left;
  padding: 15px;
}

.rent-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #003c47;
}

.rent-location,
.rent-info {
  font-size: 14px;
  color: rgba(0, 60, 71, 0.75);
  margin-bottom: 4px;
}

/* LOAD MORE BUTTON */
.rent-load {
  margin-top: 30px;
  padding: 12px 32px;
  font-size: 17px;
  background: #0fb9b1;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: 600;
  margin-bottom: 30px;
}

.rent-load:hover {
  background: #003c47;
}
.progress-wrap {
  position: fixed;
  bottom: 25px;
  right: 25px;
  height: 60px;
  width: 60px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.35s ease;
  z-index: 9999;
}

.progress-wrap.active {
  opacity: 1;
  visibility: visible;
}

.progress-wrap svg {
  transform: rotate(-90deg);
}

.progress-wrap path {
  stroke: #003c47;
  stroke-width: 5;
  fill: none;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.1s linear;
}

/* Hiệu ứng hover */
.progress-wrap:hover {
  transform: scale(1.08);
  box-shadow: 0 5px 16px rgba(0, 118, 255, 0.35);
}

/* Mobile tối ưu kích thước */
@media (max-width: 600px) {
  .progress-wrap {
    height: 48px;
    width: 48px;
    bottom: 20px;
    right: 20px;
  }
}
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 196, 204, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  font-size: 18px;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .footer-social a:hover {
    background: linear-gradient(135deg, #00c2c7, #003c47);
    color: #fff;
    transform: translateY(-3px);
  }
}

.bds-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 10px 26px 10px 0;
  font-size: 14px;
  color: #003c47;
  text-decoration: none;
  border-bottom: 1px dashed #e5e7eb;
  transition:
    color 0.25s ease,
    padding 0.25s ease;
}

/* ICON MŨI TÊN */
.bds-item::after {
  content: "→";
  position: absolute;
  right: 0;
  font-size: 15px;
  color: #9ca3af;
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

/* HOVER DESKTOP */
@media (hover: hover) {
  .bds-item:hover {
    color: #00c2c7;
    padding-left: 4px;
  }

  .bds-item:hover::after {
    transform: translateX(6px);
    color: #00c2c7;
  }
}

/* MOBILE TAP */
@media (max-width: 768px) {
  .bds-item:active {
    background: rgba(0, 194, 199, 0.08);
  }
}

.bds-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.bds-col {
  background: #f9fbfc;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 1;
}

/* HEADER */
.bds-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TITLE */
.bds-title {
  font-size: 15px;
  font-weight: 700;
  color: #f59e0b;
}

/* TOGGLE BUTTON */
.bds-toggle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, #00e6ef, #003c47);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  pointer-events: auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}

/* LIST */
.bds-list {
  margin-top: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .bds-container {
    grid-template-columns: 1fr;
  }

  .bds-toggle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #00e6ef, #003c47);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    pointer-events: auto;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    display: block;
  }

  .bds-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease;
  }

  .bds-col.active .bds-list {
    max-height: 600px;
    opacity: 1;
  }

  .bds-col.active .bds-toggle span {
    transform: rotate(45deg);
    display: inline-block;
  }
}

.bds-list a {
  display: block;
  padding: 10px 0;
  font-size: 15px;
  color: #003c47;
  text-decoration: none;
  border-bottom: 1px dashed #e5e7eb;
}
.property-gallery {
  position: relative;
  display: block;
}
.property-gallery.diamon {
  max-width: 900px;
  margin: 0 auto 10px;
}
.property-gallery.gold {
  max-width: 360px;
}
.property-gallery.silver {
  max-width: 240px;
}
.property-gallery.normal {
  max-width: 240px;
}
.property-gallery::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 25%, rgba(0, 0, 0, 0.15) 45%, rgba(0, 0, 0, 0) 65%);
  pointer-events: none;
  z-index: 9;
  border-bottom-right-radius: 10px;
}

.gallery-grid.diamon {
  display: grid;
  grid-template-columns: 2fr 0.9fr;
  gap: 10px;
}
.gallery-grid.gold {
  display: grid;
  grid-template-rows: 2fr 0.9fr;
  gap: 10px;
  width: 360px;
}
.gallery-grid.silver {
  display: grid;
  grid-template-rows: 2fr 0.9fr;
  gap: 10px;
  width: 240px;
}
.gallery-grid.normal {
  width: 240px;
}

.gallery-grid.diamon .gallery-left img {
  width: 100%;
  height: 30.5rem;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-grid.gold .gallery-top img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-grid.gold .gallery-bot {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.gallery-grid.gold .gallery-bot img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-grid.silver .gallery-top img {
  width: 100%;
  height: 16rem;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-grid.silver .gallery-bot {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
}
.gallery-grid.silver .gallery-bot img {
  width: 100%;
  height: 8rem;
  object-fit: cover;
  border-radius: 10px;
}
.gallery-grid.normal .gallery-top img {
  width: 100%;
  height: 23rem;
  object-fit: cover;
  border-radius: 10px;
}
/* Ảnh nhỏ bên phải — cực gọn */
.gallery-right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.gallery-right img {
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s ease;
  border: 2px solid transparent;
}

.gallery-right img:hover {
  transform: scale(1.01);
}

/* Mobile tối ưu */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-right {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery-right img {
    height: 45px;
    /* Cực gọn cho mobile */
  }

  .gallery-left img {
    height: 220px;
    /* Giảm thêm để mobile nhẹ */
  }
}

.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid #eee;
  margin-top: 12px;
}

/* Môi giới */
.agent-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.agent-box img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.agent-name {
  display: block;
  font-weight: 600;
  font-size: 15px;
  color: #003c47;
}

.agent-status {
  display: block;
  font-size: 1.5rem;
  color: #777;
  font-weight: 400;
}

/* Nhóm nút */
.action-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Nút gọi */
.btn-call {
  background: #ff4d4f;
  color: #fff;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: 0.25s;
}

.btn-call:hover {
  background: #e13e3f;
}

/* Nút tim */
.btn-like {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.25s;
}

.btn-like:hover {
  background: #ffecec;
  border-color: #ff4d4f;
}

.btn-calldt {
  width: 100%;
  background: #003c47;
  border: 1px solid #003c47;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.btn-calldt:hover {
  background: #d4a017;
  color: white;
}

.search-wrapper-elite {
  justify-content: center;
  margin: 20px 0 35px 0;
}

.search-box-elite {
  width: 100%;
  max-width: 1040px;
  background: #fff;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e7e7e7;
}

.search-box-elite i {
  font-size: 20px;
  color: #666;
}

.search-box-elite input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
}

.btn-search {
  background: #003c47;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.btn-search:hover {
  background: #c62839;
}

.btn-map {
  background: #0b8d80;
  color: white;
  padding: 10px 18px;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s;
}

.btn-map:hover {
  background: #086f63;
}

/* =============================
   BỘ LỌC CAO CẤP
============================= */

.filter-bar-elite {
  margin: 25px 0;
}

.filter-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #003c47;
}

.filter-title p {
  font-size: 15px;
  color: #666;
}

.filter-chips {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.u-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9f4ff, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff6600;
  font-size: 18px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.chip {
  padding: 10px 18px;
  border: 3px solid #33333314;
  border-radius: 14px;
  background: #f4f6f9;
  font-size: 15px;
  font-weight: 500;
  color: #003c47;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.chip:hover {
  background: #e8edf3;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.chip.active {
  background: linear-gradient(135deg, #003c47, #003c47);
  color: white;
}

.chip.toggle {
  position: relative;
  padding-right: 48px;
}

.chip.toggle .switch {
  position: absolute;
  right: 12px;
  width: 26px;
  height: 14px;
  background: #d3d3d3;
  border-radius: 20px;
  transition: 0.25s;
}

.chip.toggle .switch::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: white;
  border-radius: 50%;
  top: -1px;
  left: -1px;
  transition: 0.25s;
}

.chip.toggle.active .switch {
  background: #16a085;
}

.chip.toggle.active .switch::after {
  left: 11px;
}

/* MOBILE */
@media (max-width: 600px) {
  .search-box-elite {
    flex-wrap: wrap;
    padding: 12px;
  }

  .btn-search,
  .btn-map {
    width: 100%;
  }

  .chip {
    font-size: 14px;
    padding: 8px 14px;
  }

  .filter-title h1 {
    font-size: 21px;
  }
}

/* --- RESET & BASE --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;

}

/* --- CONTAINER --- */
.box-action-realestate {
  width: 100%;
  max-width: 1250px;
  margin: auto;
  padding: 15px;
}

/* ===========================
   LAYOUT – LEFT / RIGHT
=========================== */
.layout-container {
  display: flex;
  gap: 25px;
}

.left-content {
  width: 75%;
}

.right-sidebar {
  width: 25%;
}

.sticky-box {
  position: sticky;
  top: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* PROPERTY CARD */
.property-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 35px;
  border: 1px solid #eee;
  position: relative;
}

/* BADGE VIP */
.tag-vip {
  color: #fff;
  padding: 7px 16px;
  font-weight: 700;
  font-size: 13px;
  position: absolute;
  z-index: 10;
  border-bottom-right-radius: 12px;
}
.tag-vip.diamon {
  background-color: #432f80;
  box-shadow: 0 0 16px #846ccc;
}
.tag-vip.gold {
  background-color: #cfc925;
  box-shadow: 0 0 16px #f0eb5b;
}
.tag-vip.silver {
  background-color: #009194;
  box-shadow: 0 0 16px #95d1d2;
}
.tag-vip.normal {
  background-color: #333;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.4);
}

/* IMAGE COUNT */
.img-count {
  position: absolute;
  bottom: 0px;
  right: 5px;
  background: rgba(0, 0, 0, 0);
  color: #fff;
  padding: 6px;
  font-size: 13px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

/* BODY TEXT */
.property-body {
  padding: 5px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.property-title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* META */
.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 25px;
  font-size: 15px;
  color: #444;
  margin-bottom: 15px;
}

.property-meta i {
  color: #009688;
}

/* FOOTER */
.property-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.agent-box {
  display: flex;
  gap: 12px;
  align-items: center;
}

.agent-box img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
}

.action-group .btn-call {
  padding: 10px 18px;
  background: #009688;
  color: #fff;
  border-radius: 12px;
}

.btn-like {
  background: #f5f5f5;
  border: none;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 18px;
}

/* MOBILE */
@media (max-width: 900px) {
  .layout-container {
    flex-direction: column;
  }

  .left-content,
  .right-sidebar {
    width: 100%;
  }
}

/* ----------------- realestate ----------------------*/
:root {
  --accent: #00adef;
  --darkbar: #2b2f34;
  --thumb-w: 100px;
  --thumb-h: 70px;
  --main-height-desktop: 520px;
  --gap: 12px;
  --radius: 10px;
  --text-white: #ffffff;
}

/* MOSAIC LAYOUT */
.rever-mosaic {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap);
  align-items: stretch;
  position: relative;
  height: 52rem;
}

.mosaic-left {
  height: var(--main-height-desktop);
  overflow: hidden;
  border-radius: var(--radius);
  background: #f2f2f2;
  position: relative;
  cursor: zoom-in;
}

.mosaic-right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: var(--gap);
}

.mosaic-right .small {
  overflow: hidden;
  border-radius: var(--radius);
  background: #e9e9e9;
  cursor: zoom-in;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* MAIN IMAGE FADE */
.main-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.main-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.35s ease;
  opacity: 0;
}

.main-img-wrap img.show {
  opacity: 1;
  z-index: 2;
}

/* small right images */
.small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* BOTTOM BAR (THUMBS + TABS) */
.rever-bottombar {
  margin-top: 14px;
  background: var(--darkbar);
  padding: 12px;
  border-radius: 8px;
  color: var(--text-white);
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

/* thumb nav buttons */
.thumb-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  cursor: pointer;
  flex: 0 0 auto;
}

.thumb-arrow:hover {
  background: rgba(255, 255, 255, 0.09);
}

/* Swiper thumbs */
.thumbs-swiper {
  width: 100%;
}

.thumbs-swiper .swiper-slide {
  width: var(--thumb-w) !important;
  height: var(--thumb-h);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
}

.thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rever-thumb-active {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45) inset;
  transform: translateY(-4px);
  border: 2px solid var(--accent);
}

.rever-tabs {
  margin-left: auto;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

.rever-tab {
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  background: transparent;
}

.rever-tab.active {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}
.rever-tab.disabled {
  color: #495057;
  cursor: not-allowed;
  pointer-events: none;
}
#count-mosaic {
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 10px;
  background-color: #ccc;
  font-size: 1.5rem;
  font-weight: 600;
  width: 5rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
/* RESPONSIVE */
@media (max-width: 960px) {
  :root {
    --main-height-desktop: 380px;
    --thumb-w: 86px;
    --thumb-h: 64px;
  }
}

@media (max-width: 680px) {
  .rever-mosaic {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .mosaic-left {
    height: 320px;
  }

  .mosaic-right {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
  }

  .mosaic-right .small {
    height: 140px;
  }

  .rever-bottombar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .rever-tabs {
    margin-left: 0;
  }

  :root {
    --thumb-w: 76px;
    --thumb-h: 54px;
  }
}

.main-img-wrap,
.mosaic-right {
  overflow: hidden;
}

.mosaic-anim {
  transition:
    transform 0.45s ease,
    opacity 0.45s ease;
}

.slide-out-left {
  transform: translateX(-100%);
  opacity: 0;
}

.slide-in-right {
  transform: translateX(100%);
  opacity: 0;
}

.slide-to-main {
  transform: scale(1.05);
}

.gallery-bar {
  position: relative;
  padding: 0rem 4rem;
}

.thumb-arrow.prev {
  position: absolute;
  top: 1.5rem;
  left: 1rem;
  z-index: 10;
}

.thumb-arrow.next {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 10;
}

.swiper-slide-active {
 /* border: 2px solid #003c47 !important;
  box-shadow:
    0 0 0 2px rgba(0, 60, 71, 0.2),
    0 8px 20px rgba(0, 0, 0, 0.15); */
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 0;
  font-weight: 600;
}
.breadcrumb li:not(:last-child) {
  position: relative;
}
.breadcrumb li a {
  /* color: var(--Primary); */
  color: #003c47;
}
.breadcrumb li:not(:last-child)::after {
  content: "\e908";
  position: absolute;
  font-family: "icomoon";
  color: var(--Text);
  font-size: 8px;
  line-height: normal;
  top: 5px;
  margin: 0 12.5px 0 11.5px;
}
/* ----------------------------------- realestate related ------------------------------------ */
.related-section {
  margin-top: 28px;
}

.related-section h2 {
  font-size: 20px;
  margin-bottom: 18px;
  font-weight: 700;
  color: #333;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-item {
  display: block;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #eaeaea;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.related-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* Image */
.related-img img {
  width: 100px;
  height: 65px;
  object-fit: cover;
}

/* Info */
.related-info {
  padding-top: 12px;
}

.related-info h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #222;
  line-height: 1.4;
}

.price {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #e60023;
  margin-bottom: 5px;
}

.location {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
}

.location i {
  margin-right: 5px;
  color: #ff5e00;
}

/* MOBILE */
@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
  }

  .related-img img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-img img {
    height: 160px;
  }
}
.post-meta-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 14px 0;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  font-family: "Roboto", sans-serif;
  gap: 3px;
  margin-top: 31px;
  text-align: center;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 13px;
  color: #777;
  margin-bottom: 4px;
}

.meta-value {
  font-size: 14px;
  font-weight: 600;
  color: #003c47;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .post-meta-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .post-meta-box {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* HẾT CSS LOẠI TIN ĐĂNG VÀ HẾT HẠN */

/* =============================
  LIÊN HỆ PHẢI CONTAINER
   ============================= */
.agent-card {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  max-width: 430px;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  font-family: "Roboto", sans-serif;
}

/* =============================
   TOP INFO
   ============================= */
.agent-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.agent-avatar img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e5e5e5;
}

.agent-info h3 {
  font-size: 20px;
  margin: 0;
  font-weight: 700;
}

.agent-info .role {
  font-size: 15px;
  color: #d4a017;
  margin-top: 3px;
}

.agent-info .exp,
.agent-info .support {
  font-size: 13px;
  color: #777;
  margin-top: 3px;
}

/* =============================
   ACTION BUTTONS INLINE
   ============================= */
.agent-actions-inline {
  display: flex;
  gap: 14px;
  margin: 20px 0;
}

.btn-circle {
  flex: 1;
  padding: 14px 0;
  border-radius: 14px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: 0.3s ease;
}

/* CALL */
.btn-circle.call {
  background: rgba(0, 196, 204, 0.25);
  color: #003c47;
  border-color: #0fb9b1;
}

.btn-circle.call:hover {
  background: #ffdada;
  box-shadow: 0 5px 18px rgba(200, 35, 35, 0.28);
  cursor: pointer;
}

/* ZALO */
.btn-circle.zalo {
  background: #e8f1ff;
  color: #0058cc;
  border-color: #c7dcff;
}

.btn-circle.zalo:hover {
  background: #dce9ff;
  box-shadow: 0 5px 18px rgba(0, 88, 204, 0.28);
}
.btn-circle.zalo img {
  width: 3rem;
}
/* =============================
   LISTING BUTTON
   ============================= */
.btn-listing {
  display: block;
  text-align: center;
  background: #0fb9b1;
  color: #fff;
  padding: 14px;
  font-size: 17px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-listing:hover {
  background: #e88800;
}

/* =============================
   SOCIAL
   ============================= */
.agent-socials {
  margin: 18px 0;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.agent-socials a {
  font-size: 18px;
  color: #444;
  transition: 0.3s;
}

.agent-socials a:hover {
  color: #000;
}

/* =============================
   RATING
   ============================= */
.agent-rating {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-top: 3rem;
}

.agent-rating span {
  margin-left: 6px;
}

/* =============================
   RESPONSIVE
   ============================= */
@media (min-width: 768px) {
  .agent-card {
    max-width: 480px;
  }

  .btn-circle {
    font-size: 16px;
  }
}

/* 
   HẾT CSS MỤC RIGHT LIÊN HỆ   */

/* Mặc định ẩn, chỉ hiển thị khi admin bật */
.verified-section {
  display: none;
  padding: 12px;
  border: 1px solid #0fb9b1;
  background-color: rgba(0, 196, 204, 0.25);
  border-radius: 8px;
  margin: 15px 0;
  font-family: "Roboto", sans-serif;
  align-items: flex-start;
  gap: 10px;
}

/* Hiển thị khi được xác thực */
.verified-section[data-verified="true"] {
  display: flex;
  flex-direction: row;
}

/* Icon xác thực */
.verified-icon {
  font-size: 28px;
  color: #4caf50;
  flex-shrink: 0;
  margin-top: 3px;
  /* canh giữa text */
}

/* Nội dung */
.verified-content h3 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #333;
}

.verified-content p {
  margin: 0;
  font-size: 14px;
  color: #003c47;
  line-height: 1.5;
}

/* Responsive cho màn hình nhỏ */
@media (max-width: 768px) {
  .verified-section[data-verified="true"] {
    flex-direction: column;
    padding: 10px;
  }

  .verified-icon {
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 8px;
  }

  .verified-content h3 {
    font-size: 15px;
  }

  .verified-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .verified-section {
    padding: 8px;
    border-radius: 6px;
  }

  .verified-icon {
    font-size: 20px;
  }

  .verified-content h3 {
    font-size: 14px;
  }

  .verified-content p {
    font-size: 12px;
  }
}

/* TIỆN ÍCH XUNG QUANH */
.utilities-section {
  margin-top: 25px;
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.07);
}

.utilities-section h2 {
  font-size: 20px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
}

/* Grid bố cục */
.utilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Item */
.utility-item {
  background: #f7faff;
  padding: 18px 18px 18px 10rem;
  border-radius: 12px;
  transition: 0.3s ease;
  border: 1px solid #e6eef8;
}

.utility-item:hover {
  background: #e8f3ff;
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

/* Icon */
.utility-item .icon {
  font-size: 28px;
  color: #007bff;
}

.utility-item h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #222;
}

.utility-item p {
  font-size: 14px;
  color: #666;
}

/* ==============================
   RESPONSIVE – MOBILE
================================ */
@media (max-width: 768px) {
  .utilities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .utility-item {
    padding: 15px;
  }

  .utility-item .icon {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .utilities-grid {
    grid-template-columns: 1fr;
  }

  .utility-item {
    padding: 15px 18px;
  }
}

/* ============================= */
/*         VIDEO + MAP           */
/* ============================= */

.bds-media-wrapper-247 {
  display: flex;
  flex-direction: column;
  gap: 35px;
  margin-top: 25px;
}

/* Khung từng box */
.media-box-247 {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e7e7e7;
  transition: 0.3s ease;
  margin-top: 25px;
}

/* Hover nâng nhẹ */
.media-box-247:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(0, 113, 227, 0.17);
}

/* Tiêu đề + Icon */
.media-title-247 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.media-title-247 i {
  font-size: 24px;
  color: #0071e3;
  background: #e8f2ff;
  padding: 10px;
  border-radius: 50%;
}

.media-title-247 h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
}

.titlemap {
  font-size: 19px;
  font-weight: bold;
  line-height: 29px;
}

.titlemaptd {
  font-size: 16px;
  font-weight: bold;
  line-height: 24px;
  color: #003c47;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* số dòng */
  overflow: hidden;
}

/* Video + Map */
.media-content-247 iframe {
  width: 100%;
  height: 350px;
  border-radius: 16px;
}

/* Mobile */
@media (max-width: 600px) {
  .media-content-247 iframe {
    height: 240px;
  }
}

/* WRAPPER */
.bds247-video-wrapper {
  margin: 25px 0;
}

/* THUMBNAIL */
.bds247-video-thumb {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease;
}

.bds247-video-thumb:hover {
  transform: scale(1.02);
}

.bds247-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* NÚT PLAY */
.bds247-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bds247-video-play i {
  font-size: 48px;
  color: #fff;
  padding: 22px;
  background: rgba(0, 0, 0, 0.45);
  border-radius: 50%;
  backdrop-filter: blur(4px);
  transition: 0.25s;
}

.bds247-video-thumb:hover .bds247-video-play i {
  transform: scale(1.15);
}

/* POPUP */
.bds247-video-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 15px;
}

.bds247-video-content {
  width: 100%;
  position: relative;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}

.bds247-video-content iframe {
  width: 100%;
  height: 480px;
}

.bds247-close {
  position: absolute;
  top: 8px;
  right: 15px;
  color: #fff;
  font-size: 38px;
  cursor: pointer;
  z-index: 10;
}

.price-section {
  margin-top: 40px;
  margin-bottom: 60px;
}

/* === LEFT === */
.price-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #edf2ff;
}

.price-title {
  font-size: 24px;
  font-weight: 700;
  color: #1a237e;
  margin-bottom: 20px;
}

.price-box {
  background: linear-gradient(135deg, #f6f9ff, #edf4ff);
  padding: 18px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
  border: 1px solid #dfe8ff;
}

.price-main {
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 600;
  color: #0d47a1;
}

.price-main .label {
  font-weight: 500;
  color: #3949ab;
}

.price-sub {
  margin-top: 6px;
  font-size: 15px;
  color: #455a64;
}

.price-desc {
  line-height: 1.7;
  color: #37474f;
}

/* === RIGHT === */

/* Sticky Right (mượt) */
.sticky-box {
  position: sticky;
  top: 90px;
}

/* MOBILE TỐI ƯU */
@media (max-width: 767px) {
  .price-card,
  .contact-card {
    margin-bottom: 20px;
  }

  .contact-btn {
    font-size: 15px;
  }
}

/* ===================== */
/*  BỐ CỤC TỔNG QUAN SANG */
/* ===================== */
.property-wrapper {
  width: 100%;
  margin: auto;
  padding: 10px;
  font-family: "Roboto", sans-serif;
}

/* Tiêu đề */
.p-title-realestate {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.45;
  color: #2c2e33;
}

/* Địa chỉ */
.p-address-realestate {
  margin-top: 6px;
  color: #2c2e33;
  font-size: 15px;
}

.p-address-realestate i {
  color: #ff6600;
  margin-right: 6px;
}

/* Icon hành động */
.action-icons {
  margin-top: 15px;
  display: flex;
  gap: 12px;
}

.action-icons button {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s;
}

.action-icons button:hover {
  background: #ff6600;
  color: #fff;
  border-color: #ff6600;
}

/* =============================== */
/* KHỐI THÔNG TIN NHANH - SANG HƠN */
/* =============================== */
.quick-info {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  flex-wrap: wrap;
}

.q-box {
  display: flex;
  flex-direction: column;
  /* gap: 12px; */
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: 0.25s;
  min-width: 90px;
  height: 83px;
}

.q-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(255, 102, 0, 0.2);
  border-color: #ff6600;
}

.q-box i {
  color: #ff6600;
  font-size: 22px;
}

.q-box .label-quick-box {
  color: #777;
  font-size: 13px;
}

.price-box .price-per-m2 {
  margin-top: 3px;
  font-size: 13px;
  color: #ff6600;
  font-weight: 600;
}

.main-price {
  font-size: 18px;
  font-weight: 700;
}

/* ===================== */
/* TIÊU ĐỀ MỤC SANG HƠN */
/* ===================== */
.section-title {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 800;
  color: #003c47;
  position: relative;
  margin-bottom: 25px;
  line-height: 41px;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #ff6600, #ff8f42);
  position: absolute;
  left: 0;
  bottom: 0px;
  border-radius: 6px;
}

/* ===================== */
/* MÔ TẢ */
/* ===================== */
.p-description {
  margin-top: 15px;
  line-height: 1.75;
  color: #444;
  background: #fff;
  padding: 18px 20px;
  border-radius: 12px;
  border-left: 4px solid #ff6600;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

/* Xem thêm */
.see-more {
  margin-top: 8px;
  color: #ff6600;
  cursor: pointer;
  font-weight: 600;
}

/* =============================== */
/* TIỆN ÍCH – PHIÊN BẢN SANG TRỌNG */
/* =============================== */
.utilities {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 14px;
}

.u-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 10px 5px;
  border: 1px solid #eef3ff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: 0.25s ease;
}

.u-box:hover {
  transform: translateY(-4px);
  background: #f7faff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ICON TRÒN SANG */
.u-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e9f4ff, #ffffff);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ff6600;
  font-size: 18px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

/* =============================== */
/* RESPONSIVE MOBILE - TỐI ƯU GỌN */
/* =============================== */
@media (max-width: 480px) {
  .p-title-realestate {
    font-size: 19px;
  }

  .utilities {
    grid-template-columns: repeat(2, 1fr);
  }

  .u-box {
    padding: 12px;
    border-radius: 12px;
  }

  .u-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}
/* SECTION */
.sale-section {
  padding: 45px 15px;
  background: #f5f8ff;
}

.sale-title {
  text-align: center;
  font-size: 30px;
  font-weight: 800;
  color: #0a2a68;
  margin-bottom: 5px;
}

.sale-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 25px;
}

/* GRID */
.sale-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

/* IMAGE */
.sale-img {
  position: relative;
  height: 210px;
}

.sale-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* LABEL */
.sale-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4747;
  padding: 5px 12px;
  font-size: 13px;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
}
.sale-img-label {
  position: absolute;
  bottom: 0px;
  right: 0px;
  padding: 5px 12px;
  font-size: 1.5rem;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
  display: flex;
  gap: 0.5rem;
}

.sale-content {
  padding: 2rem 2rem 0 2rem;
  text-align: left;
}

.sale-location {
  font-size: 14px;
  color: #444;
  margin-bottom: 5px;
  margin-top: 0.5rem;
}

.sale-price {
  color: #e63946;
  font-size: 18px;
  font-weight: 800;
  margin-top: 8px;
}

/* BUTTON */
.sale-load {
  display: block;
  margin: 28px auto 0 auto;
  padding: 12px 34px;
  background: #0a53ff;
  color: #fff;
  border-radius: 30px;
  border: none;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  font-weight: 600;
}

.sale-load:hover {
  background: #073bcc;
}

/* DESKTOP */
@media (min-width: 768px) {
  .sale-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1225px) {
  .sale-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* SECTION BẤT ĐỘNG SẢN NỔI BẬT */
.featured-section {
  margin-bottom: 30px;
}

.featured-tieude {
  font-size: 20px;
  font-weight: 700;
  color: #003c47;
  margin-bottom: 18px;
}

/* SLIDE ITEM */
.featured-item {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.featured-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* Image */
.featured-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Info */
.featured-info {
  padding: 14px 14px 0 14px;
}

.featured-info h3 {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #003c47;
}

.price {
  font-size: 16px;
  font-weight: 700;
  color: #e60023;
  margin-bottom: 6px;
}

.location {
  font-size: 13px;
  color: #555;
}

.location i {
  color: #ff7300;
  margin-right: 5px;
}

/* MOBILE TỐI ƯU */
@media (max-width: 768px) {
  .featured-img img {
    height: 170px;
  }
}
.jcsb {
  justify-content: space-between;
}
.action-button-list .list-action {
  display: flex;
  gap: 16px;
  justify-content: space-around;
  flex-wrap: nowrap;
  margin: 0;
  padding: 1rem;
}

.action-button-list .list-action li {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
}
.action-button-list .list-action li .item-action-detail {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid var(--Line);
  border-radius: 10px;
  position: relative;
  cursor: pointer;
}
.action-button-list .list-action li .item-action-detail:hover {
  cursor: pointer;
  background-color: #f1913d;
  color: #fff;
}

.box-option-sharing {
  display: none;
  position: absolute;
  top: 6rem;
  left: -20rem;
  width: 24rem;
  box-shadow: 0 4px 8px 0 rgba(40, 44, 46, 0.122);
  border-radius: 10px;
  background: #fff;
  z-index: 10;
}
.list-option-sharing li {
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}
.list-option-sharing li .fb-share-button {
  width: 100%;
}
.list-option-sharing li img {
  width: 4rem;
  height: 4rem;
}
.tf-btn-link {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--Primary);
  gap: 8px;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  background: #fff;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding-bottom: 1rem;
}
.tf-btn-link span {
  position: relative;
}
.tf-btn-link span::after {
  position: absolute;
  content: "";
  width: 0;
  left: 0;
  bottom: -1px;
  background: #f1913d;
  height: 2px;
  transition: all 0.3s ease;
}
.tf-btn-link svg {
  transition-delay: 0.2s;
}
.description-collapsed {
  max-height: 150px;
  overflow: hidden;
  position: relative;
}
.description-collapsed::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}
.box-description-realestate {
  background-color: #fff;
  padding: 2rem;
  border-radius: 10px;
}
.tf-btn-link.style-hover-rotate:hover svg {
  transform: rotate(-90deg);
}
.tf-btn-link:hover span::after {
  width: 100%;
}
.info-u-box {
  width: 70%;
}
.detail-u-box {
  font-weight: 600;
  color: #003c47;
  font-size: 1.5rem;
}
.detail-u-box#utilities-legal {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-clamp: 2;
}

.modalNearbyAmenities .modal-body {
  display: flex;
  height: 500px;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

#sidebar-utilities {
  width: 380px;
  background: #fff;
  border-right: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

#tabs-utilities {
  display: flex;
  border-bottom: 1px solid #ccc;
}

#tabs-utilities button {
  flex: 1;
  padding: 10px;
  border: none;
  cursor: pointer;
  background: #f5f5f5;
  font-weight: bold;
}

#tabs-utilities button.active {
  background: #007bff;
  color: white;
}

#list-utilities {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

#list-utilities div {
  padding: 8px 5px;
  border-bottom: 1px solid #eee;
  cursor: pointer;
}

#mapNearbyAmenities {
  flex: 1;
}
#map-utilities {
  flex: 1;
}
.box-utilities-map {
  display: flex;
  position: relative;
}
#mapUtilities {
  width: 100%;
  height: 400px;
}
.box-utilities-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.box-utilities-content .box-content {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.box-utilities-content .box-content .box-utilities-detail {
  width: 50%;
  height: auto;
}
.box-utilities-content .box-content .box-utilities-detail .detail-title {
  display: flex;
  width: 100%;
  border-bottom: 1px dashed;
  border-bottom-left-radius: 10px;
}

.box-utilities-content .box-content .box-utilities-detail .detail-title .detail-title-icon {
  background: #ccc;
  padding: 1rem;
  border-radius: 10px;
  width: 4rem;
  height: 4rem;
  text-align: center;
    display: flex;
  justify-content: center;
  align-items: center;
}
.box-utilities-content .box-content .box-utilities-detail .detail-title p {
  display: flex;
  align-items: flex-end;
  padding-left: 1rem;
  padding-bottom: 0.5rem;
  font-weight: 600;
}
.item-content-utility {
  display: flex;
  font-size: 1.5rem;
  padding: 1rem 0rem;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}
.item-content-utility:hover {
  color: #009688;
}
.item-content-utility.read-more {
  font-weight: 600;
  text-decoration: underline;
}
.item-content-utility .name-utility {
  width: 80%;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.item-content-utility .distance-utility {
  width: 20%;
  font-weight: 600;
}
.related-info .info-price,
.featured-info .info-price {
  display: flex;
  gap: 1rem;
}
.related-item .related-time,
.featured-item .featured-time {
  display: flex;
  justify-content: space-between;
}
.related-item .related-time p,
.featured-item .featured-time p {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #555;
}
.related-time .item-action-detail,
.featured-time .item-action-detail {
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border: 1px solid #ececec;
  border-radius: 10px;
}
.related-time .item-action-detail:hover,
.featured-time .item-action-detail:hover {
  cursor: pointer;
  background-color: #009688;
  color: #fff;
}
.featured-time {
  padding: 10px;
}
/* -------------------------- Button Sharing Realestate -------------------- */
.box-info-detail-video {
  display: none;
}
.item-action-detail.actionShareRealEstate.active {
  background-color: #f1913d;
  color: #fff;
}
.box-share-realestate {
  position: relative;
}
.box-option-sharing {
  display: none;
  position: absolute;
  top: 6rem;
  left: -20rem;
  width: 24rem;
  box-shadow: 0 4px 8px 0 rgba(40, 44, 46, 0.122);
  border-radius: 10px;
  background: #fff;
  z-index: 10;
}
.box-option-sharing:hover {
  color: #1c1f22;
}
.list-option-sharing li {
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
  margin-bottom: 1rem;
  padding: 0.5rem 1rem;
}

.list-option-sharing li .fb-share-button {
  width: 100%;
}
.list-option-sharing li .fb-share-button a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.list-option-sharing li:hover {
  background-color: #ccc;
  cursor: pointer;
  border-radius: 10px;
}
.list-option-sharing li img {
  width: 4rem;
  height: 4rem;
}
.toast-copied {
  position: fixed;
  top: 9rem;
  right: -300px;
  background-color: #198754;
  color: white;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: right 0.5s;
  z-index: 30;
}
.toast-copied.show {
  right: 20px;
}
.close-btn-toast {
  overflow: hidden;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0.5rem;
}
.badge-auth {
  background: #77eb9e;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  border-radius: 10px;
  font-style: italic;
  font-size: 1.75rem;
  font-weight: 700;
}
.toast-copied .progress {
  color: #ccc;
}
.property-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;

  line-height: 1.4;
  max-height: calc(1.4em * 2);
}
.property-desc {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: calc(1.4em * 2);
}
.property-body.gold .property-desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: calc(1.4em * 3);
}
.calculator-rent-money-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
.calculator-rent-money .label {
  font-weight: bold;
}
.calculator-rent-money .ui-slider {
  margin: 10px 0 20px 0;
  height: 2rem;
  background: #e5e7eb;
  border-radius: 10px;
  border: none;
  position: relative;
}

.calculator-rent-money .ui-slider .ui-slider-handle {
  background: #007bff;
  border-radius: 50%;
  top: 1rem;
  width: 20px;
  height: 20px;
  background: white;
  border: 3px solid #2563eb;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}
.calculator-rent-money .ui-slider .ui-slider-handle:hover {
  transform: translate(-50%, -50%) scale(1.15);
}
.calculator-rent-money #pie-chart {
  margin: 0 auto;
}

.calculator-rent-money span {
  font-size: 1.2em;
  margin-left: 10px;
  font-weight: 600;
}
.box-type-pay-rent {
  display: flex;
  justify-content: center;
  padding: 2rem;
  gap: 2rem
}
.box-type-pay-rent input{
  transform: translateY(-5px);
}
.box-action-calculator-pay-rent {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.box-action-calculator-pay-rent button {
  font-size: 1.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  border-radius: 10px;
  gap: 2rem;
}
.iconEye {
  position: absolute;
  left: 0.3rem !important;
  top: 0.75rem;
  font-size: 1.75rem;
  cursor: pointer;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.circle-wrapper {
  position: relative;
  width: 328px;
  height: 328px;
}

.node {
  position: absolute;
  animation: rotateCircle 40s linear infinite reverse;
}

.node a {
  display: inline-block;
  font-weight: 600;
}
.circle-wrapper {
  animation: rotateCircle 40s linear infinite;
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.circle-wrapper:hover {
  animation-play-state: paused;
}

.circle-wrapper:hover .node,
.circle-wrapper:hover figcaption.center {
  animation-play-state: paused;
}
.figure-circle {
  position: relative;
}
#box-type-dashboard-blog {
  overflow: hidden;
}
#box-type-dashboard-blog .swiper-slide {
  width: unset !important;
  height: unset !important;
}
#box-type-dashboard-blog .swiper-slide-active {
  border: unset !important;
  box-shadow: none !important;
}
#box-type-dashboard-blog .swiper-slide .tag-item.active a {
  background: #003c47;
  color: #e5b85a;
}
.titletintc a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.7;
  max-height: calc(1.4em * 2);
}
.cardtin .content .desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: calc(1.4em * 3);
}
.tindiemden-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tindiemden-list .sub-item {
  margin-bottom: 8px;
}

.sub-link {
  display: flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

.sub-thumb {
  width: 12rem;
  height: 7rem;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sub-info-item {
  height: 8rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.sub-title {
  font-size: 1.5rem;
  line-height: 1.3;
  font-weight: 600;
  color: #003c47;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: calc(1.4em * 2);
}
.sub-desc {
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 400;
  color: #333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: calc(1.4em * 2);
}
#footer .footer-bottom {
  justify-content: center;
}
.box-cardFengShui {
  width: 100%;
}
.title-sidebar-box {
  font-size: 1.75rem;
}
.item-hotted-blog {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
  max-height: calc(1.4em * 2);
}

#loading {
  background-color: var(--White);
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  left: 0px;
  bottom: 0px;
  overflow: hidden;
  right: 0px;
  z-index: 999999;
}
#loading #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading #loading-center .loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading #loading-center .loader-container .wrap-loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading #loading-center .loader-container .wrap-loader .icon {
  position: absolute;
  /* max-width: 80px; */
}
#loading #loading-center .loader-container .loader {
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  border-top: 4px solid var(--Primary);
  animation: spin 1s linear infinite;
}
#loading .icon {
  width: 20rem;
  height: 20rem;
}
#loading {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1;
  margin-top: 0px;
  top: 0px;
  left: 0px;
  bottom: 0px;
  overflow: hidden;
  right: 0px;
  z-index: 999999;
}
#loading #loading-center {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading #loading-center .loader-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading #loading-center .loader-container .wrap-loader {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading #loading-center .loader-container .wrap-loader .icon {
  position: absolute;
  /* max-width: 80px; */
}
#loading #loading-center .loader-container .loader {
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  border-top: 4px solid var(--Primary);
  animation: spin 1s linear infinite;
}
#loading .icon {
  width: 20rem;
  height: 20rem;
}
.sale-content-footer {
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  margin-bottom: 2rem;
}
.sale-location i {
  margin-right: 1rem;
  font-size: 2rem;
  font-weight: 400;
}
.sale-location a {
  font-size: 1.5rem;
  font-weight: 600;
}

.right-side-menu .side-phone a {
  font-size: 1.7rem;
  font-weight: 600;
  display: flex;
  padding: 1rem 2rem;
  gap: 0.5rem;
  align-items: center;
}
.right-side-menu .side-phone a svg {
  color: #f1913d;
}
.right-side-menu .side-dropdown .nav-user-wrapper {
  display: flex;
}
.right-side-menu .side-dropdown .nav-user-wrapper .user-icon-box {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  border-radius: 12px;
  background-color: #fff;
  cursor: pointer;
}
.right-side-menu .side-dropdown .nav-user-wrapper .info-header-box {
  display: flex;
  align-items: center;
  font-weight: 600;
  margin: 0rem 1rem;
  cursor: pointer;
}
.right-side-menu .side-dropdown .nav-user-wrapper .info-header-box i {
  font-size: 1.5rem;
  margin-left: 0.5rem;
  transform: rotate(-90deg);
  transition: all 0.3s ease;
}
#icon-header-box.active {
  transform: rotate(0deg);
}
.nav-user-dropdown {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.nav-user-dropdown.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
  position: absolute;
  top: 5rem;
  width: 22rem;
  height: auto;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 999;
}
.nav-user-dropdown.active .dropdown-item {
  animation: slideInLeft 0.4s ease forwards;
  opacity: 0;
}
.nav-user-dropdown .dropdown-item {
  display: flex;
  align-items: center;
  padding: 1.2rem 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  text-decoration: none;
  transition: background 0.2s;
}
.nav-user-dropdown .dropdown-item:hover {
  background-color: #f8f9fa;
}
.nav-user-dropdown .dropdown-item i {
  margin-right: 1.5rem;
  font-size: 1.8rem;
  width: 2.5rem;
  text-align: center;
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.nav-user-dropdown.active .dropdown-item:nth-child(1) {
  animation-delay: 0.05s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(2) {
  animation-delay: 0.1s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(3) {
  animation-delay: 0.15s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(4) {
  animation-delay: 0.2s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(5) {
  animation-delay: 0.25s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(6) {
  animation-delay: 0.3s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(7) {
  animation-delay: 0.35s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(8) {
  animation-delay: 0.4s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(9) {
  animation-delay: 0.45s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(10) {
  animation-delay: 0.5s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(11) {
  animation-delay: 0.55s;
}
.nav-user-dropdown.active .dropdown-item:nth-child(12) {
  animation-delay: 0.6s;
}
.nav-user-dropdown.active .dropdown-item.button-logout {
  animation-delay: 0.65s;
}

.badge-status-type-bds {
  background-color: #fff0f0;
  border-color: #c20000;
  color: #940000;
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  line-height: 0;
  border: 1px solid;
  align-items: center;
  padding: 0.75rem;
}
#blog-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.blog-content-group {
    width: 100%;
}
