:root {
  --navy: #0b1f3a;
  --ink: #152238;
  --muted: #667085;
  --gold: #c99a35;
  --gold-dark: #a67b22;
  --sky: #dbeafe;
  --sage: #dfe8df;
  --coral: #f2c2ae;
  --paper: #f7f5ef;
  --white: #ffffff;
  --line: #e6e9ee;
  --shadow: 0 18px 45px rgba(11, 31, 58, .12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(230, 233, 238, .85);
}

.nav {
  max-width: var(--max);
  margin: 0 auto;
  padding: 15px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: .01em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #183d69);
  box-shadow: 0 10px 24px rgba(11, 31, 58, .18);
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 7px;
  color: #334155;
  font-weight: 700;
  font-size: 14px;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: #eef3f8;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 7px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  margin: 4px auto;
}
.btn-container{
  display: flex;
    justify-content: center;
    margin-top: 15px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 7px;
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--navy);
  background: var(--gold);
  box-shadow: 0 12px 28px rgba(201, 154, 53, .28);
}

.btn-primary:hover {
  background: #d8ab4b;
}

.btn-light {
  color: var(--navy);
  background: var(--white);
  border-color: rgba(255, 255, 255, .7);
}

.btn-outline {
  color: var(--navy);
  background: transparent;
  border-color: #cbd5e1;
}

.btn-outline:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 28px rgba(11, 31, 58, .08);
}

.hero .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, .48);
  background: rgba(255, 255, 255, .08);
}

.hero .btn-outline:hover {
  background: rgba(255, 255, 255, .16);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  color: var(--white);
}
/* .hero::before{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(11,31,58,.82),
    rgba(11,31,58,.55),
    rgba(11,31,58,.32)
  );
  z-index: 1;
} */


.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(
      90deg,
      rgba(11,31,58,.82) 0%,
      rgba(11,31,58,.58) 45%,
      rgba(11,31,58,.35) 100%
    );
}


.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 22px 80px;
  display: flex;
  /* grid-template-columns: minmax(0,1fr) 460px; */
  gap: 48px;
  /* align-items: center; */
  
}
.hero-inner-2{
  text-align: center;
}
.hero-home{
  background: #000;
}
/* .hero-home .hero-overlay{
  display: none;
} */
.hero-rent{
  background-image:
    linear-gradient(
      rgba(11,31,58,.65),
      rgba(11,31,58,.55)
    ),
    url('/images/1.jpg');

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-sell{
  background-image:
    linear-gradient(
      rgba(11,31,58,.65),
      rgba(11,31,58,.55)
    ),
    url('/images/2.jpg');

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-buy{
  background-image:
    linear-gradient(
      rgba(11,31,58,.65),
      rgba(11,31,58,.55)
    ),
    url('/images/3.jpg');

  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--gold);
}

h1,
h2,
h3,
.display {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 800px;
  margin-top: 16px;
  font-size: clamp(46px, 7vw, 82px);
}

.hero p {
  max-width: 660px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .84);
  font-size: 19px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
  max-width: 650px;
}

.stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
}

.stat strong {
  display: block;
  font-size: 25px;
  line-height: 1;
  color: var(--gold);
}

.stat span {
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
  font-weight: 700;
}

.estimator {
  color: var(--ink);
  background: rgba(255, 255, 255, .97);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .65);
}

.estimator h3 {
  font-size: 27px;
  color: var(--navy);
}

.estimator p {
  margin: 8px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  color: #344054;
  font-size: 13px;
  font-weight: 800;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #d7dde6;
  border-radius: 7px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 154, 53, .14);
}

.estimate-result {
  display: none;
  margin-top: 14px;
  padding: 13px;
  border-radius: 7px;
  background: #eef6f3;
  color: #17483b;
  font-weight: 800;
}

.estimate-result.show {
  display: block;
  animation: fadeUp .35s ease both;
}

.section {
  padding: 88px 22px;
}

.section.alt {
  background: var(--paper);
}

