/* HEADER */
.main-header {
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.navbar {
  padding: 20px 0;
  background: transparent;
      border-bottom: 1px solid #FFFFFF52;
}

.navbar-brand {
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 22px;
}

.nav-link {
  color: #fff !important;
  margin-left: 20px;
  font-weight: 500;
}

/* HERO SECTION */
.hero-section {
  position: relative;
  height: 85vh;
  width: 100%;
  overflow: hidden;
}

/* Video Background */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}


/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.521);
  z-index: -1;
}

/* Hero Content */
.hero-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.hero-content h1 {
  font-size: 4rem;
    font-weight: 500;
  margin-bottom: 30px;
  margin-top: 100px;
  color: #fff;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.hero-buttons .btn {
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 500;
}

.site-logo {
    width: 230px;
}

/* RESPONSIVE */
@media (max-width: 768px) {


  .site-logo {
    width: 200px;
}

    .navbar {
        padding: 20px;
    }
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-section {
  height: 70vh;
  }

  .hero-buttons {
    gap: 10px;
  }

  .nav-link {
    margin-left: 0;
    padding: 10px 0;
  }
}









/* HERO SEARCH BAR */
.hero-search {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  max-width: 900px;
  width: 100%;
}

.hero-search-field {
  flex: 1;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
}

.hero-search-field::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.hero-search-field option {
  color: #000;
}

.hero-search-btn {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-search-btn:hover {
  background: #fff;
  color: #000;
}


@media (max-width: 768px) {
  .hero-search {
    flex-direction: column;
  }

  .hero-search-btn {
    width: 100%;
  }
  
  .hero-search select {
      max-width: 100%!important;
  }
}



.hero-search select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 24 24' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 45px;
  max-width: 100px;
}


.properties-dropdown {
  position: relative;
}

.nav-link-wrap {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle-btn {
  color: #fff;
  text-decoration: none;
  font-size: 10px;
  display: flex;
  align-items: center;
  padding-top: 2px;
}

.dropdown-toggle-btn:hover {
  color: #fff;
}

.properties-dropdown .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  z-index: 999;
}

.properties-dropdown .dropdown-item {
  color: #fff;
  padding: 10px 18px;
  transition: 0.3s ease;
  text-align: left;
}

.properties-dropdown .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* Desktop hover */
@media (min-width: 992px) {
  .properties-dropdown:hover .dropdown-menu {
    display: block;
  }
}

/* Mobile / Tablet */
@media (max-width: 991.98px) {
  .properties-dropdown {
    width: 100%;
  }

  .nav-link-wrap {
    width: 100%;
    justify-content: left; /* change to flex-start if you want left align */
  }

  .dropdown-toggle-btn {
    padding: 8px 4px;
  }

  .properties-dropdown .dropdown-menu {
    position: static;
    min-width: 100%;
    margin-top: 8px;
    box-shadow: none;
    border-radius: 10px;
    text-align: center;
  }

  .properties-dropdown.open .dropdown-menu {
    display: block;
  }
}