*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --blue-400: #0053e9;
  --black-400: 000;
}

body {
  background: #f5f5f1;
  color: #212529;
  line-height: 1.5;
  position: relative;
  font-family: 'Bradford LL', serif;
}
 .container {
    margin:0 auto;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* PAGE INTRO */
.page-intro-banner {
  border-bottom: 1px solid #0052eb;
  /* background: #fff; */
}

.page-intro {
	display: flex;
	gap: 40px;
	padding: 40px 0;
	flex-wrap: wrap;
}
.intro-left {
	width: calc(42% - 20px);
}
.intro-eyebrow {
	font-size: 18px;
	color: var(--blue-400);
	margin-bottom: 10px;
}

.intro-title {
  font-size: 30px;
  font-weight: 700;
  color: #0052eb;
  line-height: 1.2;
}
.intro-right {
	font-size: 16px;
	color: var(--blue-400);
	line-height: 1.75;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	width: calc(58% - 20px);
}

/* FILTER BAR */
.filter-bar {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	padding: 13px 0px;
	justify-content: space-between;
}
.filter-panel {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
  flex: 1;
}
.filter-main-bar {
  margin: 40px 0;
}

.filter-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--blue-400);
  margin-bottom: 12px;
  display: block;
  width: 100%;
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 5px;
}

.filter-select {
	appearance: none;
	padding: 10px 26px 10px 10px;
	font-size: 14px;
	color: #1a1a1a;
	cursor: pointer;
	background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23555' stroke-width='1.4' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 8px center;
	width: 200px;
	border: none;
}

.filter-select:focus {
  outline: none;
  border-color: #1A5FAE;
}

/* SUBURB HEADING */
.suburb-section {
  margin-top: 0;
}

.suburb-heading {
  padding: 22px 48px 10px;
  font-size: 22px;
  font-weight: 700;
  color: #1A5FAE;
  border-top: 3px solid #1A5FAE;
}

/* .listings-wrap {
  padding: 40px 0px;
} */

.listings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 20px;
}

/* PROPERTY CARD */
.prop-card {
  padding: 15px;
  overflow: hidden;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* Card header */
.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 3px 0;
}

.card-suburb-name {
  font-size: 16px;
  font-weight: 700;
  color: #1A5FAE;
}

.cover {
  position: relative;
}

.hotel-slide-blog::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-image: url("images/expand.webp");
  background-size: 100% auto;
  width: 25px;
  height: 25px;
  z-index: 9;
  pointer-events: none;
}

.feat img {
  width: 16px;
  height: 16px;
}

/* MAIN IMAGE */
.card-main-img-wrap {
  position: relative;
}

.card-main-img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  cursor: pointer;
  display: block;
  transition: transform .3s;
}

/* THUMB SLIDER */
.card-thumbs-wrap {
  background: #111;
  padding: 3px 3px 0;
}

.card-thumb-slider .slick-slide {
  padding: 0 2px;
}

.card-thumb-slider .slick-slide img {
  width: 100%;
  height: 52px;
  object-fit: cover;
  border-radius: 3px;
  opacity: .6;
  cursor: pointer;
  transition: opacity .15s;
  border: 2px solid transparent;
}

.card-thumb-slider .slick-slide.slick-current img,
.card-thumb-slider .slick-slide img:hover {
  opacity: 1;
  border-color: #fff;
}

.card-thumb-slider .slick-prev,
.card-thumb-slider .slick-next {
  width: 18px;
  height: 18px;
  z-index: 5;
}

.card-thumb-slider .slick-prev {
  left: 2px;
}

.card-thumb-slider .slick-next {
  right: 2px;
}

.card-thumb-slider .slick-prev:before,
.card-thumb-slider .slick-next:before {
  font-size: 14px;
  color: #fff;
}

/* CARD BODY */
.prop-card .card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-features {
  position: absolute;
  bottom: 8px;
  left: 0;
  background: #f7f7f3;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  padding: 6px 8px 2px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 20px;
  font-size: 14px;
  font-family: "Acumin Pro", sans-serif;
  line-height: 1.5;
}

.feat {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 14px;
  color: #212529;
  font-weight: 400;
}

.card-address {
  font-size: 16px;
  font-family: "Agipo Bold Cond", sans-serif;
  margin-top: 5px;
  margin-bottom: 5px;
  color: var(--blue-400);
}

.card-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 11px;
}

/* RENT TABLE 2-col */
.rent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px 30px;
  margin-bottom: 1rem;
}

.rg-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: space-between;
  font-size: 11px;
}

.rg-val {
  color: var(--blue-400);
  text-align: right;
}

.rg-val.strike {
  text-decoration: line-through;
}

.rent-divider {
  height: 1px;
  background: #eef0f4;
  margin: 6px 0;
  grid-column: 1/-1;
}

/* INCOME ELIGIBILITY */
.elig-block {
  font-size: 13px;
}

.elig-heading {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 15px;
  color: var(--black-400);
  margin-top: 5px;
  margin-bottom: 5px;
}

[role="button"] {
  cursor: pointer;
}

.i-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 12px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 10px;
  line-height: 1;
  color: var(--blue-400);
}

.popover {
  background: #ccddfb;
  border-color: #ccddfb;
  border-radius: 10px;
  font-size: 14px;
  padding: 30px;
  max-width: 320px;
}

