/* SEARCH PROPERTIES PAGE */



.search-page {

  background: #f8f9fc;

}



/* Search Bar Section */

.search-bar-section {

  background: white;

  padding: 20px 0;

  border-bottom: 2px solid #e5e9f2;

  position: sticky;

  top: 0;

  z-index: 100;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}



.search-bar-wrapper {

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 20px;

}



.search-bar {

  flex: 1;

  display: flex;

  gap: 12px;

  align-items: center;

  flex-wrap: wrap;

}



.search-input-group {

  position: relative;

  flex: 1;

  min-width: 250px;

}



.search-icon {

  position: absolute;

  left: 15px;

  top: 50%;

  transform: translateY(-50%);

  color: #6c757d;

}



.search-input-group input {

  width: 100%;

  padding: 12px 15px 12px 45px;

  border: 2px solid #e5e9f2;

  border-radius: 8px;

  font-size: 15px;

  color: #0b2f59;

  transition: all 0.3s ease;

}



.search-input-group input:focus {

  outline: none;

  border-color: #0a3c72;

  box-shadow: 0 0 0 4px rgba(10, 60, 114, 0.1);

}



.search-filters {

  display: flex;

  gap: 10px;

  flex-wrap: wrap;

}



.filter-select {

  padding: 12px 35px 12px 15px;

  border: 2px solid #e5e9f2;

  border-radius: 8px;

  font-size: 14px;

  font-weight: 600;

  color: #0b2f59;

  cursor: pointer;

  background: white;

  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 12px center;

  transition: all 0.3s ease;

  min-width: 120px;

}



.filter-select:focus {

  outline: none;

  border-color: #0a3c72;

}



.btn-advanced-search {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 12px 20px;

  background: white;

  border: 2px solid #0a3c72;

  color: #0a3c72;

  border-radius: 8px;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;

  white-space: nowrap;

}



.btn-advanced-search:hover {

  background: #0a3c72;

  color: white;

}



.btn-search {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 12px 24px;

  background: linear-gradient(135deg, #e2a02b, #cf8507);

  color: white;

  border: none;

  border-radius: 8px;

  font-size: 15px;

  font-weight: 900;

  cursor: pointer;

  transition: all 0.3s ease;

  white-space: nowrap;

}



.btn-search:hover {

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(230, 160, 27, 0.4);

}



/* View Toggle */

.view-toggle {

  display: flex;

  gap: 8px;

  background: #f8f9fc;

  padding: 4px;

  border-radius: 8px;

}



.view-btn {

  display: flex;

  align-items: center;

  gap: 6px;

  padding: 10px 16px;

  background: transparent;

  border: none;

  color: #6c757d;

  border-radius: 6px;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;

}



.view-btn:hover {

  color: #0a3c72;

}



.view-btn.active {

  background: white;

  color: #0a3c72;

  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);

}



/* Advanced Search Panel */

.advanced-search-panel {

  background: white;

  border-bottom: 2px solid #e5e9f2;

  max-height: 0;

  overflow: hidden;

  transition: max-height 0.4s ease, padding 0.4s ease;

}



.advanced-search-panel.active {

  max-height: 500px;

  padding: 30px 0;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);

}



.advanced-search-content {

  max-width: 1400px;

  margin: 0 auto;

}



.panel-header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 25px;

}



.panel-header h3 {

  font-size: 22px;

  font-weight: 900;

  color: #0b2f59;

  margin: 0;

}



.btn-close-panel {

  background: none;

  border: none;

  color: #6c757d;

  cursor: pointer;

  padding: 5px;

  transition: all 0.3s ease;

}



.btn-close-panel:hover {

  color: #0a3c72;

  transform: rotate(90deg);

}



.filter-group {

  margin-bottom: 20px;

}



.filter-group label {

  display: block;

  font-size: 14px;

  font-weight: 700;

  color: #0b2f59;

  margin-bottom: 8px;

}



.filter-group input,

.filter-group select {

  width: 100%;

  padding: 10px 14px;

  border: 2px solid #e5e9f2;

  border-radius: 8px;

  font-size: 14px;

  color: #0b2f59;

  transition: all 0.3s ease;

}



.filter-group input:focus,

.filter-group select:focus {

  outline: none;

  border-color: #0a3c72;

}



.range-inputs {

  display: flex;

  align-items: center;

  gap: 10px;

}



