/* Base styles */
:root {
  --primary-color: #d4a84f;
  --primary-dark: #c69a44;
  --text-dark: #1a1a1a;
  --text-light: #666;
  --white: #fff;
  --max-width: 1280px;
  --nav-height: 80px;
  --header-height: 40px;
  --border-radius: 8px;
  --transition: all 0.3s ease;
  --mobile-nav-height: 70px;
  --hamburger-width: 24px;
  --hamburger-height: 2px;
  --hamburger-gap: 6px;
}

/* Listing pages */
.listing-hero {
  background: linear-gradient(120deg, rgba(212,168,79,0.18), rgba(0,0,0,0.65)), url('img/Hero.jpg') center/cover no-repeat;
  color: #fff;
  padding: 6rem 2rem 4rem;
  text-align: left;
}

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

.listing-hero h1 {
  font-size: 3rem;
  margin: 0.3rem 0 0.5rem;
}

.listing-hero .lead {
  opacity: 0.9;
  max-width: 680px;
}

.listing-hero-sale {
  background: linear-gradient(135deg, rgba(212,168,79,0.22), rgba(0,0,0,0.65)), url('img/Hero.jpg') center/cover no-repeat;
}

.listing-hero-lease {
  background: linear-gradient(135deg, rgba(33,150,243,0.28), rgba(0,0,0,0.65)), url('img/Hero.jpg') center/cover no-repeat;
}

.listing-switch {
  display: inline-flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background: rgba(255,255,255,0.08);
}

.pill.active {
  background: #fff;
  color: var(--text-dark);
  border-color: #fff;
}

.pill.subtle {
  background: #f5f5f5;
  color: var(--text-dark);
  border-color: #e0e0e0;
}

.pill.outline {
  background: transparent;
  color: var(--text-dark);
  border-color: #ddd;
}

.listing-page {
  max-width: var(--max-width);
  margin: -2rem auto 3rem;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.filters-panel {
  background: #fff;
  padding: 1.75rem;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.filters-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.filters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: 0.95rem;
}

.btn-link {
  background: none;
  border: none;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
}

.btn-ghost {
  margin-top: 1rem;
  background: #f8f8f8;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 0.85rem 1.2rem;
  cursor: pointer;
  font-weight: 600;
}

.more-filters {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  background: #fafafa;
  padding: 1rem;
  border-radius: 10px;
  border: 1px dashed #e0e0e0;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  font-size: 0.9rem;
}

.results-panel {
  margin-top: 1rem;
}

.properties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  overflow: hidden;
}

.loading-card, .empty-card {
  padding: 2rem;
  text-align: center;
}

.property-card__image {
  position: relative;
  padding-top: 60%;
  background-size: cover;
  background-position: center;
}

.status-badge.sale {
  background: #d4a84f;
}

.status-badge.lease {
  background: #2196f3;
}

.status-badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  color: #fff;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
}

.property-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.property-card__meta {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.property-card__stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-light);
}

.property-card__stats i {
  margin-right: 0.35rem;
  color: var(--primary-color);
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.muted {
  color: var(--text-light);
}

.eyebrow {
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  opacity: 0.85;
}

/* Footer */
.site-footer {
  background: #0f0f0f;
  color: #e8e8e8;
  padding: 3rem 2rem 2rem;
  margin-top: 3rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.footer-logo {
  height: 56px;
  margin-bottom: 0.8rem;
  filter: brightness(100%);
}

.footer-contact a,
.footer-links a {
  display: block;
  color: #e8e8e8;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.footer-links h4,
.footer-cta h4 {
  margin-bottom: 0.6rem;
}

.footer-cta p {
  margin-bottom: 0.9rem;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 34px rgba(0,0,0,0.3);
}

.footer-button:active {
  transform: translateY(0);
  box-shadow: 0 10px 26px rgba(0,0,0,0.22);
}

.footer-form {
  display: flex;
  gap: 0.6rem;
  margin: 0.8rem 0;
}

.footer-form input {
  flex: 1;
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  border: 1px solid #333;
  background: #1c1c1c;
  color: #fff;
}

.footer-form button {
  background: var(--primary-color);
  border: none;
  color: #fff;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
}

.footer-social a {
  color: #e8e8e8;
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid #222;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-bottom a {
  color: #e8e8e8;
  text-decoration: none;
  margin-left: 0.8rem;
}

/* NDIS page */
.ndis-page {
  background: #f7f7f7;
  padding-bottom: 2rem;
}

.ndis-hero {
  min-height: 70vh;
}

.ndis-hero .hero-grid {
  justify-items: flex-start;
}

.ndis-hero .hero-left {
  text-align: left;
  align-items: flex-start;
  gap: 1.1rem;
}

.ndis-hero .hero-actions {
  justify-content: flex-start;
}

.ndis-hero .hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ndis-hero .pill {
  border-color: rgba(255,255,255,0.4);
  color: #fff;
  background: rgba(0,0,0,0.3);
  font-size: 0.95rem;
}

.ndis-hero .pill i {
  font-size: 0.55rem;
}

.ndis-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 12px 38px rgba(0,0,0,0.06);
  margin-bottom: 5rem;
  padding: 2rem;
}

.ndis-section--muted {
  background: linear-gradient(180deg, #fff8ec 0%, #ffffff 85%);
  border-color: #f1e4c9;
}

.ndis-grid {
  display: grid;
  gap: 1.5rem;
  align-items: flex-start;
}

.ndis-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.ndis-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.ndis-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.25rem 1.35rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
  display: grid;
  gap: 0.65rem;
}

.ndis-card.highlight {
  border-color: #e2c889;
  background: linear-gradient(180deg, #fff8ec 0%, #ffffff 75%);
  box-shadow: 0 16px 42px rgba(212,168,79,0.18);
}

.ndis-list {
  list-style: none;
  padding-left: 0;
  display: grid;
  gap: 0.55rem;
  color: var(--text-light);
}

.ndis-list li {
  position: relative;
  padding-left: 1.1rem;
}

.ndis-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

.ndis-list.compact {
  gap: 0.35rem;
}

.ndis-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(212,168,79,0.12);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.ndis-steps {
  display: grid;
  gap: 1rem;
}

.ndis-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1rem 1.15rem;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0,0,0,0.04);
}

.step-number {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(212,168,79,0.35);
}

.ndis-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}