.section.navy {
  background: var(--navy);
  color: var(--white);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-head {
  max-width: 740px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2 {
  margin-top: 10px;
  color: var(--navy);
  font-size: clamp(34px, 4vw, 52px);
}

.navy .section-head h2 {
  color: var(--white);
}

.section-head p {
  color: var(--muted);
  margin: 14px 0 0;
  font-size: 17px;
}

.navy .section-head p {
  color: rgba(255, 255, 255, .76);
}

.trust-bar {
  margin-top: -34px;
  position: relative;
  z-index: 3;
}

.trust-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}

.trust-item {
  padding: 18px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 15px;
}

.trust-item span {
  color: var(--muted);
  font-size: 13px;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.grid-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(201, 154, 53, .42);
}

.card-body {
  padding: 24px;
}

.card h3 {
  color: var(--navy);
  font-size: 25px;
}

.card p {
  margin: 12px 0 18px;
  color: var(--muted);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  color: var(--navy);
  background: var(--sky);
  margin-bottom: 18px;
}

.card:nth-child(2n) .service-icon {
  background: var(--sage);
}

.card:nth-child(3n) .service-icon {
  background: var(--coral);
}

.image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 52px;
  align-items: center;
}

.media-panel {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 440px;
  box-shadow: var(--shadow);
}
/* .m-800-panel{
  min-height: 800px;
} */

.media-panel img {
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  left: 24px;
  bottom: 24px;
  width: min(320px, calc(100% - 48px));
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 14px 36px rgba(11, 31, 58, .18);
}

.floating-note strong {
  color: var(--navy);
  display: block;
  font-size: 18px;
}

.floating-note span {
  color: var(--muted);
  font-size: 13px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: #344054;
  font-weight: 650;
}

.check-list li::before {
  content: "✓";
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 154, 53, .18);
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 900;
}

.suburb-slider,
.testimonial-slider,
.property-slider {
  position: relative;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}

.slide {
  flex: 0 0 100%;
}

.suburb-slide {
  flex-basis: 25%;
  padding: 0 10px;
}

.suburb-tile {
  min-height: 220px;
  color: var(--white);
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  background: var(--navy);
}

.suburb-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(11, 31, 58, .05), rgba(11, 31, 58, .74)), var(--bg);
  background-size: cover;
  background-position: center;
  transition: transform .35s ease;
}

.suburb-tile:hover::before {
  transform: scale(1.08);
}

.suburb-tile div {
  position: relative;
}

.suburb-tile strong {
  display: block;
  font-size: 24px;
  font-family: Georgia, "Times New Roman", serif;
}

.suburb-tile span {
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 750;
}

.slider-controls {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
  margin-top: 22px;
}

.slider-btn {
  width: 42px;
  height: 42px;
  border-radius: 7px;
  border: 1px solid #cbd5e1;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  font-size: 20px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.slider-btn:hover {
  transform: translateY(-2px);
  background: var(--navy);
  color: var(--white);
}

.testimonial {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 45px);
  line-height: 1.18;
}

.testimonial cite {
  display: block;
  margin-top: 22px;
  color: var(--gold);
  font-style: normal;
  font-weight: 900;
}

.testimonial-stars{
   margin-bottom: 22px;
   color: var(--gold);
   font-size: 22px;
   letter-spacing: 4px;
}

.testimonial blockquote{
   margin: 0 auto;
   max-width: 900px;
}

.testimonial cite{
   display: inline-block;
   margin-top: 28px;
   font-size: 14px;
   letter-spacing: .05em;
   text-transform: uppercase;
}
.process {
  counter-reset: step;
}

.process .card {
  padding: 26px;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--navy);
  color: var(--gold);
  font-weight: 900;
  margin-bottom: 18px;
}

