/* ----------------------------------------------------
   hero section
   ---------------------------------------------------- */

.hero-section {
  position: relative;
  padding: 80px 0;
  overflow: visible;
  background:
    radial-gradient(
      circle at center,
      var(--white-18) 0%,
      var(--white-05) 25%,
      transparent 55%
    ),
    linear-gradient(
      180deg,
      var(--dark-600) 0%,
      var(--dark-500) 35%,
      var(--dark-100) 100%
    );

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(4, 4, 4, 0.6) 0%,
    rgba(8, 8, 8, 0.45) 45%,
    #141414 100%
  );
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  color: var(--primary);
  border: 1px solid var(--primary-50);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 30px;
}

.hero-title {
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--primary);
}

.hero-title span {
  display: block;
}

.hero-subtitle {
  max-width: 600px;
  margin: auto;
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 50px;
}

/* SEARCH BOX */

.search-box {
  max-width: 850px;
  margin: auto;
  background: var(--bg-color);
  border: 1px solid var(--primary-20);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
  box-shadow:
    0 10px 30px var(--shadow-dark),
    0 0 20px var(--primary-15);
}

/* WRAPPERS & DROPDOWNS */
.search-item-wrap {
  flex: 1;
  position: relative;
  width: 100%;
  border-right: 1px solid var(--white-08);
}

.search-item-wrap:last-of-type {
  border-right: none;
}

.search-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 25px;
  color: var(--white);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.search-item:hover {
  background-color: var(--white-04);
}

.search-item i {
  color: var(--primary);
  font-size: 18px;
}

.search-item span {
  display: block;
  color: var(--text-gray-light);
  font-size: 11px;
  text-transform: uppercase;
}

.search-item p {
  margin: 0;
  font-size: 13px;
  color: var(--white);
}

.hero-search-btn {
  background: var(--primary);
  border: none;
  height: 50px;
  padding: 0 30px;
  border-radius: 12px;
  font-weight: 700;
  color: var(--black);
  display: flex;
  margin: 6px;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
}

.hero-search-btn:hover {
  background: var(--primary-hover);
}

/* HERO SEARCH DROPDOWN SYSTEM */
.search-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  min-width: 320px;
  background:
    radial-gradient(circle at top right, var(--primary-05), transparent 45%),
    var(--dark-200);
  border: 1px solid var(--white-08);
  border-radius: 16px;
  padding: 20px;
  z-index: 1000;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(254, 161, 22, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-header-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--white-06);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

/* Date Range Inputs in Dropdown */
.dates-input-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.date-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.date-field label {
  font-size: 11px;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-field input {
  width: 100%;
  background: var(--dark-400);
  border: 1px solid var(--white-08);
  color: var(--white);
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.date-field input:focus {
  border-color: var(--primary-50);
}

/* Guest counter design */
.guest-counter-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.counter-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.counter-label h6 {
  color: var(--white);
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}

.counter-label span {
  color: var(--text-light);
  font-size: 11px;
}

.counter-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

.counter-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--white-20);
  background: var(--dark-400);
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.counter-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: scale(1.05);
}

.counter-btn:focus {
  outline: none;
}

.counter-btn.disabled,
.counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  border-color: var(--white-08);
  color: var(--white-20);
}

.counter-value {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  min-width: 14px;
  text-align: center;
}

.btn-done {
  background: var(--primary);
  border: none;
  color: var(--black);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-done:hover {
  background: var(--primary-hover);
}

/* Autocomplete search input & list options */
.search-input-wrap {
  position: relative;
  margin-bottom: 10px;
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white-65);
  font-size: 13px;
  z-index: 2;
}

.search-input-wrap input {
  width: 100%;
  height: 40px;
  background: var(--dark-400);
  border: 1px solid var(--white-08);
  border-radius: 8px;
  color: var(--white);
  padding-left: 36px;
  padding-right: 14px;
  font-size: 13px;
  transition: border-color 0.2s;
  position: relative;
}

.search-input-wrap input:focus {
  outline: none;
  border-color: var(--primary-50);
}

.location-list {
  max-height: 180px;
  overflow-y: auto;
}

.location-list::-webkit-scrollbar {
  width: 5px;
}

.location-list::-webkit-scrollbar-track {
  background: transparent;
}