.download-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.download-card {
  padding: 1.25rem 1.3rem;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 10px 32px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  justify-content: space-between;
}

.download-card .btn-primary {
  width: max-content;
}

.ndis-note {
  margin-top: 0.75rem;
  font-size: 0.95rem;
}

.ndis-cta {
  margin-top: 1rem;
}

@media (max-width: 768px) {
  .ndis-hero {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }

  .ndis-hero .hero-left h1 {
    font-size: 2.4rem;
  }

  .ndis-section {
    padding: 2.5rem 1.5rem;
  }
}

/* About page */

.about-page {
  background: #f7f7f7;
  padding: 3.5rem 0 3.5rem;
}

.about-hero {
  min-height: 55vh;
  background: linear-gradient(135deg, rgba(0,0,0,0.5), rgba(0,0,0,0.28));
  padding: 3rem 0 2.5rem;
}

.about-hero .hero-grid {
  justify-items: center;
  align-items: center;
}

.about-hero-copy {
  text-align: center;
  align-items: center;
  gap: 0.8rem;
  max-width: 760px;
}

.about-hero-copy h1 {
  font-size: 2.7rem;
}

.about-hero .hero-actions {
  justify-content: center;
}


.section.about-section {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.05);
  margin: 3rem auto 4rem;
  padding: 2.5rem 2.1rem;
  position: relative;
  overflow: hidden;
}

.about-section--muted {
  background: linear-gradient(180deg, #fffaf2 0%, #ffffff 90%);
  border-color: #f1e4c9;
}


.section.about-section:first-of-type {
  margin-top: 2.8rem;
}

.section.about-section + .section.about-section {
  margin-top: 4rem;
}


.about-grid {
  display: grid;
  gap: 2rem;
  align-items: flex-start;
}

.about-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.about-grid.three-col {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.about-copy p + p {
  margin-top: 0.75rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.8rem;
  align-items: stretch;
}

.about-card {
  background: #f9f9f9;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  box-shadow: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-card h3 {
  margin: 0;
  font-size: 1.05rem;
}

.about-card p {
  margin: 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.about-card h3 {
  margin: 0.2rem 0;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: stretch;
  justify-content: flex-start;
}

.team-card {
  display: grid;
  gap: 0.28rem;
  padding: 0.55rem;
  text-align: left;
  width: 100%;
  max-width: 220px;
  flex: 1 0 190px;
  height: 100%;
  border: 1px solid #eee;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
  background: #fff;
}

.team-card__media {
  width: 100%;
  aspect-ratio: 4 / 5;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #f4f4f4;
}

.team-card__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 1.4rem;
  background: #f1f1f1;
}

.team-card__body {
  display: grid;
  gap: 0.2rem;
}

.team-card__position {
  color: var(--text-light);
  font-size: 0.95rem;
}

.team-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.team-card__actions .pill {
  border-color: #e5e5e5;
  color: #1a1a1a;
  background: #f9f9f9;
}

.team-card__actions .pill:hover {
  background: #efefef;
}

.profile-page {
  background: #f7f7f7;
  padding: 3rem 0 3.5rem;
}

.profile-actions-inline {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin: 0.4rem 0 0.6rem;
}

.profile-actions-inline .btn-primary,
.profile-actions-inline .btn-secondary {
  border-radius: 12px;
  padding: 0.75rem 1.3rem;
  font-weight: 700;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
}

.profile-actions-inline .btn-secondary {
  border: 1px solid #ddd;
}

.profile-section {
  padding: 0 2rem;
}

.profile-card {
  display: block;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  max-width: 1080px;
  margin: 0 auto;
  padding: 1.8rem 1.8rem 1.4rem;
}

.profile-media {
  float: left;
  width: clamp(170px, 24vw, 280px);
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  overflow: hidden;
  background: #f2f2f2;
  margin: 0 1.4rem 1rem 0;
}

.profile-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-body {
  display: grid;
  gap: 0.65rem;
}

.profile-position {
  color: var(--text-light);
  font-weight: 600;
}

.profile-bio {
  color: var(--text-dark);
  line-height: 1.7;
  white-space: pre-line;
}

.profile-contacts {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.6rem;
  clear: both;
}

@media (max-width: 768px) {
  .profile-card {
    padding: 1.2rem 1.2rem 1rem;
  }

  .profile-media {
    float: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 1rem auto;
    display: block;
  }

  .profile-body {
    gap: 0.55rem;
  }
}

.team-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.team-modal.open {
  display: flex;
}

.team-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(2px);
}

.team-modal__dialog {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 720px;
  width: calc(100% - 2.5rem);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: 0 24px 60px rgba(0,0,0,0.2);
  z-index: 1;
}

.team-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  color: #444;
}

