/* ==========================================================================



   Property Filter Bar Styles



   ========================================================================== */







.filter-card {



    background: var(--surface);



    border: 1px solid var(--line-soft);



    border-radius: var(--radius-l);



    padding: 22px 26px;



    box-shadow: 0 12px 32px rgba(10, 20, 17, 0.05);



    transition:



        border-color 0.3s var(--ease),



        box-shadow 0.3s var(--ease);



}







.filter-card:hover {



    border-color: var(--line);



    box-shadow: 0 16px 40px rgba(10, 20, 17, 0.08);



}







/* Labels */



.filter-label {



    font-family: var(--font-body);



    font-size: 13px;



    font-weight: 700;



    color: var(--ink);



    margin-bottom: 8px;



    display: flex;



    align-items: center;



}







.filter-label i {



    color: #ff5d2c;



}




.property-empty-card .btn-primary {background: #ff5d2c!important;}




/* Form Controls */



.filter-control {



    background-color: var(--paper);



    border: 1px solid var(--line-soft);



    border-radius: var(--radius-m);



    color: var(--ink);



    font-size: 14px;



    font-weight: 500;



    padding: 10px 14px;



    height: 46px;



    transition: all 0.25s var(--ease);



}







.filter-control:focus {



    background-color: var(--surface);



    border-color: #ff5d2c;



    box-shadow: 0 0 0 4px rgba(30, 58, 138, 0.12);



    color: var(--ink);



}







.filter-control::placeholder {



    color: var(--grey-light);



    font-weight: 400;



}







/* Icon Input Wrapper */



.input-icon-group {



    position: relative;



}







.input-icon-group .input-icon {



    position: absolute;



    left: 14px;



    top: 50%;



    transform: translateY(-50%);



    color: var(--grey-light);



    font-size: 15px;



    pointer-events: none;



    transition: color 0.2s ease;



}







.input-icon-group .filter-control {



    padding-left: 38px;



}







.input-icon-group .filter-control:focus + .input-icon,



.input-icon-group:focus-within .input-icon {



    color: #ff5d2c;



}







/* Buttons */



.btn-filter-submit {



    background: #ff5d2c;



    color: #ffffff;



    font-family: var(--font-display);



    font-weight: 600;



    font-size: 14px;



    height: 46px;



    border-radius: var(--radius-m);



    border: none;



    display: inline-flex;



    align-items: center;



    justify-content: center;



    transition: all 0.25s var(--ease);



}







.btn-filter-submit:hover {



    background: var(--gold);



    color: #ffffff;



    transform: translateY(-1px);



    box-shadow: 0 6px 18px rgba(8, 47, 145, 0.22);



}







.btn-filter-reset {



    background: var(--paper);



    color: var(--grey);



    border: 1px solid var(--line-soft);



    width: 46px;



    height: 46px;



    border-radius: var(--radius-m);



    display: inline-flex;



    align-items: center;



    justify-content: center;



    font-size: 16px;



    transition: all 0.25s var(--ease);



}


.property-heading-sec h2 {font-size: 21px;
    padding: 3px 0px 19px 9px;
    font-weight: 600;}
.inner-hero {
    position: relative;
    overflow: hidden;
    padding-top: 110px !important;
    background-image: linear-gradient(135deg, rgba(1, 12, 28, 0.94) 0%, rgba(23, 20, 55, 0.88) 48%, rgba(0, 8, 24, 0.96) 100%);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    isolation: isolate;
}




.btn-filter-reset:hover {



    background: var(--paper-deep);



    color: var(--ink);



    border-color: var(--line);



}








/* Card Container */
.property-listing .property-card-horizontal {
  display: flex;
  flex-direction: row;
  background-color: #ffffff;
  border-radius: 14px;
  border: 1px solid #eef2f6;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(9, 30, 66, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.property-listing .property-card-horizontal:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(9, 30, 66, 0.08);
  border-color: #e2e8f0;
}

/* Left Image Section */
.property-listing .property-media {
  position: relative;
  width: 280px;
  min-width: 280px;
  background-color: #f8fafc;
  overflow: hidden;
}

.property-listing .property-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.property-listing .property-card-horizontal:hover .property-img {
  transform: scale(1.04);
}

/* Overlay Badges */
.property-listing .media-overlay-top {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
}

.property-listing .badge-tag {
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.property-listing .media-badges {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
}

.property-listing .badge-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(16, 185, 129, 0.9);
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
}

/* Right Content Area */
.property-listing .property-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

/* Title & Location */
.property-listing .property-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 4px 0;
}

.property-listing .property-title a {
  color: #0f172a;
  text-decoration: none;
  transition: color 0.2s ease;
}

.property-listing .property-title a:hover {
  color: #e04b1c;
}

.property-listing .property-location {
  font-size: 12.5px;
  color: #64748b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Grid Stats Section */
.property-listing .property-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  background-color: transparent!important;
  padding:3px 2px;
  border-radius: 0px;
}