.location-list::-webkit-scrollbar-thumb {
  background: var(--white-10);
  border-radius: 10px;
}

.location-option {
  padding: 10px 14px;
  color: var(--white-75);
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.location-option:hover {
  background: var(--primary-08);
  color: var(--primary);
  padding-left: 18px;
}

.location-option.selected {
  background: var(--primary-15);
  color: var(--primary);
  font-weight: 600;
}

.location-option.no-results {
  color: var(--text-light);
  font-style: italic;
  cursor: default;
  pointer-events: none;
  text-align: center;
  padding: 15px;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 991px) {
  .search-box {
    flex-direction: column;
  }

  .search-item-wrap {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--white-08);
  }

  .search-item {
    width: 100%;
    border-right: none;
  }

  .hero-search-btn {
    width: 100%;
    margin: 12px 0 0 0;
  }

  .search-dropdown {
    min-width: 100% !important;
  }
}

/* USERS */

.hero-users {
  margin-top: 50px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  color: var(--white);
  font-size: 13px;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img,
.count {
  width: auto;
  height: 42px;
  border: 2px solid var(--black-hover);

  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.count {
  background: var(--primary);
  color: var(--black);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 700;
}

.hero-users strong {
  color: var(--white);
}

.joined-text {
  color: var(--text-light);
}

/* ----------------------------------------------------
  search filter section
   ---------------------------------------------------- */

.search-filter-section {
  background: var(--black);
  padding: 100px 0;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 30px;
}

.filter-title {
  color: var(--white);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 10px;
}

.filter-subtitle {
  color: var(--white-65);
  font-size: 14px;
  max-width: 500px;
  line-height: 1.8;
}

.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  white-space: nowrap;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.filter-tabs button {
  background: var(--dark-200);
  border: 1px solid var(--white-06);
  color: var(--white-75);
  height: 38px;
  padding: 0 22px;
  border-radius: 50px;
  font-size: 13px;
  transition: 0.3s;
}

.filter-tabs button.active {
  background: var(--primary);
  color: var(--black);
  font-weight: 600;
}

.filter-box {
  background:
    radial-gradient(circle at top right, var(--primary-08), transparent 40%),
    var(--dark-300);

  border: 1px solid var(--white-08);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  align-items: end;
  gap: 18px;
  box-shadow:
    0 20px 50px var(--shadow-dark),
    0 0 40px var(--primary-05);
}

.filter-item {
  flex: 1;
}

.filter-item label {
  display: block;
  margin-bottom: 10px;

  color: var(--primary);
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.filter-select {
  width: 100%;
  height: 52px;

  background: var(--dark-400);
  border: 1px solid var(--white-08);

  border-radius: 12px;

  color: var(--white);
  padding: 0 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  font-size: 14px;
}

.filter-select i {
  color: var(--white-70);
  transition: transform 0.3s ease;
}

/* Custom Dropdown System */
.dropdown-wrapper {
  position: relative;
}

.filter-select {
  cursor: pointer;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}

.filter-select:hover {
  border-color: var(--primary-50);
}

.filter-select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(254, 161, 22, 0.15);
}

.dropdown-wrapper.active .filter-select i {
  transform: rotate(180deg);
}

.filter-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  width: 100%;
  min-width: 290px;
  background:
    radial-gradient(circle at top right, var(--primary-05), transparent 45%),
    var(--dark-200);
  border: 1px solid var(--white-08);
  border-radius: 16px;
  padding: 20px;
  z-index: 1000;
  box-shadow:
    0 15px 35px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(254, 161, 22, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.dropdown-header-title {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--white-06);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.dropdown-divider {
  border-top: 1px solid var(--white-08);
  margin: 15px 0;
}

/* 1. Budget Slider Styling */
.slider-container {
  padding: 0 10px;
}

.slider-track-wrap {
  position: relative;
  width: 100%;
  height: 5px;
  margin-top: 10px;
}

.slider-track {
  position: absolute;
  height: 100%;
  background: var(--white-10);
  border-radius: 5px;
  width: 100%;
  z-index: 1;
}

.slider-track-wrap input[type="range"] {
  position: absolute;
  width: 100%;
  height: 5px;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  pointer-events: none;
  margin: 0;
  top: 0;
  left: 0;
  z-index: 3;
}

/* Webkit browser slider thumbs */
.slider-track-wrap input[type="range"]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--dark-200);
  cursor: pointer;
  -webkit-appearance: none;
  pointer-events: auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.1s ease,
    background-color 0.2s;
}

.slider-track-wrap input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  background: var(--primary-hover);
}