.team-modal__content {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.team-modal__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f4f4;
}

.team-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-modal__info {
  display: grid;
  gap: 0.65rem;
}

.team-modal__contacts {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .about-hero {
    min-height: auto;
    padding: 2.5rem 0 3rem;
  }

  .about-hero-copy h1 {
    font-size: 2.4rem;
  }

  .section.about-section {
    padding: 2.2rem 1.4rem;
    margin: 2.2rem auto 2.8rem;
  }

  .team-modal__content {
    grid-template-columns: 1fr;
  }

  .team-modal__dialog {
    padding: 1rem;
  }
}

@media (max-width: 768px) {
  .filters-top {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .listing-hero h1 {
    font-size: 2.4rem;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: calc(var(--header-height) + var(--nav-height));
}

h1, h2, h3 {
  font-family: 'Poppins', sans-serif;
}

/* Top Header Bar */
.header-top {
  background: var(--text-dark);
  color: var(--white);
  height: var(--header-height);
  font-size: 0.875rem;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1300;
  transition: transform 0.25s ease;
}

.header-top.hidden {
  transform: translateY(-100%);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header-contact a {
  color: var(--white);
  text-decoration: none;
  margin-right: 1.5rem;
  opacity: 0.9;
  transition: var(--transition);
}

.header-contact a:hover {
  opacity: 1;
  color: var(--primary-color);
}

.header-social a {
  color: var(--white);
  text-decoration: none;
  margin-left: 1rem;
  opacity: 0.9;
  transition: var(--transition);
}

.header-social a:hover {
  opacity: 1;
  color: var(--primary-color);
}

/* Main Navigation */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  z-index: 1250;
  height: var(--nav-height);
  transition: var(--transition);
  width: 100%;
}

body.utility-hidden {
  padding-top: var(--nav-height);
}

body.utility-hidden .navbar {
  top: 0;
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: var(--max-width);
  height: var(--nav-height);
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  height: 50px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.logo img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.nav-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.nav-links {
  list-style: none;
  display: inline-flex;
  gap: 3rem;
  margin: 0;
  padding: 0;
  justify-content: center;
  align-items: center;
  height: 100%;
  background: var(--white);
}

.nav-item {
  position: relative;
  height: var(--nav-item-height, 2.5rem);
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  padding: 0.5rem 0;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-right: 0.8rem;
}

.dropdown > a i {
  font-size: 0.7rem;
  transition: transform 0.2s ease;
  margin-top: 1px;
  opacity: 0.75;
}

.dropdown:hover > a i {
  transform: rotate(-180deg);
  opacity: 1;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -1rem;
  background: var(--white);
  min-width: 220px;
  padding: 0.8rem 0;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
}

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

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.5rem;
  color: var(--text-dark);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(212,168,79,0.08);
  color: var(--primary-color);
}

.dropdown-menu a::after {
  display: none;
}

.nav-right {
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.nav-contact:hover {
  opacity: 0.85;
}

.nav-contact i {
  font-size: 1.1rem;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 96vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
  padding: 3.5rem 0 4.5rem;
  margin-top: 0;
}

body.has-top-bar .hero {
  padding-top: 3.5rem;
}

.hero-modern .hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.6) 100%);
}

.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0.2));
  z-index: -1;
}