.property-listing .stat-value {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.property-listing .stat-value small {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
}

.property-listing .stat-label {
  font-size: 11.5px;
  color: #64748b;
  margin-top: 3px;
}

/* Highlights */
.property-listing .property-highlights {
  font-size: 12.5px;
  color: #334155;
  white-space: normal!important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.property-listing .highlight-label {
  font-weight: 600;
  color: #64748b;
  margin-right: 4px;
}

/* Action Footer */
.property-listing .property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f1f5f9;
}

.property-listing .updated-time {
  font-size: 12px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 4px;
}

.property-listing .action-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.property-listing .btn-outline {
  padding: 8px 16px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.property-listing .btn-outline:hover {
  background-color: #f1f5f9;
  color: #0f172a;
}

.property-listing .btn-contact {
  padding: 8px 18px;
  border-radius: 8px;
  background-color: #ff5d2c;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.property-listing .btn-contact:hover {
  background-color: #e04b1c;
  color: #ffffff;
}

/* Responsive Mobile Layout */
@media (max-width: 768px) {
  .property-listing .property-card-horizontal {
    flex-direction: column;
  }

  .property-listing .property-media {
    width: 100%;
    height: 200px;
  }

  .property-listing .property-stats-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .property-listing .property-stats-grid .border-start {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid #e2e8f0;
    padding-top: 8px;
  }

  .property-listing .property-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .property-listing .action-buttons {
    width: 100%;
  }

  .property-listing .btn-outline, .property-listing .btn-contact {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}



/* Sidebar Container */
.filter-sidebar {
  width: 100%;
  max-width: 320px;
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  overflow: hidden;
  font-family: inherit;
}

/* Header Section */
.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background-color: #fafbfc;
}

.filter-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-clear-all {
  background: none;
  border: none;
  color: #ff5d2c;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  transition: opacity 0.2s ease;
}

.btn-clear-all:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Filter Body */
.filter-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-label {
  font-size: 13.5px;
  font-weight: 700;
  color: #1e293b;
}

/* Inputs & Select */
.filter-select,
.filter-input {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 13px;
  color: #0f172a;
  outline: none;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-select:focus,
.filter-input:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* BHK Selector Chips */
.bhk-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bhk-chip {
  cursor: pointer;
}

.bhk-chip input {
  display: none;
}

.bhk-chip span {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 600;
  color: #475569;
  transition: all 0.2s ease;
}

.bhk-chip input:checked + span {
  background-color: #ff5d2c;
  color: #ffffff;
  border-color: #ff5d2c;
}

/* Radio Buttons */
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-radio {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #334155;
  cursor: pointer;
}

.custom-radio input {
  display: none;
}

.radio-mark {
  width: 16px;
  height: 16px;
  border: 2px solid #cbd5e1;
  border-radius: 50%;
  position: relative;
  transition: border-color 0.2s ease;
}

.custom-radio input:checked + .radio-mark {
  border-color: #ff5d2c;
}

.custom-radio input:checked + .radio-mark::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 6px;
  height: 6px;
  background-color: #ff5d2c;
  border-radius: 50%;
}

/* Area Min-Max Range */
.range-inputs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.range-separator {
  color: #94a3b8;
  font-weight: 600;
}

/* Checkbox Lists */
.checkbox-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #334155;
  cursor: pointer;
}

.custom-checkbox input {
  display: none;
}

.checkbox-mark {
  width: 16px;
  height: 16px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  position: relative;
  transition: all 0.2s ease;
}

.custom-checkbox input:checked + .checkbox-mark {
  background-color: #ff5d2c;
  border-color: #ff5d2c;
}

.custom-checkbox input:checked + .checkbox-mark::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 5px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Collapsible "View More" Details Mechanism */
.more-items-toggle {
  margin-top: 2px;
}

.toggle-trigger {
  list-style: none;
  font-size: 12.5px;
  font-weight: 600;
  color: #ff5d2c;
  cursor: pointer;
  outline: none;
  display: inline-block;
  padding-top: 4px;
}

.toggle-trigger::-webkit-details-marker {
  display: none;
}

.more-items-toggle .less-text {
  display: none;
}

.more-items-toggle[open] .more-text {
  display: none;
}

.more-items-toggle[open] .less-text {
  display: inline;
}

.details-content {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-top: 9px;
}

/* Apply Filters Button */
.btn-apply-filter {
  width: 100%;
  padding: 10px;
  background-color: #0f172a;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
  margin-top: 8px;
}

.btn-apply-filter:hover {
  background-color: #1e293b;
}


.filter-card .input-icon-group .filter-control {
    padding-left: 39px!important;
}



.filter-card .form-control, .form-select {color: #a2a3c8 !important;}


.inner-hero {
    position: relative;
    overflow: hidden;
    padding-top: 71px !important;}