/* Firefox browser slider thumbs */
.slider-track-wrap input[type="range"]::-moz-range-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: var(--primary);
  border: 2px solid var(--dark-200);
  cursor: pointer;
  pointer-events: auto;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  transition:
    transform 0.1s ease,
    background-color 0.2s;
}

.slider-track-wrap input[type="range"]::-moz-range-thumb:hover {
  transform: scale(1.2);
  background: var(--primary-hover);
}

.slider-values {
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
}

.slider-values span {
  background: var(--dark-400);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--white-06);
  color: var(--white);
}

.preset-budgets {
  margin-top: 10px;
}

.preset-label {
  display: block;
  font-size: 11px;
  color: var(--text-light);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.preset-btn {
  background: var(--dark-400);
  border: 1px solid var(--white-08);
  color: var(--white-75);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 12px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.preset-btn:hover {
  border-color: var(--primary-50);
  color: var(--primary);
}

.preset-btn.active {
  background: var(--primary-15);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

/* 2. Location Autocomplete Dropdown */
.search-input-wrap {
  position: relative;
  margin-bottom: 10px;
}

.search-input-wrap .search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white-65);
  font-size: 13px;
}

.search-input-wrap input {
  width: 100%;
  height: 40px;
  background: var(--dark-400);
  border: 1px solid var(--white-08);
  border-radius: 8px;
  color: var(--white);
  padding-left: 36px;
  padding-right: 14px;
  font-size: 13px;
  transition: border-color 0.2s;
}

.search-input-wrap input:focus {
  outline: none;
  border-color: var(--primary-50);
}

.location-list {
  max-height: 180px;
  overflow-y: auto;
}

.location-list::-webkit-scrollbar {
  width: 5px;
}

.location-list::-webkit-scrollbar-track {
  background: transparent;
}

.location-list::-webkit-scrollbar-thumb {
  background: var(--white-10);
  border-radius: 10px;
}

.location-option {
  padding: 10px 14px;
  color: var(--white-75);
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.location-option:hover {
  background: var(--primary-08);
  color: var(--primary);
  padding-left: 18px;
}

.location-option.selected {
  background: var(--primary-15);
  color: var(--primary);
  font-weight: 600;
}

.location-option.no-results {
  color: var(--text-light);
  font-style: italic;
  cursor: default;
  pointer-events: none;
  text-align: center;
  padding: 15px;
}

/* 3. Equipment Checkbox List */
.equipment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.equip-checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-75);
  font-size: 13px;
  cursor: pointer;
  user-select: none;
  transition: color 0.2s;
}

.equip-checkbox-label:hover {
  color: var(--white);
}

.equip-checkbox-label input {
  display: none;
}

.checkbox-custom {
  position: relative;
  width: 18px;
  height: 18px;
  background: var(--dark-400);
  border: 1px solid var(--white-08);
  border-radius: 5px;
  transition: all 0.2s;
}

.equip-checkbox-label:hover .checkbox-custom {
  border-color: var(--primary-50);
}

.equip-checkbox-label input:checked + .checkbox-custom {
  background: var(--primary);
  border-color: var(--primary);
}

.equip-checkbox-label input:checked + .checkbox-custom::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--black);
  font-size: 10px;
}

.btn-done {
  background: var(--primary);
  border: none;
  color: var(--black);
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-done:hover {
  background: var(--primary-hover);
}

.apply-btn {
  min-width: 250px;
  height: 52px;

  background: var(--primary);
  border: none;

  border-radius: 12px;

  color: var(--black);
  font-weight: 600;

  box-shadow: 0 10px 30px var(--primary-25);

  transition: 0.3s;
}

.apply-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

/* ----------------------------------------------------
   trending videos section
   ---------------------------------------------------- */
.trending-videos-section {
  background: var(--black);
  padding-bottom: 60px;
}

.videos-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.videos-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
}

.videos-title i {
  color: var(--primary);
}