.hero-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 1.5rem;
  justify-items: center;
}

.hero-copy,
.hero-left {
  max-width: 760px;
  text-align: center;
  display: grid;
  gap: 0.85rem;
}

.hero-copy h1,
.hero-left h1 {
  font-size: 3.8rem;
  font-weight: 700;
  margin: 0.4rem 0 0.8rem;
  letter-spacing: -0.4px;
}

.hero-copy .lead,
.hero-left .lead {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  margin-bottom: 1.1rem;
  max-width: 640px;
  justify-self: center;
}

.hero-actions {
  display: inline-flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.hero-actions a {
  text-decoration: none;
}

/* Stat tiles */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1.5rem 0 2rem;
  max-width: 900px;
  justify-content: center;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.section-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.section-actions .btn-primary,
.section-actions .btn-secondary {
  min-width: 160px;
  text-align: center;
}

.hero-right {
  display: flex;
  justify-content: flex-end;
}

.hero-search {
  background: rgba(0,0,0,0.45);
  padding: 1.25rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  display: grid;
  gap: 1rem;
  box-shadow: 0 32px 70px rgba(0,0,0,0.36);
  width: 100%;
  max-width: 520px;
}

.hero-search--pill {
  box-shadow: 0 32px 70px rgba(0,0,0,0.35);
}

.hero-search__inputs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.8rem;
  align-items: center;
}

.stat-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(17,17,17,0.52);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 22px 45px rgba(0,0,0,0.35);
  min-height: 118px;
  text-align: center;
  backdrop-filter: blur(4px);
  transition: transform 0.2s ease, border-color 0.2s ease;
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 240px;
}

.hero-stats--pill .stat-chip {
  background: rgba(0,0,0,0.42);
}

.stat-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.4);
}

.stat-chip span {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.4px;
}

.stat-chip p {
  margin: 0.15rem 0 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.98rem;
  line-height: 1.4;
}

.btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.7rem;
  border-radius: 14px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  min-height: 58px;
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.3);
}

.btn-search i {
  font-size: 1rem;
}

.hero-search__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.8rem;
}

.segmented {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.18);
  overflow: hidden;
  background: rgba(0,0,0,0.45);
}

.segmented__btn {
  background: transparent;
  border: none;
  color: #fff;
  padding: 0.75rem 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.segmented__btn.active {
  background: #fff;
  color: var(--text-dark);
}

.hero-search select {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23ffffff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.hero-search select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(212,168,79,0.25);
}

.btn-primary, .btn-secondary {
  border: none;
  padding: 0.9rem 1.7rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.btn-primary {
  background: #d4a84f;
  color: white;
  box-shadow: 0 4px 8px rgba(212,168,79,0.3);
}

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

.btn-primary.ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: none;
}

.btn-secondary {
  background: white;
  color: #222;
}

.btn-secondary:hover {
  background: #f2f2f2;
}

.btn-secondary.ghost {
  background: transparent;
  .form-note {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.75);
  }
  min-height: 180px;
  background-size: cover;
  background-position: center;
}

.hero-spotlight__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-spotlight__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(0,0,0,0.55);
  padding: 0.55rem 0.9rem;
  border-radius: 10px;
  font-weight: 700;
}

.hero-spotlight__content {
  padding: 1.2rem;
  color: #fff;
  display: grid;
  gap: 0.5rem;
}

.hero-spotlight__content h3 {
  margin: 0;
}

.hero-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.8rem;
}

.mini-card {
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(2px);
}

.mini-card h4 {
  margin: 0.2rem 0 0.4rem;
}

.mini-card.sale {
  background: linear-gradient(135deg, rgba(212,168,79,0.35), rgba(0,0,0,0.45));
}

.mini-card.lease {
  background: linear-gradient(135deg, rgba(33,150,243,0.3), rgba(0,0,0,0.45));
}

/* Generic sections */
.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section h2 {
  margin: 0.3rem 0;
}

.lead {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0.5rem 0 1rem;
}

.btn-link-arrow {
  color: var(--primary-color);
  font-weight: 700;
  text-decoration: none;
}

/* Home featured listings */
.listings-showcase {
  margin-top: -2rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

/* Horizontal Carousel Section */
.horizontal-carousel-section {
  width: 100%;
}

.horizontal-carousel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 0 2rem;
}

.horizontal-carousel-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-dark);
}

.horizontal-carousel-wrapper {
  position: relative;
  padding: 0 5rem;
}

.horizontal-carousel {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 1rem 0;
}