.calculator {
  background: var(--white);
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.calc-result {
  margin-top: 16px;
  padding: 16px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.calc-result strong {
  display: block;
  color: var(--gold);
  font-size: 28px;
}

.team-card img {
  height: 280px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.team-card .role {
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.contact-panel {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-list a,
.contact-list div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.cta-band {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(11, 31, 58, .96), rgba(11, 31, 58, .78)), url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity: .55;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(31px, 4vw, 32px);
}

.footer {
  background: #07172b;
  color: rgba(255, 255, 255, .76);
  padding: 56px 22px 26px;
}

.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 30px;
}

.footer h3,
.footer strong {
  color: var(--white);
}

.footer a {
  display: block;
  margin-top: 9px;
  color: rgba(255, 255, 255, .72);
}

.footer-bottom {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: 13px;
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #22c55e;
  box-shadow: 0 15px 32px rgba(34, 197, 94, .32);
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-2{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.09);
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav.open .nav-links {
    display: grid;
    position: absolute;
    top: 73px;
    left: 16px;
    right: 16px;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .hero-inner,
  .split,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 70px;
  }

  .trust-grid,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .suburb-slide {
    flex-basis: 50%;
  }

  .cta-band {
    display: block;
  }

  .cta-band .btn {
    margin-top: 20px;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 18px;
  }

  .nav {
    padding: 13px 16px;
  }

  .brand small {
    display: none;
  }

  .hero-inner {
    padding: 56px 18px 58px;
  }

  .hero p {
    font-size: 16px;
  }

  .hero-stats,
  .trust-grid,
  .grid-3,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .suburb-slide {
    flex-basis: 100%;
  }

  .hero-ctas,
  .cta-band {
    align-items: stretch;
  }

  .hero-ctas .btn,
  .cta-band .btn {
    width: 100%;
  }
}


  .property-showcase {
    background: var(--paper);
  }

  .property-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 42px;
  }

  .property-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--line);
    transition:
      transform .28s ease,
      box-shadow .28s ease,
      border-color .28s ease;
    box-shadow: 0 8px 22px rgba(11, 31, 58, 0.06);
    text-decoration: none;
    color: inherit;
  }

  .property-card:hover {
    transform: translateY(-6px);
    border-color: rgba(201,154,53,.35);
    box-shadow: 0 18px 38px rgba(11,31,58,.12);
  }

  /* IMAGE */

  .property-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #edf2f7;
  }

  .property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s ease;
  }

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

  /* TAG */

  .property-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(11,31,58,.92);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    padding: 7px 11px;
    border-radius: 50px;
  }

  /* CONTENT */

  .property-content {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .property-price {
    color: var(--gold-dark);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1;
  }

  .property-content h3 {
    color: var(--navy);
    font-size: 21px;
    line-height: 1.3;
    margin-bottom: 10px;
    font-family: Georgia, "Times New Roman", serif;
  }

  .property-location {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 18px;
  }

  /* FEATURES */

  .property-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 22px;
  }

  .property-features span {
    border: 1px solid var(--line);
    background: #fafbfd;
    padding: 7px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    color: #475467;
  }

  /* FOOTER */

  .property-footer {
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .property-footer span {
    color: var(--navy);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
  }

  .property-footer svg {
    color: var(--gold-dark);
    transition: transform .25s ease;
  }

  .property-card:hover .property-footer svg {
    transform: translateX(4px);
  }

  /* PAGINATION */

  .pagination-wrapper {
    margin-top: 54px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
  }

  .pagination-btn {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    border: 1px solid var(--line);
    background: var(--white);
    color: var(--navy);
    font-weight: 800;
    cursor: pointer;
    transition:
      background .25s ease,
      color .25s ease,
      border-color .25s ease,
      transform .25s ease;
  }

  .pagination-btn:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
  }

  .pagination-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
  }

  /* =========================================
    RESPONSIVE
  ========================================= */

  @media (max-width: 1200px) {

    .property-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

  }

  @media (max-width: 900px) {

    .property-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

  }

  @media (max-width: 640px) {

    .property-grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }

    .property-image {
      height: 240px;
    }

    .property-content {
      padding: 16px;
    }

    .property-content h3 {
      font-size: 19px;
    }

    .property-price {
      font-size: 22px;
    }

    .property-features {
      gap: 8px;
    }

    .pagination-wrapper {
      margin-top: 40px;
    }

    .pagination-btn {
      width: 42px;
      height: 42px;
    }

  }

/* =========================================
   RENT PROPERTY LIST
========================================= */

.property-showcase {
  background: var(--paper);
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 42px;
}

.property-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: .3s ease;
  box-shadow: 0 8px 24px rgba(11,31,58,.06);
}

.property-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.property-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.property-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .4s ease;
}

.property-card:hover img {
  transform: scale(1.05);
}