.range-inputs input {

  flex: 1;

}



.range-inputs span {

  color: #6c757d;

  font-weight: 600;

}



.checkbox-grid {

  display: grid;

  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));

  gap: 12px;

}



.checkbox-item {

  display: flex;

  align-items: center;

  gap: 8px;

  cursor: pointer;

  font-size: 14px;

  color: #0b2f59;

  font-weight: 600;

}



.checkbox-item input {

  width: 18px;

  height: 18px;

  cursor: pointer;

  accent-color: #0a3c72;

}



.panel-actions {

  display: flex;

  justify-content: flex-end;

  gap: 12px;

  margin-top: 25px;

  padding-top: 25px;

  border-top: 2px solid #e5e9f2;

}



.btn-reset {

  padding: 12px 24px;

  background: white;

  border: 2px solid #e5e9f2;

  color: #6c757d;

  border-radius: 8px;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;

}



.btn-reset:hover {

  border-color: #dc3545;

  color: #dc3545;

}



.btn-apply {

  padding: 12px 32px;

  background: linear-gradient(135deg, #e2a02b, #cf8507);

  color: white;

  border: none;

  border-radius: 8px;

  font-size: 14px;

  font-weight: 900;

  cursor: pointer;

  transition: all 0.3s ease;

}



.btn-apply:hover {

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(230, 160, 27, 0.4);

}



/* Main Content - Split Layout */

.main-content {

  height: calc(100vh - 140px);

  overflow: hidden;

}



.split-layout {

  display: flex;

  height: 100%;

}



/* Listings Panel - Left 50% */

.listings-panel {

  width: 50%;

  height: 100%;

  overflow-y: auto;

  background: #f8f9fc;

  padding: 25px;

}



/* Map Panel - Right 50% */

.map-panel {

  width: 50%;

  height: 100%;

  position: sticky;

  top: 0;

}



/* Results Header */

.results-header {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-bottom: 25px;

  flex-wrap: wrap;

  gap: 15px;

  background: white;

  padding: 20px;

  border-radius: 12px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

}



.results-info h2 {

  font-size: 28px;

  font-weight: 900;

  color: #0b2f59;

  margin-bottom: 5px;

}



.results-info p {

  font-size: 15px;

  color: #6c757d;

  margin: 0;

}



.sort-dropdown {

  display: flex;

  align-items: center;

  gap: 10px;

}



.sort-dropdown label {

  font-size: 14px;

  font-weight: 700;

  color: #0b2f59;

}



.sort-dropdown select {

  padding: 10px 35px 10px 14px;

  border: 2px solid #e5e9f2;

  border-radius: 8px;

  font-size: 14px;

  font-weight: 600;

  color: #0b2f59;

  cursor: pointer;

  background: white;

  appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");

  background-repeat: no-repeat;

  background-position: right 12px center;

}



/* Properties List */

.properties-list {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px;

}



/* Property Card */

.property-card {

  background: white;

  border-radius: 12px;

  overflow: hidden;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;

  display: flex;

  flex-direction: column;

  height: 100%;

}



.property-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);

}



.property-image-link {
  display: block;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0; /* Prevents the image from shrinking */
}

.property-image {

  position: relative;

  width: 100%;

  height: 240px !important; /* Fixed height for all property images - desktop */

  overflow: hidden;

  border-radius: 12px 12px 0 0;

  flex-shrink: 0; /* Prevents flexbox from changing the height */

}



.property-image img {

  width: 100%;

  height: 100% !important;

  object-fit: cover; /* Ensures images fill the space properly without distortion */

  transition: transform 0.3s ease;

  display: block; /* Removes any inline spacing */

}



.property-card:hover .property-image img {

  transform: scale(1.1);

}



.property-badge {

  position: absolute;

  top: 15px;

  left: 15px;

  padding: 6px 14px;

  border-radius: 20px;

  font-size: 12px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.5px;

  z-index: 2;

}



.property-badge.new {

  background: #28a745;

  color: white;

}