.horizontal-carousel::-webkit-scrollbar {
  display: none;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1a1a1a;
  border: none;
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-nav-btn:hover {
  background: var(--primary-color);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav-btn:active {
  transform: translateY(-50%) scale(0.95);
}

.carousel-nav-btn.prev {
  left: 0;
}

.carousel-nav-btn.next {
  right: 0;
}

.carousel-nav-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel-nav-btn:disabled:hover {
  background: #1a1a1a;
  transform: translateY(-50%);
}

/* Property Card */
.property-card {
  flex: 0 0 280px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.card-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}

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

.card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: #fff;
  background: #1f1f1f;
  text-transform: capitalize;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.card-badge.active { background: #1f7a3d; }
.card-badge.upcoming { background: #d4a84f; }
.card-badge.completed { background: #607d8b; }

.card-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.card-meta-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.25rem;
}

.card-meta {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--text-light);
  font-weight: 600;
}

/* Property card as link on listing pages */
.property-card-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.property-card-link:visited {
  color: inherit;
}

.property-card__image {
  width: 100%;
  height: 200px;
  background-color: #e0e0e0;
  background-size: cover;
  background-position: center;
  position: relative;
}

.property-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary-color);
  color: #fff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.property-card__body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.property-card__type {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.property-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-dark);
  line-height: 1.3;
}

.property-card__location {
  font-size: 0.9rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.property-card__location i {
  color: var(--primary-color);
  font-size: 0.85rem;
}

.property-card__price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: auto;
  padding-top: 0.5rem;
}

.property-card__footer {
  padding: 0.75rem 1.25rem;
  border-top: 1px solid #f0f0f0;
  font-size: 0.85rem;
  color: var(--text-light);
}

.stacked-nav {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 0.6rem;
  align-items: center;
  justify-items: center;
}

.stacked-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e9d9b9;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  transition: var(--transition);
}

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

.stacked-count {
  font-weight: 700;
  color: var(--text-dark);
}

/* About section */
.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.feature-list li {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  color: var(--text-light);
}

.feature-list i {
  color: var(--primary-color);
  margin-top: 4px;
}

.about-card {
  background: linear-gradient(135deg, #fff8ea, #ffffff);
  border: 1px solid #f0e3c8;
  border-radius: 14px;
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

.about-grid {
  align-items: stretch;
}

.about-visual {
  display: grid;
  gap: 1rem;
}

.image-frame {
  position: relative;
  height: 260px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, #111, #333);
}

.image-placeholder {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,168,79,0.25), rgba(0,0,0,0.7));
}

.frame-label {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  background: rgba(255,255,255,0.12);
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
  color: #fff;
  font-weight: 700;
}

.image-card {
  background: #fff;
  border: 1px solid #eee0c6;
  border-radius: 12px;
  padding: 1rem 1.1rem;
  box-shadow: 0 12px 28px rgba(0,0,0,0.07);
}

.stat h3 {
  margin: 0;
  font-size: 2rem;
}

.stat p {
  margin: 0;
  color: var(--text-light);
}

.cta-inline {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
}

.service-card {
  padding: 1.2rem;
  min-height: 200px;
}

.service-card.with-media {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 1rem;
  align-items: center;
}

.service-media {
  height: 100%;
  min-height: 140px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212,168,79,0.22), rgba(0,0,0,0.75));
}

.service-copy p {
  color: var(--text-light);
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(212,168,79,0.12);
  color: var(--primary-color);
  display: grid;
  place-items: center;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

/* CTA */
.cta {
  background: linear-gradient(120deg, #1f1f1f, #2d2d2d);
  color: #fff;
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: 0 14px 45px rgba(0,0,0,0.25);
}

.cta-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  align-items: center;
}

.cta .lead {
  color: rgba(255,255,255,0.85);
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* Project Sales Section */
.project-sales-section {
  width: 100%;
  max-width: none;
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #f1f2f4 10%, #f1f2f4 100%);
  position: relative;
  overflow: hidden;
}

.project-sales-section::before {
  content: '';
  display: none;
}

.project-sales-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 4.5rem 2rem 4.5rem;
}

.section-header.centered {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.project-sales-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.project-sales-title {
  font-size: 2.85rem;
  margin: 0.1rem 0 0.2rem;
  letter-spacing: -0.5px;
}

.project-sales-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0.2rem 0;
  color: var(--text-dark);
}

.project-sales-body {
  max-width: 720px;
  margin: 0.4rem auto 0;
  line-height: 1.7;
}

.project-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.project-feature-card {
  background: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(212, 168, 79, 0.1);
  position: relative;
  overflow: hidden;
}

.project-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.project-feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(212, 168, 79, 0.15);
  border-color: rgba(212, 168, 79, 0.3);
}

.project-feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color) 0%, #c69a44 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  box-shadow: 0 8px 20px rgba(212, 168, 79, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(212, 168, 79, 0.35);
}