.property-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(11,31,58,.92);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 50px;
}

.property-content {
  padding: 18px;
}

.property-price {
  color: var(--gold-dark);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 8px;
}

.property-content h3 {
  color: var(--navy);
  font-size: 22px;
  margin-bottom: 10px;
}

.property-location {
  color: var(--muted);
  margin-bottom: 18px;
}

.property-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.property-features span {
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.property-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.property-footer span {
  font-size: 13px;
  font-weight: 800;
  color: var(--navy);
}

/* PAGINATION */

.pagination-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 54px;
}

.pagination-btn {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-weight: 800;
  transition: .3s ease;
}

.pagination-btn:hover,
.pagination-btn.active {
  background: var(--navy);
  color: var(--white);
}

/* =========================================
   PROPERTY DETAILS
========================================= */

.property-hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
}

.property-hero-image {
  position: absolute;
  inset: 0;
}

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

.property-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,31,58,.15),
    rgba(11,31,58,.88)
  );
}

.property-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 72px;
}

.property-badge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.property-hero-content h1 {
  margin-top: 20px;
  color: var(--white);
}

.property-address {
  margin-top: 16px;
  color: rgba(255,255,255,.8);
}

.property-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.property-meta div {
  min-width: 120px;
  padding: 16px;
  border-radius: 10px;
  background: rgba(255,255,255,.1);
}

.property-meta strong {
  display: block;
  color: var(--gold);
  font-size: 24px;
}

.property-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 42px;
}

.property-gallery > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 14px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 14px;
}

.gallery-grid img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 10px;
}

.property-section {
  margin-top: 42px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 14px;
}

.feature-item {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.booking-card {
  position: sticky;
  top: 110px;
  background: var(--white);
  padding: 28px;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.booking-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--navy);
}

.booking-subtitle {
  margin: 14px 0 24px;
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 14px;
}

.booking-btn {
  width: 100%;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
  .property-grid {
    grid-template-columns: repeat(3,1fr);
  }
}

@media (max-width: 900px) {

  .property-grid,
  .property-layout {
    grid-template-columns: repeat(2,1fr);
  }

  .property-layout {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 640px) {

  .property-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .property-image {
    height: 240px;
  }

  .property-gallery > img {
    height: 320px;
  }

  .booking-card {
    position: relative;
    top: auto;
  }

}
.testimonial-slider{
   overflow: hidden;
}

.testimonial-slider .slider-track{
   display: flex;
}

.testimonial-slider .slide{
   min-width: 100%;
   flex: 0 0 100%;
}
.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: inherit;
    transition: background 0.2s, transform 0.2s;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}
/* =========================================
   PROPERTY DISCOVERY COFFEE
========================================= */

.coffee-grid{
   display:grid;
   grid-template-columns:repeat(3,1fr);
   gap:28px;
}

.coffee-card{
   background:var(--white);
   border:1px solid var(--line);
   border-radius:10px;
   overflow:hidden;
   box-shadow:var(--shadow);
   transition:.3s ease;
}

.coffee-card:hover{
   transform:translateY(-6px);
}

.coffee-image{
   height:260px;
}

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

.coffee-content{
   padding:24px;
}

.coffee-content h3{
   color:var(--navy);
   margin-bottom:16px;
}

.coffee-meta{
   margin-bottom:24px;
   color:var(--muted);
   font-weight:700;
}

/* =========================================
   BOOKING MODAL
========================================= */

.booking-modal{
   position: fixed;
   top: 0;
   left: 0;

   width: 100%;
   height: 100vh;

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

   padding: 20px;

   background: rgba(0,0,0,.72);

   z-index: 999999;

   opacity: 0;
   visibility: hidden;
   pointer-events: none;

   transition: opacity .3s ease, visibility .3s ease;
}

.booking-modal.active{
   opacity: 1;
   visibility: visible;
   pointer-events: auto;
}
.booking-wrapper{
   width:min(1200px,100%);
   background:var(--white);
   border-radius:12px;
   padding:40px;
   position:relative;
   overflow-y:auto;
   max-height:90vh;
}