.property-badge.featured {

  background: linear-gradient(135deg, #e2a02b, #cf8507);

  color: white;

}



.btn-favorite {

  position: absolute;

  top: 15px;

  right: 15px;

  width: 40px;

  height: 40px;

  background: rgba(0, 0, 0, 0.5);

  backdrop-filter: blur(8px);

  border: none;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: all 0.3s ease;

  z-index: 2;

}



.btn-favorite:hover {

  background: #e6a01b;

  transform: scale(1.1);

}



.property-actions {

  position: absolute;

  display: none !important;

  bottom: 15px;

  right: 15px;

  display: flex;

  gap: 8px;

  opacity: 0;

  transform: translateY(10px);

  transition: all 0.3s ease;

  z-index: 2;

}



.property-card:hover .property-actions {

  opacity: 1;

  transform: translateY(0);

}



.action-btn {

  width: 36px;

  height: 36px;

  background: rgba(0, 0, 0, 0.6);

  backdrop-filter: blur(8px);

  border: none;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: all 0.3s ease;

}



.action-btn:hover {

  background: #0a3c72;

  transform: scale(1.1);

}



.property-content {

  padding: 20px;

  flex: 1;

  display: flex;

  flex-direction: column;

}



.property-header {

  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  margin-bottom: 10px;

}



.property-price {

  font-size: 24px;

  font-weight: 900;

  color: #e6a01b;

  margin: 0;

}



.property-status {

  padding: 4px 12px;

  background: #e8f4ff;

  color: #0a3c72;

  border-radius: 12px;

  font-size: 11px;

  font-weight: 900;

  text-transform: uppercase;

}



.property-title {

  font-size: 17px;

  font-weight: 900;

  color: #0b2f59;

  margin-bottom: 8px;

}



.property-address {

  display: flex;

  align-items: center;

  gap: 6px;

  font-size: 14px;

  color: #6c757d;

  margin-bottom: 15px;

}



.property-features {

  display: flex;

  gap: 15px;

  padding: 15px 0;

  border-top: 1px solid #e5e9f2;

  border-bottom: 1px solid #e5e9f2;

  margin-bottom: 15px;

}



.property-features span {

  font-size: 14px;

  color: #6c757d;

}



.property-features strong {

  color: #0b2f59;

  font-weight: 900;

}



.property-footer {

  display: flex;

  justify-content: space-between;

  align-items: center;

  margin-top: auto;

}



.property-date {

  font-size: 13px;

  color: #9ca3af;

  font-weight: 600;

}



.btn-view-details {

  padding: 8px 18px;

  background: #0a3c72;

  color: white;

  border-radius: 6px;

  font-size: 13px;

  font-weight: 700;

  text-decoration: none;

  transition: all 0.3s ease;

}



.btn-view-details:hover {

  background: #e6a01b;

  color: white;

  transform: translateX(3px);

}



/* Pagination */

.pagination-wrapper {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 8px;

  margin-top: 30px;

  padding: 20px 0;

}



.page-btn {

  min-width: 40px;

  height: 40px;

  padding: 0 12px;

  background: white;

  border: 2px solid #e5e9f2;

  color: #0b2f59;

  border-radius: 8px;

  font-size: 14px;

  font-weight: 700;

  cursor: pointer;

  transition: all 0.3s ease;

  display: flex;

  align-items: center;

  justify-content: center;

}



.page-btn:hover:not(:disabled) {

  border-color: #0a3c72;

  color: #0a3c72;

}



.page-btn.active {

  background: #0a3c72;

  border-color: #0a3c72;

  color: white;

}



.page-btn:disabled {

  opacity: 0.5;

  cursor: not-allowed;

}



.page-dots {

  color: #6c757d;

  font-weight: 700;

}



/* Map Container */

.map-container {

  position: relative;

  height: 100%;

  width: 100%;

  background: #e5e9f2;

  overflow: hidden;

}



.map-placeholder {

  width: 100%;

  height: 100%;

  object-fit: cover;

}



.map-overlay-message {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  text-align: center;

  color: white;

  background: rgba(11, 47, 89, 0.9);

  padding: 40px;

  border-radius: 12px;

}



.map-overlay-message p {

  font-size: 18px;

  font-weight: 700;

  margin: 15px 0 5px 0;

}



.map-overlay-message small {

  font-size: 14px;

  opacity: 0.9;

}



/* RESPONSIVE */

@media (max-width: 1200px) {

  .search-bar {

    flex-wrap: wrap;

  }

  

  .search-input-group {

    flex: 1 1 100%;

  }

  

  .split-layout {

    flex-direction: column;

  }

  

  .listings-panel,

  .map-panel {

    width: 100%;

  }

  

  .map-panel {

    height: 400px;

    position: relative;

  }

  

  .main-content {

    height: auto;

  }

}



@media (max-width: 992px) {

  .search-bar-wrapper {

    flex-direction: column;

  }

  

  .view-toggle {

    width: 100%;

    justify-content: center;

  }

  

  .results-header {

    flex-direction: column;

    align-items: flex-start;

  }

  

  .checkbox-grid {

    grid-template-columns: repeat(2, 1fr);

  }

  

  .properties-list {

    grid-template-columns: repeat(2, 1fr);

  }

}



@media (max-width: 768px) {

  .search-bar-section {

    padding: 15px 0;

  }

  

  .search-filters {

    width: 100%;

  }

  

  .filter-select {

    flex: 1;

    min-width: auto;

  }

  

  .btn-advanced-search,

  .btn-search {

    width: 100%;

    justify-content: center;

  }

  

  .advanced-search-panel.active {

    padding: 20px 0;

  }

  

  .panel-actions {

    flex-direction: column;

  }

  

  .btn-reset,

  .btn-apply {

    width: 100%;

  }

  

  .results-info h2 {

    font-size: 24px;

  }

  

  .listings-panel {

    padding: 15px;

  }

  

  .property-image {

    height: 240px !important; /* Same height for tablets */

  }

}



@media (max-width: 576px) {

  .search-input-group {

    min-width: auto;

  }

  

  .search-filters {

    flex-direction: column;

  }

  

  .filter-select {

    width: 100%;

  }

  

  .checkbox-grid {

    grid-template-columns: 1fr;

  }

  

  .results-info h2 {

    font-size: 22px;

  }

  

  .property-price {

    font-size: 22px;

  }

  

  .property-title {

    font-size: 16px;

  }

  

  .property-features {

    gap: 12px;

  }

  

  .pagination-wrapper {

    flex-wrap: wrap;

  }

  

  .properties-list {

    grid-template-columns: 1fr;

  }

  

  .property-image {

    height: 200px !important; /* Slightly smaller for mobile but still consistent */

  }

}



/* ===================================

   State Listings Page

   =================================== */

.state-listings-page {

  padding: 60px 0 80px;

  background: #f8f9fa;

  min-height: 70vh;

}



.page-header {

  text-align: center;

  margin-bottom: 50px;

  padding: 40px 20px;

  background: white;

  border-radius: 12px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}



.breadcrumb {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 10px;

  font-size: 14px;

  margin-bottom: 20px;

  color: #6c757d;

}



.breadcrumb a {

  color: #07396a;

  text-decoration: none;

  transition: color 0.3s ease;

}



.breadcrumb a:hover {

  color: #d99513;

}



.breadcrumb span {

  color: #dee2e6;

}



.page-title {

  font-size: 38px;

  font-weight: 800;

  color: #07396a;

  margin: 0 0 10px 0;

  line-height: 1.2;

}



.page-subtitle {

  font-size: 18px;

  color: #6c757d;

  margin: 0;

}



/* Cities Filter Section */

.cities-filter-section {

  background: white;

  border-radius: 12px;

  padding: 30px;

  margin-bottom: 40px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}



.cities-filter-title {

  font-size: 20px;

  font-weight: 700;

  color: #07396a;

  margin: 0 0 20px 0;

  display: flex;

  align-items: center;

  gap: 10px;

}



.cities-filter-title i {

  color: #d99513;

}



.cities-grid {

  display: flex;

  flex-wrap: wrap;

  gap: 12px;

}



.city-tag {

  display: inline-block;

  padding: 10px 20px;

  background: #f8f9fa;

  border: 2px solid #e0e4e9;

  border-radius: 25px;

  color: #07396a;

  text-decoration: none;

  font-size: 14px;

  font-weight: 600;

  transition: all 0.3s ease;

}



.city-tag:hover {

  background: #fff;

  border-color: #d99513;

  color: #d99513;

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(217, 149, 19, 0.2);

}



.city-tag.active {

  background: linear-gradient(135deg, #d99513 0%, #cf8507 100%);

  border-color: #d99513;

  color: white;

  box-shadow: 0 4px 12px rgba(217, 149, 19, 0.3);

}



/* Listings Results */

.listings-results {

  margin-bottom: 50px;

}



/* Property Card - New Design */

.property-card {

  background: white;

  border-radius: 16px;

  overflow: hidden;

  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);

  transition: all 0.3s ease;

  height: 100%;

  display: flex;

  flex-direction: column;

}



.property-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);

}