.project-feature-card h3 {
  font-size: 1.4rem;
  margin: 0 0 1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.project-feature-card p {
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

.project-cta {
  text-align: center;
  margin-top: 1rem;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  margin-left: auto;
  font-size: 1.5rem;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.mobile-menu-toggle:hover {
  color: var(--primary-color);
}

.mobile-menu-toggle i {
  display: block;
  line-height: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 1180px) {
  body.has-top-bar .navbar {
    top: 0;
  }

  .header-top {
    display: none;
  }

  body {
    padding-top: var(--mobile-nav-height);
  }

  .navbar {
    height: var(--mobile-nav-height);
    top: 0;
  }

  .nav-container {
    padding: 0 1.5rem;
  }

  .hero-shell {
    padding: 0 1.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .hero-left {
    text-align: center;
  }

  .hero-copy h1,
  .hero-left h1 {
    font-size: 2.25rem;
    padding: 0;
    text-align: center;
  }

  .hero-copy .lead,
  .hero-left .lead {
    font-size: 0.95rem;
    padding: 0;
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: auto;
    min-width: 150px;
    max-width: none;
    text-align: center;
    padding: 0.75rem 1.35rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat-chip {
    min-height: 130px;
  }
  
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1002;
    background: none;
    border: none;
    padding: 0.5rem;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
  }

  .mobile-menu-toggle:hover {
    color: var(--primary-color);
  }

    .nav-wrapper {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    display: block !important;
    transform: none !important;
  }

  .nav-wrapper.active {
    opacity: 1;
    visibility: visible;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--white);
    padding: 5rem 0 2rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0,0,0,0.1);
    display: flex !important;
  }

  .nav-wrapper.active .nav-links {
    transform: translateX(0);
  }

  .nav-wrapper.active .nav-links {
    transform: translateX(0);
  }

  .nav-item {
    height: auto;
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
  }

  .nav-item > a {
    padding: 1.2rem 1.5rem;
    font-size: 1rem;
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-menu {
    position: static !important;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 0.5rem 0;
    background: #f0f0f0;
    display: none;
    width: 100%;
    margin: 0;
    top: auto !important;
    left: auto !important;
    border-left: 3px solid var(--primary-color);
  }

  .dropdown-menu li {
    border-bottom: 1px solid rgba(0,0,0,0.08);
  }

  .dropdown-menu li:last-child {
    border-bottom: none;
  }

  .dropdown-menu li a {
    padding: 1rem 1.5rem 1rem 2rem;
    display: block;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: transparent;
  }

  .dropdown-menu a:hover {
    background: rgba(212,168,79,0.15);
  }

  .dropdown > a i {
    transform: rotate(-90deg);
    transition: transform 0.3s ease;
  }

  .dropdown.active > a i {
    transform: rotate(0);
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .nav-right {
    display: none;
  }

  /* Hero Section Mobile Styles */
  .hero-shell {
    padding: 0 1.2rem;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.1rem;
  }

  .hero-copy h1,
  .hero-left h1 {
    font-size: 2.25rem;
    padding: 0;
    text-align: center;
  }

  .hero-copy .lead,
  .hero-left .lead {
    font-size: 0.95rem;
    padding: 0;
    text-align: center;
  }

  .hero-left {
    text-align: center;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: auto;
    min-width: 150px;
    max-width: none;
    text-align: center;
    padding: 0.75rem 1.35rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .stat-chip {
    min-height: 135px;
  }

  .hero-stats {
    justify-items: center;
  }

  .hero-search {
    padding: 1rem 1.05rem;
    max-width: none;
  }

  .hero-search__inputs {
    grid-template-columns: 1fr;
  }

  .btn-search {
    width: 100%;
    justify-content: center;
  }

  /* Horizontal Carousel Mobile */
  .horizontal-carousel-header {
    padding: 0 1.5rem;
  }

  .horizontal-carousel-header h2 {
    font-size: 1.75rem;
  }

  .horizontal-carousel-wrapper {
    padding: 0 3.5rem;
  }

  .carousel-nav-btn {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
  }

  .property-card {
    flex: 0 0 260px;
  }

  .property-card__image {
    height: 180px;
  }

  .service-card.with-media {
    grid-template-columns: 1fr;
  }

  .project-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .project-feature-card {
    padding: 2rem 1.5rem;
  }

  .project-sales-section {
    padding: 3rem 1.25rem 3.25rem;
  }

  .project-sales-section .section-header.centered {
    margin-bottom: 2.4rem;
  }

  .project-sales-section .section-header.centered h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .project-sales-section .section-header.centered .lead {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 0.5rem;
  }

  .project-sales-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }

  .project-sales-subtitle {
    font-size: 1.05rem;
  }

  .feature-icon {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 5rem 0 3rem;
  }

  .hero-shell {
    padding: 0 1rem;
  }

  .hero-shell--center {
    justify-content: flex-start;
  }

  .hero-shell--split .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .hero-left {
    text-align: center;
    justify-items: center;
  }

  .hero-copy h1,
  .hero-left h1 {
    font-size: 2.2rem;
  }

  .hero-copy .lead,
  .hero-left .lead {
    font-size: 1rem;
  }

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
  }

  .hero-stats .stat-chip {
    min-height: auto;
    padding: 0.85rem 1rem;
  }

  .hero-search {
    padding: 1rem 0.9rem;
  }

  .hero-search__inputs {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .two-col,
  .services-grid,
  .cta-content {
    gap: 1rem;
  }

  .cta {
    padding: 1.8rem 1.5rem;
  }

  /* Horizontal Carousel Small Mobile */
  .horizontal-carousel-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 1rem;
  }

  .horizontal-carousel-header h2 {
    font-size: 1.5rem;
  }

  .horizontal-carousel-wrapper {
    padding: 0 3rem;
  }

  .carousel-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .property-card {
    flex: 0 0 240px;
  }

  .property-card__image {
    height: 160px;
  }

  .property-card__body {
    padding: 1rem;
  }

  .property-card__title {
    font-size: 1rem;
  }

  .property-card__price {
    font-size: 1.1rem;
  }
}

/* Property Detail Page */
.property-detail-page {
  background: #f8f9fa;
  min-height: 100vh;
}

.loading-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  gap: 1rem;
  color: var(--text-light);
}

.loading-state i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.property-detail-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.property-detail-header {
  margin-bottom: 1.5rem;
}

.btn-back {
  background: #fff;
  border: 1px solid #ddd;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-back:hover {
  background: #f5f5f5;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.property-hero-image {
  position: relative;
  width: 100%;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

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

.btn-view-images {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  border: none;
  padding: 0.85rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  backdrop-filter: blur(10px);
}

.btn-view-images:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
}

.property-detail-content {
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.property-header-group {
  margin-bottom: 2rem;
}

.property-status-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.property-status-badge.sale {
  background: rgba(212, 168, 79, 0.15);
  color: var(--primary-color);
}

.property-status-badge.lease {
  background: rgba(33, 150, 243, 0.15);
  color: #2196F3;
}

.property-status-badge.active {
  background: rgba(31, 122, 61, 0.15);
  color: #1f7a3d;
}

.property-status-badge.upcoming {
  background: rgba(212, 168, 79, 0.18);
  color: var(--primary-color);
}

.property-status-badge.completed {
  background: rgba(96, 125, 139, 0.18);
  color: #607d8b;
}

.property-header-group h1 {
  font-size: 2rem;
  margin: 0 0 0.5rem 0;
  color: var(--text-dark);
}

.property-subtitle {
  color: var(--text-light);
  margin: 0 0 0.75rem 0;
  font-size: 1.05rem;
}

.property-location {
  font-size: 1.1rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

.property-location i {
  color: var(--primary-color);
  font-size: 1rem;
}

.property-address {
  font-size: 1rem;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.5rem 0 0 0;
  font-weight: 500;
}

.property-address i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.property-price-card {
  background: linear-gradient(135deg, #fdf9f2, #ffffff);
  border: 2px solid var(--primary-color);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.price-value {
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary-color);
}

.property-key-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.detail-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  min-width: 30px;
}

.detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.detail-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
}

.detail-label {
  font-size: 0.85rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.property-description {
  margin-bottom: 2rem;
}

.property-description h2,
.property-features h2 {
  font-size: 1.35rem;
  margin: 0 0 0.85rem 0;
  color: var(--text-dark);
}

.property-description p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin: 0;
}

.property-features {
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}

.features-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 0.5rem 0;
}

.features-list i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.property-cta {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #fdf9f2, #ffffff);
  border-radius: 12px;
  border: 1px solid #f0e4cd;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.btn-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 250px;
  justify-content: center;
}

.cta-note {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
}

/* Contact page */
.contact-hero {
  min-height: 56vh;
  padding: 3.2rem 0 3.6rem;
  text-align: center;
}

.contact-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 90%);
}