.videos-title h3 {
  color: var(--white);
  font-weight: 700;
  margin: 0;
}

.discover-link {
  text-decoration: none;
  color: var(--primary);
  font-size: 18px;
  font-weight: 500;
}

.discover-link:hover {
  color: var(--primary-hover);
}

.video-card {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: var(--dark-700);
  display: block;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.video-card:hover img {
  transform: scale(1.08);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--overlay-dark), transparent 60%);
}

.live-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;

  background: var(--primary);
  color: var(--white);

  padding: 4px 10px;
  border-radius: 6px;

  font-size: 20px;
  font-weight: 700;
  opacity: 0.7;
}

.video-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
}

.video-overlay h5 {
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 8px;
}

.video-stats {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--white-85);
  font-size: 20px;
}

.video-user {
  display: flex;
  align-items: center;
  gap: 8px;

  color: var(--white);
  font-size: 15px;
  font-weight: 600;

  margin-bottom: 10px;
}

.video-user img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

/* ----------------------------------------------------
  iconic-section
   ---------------------------------------------------- */

.iconic-section {
  background: var(--black);
  padding: 100px 0;
}

.iconic-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 6px;

  color: var(--primary);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
}

.iconic-title {
  margin-top: 8px;

  font-size: 56px;
  font-weight: 800;

  color: var(--white);
}

.iconic-title span {
  color: var(--primary);
}

/* CTA Button */

.catalog-btn {
  height: 52px;

  border: 1px solid var(--primary);
  border-radius: 40px;

  padding: 0 28px;

  color: var(--primary);
  text-decoration: none;

  display: flex;
  align-items: center;
  gap: 10px;

  font-size: 14px;
}

.catalog-btn:hover {
  background: var(--primary);
  color: var(--black);
}

/* Property Card */
.residence-card {
  position: relative;
  height: 450px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--dark-300);
}

/* Swiper Container */
.residence-swiper {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.residence-swiper .swiper-slide {
  width: 100%;
  height: 100%;
}

.residence-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Image Overlay  */
.residence-card::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.45),
    transparent 60%
  );
  z-index: 2;
  pointer-events: none;
}

/* Top Badges */

.property-badge {
  position: absolute;
  top: 14px;
  left: 14px;

  z-index: 3;

  background: var(--primary);
  color: var(--black);

  padding: 6px 12px;
  border-radius: 20px;

  font-size: 11px;
  font-weight: 700;
}

.rating-badge {
  position: absolute;
  top: 14px;
  right: 14px;

  z-index: 3;

  background: var(--dark-600);
  backdrop-filter: blur(10px);

  color: var(--white);

  padding: 5px 10px;

  border-radius: 20px;

  font-size: 11px;
}

/* Slider Arrows */

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  color: var(--primary);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.residence-card:hover .nav-arrow,
.residence-card:hover .residence-swiper-pagination {
  opacity: 1;
  visibility: visible;
}

.nav-arrow:hover {
  background: var(--primary);
  color: var(--black);
  transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
  left: 14px;
}

.nav-arrow.right {
  right: 14px;
}

/* Premium Pagination */
.residence-swiper-pagination {
  position: absolute;
  bottom: 8px !important;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 4;
  opacity: 0;
  visibility: hidden;
}

.residence-swiper-pagination .swiper-pagination-bullet {
  width: 14px;
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.residence-swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
}

/* Bottom Content */

.property-content {
  position: absolute;

  left: 20px;
  right: 20px;
  bottom: 20px;

  z-index: 3;
}

.property-location {
  color: var(--text-light);

  font-size: 11px;

  text-transform: uppercase;

  margin-bottom: 8px;
}

.property-location i {
  color: var(--primary);
}

.property-content h4 {
  color: var(--white);

  font-size: 24px;
  font-weight: 700;

  margin-bottom: 12px;
}

.property-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background: var(--primary);

  color: var(--white);

  padding: 8px 16px;

  border-radius: 8px;

  font-size: 24px;
  font-weight: 800;
}

.property-price span {
  font-size: 13px;
  color: var(--text-light);
  background: transparent;
}

.property-meta {
  margin-top: 8px;

  color: var(--text-light);

  font-size: 12px;
  letter-spacing: 1px;
}