/* Image Wrapper */

.property-image-wrapper {

  position: relative;

  width: 100%;

  height: 280px;

  overflow: hidden;

  border-radius: 16px 16px 0 0;

}



.property-image {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;

}



.property-card:hover .property-image {

  transform: scale(1.08);

}



/* Photo Count Badge */

.photo-count-badge {

  position: absolute;

  bottom: 15px;

  left: 15px;

  background: rgba(0, 0, 0, 0.75);

  backdrop-filter: blur(10px);

  color: white;

  padding: 8px 14px;

  border-radius: 20px;

  font-size: 13px;

  font-weight: 600;

  display: flex;

  align-items: center;

  gap: 6px;

  z-index: 2;

}



.photo-count-badge i {

  font-size: 14px;

}



/* Wishlist Button */

.wishlist-btn {

  position: absolute;

  top: 15px;

  right: 15px;

  width: 44px;

  height: 44px;

  background: rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(10px);

  border: none;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  cursor: pointer;

  transition: all 0.3s ease;

  z-index: 2;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

}



.wishlist-btn:hover {

  background: white;

  transform: scale(1.1);

}



.wishlist-btn i {

  font-size: 18px;

  color: #07396a;

  transition: all 0.3s ease;

}



.wishlist-btn:hover i {

  color: #dc3545;

}