.contact-hero .hero-copy h1 {
  margin: 0.3rem 0 0.6rem;
}

.contact-hero .hero-copy .lead {
  max-width: 620px;
}

.contact-section {
  max-width: var(--max-width);
  margin: 2.5rem auto 0;
  padding: 0 2rem 3.5rem;
  position: relative;
  z-index: 2;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  justify-items: center;
  gap: 1.25rem;
  align-items: stretch;
}

.contact-details {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.5rem 1.5rem 1.3rem;
  box-shadow: 0 16px 38px rgba(0,0,0,0.06);
  display: grid;
  gap: 0.9rem;
  align-content: start;
  width: 100%;
  max-width: 820px;
}

.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.95rem;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  background: #f9f9f9;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 700;
  transition: var(--transition);
}

.contact-pill:hover {
  border-color: var(--primary-color);
  box-shadow: 0 10px 24px rgba(212,168,79,0.18);
}

.contact-pill i {
  color: var(--primary-color);
}

.contact-meta {
  display: grid;
  gap: 0.25rem;
  color: var(--text-light);
}

.contact-meta i {
  color: var(--primary-color);
  margin-right: 0.5rem;
}

.contact-note {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.8rem 0.9rem;
  border-radius: 10px;
  background: #fffaf1;
  border: 1px dashed #f0e0b7;
  color: var(--text-dark);
}