.close-booking{
   position:absolute;
   top:18px;
   right:18px;
   width:42px;
   height:42px;
   border:none;
   border-radius:50%;
   cursor:pointer;
   font-size:28px;
   background:#f1f5f9;
}

.booking-layout{
   display:grid;
   grid-template-columns:1fr 1fr 1fr;
   gap:40px;
}
body.modal-open{
   overflow:hidden;
}
/* CALENDAR */

.calendar-grid{
   display:grid;
   grid-template-columns:repeat(7,1fr);
   gap:10px;
   margin-top:24px;
}

.calendar-day{
   height:52px;
   border:1px solid var(--line);
   display:flex;
   align-items:center;
   justify-content:center;
   border-radius:8px;
   cursor:pointer;
   font-weight:700;
   transition:.2s ease;
}

.calendar-day:hover{
   background:var(--navy);
   color:var(--white);
}

.calendar-day.disabled{
   opacity:.3;
   pointer-events:none;
   background:#f8fafc;
}

/* TIME SLOTS */

.time-slots{
   display:grid;
   grid-template-columns:repeat(2,1fr);
   gap:14px;
   margin-top:24px;
}

.time-slots button{
   height:52px;
   border:1px solid var(--line);
   background:var(--white);
   border-radius:8px;
   cursor:pointer;
   font-weight:700;
   transition:.2s ease;
}

.time-slots button:hover,
.time-slots button.active{
   background:var(--navy);
   color:var(--white);
}
.booking-wrapper{
   position: relative;
   z-index: 2;
}
/* =========================================
   INLINE BOOKING
========================================= */

.inline-booking{
   display: none;
   margin-top: 50px;
   animation: fadeUp .4s ease;
}

.inline-booking.active{
   display: block;
}

.booking-wrapper{
   background: var(--white);
   border-radius: 12px;
   padding: 40px;
   border: 1px solid var(--line);
   box-shadow: var(--shadow);
}

.booking-top{
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 36px;
}

.close-inline-booking{
   width: 42px;
   height: 42px;
   border: none;
   border-radius: 50%;
   cursor: pointer;
   background: #f1f5f9;
   font-size: 28px;
}

.booking-layout{
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 40px;
}

@media(max-width:980px){

   .booking-layout{
      grid-template-columns: 1fr;
   }

}
/* RESPONSIVE */

@media(max-width:980px){

   .coffee-grid{
      grid-template-columns:1fr;
   }

   .booking-layout{
      grid-template-columns:1fr;
   }

}
.field select{
    appearance: none;
    -webkit-appearance: none;

    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23666' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");

    background-repeat: no-repeat;

    background-size: 16px;

    background-position: right 18px center;

    padding-right: 50px;
}
.floating-content-card{
   margin-top: 32px;
   padding: 24px;
   border-radius: 10px;
   background: #f8fafc;
   border: 1px solid var(--line);
}

.floating-content-card strong{
   display: block;
   margin-bottom: 12px;
   color: var(--navy);
   font-size: 20px;
}

.floating-content-card p{
   margin: 0;
   color: var(--muted);
}

/* =========================================
   NAV DROPDOWN
========================================= */

.nav-dropdown{
   position: relative;
}

.dropdown-toggle{
   display: flex;
   align-items: center;
   gap: 6px;
   padding: 10px 12px;
   border-radius: 7px;
   color: #334155;
   font-weight: 700;
   font-size: 14px;
   transition: .2s ease;
}

.dropdown-toggle::after{
   content: "▾";
   font-size: 11px;
   margin-top: 2px;
}

.dropdown-toggle:hover{
   color: var(--navy);
   background: #eef3f8;
}

.dropdown-menu{
   position: absolute;
   top: calc(100% + 12px);
   left: 0;

   min-width: 250px;

   background: var(--white);

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

   border-radius: 10px;

   box-shadow: var(--shadow);

   padding: 10px;

   opacity: 0;
   visibility: hidden;
   transform: translateY(10px);

   transition: .25s ease;

   z-index: 200;
}

.dropdown-menu a{
   display: block;
   padding: 12px 14px;
   border-radius: 8px;
   color: var(--ink);
   font-size: 14px;
   font-weight: 700;
   transition: .2s ease;
}

.dropdown-menu a:hover{
   background: #f8fafc;
   color: var(--navy);
}