.wishlist-btn.active i {

  color: #dc3545;

  font-weight: 900;

}



.wishlist-btn.active i::before {

  content: "\f004"; /* Solid heart */

  font-family: "Font Awesome 5 Free";

  font-weight: 900;

}



/* Property Content */

.property-content {

  padding: 24px;

  flex: 1;

  display: flex;

  flex-direction: column;

}



/* Property Header */

.property-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 12px;

}



.property-price {

  font-size: 22px;

  font-weight: 800;

  color: #d99513;

  line-height: 1;

}



.property-status {

  background: #e3f2fd;

  color: #0d47a1;

  padding: 6px 14px;

  border-radius: 6px;

  font-size: 12px;

  font-weight: 700;

  letter-spacing: 0.5px;

}



/* Property Title */

.property-title {

  font-size: 20px;

  font-weight: 700;

  color: #07396a;

  margin: 0 0 10px 0;

  line-height: 1.3;

}



.property-title a {

  color: inherit;

  text-decoration: none;

  transition: color 0.3s ease;

}



.property-title a:hover {

  color: #d99513;

}



/* Property Location */

.property-location {

  font-size: 15px;

  color: #9e9e9e;

  margin: 0 0 16px 0;

  display: flex;

  align-items: center;

  gap: 6px;

}



.property-location i {

  color: #9e9e9e;

  font-size: 14px;

}



/* Divider */

.property-divider {

  border: none;

  border-top: 1px solid #e9ecef;

  margin: 16px 0;

}



/* Property Features */

.property-features {

  display: flex;

  justify-content: space-between;

  gap: 15px;

}



.feature-item {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  flex: 1;

}



.feature-value {

  font-size: 22px;

  font-weight: 700;

  color: #07396a;

  line-height: 1;

  margin-bottom: 4px;

}



.feature-label {

  font-size: 14px;

  color: #9e9e9e;

  font-weight: 500;

}



/* Property Footer */

.property-footer {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-top: auto;

}



.property-date {

  font-size: 14px;

  color: #b0b0b0;

  font-weight: 500;

}



.view-details-btn {

  background: #07396a;

  color: white;

  padding: 10px 24px;

  border-radius: 8px;

  text-decoration: none;

  font-size: 14px;

  font-weight: 700;

  transition: all 0.3s ease;

  display: inline-block;

}



.view-details-btn:hover {

  background: #0d47a1;

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(7, 57, 106, 0.3);

}



/* No Results */

.no-results {

  text-align: center;

  padding: 80px 20px;

  background: white;

  border-radius: 12px;

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

}



.no-results-icon {

  font-size: 80px;

  color: #dee2e6;

  margin-bottom: 20px;

}



.no-results h3 {

  font-size: 28px;

  font-weight: 700;

  color: #07396a;

  margin: 0 0 15px 0;

}



.no-results p {

  font-size: 16px;

  color: #6c757d;

  margin: 0 0 30px 0;

}