.contact-note i {
  color: var(--primary-color);
  margin-top: 0.1rem;
}

.contact-form-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(0,0,0,0.08);
  padding: 1.6rem 1.6rem 1.4rem;
  display: grid;
  gap: 1rem;
  width: 100%;
  max-width: 820px;
}

.contact-form-header h3 {
  margin: 0.25rem 0 0;
}

.contact-form-card form {
  display: grid;
  gap: 0.95rem;
}

.form-row {
  display: grid;
  gap: 0.45rem;
}

.form-row.two-col {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.form-control {
  display: grid;
  gap: 0.35rem;
}

.contact-form-card label {
  font-weight: 600;
  color: var(--text-dark);
}

.contact-form-card input,
.contact-form-card select,
.contact-form-card textarea {
  width: 100%;
  padding: 0.8rem 0.95rem;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fdfdfd;
  font-size: 0.98rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(212,168,79,0.15);
}

.contact-form-card textarea {
  min-height: 140px;
  resize: vertical;
}

.form-hint {
  margin: 0.2rem 0 0;
  color: var(--text-light);
  font-size: 0.95rem;
}

.form-hint--privacy {
  text-align: center;
}

.form-actions {
  display: grid;
  gap: 0.5rem;
}

.full-width {
  width: 100%;
  text-align: center;
}

.form-status {
  display: none;
  align-items: center;
  gap: 0.4rem;
  color: var(--primary-dark);
  font-weight: 700;
}

.form-status.visible {
  display: inline-flex;
}

.form-status i {
  color: var(--primary-color);
}

.brand-section {
  max-width: var(--max-width);
  margin: 0 auto 4rem;
  padding: 0 2rem;
  display: grid;
  gap: 1.5rem;
}

.brand-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.6rem;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.brand-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 1.25rem 1.3rem;
  box-shadow: 0 14px 32px rgba(0,0,0,0.06);
  display: grid;
  gap: 0.45rem;
}

.brand-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(212,168,79,0.14);
  color: var(--primary-color);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .contact-hero {
    min-height: 62vh;
    padding: 2.8rem 0 3.2rem;
  }

  .contact-section {
    margin-top: -2.4rem;
    padding: 0 1.5rem 3rem;
  }

  .contact-grid {
    gap: 1rem;
  }

  .contact-pill {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .contact-hero .hero-copy,
  .contact-hero .hero-left {
    text-align: center;
    justify-items: center;
  }
}

/* Agent Contact Section */
.property-agents {
  margin-top: 2rem;
  padding: 2rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.property-agents h2 {
  font-size: 1.35rem;
  margin: 0 0 1.25rem 0;
  color: var(--text-dark);
}

.agents-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.agent-contact-card {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 10px;
  align-items: flex-start;
}

.agent-contact-card .agent-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.agent-contact-card .agent-photo-placeholder {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.agent-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.agent-details h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-dark);
}

.agent-title {
  font-size: 0.9rem;
  color: var(--text-light);
  margin: 0;
  font-style: italic;
}

.agent-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  background: #fff;
  border-radius: 6px;
  transition: all 0.3s ease;
  width: fit-content;
}

.contact-link:hover {
  background: var(--primary-color);
  color: #fff;
}

.contact-link i {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.contact-link:hover i {
  color: #fff;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
  left: -70px;
}

.lightbox-next {
  right: -70px;
}

.lightbox-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  padding: 0.5rem 1rem;
  border-radius: 20px;
}

/* Property Detail Mobile */
@media (max-width: 768px) {
  .property-detail-container {
    padding: 1rem;
  }

  .property-hero-image {
    height: 200px;
  }

  .property-detail-content {
    padding: 1.25rem;
  }

  .property-header-group h1 {
    font-size: 1.5rem;
  }

  .price-value {
    font-size: 1.5rem;
  }

  .property-key-details {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .features-list {
    grid-template-columns: 1fr;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }

  .lightbox-counter {
    bottom: 20px;
  }

  .agent-contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem;
  }

  .agent-details {
    align-items: center;
  }

  .agent-contact-info {
    align-items: center;
    width: 100%;
  }

  .contact-link {
    width: 100%;
    justify-content: center;
  }
}