/* SHOW DROPDOWN */

.nav-dropdown:hover .dropdown-menu{
   opacity: 1;
   visibility: visible;
   transform: translateY(0);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width:980px){

   .nav-dropdown{
      width: 100%;
   }

   .dropdown-toggle{
      width: 100%;
      justify-content: space-between;
   }

   .dropdown-menu{
      position: relative;
      top: 8px;
      left: 0;

      opacity: 1;
      visibility: visible;
      transform: none;

      display: none;

      min-width: 100%;

      box-shadow: none;

      border: none;

      padding: 6px 0 0 12px;
   }

   .nav-dropdown:hover .dropdown-menu{
      display: block;
   }

}
/* =========================================
   ACTIVE NAV BAR
========================================= */

.nav-links > a,
.nav-dropdown > .dropdown-toggle{
   position: relative;
}


/* DEFAULT UNDERLINE */

.nav-links > a::before,
.nav-dropdown > .dropdown-toggle::before{

   content: "";

   position: absolute;

   left: 12px;
   right: 12px;
   bottom: -8px;

   height: 3px;

   border-radius: 20px;

   background: var(--gold);

   transform: scaleX(0);

   transform-origin: center;

   opacity: 0;

   transition:
      transform .25s ease,
      opacity .25s ease;

}

/* HOVER */

.nav-links > a:hover::before,
.nav-dropdown:hover > .dropdown-toggle::before{

   transform: scaleX(1);

   opacity: .45;

}

/* ACTIVE */

.nav-links > a.active::before,
.nav-dropdown > .dropdown-toggle.active::before{

   transform: scaleX(1);

   opacity: 1;

}


.dropdown-toggle.active{
   color: var(--navy);
   background: #eef3f8;
}
/* ACTIVE ANIMATION */

@keyframes navBar{

   from{
      transform: scaleX(0);
      opacity: 0;
   }

   to{
      transform: scaleX(1);
      opacity: 1;
   }

}

/* =========================================
   SALES PROCESS
========================================= */

.sales-process{
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 26px;
   margin-top: 60px;
}

.process-card{
   display: grid;
   /* grid-template-columns: 90px 1fr; */
   gap: 28px;

   padding: 34px;

   background: var(--white);

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

   border-radius: 14px;

   transition: .3s ease;

   box-shadow: 0 8px 24px rgba(11,31,58,.06);
}

.process-card:hover{
   transform: translateY(-4px);
   box-shadow: var(--shadow);
   border-color: rgba(201,154,53,.35);
}

.process-number{
   width: 70px;
   height: 70px;

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

   border-radius: 14px;

   background: var(--navy);

   color: var(--gold);

   font-size: 26px;
   font-weight: 900;
}

.process-content h3{
   margin-bottom: 14px;
   color: var(--navy);
   font-size: 28px;
}

.process-content p{
   margin-bottom: 20px;
   color: var(--muted);
}

@media(max-width:768px){

   .process-card{
      grid-template-columns: 1fr;
   }

}
.grid-btn{
  display: grid;
    grid-template-columns: 4fr 1fr;
}
/* =========================================
   BUYER'S AGENT — NEW SECTIONS
   Add these rules to your existing CSS file
========================================= */

/* FAQ accordion items */
.faq-item {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

/* Gold top-border reveal on card hover */
.card {
    position: relative;
}

.card::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.card:hover::after {
    transform: scaleX(1);
}

/* Benefits / risks panels */
.buyer-benefits-panel {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 36px 32px;
}

.buyer-risks-panel {
    background: #fff8f5;
    border: 1px solid #f2d5c8;
    border-radius: var(--radius);
    padding: 36px 32px;
}

/* Check-list inside navy panels */
.buyer-benefits-panel .check-list li {
    color: rgba(255, 255, 255, .85);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    padding-bottom: 12px;
}

.buyer-benefits-panel .check-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.buyer-benefits-panel .check-list li::before {
    background: rgba(201, 154, 53, .2);
    color: var(--gold);
}

/* Sticky FAQ sidebar */
@media (max-width: 980px) {
    .faq-sidebar {
        position: relative !important;
        top: auto !important;
    }
}