/* ----------------------------------------------------
  trust-and-prestige-section
   ---------------------------------------------------- */

.why-choose-section {
  background: var(--black);
  padding-bottom: 80px;
}

.section-tag {
  display: inline-block;

  background: var(--primary-25);
  color: var(--primary);

  padding: 6px 14px;
  border-radius: 6px;

  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 24px;
}

.choose-title {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;

  color: var(--white);

  margin-bottom: 32px;
}

.choose-title span {
  color: var(--primary);
}

.choose-description {
  color: var(--text-light);

  font-size: 15px;
  line-height: 2;

  max-width: 420px;

  margin-bottom: 60px;
}

/* stats grid */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 60px;
}

.stat-box h3 {
  color: var(--white);
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 6px;
}

.stat-box span {
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 1px;
}

.stat-box::after {
  content: "";
  display: block;
  width: 35px;
  height: 3px;
  background: var(--primary-50);
  margin-top: 12px;
}

/* Testimonial Cards */

.testimonial-card {
  background:
    radial-gradient(
      circle at top right,
      rgba(254, 161, 22, 0.05),
      transparent 40%
    ),
    var(--dark-300);

  border: 1px solid var(--white-08);

  border-radius: 24px;

  padding: 28px 32px;

  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);

  transition: 0.3s;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
}

.testimonial-user img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}

.testimonial-user span {
  color: var(--primary);
  font-size: 12px;
}

.testimonial-card p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 20px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  font-size: 18px;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card p {
  color: var(--text-light);

  font-size: 14px;
  line-height: 1.9;

  font-style: italic;

  margin-bottom: 24px;
}

.testimonial-stars {
  color: var(--primary);

  font-size: 18px;
  letter-spacing: 4px;
}

/* ----------------------------------------------------
   explore by city section
   ---------------------------------------------------- */

.city-section {
  background: var(--black);
  padding: 100px 0;
}

.city-title {
  color: var(--white);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 40px;
}

.city-title span {
  color: var(--primary);
}

.city-card {
  position: relative;
  display: block;
  height: 450px;
  overflow: hidden;
  border-radius: 16px;
  text-decoration: none;
}

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

.city-card:hover img {
  transform: scale(1.08);
}

.city-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.15),
    transparent
  );
}

.city-card h3 {
  position: absolute;
  left: 20px;
  bottom: 20px;
  margin: 0;
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  z-index: 2;
}

/* ----------------------------------------------------
   hotel solution section
   ---------------------------------------------------- */

.hotel-solution-section {
  background: var(--black);
  padding: 80px 0;
}

/* LEFT */

.solution-visual {
  position: relative;
  max-width: 580px;
}

.hotel-image {
  height: 400px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--white);
}

.hotel-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* FLOATING PROPERTY CARD */

.property-card {
  position: absolute;
  top: -35px;
  right: -60px;
  width: 290px;
  height: 400px;
  border-radius: 20px;
  background: var(--dark-300);
  box-shadow: 0 30px 50px var(--shadow-dark);
  border: 1px solid var(--white);
  overflow: hidden;
}

.property-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.property-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7),
    rgba(0, 0, 0, 0.45),
    transparent 60%
  );
  z-index: 2;
  pointer-events: none;
}

/* RIGHT */

.solution-content {
  padding-left: 100px;
}

.solution-title {
  color: var(--white);
  font-size: 52px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

.solution-title span {
  color: var(--primary);
}

.solution-description {
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.9;
  max-width: 520px;
  margin-bottom: 36px;
}

.solution-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  text-decoration: none;
  padding: 14px 30px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  transition: 0.3s;
}

.solution-btn:hover {
  background: var(--primary);
  color: var(--white);

  transform: translateY(-2px);
}

.solution-btn span {
  transition: 0.3s;
}

.solution-btn:hover span {
  transform: translateX(4px);
}

/* ----------------------------------------------------
   mobile app section
   ---------------------------------------------------- */

.mobile-app-section {
  background: var(--black);
  padding: 80px 0;
  overflow: hidden;
}

/* LEFT */

/* .app-content {
    max-width: 500px;
} */

.app-title {
  color: var(--white);
  font-size: 64px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 28px;
}

/* .app-title span {
    color: var(--white);
} */