.no-results-actions {

  display: flex;

  gap: 15px;

  justify-content: center;

  flex-wrap: wrap;

}



.btn-primary, .btn-secondary {

  display: inline-block;

  padding: 12px 30px;

  border-radius: 6px;

  text-decoration: none;

  font-weight: 700;

  font-size: 15px;

  transition: all 0.3s ease;

}



.btn-primary {

  background: linear-gradient(135deg, #d99513 0%, #cf8507 100%);

  color: white;

  box-shadow: 0 2px 8px rgba(217, 149, 19, 0.3);

}



.btn-primary:hover {

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(217, 149, 19, 0.4);

}



.btn-secondary {

  background: white;

  color: #07396a;

  border: 2px solid #07396a;

}



.btn-secondary:hover {

  background: #07396a;

  color: white;

  transform: translateY(-2px);

}



/* Back to States */

.back-to-states {

  text-align: center;

  padding-top: 30px;

}



.btn-back {

  display: inline-flex;

  align-items: center;

  gap: 10px;

  padding: 12px 30px;

  background: white;

  color: #07396a;

  border: 2px solid #e0e4e9;

  border-radius: 6px;

  text-decoration: none;

  font-weight: 700;

  font-size: 15px;

  transition: all 0.3s ease;

}



.btn-back:hover {

  border-color: #07396a;

  background: #07396a;

  color: white;

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(7, 57, 106, 0.2);

}



/* Responsive Design */

@media (max-width: 768px) {

  .page-title {

    font-size: 28px;

  }

  

  .page-subtitle {

    font-size: 16px;

  }

  

  .cities-filter-section {

    padding: 20px;

  }

  

  .cities-filter-title {

    font-size: 18px;

  }

  

  .city-tag {

    padding: 8px 16px;

    font-size: 13px;

  }

  

  .property-image-wrapper {

    height: 220px;

  }

  

  .property-content {

    padding: 20px;

  }

  

  .property-price {

    font-size: 26px;

  }

  

  .property-title {

    font-size: 18px;

  }

  

  .property-features {

    gap: 10px;

  }

  

  .feature-value {

    font-size: 18px;

  }

  

  .feature-label {

    font-size: 12px;

  }

  

  .property-footer {

    flex-direction: column;

    gap: 12px;

    align-items: stretch;

  }

  

  .view-details-btn {

    width: 100%;

    text-align: center;

  }

  

  .no-results-actions {

    flex-direction: column;

  }

  

  .btn-primary, .btn-secondary {

    width: 100%;

    max-width: 300px;

  }

}



@media (max-width: 480px) {

  .property-header {

    flex-direction: column;

    align-items: flex-start;

    gap: 8px;

  }

  

  .property-price {

    font-size: 24px;

  }

}



/* ===================================
   City Dropdown Styles - Simple & Clean
   =================================== */

.city-dropdown-wrapper {
  max-width: 500px;
  margin: 20px auto;
  padding: 0;
}

.city-dropdown-label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.city-dropdown-label i {
  margin-right: 6px;
  color: #0a3c72;
}

.city-dropdown {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  background: white;
  color: #333;
  cursor: pointer;
  transition: border-color 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.city-dropdown:hover {
  border-color: #0a3c72;
}

.city-dropdown:focus {
  outline: none;
  border-color: #0a3c72;
  box-shadow: 0 0 0 3px rgba(10, 60, 114, 0.1);
}

/* ===================================
   Load More Button - Simple Professional
   =================================== */

.btn-load-more {
  display: inline-block;
  padding: 14px 32px;
  background: #0a3c72;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(10, 60, 114, 0.2);
  border: none;
  cursor: pointer;
}

.btn-load-more:hover {
  background: #083056;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 60, 114, 0.3);
  color: white;
}

.btn-load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-load-more i {
  margin-right: 8px;
}

.btn-load-more.loading i {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.load-more-container {
  text-align: center;
  padding: 40px 0;
  margin-top: 30px;
}

.pagination-info {
  text-align: center;
  color: #666;
  font-size: 14px;
  padding: 20px 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
  .city-dropdown-wrapper {
    margin: 15px;
  }
  
  .city-dropdown {
    font-size: 15px;
    padding: 11px 14px;
  }
  
  .btn-load-more {
    padding: 12px 24px;
    font-size: 15px;
    width: 90%;
  }
}