.popover-body {
  font-size: 14px;
  line-height: 1.7;
}

.popover-body p {
  padding-bottom: 15px;
}

.popover-body p:last-child {
  padding-bottom: 0;
}

.popover h2 {
  font-size: 16px;
  margin: 0 0 10px 0;
}

.popover ol {
  margin: 0;
  margin-block-start: 0;
  padding-inline-start: 1rem;
}

.elig-block p {
  margin-bottom: 1rem;
}

.elig-block p span {
  color: var(--blue-400);
}


.elig-max {
  margin-top: 4px;
  font-size: 12.5px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* CARD FOOTER */
.card-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}
.card-footer .essence-logo img {
	max-width: 130px;
}
.btn-enquire {
  background: var(--blue-400);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background .15s;
  font-size: 17px;
  font-family: "Agipo Bold Cond", sans-serif;
  padding: 5px 15px;
  border-radius: 5px;
}

.btn-enquire:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.walkthrough-link {
	font-family: "Acumin Pro", sans-serif;
	font-size: 14px;
	color: var(--blue-400);
	margin-bottom: 10px;
	font-weight: 500;
  display: block;
}

/* NO RESULTS */
.no-results {
  grid-column: 1/-1;
  text-align: center;
  padding: 48px;
  color: #aaa;
}

/* ============================================================
   LIGHTBOX
============================================================ */
.lb-ov {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, .95);
  z-index: 2000;
  flex-direction: column;
}

.lb-ov.open {
  display: flex;
}

/* Top bar */
.lb-top {
	display: flex;
	align-items: center;
	padding: 8px;
	justify-content: space-between;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
  z-index: 9;
}
.lb-count {
	font-size: 16px;
	color: #ddd;
	font-weight: 500;
	min-width: 52px;
}
.lb-count span{ padding: 0 4px;}
.lb-addr {
  flex: 1;
  text-align: center;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  padding: 0 12px;
}

.lb-ctrls {
	display: flex;
}

.lb-btn {
	width: 46px;
	height: 46px;
	cursor: pointer;
	background: rgba(54, 54, 54, .75);
	color: #ddd;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background .15s;
	flex-shrink: 0;
  position: relative;
}
.lb-btn svg {
	width: 24px;
	height: 24px;
	transform: none;
	fill: none;
	filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.1)) drop-shadow(1px 2px 1px rgba(24, 24, 27, 0.5));
	opacity: 1;
	transition: opacity 0.15s ease;
	stroke: currentColor;
	stroke-width: 1.75;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}

/* PROGRESS BAR — exactly under topbar */
.lb-prog-track {
	height: 46px;
	overflow: hidden;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
}
.lb-prog-fill {
	height: 46px;
	background: rgba(255,255,255,.1);
	width: 0%;
	will-change: width;
}

/* Stage */
.lb-stage {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  /* overflow: hidden; */
}

.lb-img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform .22s;
  user-select: none;
}

.lb-img.zoomed {
  transform: scale(1.75);
  cursor: zoom-out;
}

.lb-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: rgba(54, 54, 54, .65);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 5;
	transition: background .15s;
	line-height: 1;
	user-select: none;
}

.lb-arr-prev {
  left: 32px;
}

.lb-arr-next {
  right: 32px;
}
.lb-arrow svg {
	width: 24px;
	height: 24px;
	transform: none;
	fill: none;
	filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, .01)) drop-shadow(1px 2px 1px rgba(24, 24, 27, .05));
	opacity: 1;
	transition: opacity .15s ease;
	stroke: currentColor;
	stroke-width: 2.5;
	stroke-linecap: round;
	stroke-linejoin: round;
	pointer-events: none;
}
/* Thumb strip */
.lb-thumbstrip {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding:8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.lb-thumbstrip::-webkit-scrollbar {
  display: none;
}

.lb-thb {
	width: 46px;
	height: 76px;
	border-radius: 4px;
	overflow: hidden;
	cursor: pointer;
	flex-shrink: 0;
	transition: all .25s;
}
.lb-thb button {
	width: 94px;
	height: 100%;
	object-fit: cover;
	display: block;
	transform: translateX(-50%);
}
.lb-thb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 50% 20%;
	pointer-events: none;
	border-radius: inherit;
	color: transparent;
}

.lb-thb.on {
	border-color: #fff;
	opacity: 1;
	width: 94px;
	margin-inline: 22px;
}
.lb-thb.on button {
	transform: none;
}

/* RESPONSIVE */
@media(max-width:1100px) {
  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .filter-panel{flex: inherit;}
}
@media(max-width:991px) {
.page-intro {
	gap: 10px;
}
.intro-left, .intro-right {
	width: 100%;
}
}
@media(max-width:700px) {
  .page-intro {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .filter-bar,
  .suburb-heading,
  .listings-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .listings-grid {
    grid-template-columns: 1fr;
  }

  .filter-select{
    width: 100%;
  }
  .filter-group {
	width: 48%;
}
}

@media (min-width: 768px) {
    .container{
    max-width: 750px;
  }
}

@media (min-width: 992px) {
  .intro-title {
    font-size: 60px;
  }
    .container{
    max-width: 990px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
    margin: auto;
  }
}