.app-description {
  color: var(--text-light);

  font-size: 17px;
  line-height: 1.9;
  max-width: 600px;
  margin-bottom: 36px;
}

/* STORE BUTTONS */

.store-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.3s;
}

.store-btn:hover {
  background: var(--primary-hover);
  color: var(--white);
  transform: translateY(-3px);
}

/* RIGHT */

.phone-wrapper {
  position: relative;
  display: flex;
  justify-content: right;
  margin-right: 50px;
}

/* BOOKING TOAST */

.booking-toast {
  position: absolute;
  top: -15px;
  right: -40px;
  background: var(--white);
  color: var(--text-dark);
  padding: 10px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 10px 30px var(--shadow-toast);
}

.toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
}

/* PHONE */

.phone-mockup {
  width: 230px;
  height: 450px;
  border: 5px solid var(--primary);
  border-radius: 34px;
  padding: 22px;
  position: relative;
  background: transparent;
}

.phone-top-bar {
  width: 60px;
  height: 6px;
  background: var(--white-18);
  border-radius: 999px;
  margin: 0 auto 18px;
}

.phone-chip {
  width: 60px;
  height: 20px;
  background: var(--primary);
  border-radius: 999px;
  margin-bottom: 14px;
}

.phone-card {
  width: 100%;
  height: 140px;
  background: var(--phone-mock);
  border-radius: 10px;
  margin-bottom: 18px;
}

.phone-line {
  width: 100%;
  height: 8px;
  background: var(--phone-mock);
  border-radius: 999px;
  margin-bottom: 10px;
}

.phone-line.short {
  width: 82%;
}

.phone-button {
  width: 100%;
  height: 40px;

  background: var(--primary);

  border-radius: 10px;

  margin-top: 18px;
}

/* HOVER */

.phone-mockup {
  transition: 0.35s;
}

.phone-mockup:hover {
  transform: translateY(-6px);
}

/* ----------------------------------------------------
   blog-section
   ---------------------------------------------------- */

.blog-section {
  background: var(--black);
  padding: 80px 0;
}

/* TITLE */

.blog-title {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 60px;
}

.blog-title span {
  color: var(--primary);
}

/* FEATURED BLOG */

.featured-blog {
  height: 100%;
  width: 100%;
}

.featured-blog .blog-image {
  height: 470px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
}

.featured-blog .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.featured-blog:hover img {
  transform: scale(1.05);
}

.blog-content {
  padding-right: 20px;
}

.blog-meta {
  display: block;

  color: var(--dark-600);
  font-size: 12px;
  margin-bottom: 8px;
}

.blog-content h3,
.blog-info h4 {
  color: var(--primary);
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
}

.blog-content p {
  color: var(--text-light);

  font-size: 14px;
  line-height: 1.9;

  margin-bottom: 20px;
}

/* SMALL BLOGS */

.blog-list {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

.blog-card {
  display: flex;
  gap: 22px;
  width: 100%;
  padding-bottom: 6px;
}

.blog-thumb {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover img {
  transform: scale(1.06);
}

.blog-info {
  padding-top: 4px;
}

.blog-info h4 {
  font-size: 25px;
  margin-bottom: 10px;
}

.blog-info p {
  color: var(--text-light);

  font-size: 13px;
  line-height: 1.8;

  margin-bottom: 18px;

  max-width: 100%;
}

/* LINKS */

.blog-link {
  color: var(--primary);

  text-decoration: none;

  font-size: 13px;
  font-weight: 500;

  transition: 0.3s;
}

.blog-link:hover {
  color: var(--white);
}

.blog-author {
  margin-top: 20px;

  color: var(--dark-600);

  font-size: 12px;
}

.blog-author span {
  display: block;
  margin-top: 4px;
}

/* BUTTON */

.blog-footer {
  text-align: center;
  margin-top: 70px;
}

.blog-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  text-decoration: none;

  border: 1px solid var(--primary);

  color: var(--primary);

  padding: 18px 34px;

  border-radius: 999px;

  font-size: 14px;
  font-weight: 600;

  transition: 0.3s;
}

.blog-btn:hover {
  background: var(--primary);
  color: var(--white);

  transform: translateY(-3px);
}

.blog-btn span {
  transition: 0.3s;
}

.blog-btn:hover span {
  transform: translateX(4px);
}

/* ----------------------------------------------------
   responsive design
   ---------------------------------------------------- */

@media (max-width: 1199px) {
  .filter-box {
    flex-wrap: wrap;
  }

  .filter-item {
    flex: 1 1 calc(33.333% - 12px);
    min-width: 200px;
  }

  .apply-btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 55px;
  }

  .hero-users {
    flex-direction: column;
  }

  .filter-header {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 30px;
  }

  .filter-tabs::-webkit-scrollbar {
    display: none;
  }

  .filter-tabs button {
    flex: 0 0 auto;
  }

  .filter-title {
    font-size: 36px;
  }

  .filter-box {
    flex-direction: column;
    align-items: stretch;
  }

  .apply-btn {
    width: 100%;
  }

  /* iconic section */

  .iconic-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .iconic-title {
    font-size: 40px;
  }

  .residence-card {
    height: 450px;
  }

  /* explore by city */

  .city-title {
    font-size: 32px;
  }

  .city-card {
    height: 260px;
  }

  .city-card h3 {
    font-size: 24px;
  }

  /* hotel solution */

  .solution-content {
    padding-left: 0;
    margin-top: 80px;
  }

  .property-card {
    right: -20px;
  }

  .solution-title {
    font-size: 46px;
  }

  /* Mobile App Section */

  .app-content {
    margin-bottom: 80px;
  }

  .app-title {
    font-size: 48px;
  }

  .phone-wrapper {
    /* justify-content: flex-start;
        margin-right: 0; */
    justify-content: center;
  }

  .booking-toast {
    right: 160px;
  }

  /* blog  */

  .blog-title {
    font-size: 48px;
  }

  .featured-blog .blog-image {
    height: 380px;
  }

  .blog-card {
    margin-top: 25px;
  }
}

@media (max-width: 767px) {
  .hotel-image {
    width: 100%;
    height: 380px;
  }

  .property-card {
    position: relative;

    right: auto;
    top: -40px;

    width: 100%;
    max-width: 280px;

    margin-left: auto;
  }

  .solution-title {
    font-size: 38px;
  }

  /* Mobile App Section */

  .mobile-app-section {
    padding: 90px 0;
  }

  .app-title {
    font-size: 38px;
  }

  .phone-wrapper {
    justify-content: center;
    margin-right: 0;
  }

  .booking-toast {
    right: 100px;
  }

  /* blog */

  .blog-section {
    padding: 90px 0;
  }

  .blog-title {
    font-size: 38px;
  }

  .blog-card {
    flex-direction: column;
  }

  .blog-thumb {
    width: 100%;
    height: 240px;
  }

  .blog-info p {
    max-width: 100%;
  }
}

@media screen and (max-width: 500px) {
  .booking-toast {
    right: 20px;
  }
}

/* Custom Flatpickr Gold theme overrides */
.flatpickr-calendar.dark {
  background: #111 !important;
  border: 1px solid var(--white-10) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.prevMonthDay.selected,
.flatpickr-day.nextMonthDay.selected {
  background: var(--primary) !important;
  border-color: var(--primary) !important;
  color: #000 !important;
}
.flatpickr-day.inRange,
.flatpickr-day.prevMonthDay.inRange,
.flatpickr-day.nextMonthDay.inRange,
.flatpickr-day.today.inRange,
.flatpickr-day.prevMonthDay.today.inRange,
.flatpickr-day.nextMonthDay.today.inRange {
  background: rgba(254, 161, 22, 0.15) !important;
  border-color: transparent !important;
}
.flatpickr-months .flatpickr-month {
  color: var(--white) !important;
}
.flatpickr-current-month
  .flatpickr-monthDropdown-months
  .flatpickr-monthDropdown-month {
  background: #111 !important;
}
.flatpickr-day {
  color: var(--white-85) !important;
}
.flatpickr-weekday {
  color: var(--text-gray-light) !important;
}
.flatpickr-day.flatpickr-disabled,
.flatpickr-day.flatpickr-disabled:hover {
  color: var(--white-18) !important;
}

/* Dates dropdown container styling override to prevent width overflow */
.dates-dropdown {
  min-width: 380px !important;
}

@media (max-width: 991px) {
  .dates-dropdown {
    min-width: 100% !important;
  }
}
