:root {
  --pink: #f9006d;
  --navy: #09275d;
  --pale: #fff4f8;
  --line: #dce4f0;
  --ink: #10285d;
  --fs-body: 13px;
  --fs-h1: 32px;
  --fs-h2: 21px;
  --fs-h2-section: 21px;
  --fs-eyebrow: 10px;
  --fs-nav: 10px;
  --fs-btn: 11px;
  --fs-hero-copy: 10px;
  --fs-stat-b: 14px;
  --fs-stat-s: 9px;
  --fs-card-h3: 11px;
  --fs-card-price: 14px;
  --fs-grid-title: 9px;
  --fs-explore-tab: 9px;
  --fs-link: 9px;
  --fs-footer: 8px;
  --hero-min: 400px;
  --hero-content-min: 320px;
  --card-img-h: 194px;
  --loc-img-h: 167px;
  --center-img-h: 160px;
  --section-py: 17px;
  --container-px: 12px;
  --logo-h: 36px;
  --search-min-h: 39px;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
.card-image img,
.location-grid img,
.hero-bg {
  max-width: none;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: Poppins, Arial, sans-serif;
  color: var(--ink);
  font-size: var(--fs-body);
  font-weight: 400;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Poppins, Arial, sans-serif;
  letter-spacing: 0.3px;
  font-weight: 600;
}
h2 {
  font-size: var(--fs-h2);
  margin: 0;
}
.container {
  max-width: 1150px;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}
.navbar {
  min-height: 57px;
}
.navbar-brand,
.footer-logo {
  display: flex;
  align-items: center;
}
.navbar-brand img,
.footer-logo img {
  display: block;
  height: var(--logo-h);
  width: auto;
}
.footer-logo img {
  height: calc(var(--logo-h) - 4px);
}
.nav-link,
.nav-actions a {
  font-size: 15px;
  font-weight: 500;
  color: #0b2860 !important;
  padding-left: 9px !important;
  padding-right: 9px !important;
  letter-spacing: 1px;
}

.bc-card-actions .btn-outline-pink {
  margin-top: 0px;
}

.navbar .dropdown-menu {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 0;
  box-shadow: 0 8px 24px #213e6d1f;
  margin-top: 6px;
}
.navbar .dropdown-item {
  font-family: Poppins, Arial, sans-serif;
  font-size: var(--fs-nav);
  font-weight: 500;
  color: var(--navy);
  padding: 8px 16px;
}
.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
  background: #fff4f8;
  color: var(--pink);
}
.navbar .dropdown-toggle::after {
  vertical-align: 0.15em;
}
.nav-actions {
  white-space: nowrap;
}
.nav-actions a {
  padding: 0 !important;
}
.nav-actions .btn {
  padding: 12px 18px !important;
  border: 2px solid #09275d !important;
  color: #09275d !important;
}
.btn {
  border-radius: 4px;
  font-family: Poppins, Arial, sans-serif;
  font-size: var(--fs-btn);
  font-weight: 600;
  padding: 11px 17px;
}
.btn-pink {
  background: transparent;
  border-color: #172554;
  color: #172554;
  border: 2px solid;
  letter-spacing: 0.5px;
}
.btn-pink:hover {
  background: transparent;
  border-color: #172554 !important;
  color: #172554 !important;
}
.hero {
  min-height: var(--hero-min);
  position: relative;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.86) 33%,
    rgba(255, 255, 255, 0.08) 68%
  );
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  padding-top: 16px;
  position: relative;
  min-height: var(--hero-content-min);
  padding-bottom: 20px;
  z-index: 2;
}
.eyebrow {
  color: #594193;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 1.1px;
  margin: 0 0 2px;
}
.eyebrow span {
  color: #5f6e8e;
}
.hero h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}
.hero h1 strong,
.explore h2 strong {
  color: #172554;
}
.hero-copy {
  font-size: 15px;
  line-height: 1.6;
  max-width: 330px;
  margin: 11px 0 0;
  letter-spacing: 0.5px;
}
.watch {
  font-weight: 600;
  font-size: var(--fs-btn);
}
.watch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--pink);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  box-shadow: 0 2px 8px #7d8bb366;
  margin-right: 8px;
}
.watch .fa-play {
  font-size: 9px;
}
.hero-search-wrap {
  position: relative;
  bottom: -29px;
  left: 0;
  width: 100%;
  z-index: 3;
}
.hero-tabs {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  margin: 0;
  padding: 0;
  background: transparent;
  width: auto;
}
.hero-tabs button {
  border: 0;
  text-align: center;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 10px;
  font-weight: 600;
  background: transparent;
  color: #000000;
  cursor: pointer;
  border-radius: 8px 8px 0 0;
  white-space: nowrap;
}
.hero-tabs .active {
  background: #172554;
  color: #fff;
}
.search-box {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 0 8px 8px 8px;
  box-shadow: 0 5px 17px #213e6d23;
  overflow: visible;
  width: 74%;
}
.search-field {
  flex: 1;
  min-width: 0;
  position: relative;
}
.search-divider {
  width: 1px;
  background: var(--line);
  align-self: stretch;
  margin: 10px 0;
  flex-shrink: 0;
}
.custom-select {
  position: relative;
  height: 100%;
}
.select-trigger {
  width: 100%;
  height: 100%;
  min-height: var(--search-min-h);
  border: 0;
  border-radius: 0;
  padding: 8px 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  text-align: left;
  background: #fff;
  color: var(--navy);
  font-family: inherit;
  cursor: pointer;
}
.select-trigger > i:first-child {
  font-size: 16px;
  color: var(--navy);
  flex-shrink: 0;
}
.select-trigger span {
  font-size: 9px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}
.select-trigger small {
  display: block;
  color: #667492;
  font-size: 8px;
  font-weight: 400;
  margin-top: 2px;
}
.select-trigger > i:last-child {
  font-size: 8px;
  color: #667492;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.custom-select.is-open .select-trigger {
  background: #fff8fb;
}
.custom-select.is-open .select-trigger > i:last-child {
  transform: rotate(180deg);
}
.select-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 5px);
  left: 0;
  right: 0;
  display: none;
  padding: 5px;
  background: #fff;
  border: 1px solid #e0e5ee;
  border-radius: 4px;
  box-shadow: 0 8px 18px #152d5d2e;
}
.custom-select.is-open .select-menu {
  display: block;
}
.select-menu button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 3px;
  padding: 7px 8px;
  background: #fff;
  color: var(--navy);
  font:
    500 9px Poppins,
    Arial,
    sans-serif;
  text-align: left;
  cursor: pointer;
}
.select-menu button:hover,
.select-menu button[aria-selected="true"] {
  color: var(--pink);
  background: #fff0f6;
}
.search-btn {
  flex-shrink: 0;
  border: 0;
  border-radius: 0 8px 8px 0;
  padding: 0 26px !important;
  height: auto !important;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
}
.stats {
  padding: 44px 0 18px;
}
.stat {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 13px;
  border-right: 1px solid #ced8e6;
}
.stat:last-child {
  border: 0;
}
.stat > i {
  font-size: 28px;
  color: var(--pink);
}
.stat p {
  margin: 0;
  line-height: 1.1;
}
.stat b {
  font-size: 23px;
  display: block;
}
.stat span {
  font-size: 16px;
  display: block;
  margin-top: 6px;
  letter-spacing: 1px;
}
.section {
  padding: var(--section-py) 0;
}
.section.compact {
  padding-top: 5px;
}
.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 6px;
}
.section-title h2 {
  font-size: 26px;
  letter-spacing: 0.5px;
  margin-top: 7px;
  float: left;
  width: 100%;
}
.section-title > a,
.all-link {
  font-size: var(--fs-eyebrow);
  color: #13234e;
  font-weight: 600;
  white-space: nowrap;
}
.section-title > a i {
  margin-left: 7px;
}
.office-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  background: #fff;
}
.card-image {
  height: var(--card-img-h);
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.status {
  position: absolute;
  left: 8px;
  top: 7px;
  z-index: 1;
  color: #fff;
  background: #087855;
  border-radius: 12px;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 600;
}
.status.featured {
  background: var(--pink);
}
.card-image button {
  position: absolute;
  right: 7px;
  top: 7px;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  background: #fff;
  color: var(--navy);
}
.office-info {
  padding: 6px 10px 8px;
}
.office-info h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.office-info p {
  font-size: calc(var(--fs-body) - 5px);
  margin: 3px 0;
  color: #607093;
}
.office-info p i {
  color: var(--pink);
}
.office-info strong {
  color: #13234e;
  font-size: var(--fs-card-price);
  letter-spacing: 0.5px;
}
.office-info strong em {
  font-size: 9px;
  color: var(--navy);
  font-weight: 500;
  font-style: normal;
}
.features {
  display: flex;
  gap: 11px;
  font-size: 8px;
  margin: 5px 0;
  color: #4b5e85;
}
.tags {
  display: flex;
  gap: 4px;
  margin: 6px 0;
}
.tags span {
  background: #eef2f8;
  border-radius: 3px;
  padding: 3px 7px;
  line-height: 1;
  font-size: 7px;
  white-space: nowrap;
}
.btn-outline-pink {
  border: 1px solid var(--pink);
  color: var(--pink);
  width: 100%;
  padding: 5px;
  font-size: 8px;
}
.btn-outline-pink:hover {
  background: var(--pink);
  color: white;
}
.location-grid a {
  border: 1px solid var(--line);
  display: block;
  text-align: center;
  border-radius: 4px;
  overflow: hidden;
  background: #fff;
}
.location-grid img {
  width: 100%;
  height: var(--loc-img-h);
  display: block;
  object-fit: cover;
}
.location-grid b {
  font-size: 16px;
  display: block;
  line-height: 1.2;
  margin-top: 3px;
  letter-spacing: 0.5px;
}

.location-grid a:hover {
  background-color: #f9006d;
}
.location-grid a:hover b {
  color: #fff;
}
.location-grid a:hover span {
  color: #fff;
}

.location-grid span {
  font-size: var(--fs-grid-title);
  display: block;
  color: #314b7d;
  padding-bottom: 4px;
}
.center-grid img {
  height: var(--center-img-h);
}
.explore {
  margin-top: 13px;
  background: linear-gradient(110deg, #fff5f8, #fff8fc);
  padding: 15px 0 12px;
}
.explore-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.explore-heading h2 {
  font-size: 26px;
  letter-spacing: 0.5px;
}
.explore-heading > p {
  max-width: 300px;
  font-size: var(--fs-link);
  margin: 0;
  line-height: 1.35;
}
.explore-tabs {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  border-bottom: 0;
  flex-wrap: wrap;
}
.explore-tabs button {
  padding: 7px 20px;
  font-family: inherit;
  font-size: var(--fs-explore-tab);
  font-weight: 600;
  color: var(--navy);
  border: 1px solid #d7ddea;
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.5px;
}
.explore-tabs button i {
  font-size: 10px;
}
.explore-tabs .active {
  background: #f8e7ef;
  color: #f9006d;
  border-color: #f8e7ef;
}
.city-tabs {
  display: flex;
  gap: 7px;
  margin: 10px 0 12px;
  flex-wrap: wrap;
}
.city-tabs button {
  font-family: inherit;
  font-size: 8px;
  font-weight: 600;
  color: #5f6e8e;
  min-width: 76px;
  border: 1px solid #d7ddea;
  text-align: center;
  background: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  cursor: pointer;
}
.city-tabs .active {
  background: #fff;
  color: #f9006d;
  border-color: #e9b0cb;
}
.explore-result-label {
  font-size: 9px;
  font-weight: 500;
  color: #56698f;
  margin: -5px 0 10px;
}
.link-columns > div:not(:first-child) {
  border-left: 1px solid #dce1eb;
  padding-left: 20px;
}
.link-columns h3,
.popular h3 {
  font-size: 10px;
  margin: 0 0 7px;
  font-weight: 600;
}
.link-columns h3 i,
.popular h3 i {
  font-size: 21px;
  color: #172554;
  vertical-align: middle;
  margin-right: 7px;
}
.link-columns h3 span {
  float: right;
  color: var(--pink);
  font-size: 18px;
}
.link-columns a {
  font-size: 14px;
  display: block;
  line-height: 1.7;
  letter-spacing: 0.4px;
}

.link-columns .all-link {
  margin-top: 4px;
}
.popular {
  margin-top: 12px;
}
.popular h3 {
  font-size: 12px;
  margin: 0;
}
.popular h3 i {
  font-size: 17px;
}
.popular p {
  font-size: 8px;
  margin: 0 0 6px;
}
.popular > div {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.popular a {
  border: 1px solid #d8e0ed;
  padding: 5px 12px;
  background: white;
  border-radius: 3px;
  font-size: 8px;
}
.testimonials {
  padding-top: 13px;
}
.testimonials h2 {
  font-size: var(--fs-h2);
}
.testimonial {
  position: relative;
  padding-left: 86px;
  min-height: 63px;
}
.testimonial img {
  position: absolute;
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
  left: 10px;
}
.testimonial > i {
  font-size: 16px;
  color: var(--pink);
  position: absolute;
  left: 73px;
  top: 1px;
}
.testimonial p {
  font-size: 9px;
  line-height: 1.5;
  margin: 0 0 2px;
}
.testimonial strong,
.testimonial span {
  font-size: 9px;
  display: block;
}
.testimonial span {
  color: #617096;
}
.cta {
  background: linear-gradient(90deg, #ef0665, #ff147c);
  color: #fff;
  padding: 12px 0;
}
.cta h2 {
  font-size: var(--fs-h2);
  color: #fff;
  letter-spacing: 0.5px;
}
.cta p {
  font-size: 14px;
  margin: 8px 0 0;
  letter-spacing: 0.5px;
}
.cta .btn {
  color: var(--pink);
  padding: 10px 22px;
}
.footer-main {
  background: #0f2238;
  color: white;
  padding: 44px 0 9px;
}
.footer-main p {
  font-size: 14px;
  line-height: 1.5;
  margin: 9px 0;
  letter-spacing: 0.5px;
}
.footer-main h3 {
  font-size: calc(var(--fs-footer) + 1px);
  color: #fff;
  margin: 2px 0 7px;
}
.footer-main .col-6 a:not(.social a) {
  display: block;
  font-size: 14px;
  line-height: 2.65;
  letter-spacing: 0.5px;
}
.social {
  display: flex;
  gap: 7px;
  margin-top: 22px;
}
.social a {
  border: 1px solid #7486a8;
  border-radius: 3px;
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  font-size: 14px;
}
.newsletter {
  display: flex;
  margin-top: 17px;
  float: left;
  width: 100%;
}

:focus-visible {
  outline: -webkit-focus-ring-color auto 0px;
}
.newsletter input:hover {
  border: 0px;
  box-shadow: none;
}
.newsletter input {
  border: 0;
  padding: 12px 9px;
  font-size: 13px;
  min-width: 0;
  width: 100%;
}
.newsletter button {
  border: 0;
  background: var(--pink);
  color: #fff;
  padding: 0 10px;
}
.footer-bottom {
  border-top: 1px solid #49618a;
  margin-top: 13px;
  padding-top: 9px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  letter-spacing: 0.5px;
}
.footer-bottom div {
  display: flex;
  gap: 15px;
}
.scroll-top {
  display: grid;
  place-items: center;
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--pink);
  color: white;
  font-size: 12px;
  box-shadow: 0 3px 9px #0003;
}

/* ── Small mobile (≤575px) ── */
@media (max-width: 575px) {
  :root {
    --fs-body: 12px;
    --fs-h1: 26px;
    --fs-h2: 17px;
    --fs-h2-section: 17px;
    --fs-eyebrow: 9px;
    --fs-nav: 11px;
    --fs-btn: 11px;
    --fs-hero-copy: 11px;
    --fs-stat-b: 13px;
    --fs-stat-s: 10px;
    --fs-card-h3: 12px;
    --fs-card-price: 15px;
    --fs-grid-title: 10px;
    --fs-explore-tab: 10px;
    --fs-link: 10px;
    --fs-footer: 10px;
    --hero-min: 520px;
    --hero-content-min: 0;
    --card-img-h: 180px;
    --loc-img-h: 120px;
    --center-img-h: 115px;
    --section-py: 18px;
    --container-px: 16px;
    --logo-h: 28px;
    --search-min-h: 48px;
  }
  .navbar {
    min-height: 52px;
  }
  .hero-content {
    padding-top: 24px;
    padding-bottom: 0;
  }
  .hero-copy {
    max-width: 100%;
    font-size: var(--fs-hero-copy);
  }
  .hero .d-flex {
    align-items: stretch !important;
    flex-direction: column;
    gap: 10px !important;
  }
  .hero .btn,
  .hero .watch {
    text-align: center;
    justify-content: center;
  }
  .watch span {
    width: 32px;
    height: 32px;
    margin-right: 6px;
  }
  .hero-tabs {
    display: none !important;
  }
  .hero-search-wrap {
    position: relative;
    bottom: auto;
    margin-top: 20px;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.94),
      rgba(255, 255, 255, 0.72)
    );
  }
  .hero-bg {
    object-position: 65% center;
  }
  .search-box {
    flex-direction: column;
    border-radius: 8px;
  }
  .search-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .search-btn {
    border-radius: 0 0 8px 8px !important;
    padding: 14px !important;
    justify-content: center;
    width: 100%;
  }
  .select-trigger span {
    font-size: 11px;
  }
  .select-trigger small {
    font-size: 10px;
  }
  .stats {
    padding-top: 24px;
  }
  .stat {
    padding: 10px 8px;
    border-right: 0;
    border-bottom: 1px solid #dce3ec;
    justify-content: flex-start;
  }
  .stat > i {
    font-size: 22px;
  }
  .section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .section-title > a {
    margin-top: 0;
    font-size: 11px;
  }
  .features {
    flex-wrap: wrap;
    gap: 8px;
  }
  .tags {
    flex-wrap: wrap;
  }
  .explore-heading {
    flex-direction: column;
    align-items: flex-start;
  }
  .explore-heading > p {
    max-width: 100%;
    margin-top: 6px;
  }
  .explore-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
  }
  .explore-tabs button {
    flex-shrink: 0;
    padding: 8px 14px;
    font-size: 10px;
  }
  .city-tabs button {
    min-width: auto;
    font-size: 10px;
    padding: 6px 12px;
  }
  .link-columns > div:not(:first-child) {
    border-left: 0;
    padding-left: 0;
  }
  .link-columns > div {
    border-bottom: 1px solid #dce1eb;
    padding-bottom: 14px;
    margin-bottom: 4px;
  }
  .popular a {
    font-size: 10px;
    padding: 6px 10px;
  }
  .testimonial {
    padding-left: 72px;
    min-height: 58px;
  }
  .testimonial img {
    width: 52px;
    height: 52px;
    left: 4px;
  }
  .testimonial > i {
    left: 58px;
    font-size: 14px;
  }
  .cta {
    text-align: center;
    padding: 16px 0;
  }
  .cta .btn {
    width: 100%;
    max-width: 280px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .footer-bottom div {
    justify-content: center;
    flex-wrap: wrap;
  }
  .nav-actions {
    flex-wrap: wrap;
    gap: 12px !important;
    padding: 12px 0;
  }
  .nav-actions .btn {
    display: none;
  }
  .nav-actions a[href^="tel"] {
    width: 100%;
    font-size: 12px;
  }
  .scroll-top {
    right: 14px;
    bottom: 14px;
    width: 36px;
    height: 36px;
  }
}

/* ── Large mobile (576–767px) ── */
@media (min-width: 576px) and (max-width: 767px) {
  :root {
    --fs-body: 12px;
    --fs-h1: 28px;
    --fs-h2: 18px;
    --fs-h2-section: 18px;
    --fs-eyebrow: 9px;
    --fs-nav: 11px;
    --fs-btn: 12px;
    --fs-hero-copy: 11px;
    --fs-stat-b: 14px;
    --fs-stat-s: 10px;
    --fs-card-h3: 12px;
    --fs-card-price: 16px;
    --fs-grid-title: 10px;
    --fs-explore-tab: 10px;
    --fs-link: 10px;
    --fs-footer: 10px;
    --hero-min: 560px;
    --hero-content-min: 0;
    --card-img-h: 200px;
    --loc-img-h: 130px;
    --center-img-h: 125px;
    --section-py: 20px;
    --container-px: 20px;
    --logo-h: 30px;
    --search-min-h: 48px;
  }
  .hero-tabs {
    display: none !important;
  }
  .hero-content {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .hero-search-wrap {
    position: relative;
    bottom: auto;
    margin-top: 24px;
  }
  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.92),
      rgba(255, 255, 255, 0.65)
    );
  }
  .hero-bg {
    object-position: 61% center;
  }
  .search-box {
    flex-direction: column;
    border-radius: 8px;
  }
  .search-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .search-btn {
    border-radius: 0 0 8px 8px !important;
    padding: 13px !important;
    justify-content: center;
  }
  .stats {
    padding-top: 22px;
  }
  .stat {
    padding: 10px;
    border-right: 0;
    border-bottom: 1px solid #dce3ec;
    justify-content: flex-start;
  }
  .section-title {
    align-items: flex-start;
    gap: 8px;
  }
  .explore-heading {
    display: block;
  }
  .explore-heading > p {
    margin-top: 8px;
    max-width: 100%;
  }
  .explore-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .link-columns > div:not(:first-child) {
    border-left: 0;
    padding-left: 0;
  }
  .link-columns > div {
    border-bottom: 1px solid #dce1eb;
    padding-bottom: 12px;
  }
  .footer-bottom {
    display: block;
  }
  .footer-bottom div {
    margin-top: 8px;
  }
  .cta {
    text-align: center;
  }
  .testimonial {
    padding-left: 80px;
  }
  .testimonial img {
    left: 4px;
  }
  .testimonial > i {
    left: 68px;
  }
  .nav-actions {
    flex-wrap: wrap;
    padding: 12px 0;
  }
  .nav-actions .btn {
    display: none;
  }
}

/* ── Tablet (768–991px) ── */
@media (min-width: 768px) and (max-width: 991px) {
  :root {
    --fs-body: 13px;
    --fs-h1: 36px;
    --fs-h2: 20px;
    --fs-h2-section: 20px;
    --fs-eyebrow: 10px;
    --fs-nav: 11px;
    --fs-btn: 12px;
    --fs-hero-copy: 12px;
    --fs-stat-b: 15px;
    --fs-stat-s: 10px;
    --fs-card-h3: 12px;
    --fs-card-price: 15px;
    --fs-grid-title: 10px;
    --fs-explore-tab: 10px;
    --fs-link: 10px;
    --fs-footer: 14px;
    --hero-min: 460px;
    --hero-content-min: 340px;
    --card-img-h: 210px;
    --loc-img-h: 145px;
    --center-img-h: 140px;
    --section-py: 22px;
    --container-px: 24px;
    --logo-h: 34px;
    --search-min-h: 44px;
  }
  .navbar-nav {
    padding-top: 8px;
  }
  .nav-actions {
    padding: 12px 0;
  }
  .hero-search-wrap {
    bottom: -32px;
  }
  .hero-tabs button {
    padding: 10px 14px;
    font-size: 11px;
  }
  .select-trigger span {
    font-size: 10px;
  }
  .select-trigger small {
    font-size: 9px;
  }
  .section-title h2 {
    max-width: 70%;
  }
  .explore-heading {
    flex-wrap: wrap;
  }
  .explore-heading > p {
    max-width: 100%;
    margin-top: 6px;
  }
  .link-columns > div:nth-child(3) {
    border-left: 0;
    padding-left: 0;
  }
}

/* ── Small desktop (992–1199px) ── */
@media (min-width: 992px) and (max-width: 1199px) {
  :root {
    --fs-body: 16px;
    --fs-h1: 42px;
    --fs-h2: 24px;
    --fs-h2-section: 24px;
    --fs-eyebrow: 13px;
    --fs-nav: 13px;
    --fs-btn: 14px;
    --fs-hero-copy: 14px;
    --fs-stat-b: 18px;
    --fs-stat-s: 12px;
    --fs-card-h3: 15px;
    --fs-card-price: 18px;
    --fs-grid-title: 12px;
    --fs-explore-tab: 12px;
    --fs-link: 12px;
    --fs-footer: 11px;
    --hero-min: 480px;
    --hero-content-min: 360px;
    --card-img-h: 220px;
    --loc-img-h: 155px;
    --center-img-h: 150px;
    --section-py: 24px;
    --container-px: 24px;
    --logo-h: 38px;
    --search-min-h: 46px;
  }
  .container {
    max-width: 960px;
  }
  .hero-search-wrap {
    bottom: -34px;
  }
  .hero-tabs button {
    font-size: 13px;
    padding: 11px 16px;
  }
  .select-trigger span {
    font-size: 12px;
  }
  .select-trigger small {
    font-size: 12px;
  }
  .select-menu button {
    font-size: 12px;
  }
  .features {
    font-size: 12px;
  }
  .tags span {
    font-size: 10px;
  }
  .status {
    font-size: 12px;
  }
  .btn-outline-pink {
    font-size: 12px;
  }
}

/* ── Desktop (1200–1439px) ── */
@media (min-width: 1200px) and (max-width: 1439px) {
  :root {
    --fs-body: 16px;
    --fs-h1: 46px;
    --fs-h2: 26px;
    --fs-h2-section: 26px;
    --fs-eyebrow: 13px;
    --fs-nav: 13px;
    --fs-btn: 14px;
    --fs-hero-copy: 14px;
    --fs-stat-b: 19px;
    --fs-stat-s: 12px;
    --fs-card-h3: 15px;
    --fs-card-price: 19px;
    --fs-grid-title: 12px;
    --fs-explore-tab: 12px;
    --fs-link: 12px;
    --fs-footer: 11px;
    --hero-min: 520px;
    --hero-content-min: 400px;
    --card-img-h: 230px;
    --loc-img-h: 170px;
    --center-img-h: 165px;
    --section-py: 25px;
    --container-px: 24px;
    --logo-h: 40px;
    --search-min-h: 50px;
  }
  .container {
    max-width: 1140px;
  }
  .navbar {
    min-height: 64px;
  }
  .hero-content {
    padding-top: 40px;
  }
  .hero-copy {
    max-width: 420px;
  }
  .hero-search-wrap {
    bottom: -38px;
  }
  .hero-tabs button {
    font-size: 14px;
    padding: 12px 20px;
  }
  .select-trigger {
    min-height: 50px;
    padding: 9px 14px;
  }
  .select-trigger > i:first-child {
    font-size: 18px;
  }
  .select-trigger span {
    font-size: 12px;
  }
  .select-trigger small {
    font-size: 13px;
  }
  .search-btn {
    font-size: 14px;
    padding: 0 30px !important;
  }
  .stat > i {
    font-size: 32px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .explore-heading h2 {
    font-size: 28px;
  }
  .testimonials h2 {
    font-size: 24px;
  }
  .cta h2 {
    font-size: 24px;
  }
  .select-menu button {
    font-size: 12px;
  }
  .features {
    font-size: 12px;
  }
  .tags span {
    font-size: 10px;
  }
  .status {
    font-size: 12px;
  }
  .btn-outline-pink {
    font-size: 12px;
  }
  .office-info p {
    font-size: 12px;
  }
  .office-info strong em {
    font-size: 13px;
  }
}

/* ── Large desktop (≥1440px) ── */
@media (min-width: 1440px) {
  :root {
    --fs-body: 17px;
    --fs-h1: 53px;
    --fs-h2: 27px;
    --fs-h2-section: 26px;
    --fs-eyebrow: 14px;
    --fs-nav: 14px;
    --fs-btn: 15px;
    --fs-hero-copy: 15px;
    --fs-stat-b: 21px;
    --fs-stat-s: 13px;
    --fs-card-h3: 16px;
    --fs-card-price: 20px;
    --fs-grid-title: 13px;
    --fs-explore-tab: 13px;
    --fs-link: 13px;
    --fs-footer: 12px;
    --hero-min: 590px;
    --hero-content-min: 480px;
    --card-img-h: 264px;
    --loc-img-h: 203px;
    --center-img-h: 190px;
    --section-py: 27px;
    --container-px: 24px;
    --logo-h: 46px;
    --search-min-h: 56px;
  }
  .container {
    max-width: 1680px;
  }
  .navbar {
    min-height: 76px;
  }
  .footer-logo img {
    height: 40px;
    margin-bottom: 14px;
  }
  .nav-link,
  .nav-actions a {
    padding-left: 13px !important;
    padding-right: 13px !important;
  }
  .nav-actions {
    gap: 21px !important;
  }
  .nav-actions .btn {
    padding: 12px 18px !important;
    border: 2px solid #09275d;
    color: #09275d !important;
  }
  .hero-content {
    padding-top: 53px;
    padding-bottom: 24px;
  }
  .eyebrow {
    letter-spacing: 1.4px;
  }
  .hero-copy {
    max-width: 657px;
    margin-top: 17px;
  }
  .btn {
    padding: 14px 22px;
  }
  .watch span {
    width: 44px;
    height: 44px;
  }
  .hero-search-wrap {
    bottom: -84px;
  }
  .hero-tabs button {
    padding: 14px 24px;
  }
  .select-trigger {
    padding: 10px 16px;
    gap: 13px;
  }
  .select-trigger > i:first-child {
    font-size: 20px;
  }
  .select-trigger span {
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  .select-trigger small {
    font-size: 13px;
    margin-top: 6px;
    letter-spacing: 0.5px;
  }
  .select-trigger > i:last-child {
    font-size: 12px;
  }
  .search-btn {
    padding: 0 37px !important;
    font-size: 15px;
    letter-spacing: 1px;
  }
  .search-divider {
    margin: 14px 0;
  }
  .select-menu {
    top: calc(100% + 7px);
    padding: 7px;
  }
  .select-menu button {
    padding: 10px;
    font-size: 13px;
  }
  .hero-tabs button {
    font-size: 15px;
    letter-spacing: 0.5px;
  }
  .stats {
    padding: 40px 0 40px;
  }
  .stat {
    gap: 18px;
  }
  .stat > i {
    font-size: 38px;
  }
  .section.compact {
    padding-top: 9px;
  }
  .section-title {
    margin-bottom: 10px;
  }
  .section-title > a,
  .all-link {
    font-size: 14px;
  }
  .office-info {
    padding: 22px 22px 23px;
  }
  .office-info p {
    font-size: 14px;
    margin: 5px 0;
    letter-spacing: 0.7px;
  }
  .office-info strong em {
    font-size: 13px;
  }
  .features {
    font-size: 14px;
    gap: 23px;
    margin: 15px 0;
    margin-top: 10px;
    letter-spacing: 0.5px;
  }

  .features .fa-regular {
    margin-right: 5px;
  }

  .tags {
    gap: 6px;
    margin: 8px 0;
  }
  .tags span {
    font-size: 13px;
    padding: 6px 9px;
    letter-spacing: 0.5px;
  }
  .status {
    font-size: 12px;
    padding: 5px 10px;
  }
  .card-image button {
    width: 29px;
    height: 29px;
  }
  .btn-outline-pink {
    font-size: 15px;
    padding: 12px;
    margin-top: 21px;
    letter-spacing: 0.7px;
  }
  .location-grid b {
    margin-top: 5px;
  }
  .location-grid span {
    font-size: 14px;
    padding-bottom: 6px;
    letter-spacing: 0.4px;
    margin-top: 3px;
  }

  #locations {
    background: none;
    margin-bottom: 30px;
    margin-top: 20px;
    padding: 44px 0px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
  }

  #listings {
    border-top: 1px solid #dddddd;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .explore {
    margin-top: 20px;
    padding: 45px 0 45px;
    border-top: 1px solid #dddddd;
    border-bottom: 1px solid #dddddd;
    background: #fff !important;
  }

  .explore-heading > p {
    max-width: 406px;
    font-size: 15px;
  }
  .explore-tabs {
    margin-top: 10px;
  }
  .explore-tabs button {
    padding: 11px 35px;
  }
  .city-tabs {
    gap: 10px;
    margin: 26px 0 17px;
  }
  .city-tabs button {
    min-width: 106px;
    font-size: 13px;
    padding: 7px;
    letter-spacing: 0.5px;
  }
  .explore-result-label {
    font-size: 14px;
    margin: 29px 0 13px;
    letter-spacing: 0.5px;
  }
  .link-columns h3,
  .popular h3 {
    font-size: 17px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
  .link-columns h3 i,
  .popular h3 i {
    font-size: 26px;
  }
  .link-columns a {
    line-height: 33px;
  }
  .popular {
    margin-top: 18px;
  }
  .popular h3 {
    font-size: 17px;
  }
  .popular p {
    font-size: 14px;
    margin-bottom: 8px;
    letter-spacing: 0.4px;
  }
  .popular a {
    font-size: 13px;
    padding: 7px 15px;
    letter-spacing: 0.5px;
  }
  .testimonials {
    padding-top: 21px;
  }
  .testimonial {
    padding-left: 112px;
    min-height: 78px;
  }
  .testimonial img {
    width: 74px;
    height: 74px;
  }
  .testimonial > i {
    left: 94px;
    font-size: 21px;
  }
  .testimonial p {
    font-size: 13px;
  }
  .testimonial strong,
  .testimonial span {
    font-size: 12px;
  }
  .cta {
    padding: 20px 0;
  }
  .footer-main {
    padding: 29px 0 15px;
  }
  .footer-main h3 {
    font-size: 17px;
    letter-spacing: 0.6px;
  }
  .footer-bottom {
    margin-top: 19px;
    padding-top: 12px;
  }
  .scroll-top {
    right: 30px;
    bottom: 30px;
    width: 42px;
    height: 42px;
    font-size: 17px;
  }
}

/* ── Shared mobile/tablet nav collapse (≤991px) ── */
@media (max-width: 991px) {
  .navbar-nav {
    padding-top: 8px;
  }
  .nav-actions {
    padding: 12px 0;
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .nav-actions .btn {
    display: inline-flex !important;
  }
}

/* ── Touch-friendly tap targets ── */
@media (max-width: 991px) {
  .hero-tabs button,
  .city-tabs button,
  .explore-tabs button,
  .select-trigger,
  .search-btn,
  .card-image button {
    min-height: 44px;
  }
}

/* ── Listing Page ── */
.listing-hero {
  background: #f7f9fc;
  padding: 18px 0 14px;
  border-bottom: 1px solid var(--line);
}
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-eyebrow);
  color: #667492;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.breadcrumbs a {
  color: #667492;
  letter-spacing: 0.5px;
}
.breadcrumbs a:hover {
  color: var(--pink);
}
.breadcrumbs span[aria-current="page"] {
  color: var(--navy);
  font-weight: 500;
}
.listing-hero-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 14px;
}
.listing-hero h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}
.listing-hero-copy {
  font-size: var(--fs-hero-copy);
  line-height: 1.6;
  color: #56698f;
  margin: 8px 0 0;
  max-width: 480px;
}
.listing-trust {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}
.listing-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.listing-trust-item > i {
  font-size: calc(var(--fs-stat-b) + 8px);
  color: var(--pink);
}
.listing-trust-item b {
  font-size: var(--fs-card-h3);
  display: block;
  line-height: 1.1;
  color: var(--navy);
}
.listing-trust-item span {
  font-size: var(--fs-stat-s);
  display: block;
  color: #667492;
}
.listing-search-wrap .search-box {
  border-radius: 8px;
  box-shadow: 0 4px 14px #213e6d18;
}
.listing-popular {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.listing-popular > span {
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}
.listing-popular div {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.listing-popular a {
  border: 1px solid #d8e0ed;
  padding: 4px 10px;
  background: #fff;
  border-radius: 20px;
  font-size: var(--fs-footer);
  color: #56698f;
  letter-spacing: 0.5px;
}
.listing-popular a:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.listing-main {
  padding: 16px 0 24px;
  background: #fff;
}
.listing-layout {
  align-items: flex-start;
}
.listing-filters-col {
  flex: 0 0 280px;
  max-width: 280px;
  width: 280px;
}
.listing-results-col {
  flex: 1;
  min-width: 0;
}
.filters-panel {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  padding: 8px 10px;
  position: sticky;
  top: 12px;
}
.filters-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
}
.filters-head h2 {
  font-size: var(--fs-card-h3);
  margin: 0;
  font-weight: 600;
  color: var(--navy);
}
.clear-filters {
  border: 0;
  background: transparent;
  color: var(--pink);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  letter-spacing: 1px;
}
.filter-group {
  border-bottom: 1px solid var(--line);
}
.filter-group:last-of-type {
  border-bottom: 0;
}
.filter-toggle {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  letter-spacing: 1px;
}
.filter-toggle i {
  font-size: var(--fs-footer);
  color: #667492;
  transition: transform 0.2s;
}
.filter-toggle[aria-expanded="false"] i {
  transform: rotate(-90deg);
}
.filter-body {
  padding: 0 0 6px;
}
.filter-search {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 6px;
  font-size: 12px;
  margin-bottom: 5px;
  font-family: inherit;
  letter-spacing: 1px;
}
.filter-search:focus {
  outline: none;
  border-color: var(--pink);
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 2px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--navy);
  line-height: 26px;
  letter-spacing: 0.5px;
}
.filter-check input {
  appearance: none;
  width: 12px;
  height: 12px;
  border: 1px solid #c5cfe0;
  border-radius: 2px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
}
.filter-check input:checked {
  background: var(--pink);
  border-color: var(--pink);
}
.filter-check input:checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0;
  width: 3px;
  height: 6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.filter-check em {
  font-style: normal;
  color: #667492;
  margin-left: auto;
  font-size: var(--fs-footer);
}
.filter-select .select-trigger {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 10px 8px;
  font-size: var(--fs-footer);
}
.filter-select .select-menu {
  top: calc(100% + 3px);
}
.filter-select .select-menu button {
  font-size: var(--fs-footer);
  padding: 5px 6px;
}
.rent-range {
  position: relative;
  height: 24px;
  margin: 2px 0 6px;
}
.rent-range input[type="range"] {
  position: absolute;
  width: 100%;
  height: 4px;
  top: 12px;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  z-index: 2;
}
.rent-range input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px #0003;
  cursor: pointer;
  pointer-events: auto;
}
.rent-range input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--pink);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px #0003;
  cursor: pointer;
  pointer-events: auto;
}
.rent-track {
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 4px;
  background: #e0e5ee;
  border-radius: 2px;
  z-index: 1;
}
.rent-track::before {
  content: "";
  position: absolute;
  height: 100%;
  background: var(--pink);
  border-radius: 2px;
  left: var(--range-left, 4%);
  right: var(--range-right, 50%);
}
.rent-inputs {
  display: flex;
  gap: 8px;
}
.rent-inputs > div {
  flex: 1;
}
.rent-inputs label {
  font-size: var(--fs-footer);
  color: #667492;
  display: block;
  margin-bottom: 2px;
}
.rent-inputs input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 5px;
  font-size: var(--fs-footer);
  font-family: inherit;
}
.apply-filters {
  margin-top: 8px;
  padding: 7px !important;
  font-size: var(--fs-btn) !important;
}
.listing-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.listing-count {
  margin: 0;
  font-size: var(--fs-eyebrow);
  color: #56698f;
}
.listing-count strong {
  color: var(--navy);
  font-weight: 600;
}
.listing-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sort-select .select-trigger {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 6px 10px;
  font-size: var(--fs-eyebrow);
  white-space: nowrap;
}
.sort-select .select-menu {
  min-width: 160px;
  right: 0;
  left: auto;
}
.view-toggle {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}
.view-toggle button {
  border: 0;
  background: #fff;
  padding: 6px 10px;
  font-family: inherit;
  font-size: var(--fs-footer);
  font-weight: 600;
  color: #667492;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
}
.view-toggle button.active {
  background: var(--navy);
  color: #fff;
}
.view-toggle button + button {
  border-left: 1px solid var(--line);
}
.listing-card {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 10px;
  transition: box-shadow 0.2s;
}
.listing-card:hover {
  box-shadow: 0 4px 16px #213e6d14;
}
.listing-card-image {
  width: 260px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.listing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 175px;
}
.listing-card-image .status {
  position: absolute;
  left: 8px;
  top: 7px;
  z-index: 1;
}
.listing-card-image button {
  position: absolute;
  right: 7px;
  top: 7px;
  z-index: 1;
  border: 0;
  border-radius: 50%;
  width: 23px;
  height: 23px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.listing-card-body {
  flex: 1;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.listing-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 4px;
}
.listing-card-top h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: var(--navy);
  letter-spacing: 1px;
}
.listing-card-top p {
  font-size: 14px;
  margin: 8px 0 0;
  color: #607093;
  letter-spacing: 1px;
}
.listing-card-top p i {
  color: var(--pink);
}
.listing-card-top strong {
  color: #09275d;
  font-size: var(--fs-card-price);
  white-space: nowrap;
  flex-shrink: 0;
}
.listing-card-top strong em {
  font-size: var(--fs-eyebrow);
  color: var(--navy);
  font-weight: 500;
  font-style: normal;
}
.listing-desc {
  font-size: var(--fs-hero-copy);
  line-height: 1.55;
  color: #56698f;
  margin: 6px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  letter-spacing: 0.3px;
}
.listing-link {
  align-self: flex-end;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--pink);
  margin-top: auto;
}
.listing-link i {
  margin-left: 4px;
  font-size: var(--fs-footer);
}
.listing-map-view .map-full {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  height: 400px;
}
.listing-map-view .map-full > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-popup {
  position: absolute;
  top: 30%;
  left: 35%;
  background: #fff;
  border-radius: 6px;
  padding: 6px;
  display: flex;
  gap: 8px;
  align-items: center;
  box-shadow: 0 4px 16px #0003;
  max-width: 180px;
}
.map-popup img {
  width: 48px;
  height: 36px;
  object-fit: cover;
  border-radius: 4px;
}
.map-popup b {
  font-size: var(--fs-eyebrow);
  display: block;
  color: var(--navy);
}
.map-popup span {
  font-size: var(--fs-footer);
  color: var(--pink);
  font-weight: 600;
}
.sidebar-map {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
}
.sidebar-map-head {
  display: flex;
  border-bottom: 1px solid var(--line);
}
.sidebar-map-head button {
  flex: 1;
  border: 0;
  background: #fff;
  padding: 6px;
  font-family: inherit;
  font-size: var(--fs-footer);
  font-weight: 600;
  color: #667492;
  cursor: pointer;
}
.sidebar-map-head button.active {
  background: var(--navy);
  color: #fff;
}
.sidebar-map-body {
  position: relative;
  height: 160px;
}
.sidebar-map-body > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.map-pin {
  position: absolute;
  color: var(--pink);
  font-size: 18px;
  filter: drop-shadow(0 1px 2px #0004);
}
.map-pin-1 {
  top: 35%;
  left: 42%;
}
.map-pin-2 {
  top: 55%;
  left: 28%;
}
.map-pin-3 {
  top: 45%;
  left: 62%;
}
.sidebar-locations {
  margin-bottom: 12px;
}
.sidebar-locations h3 {
  font-size: var(--fs-card-h3);
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--navy);
}
.sidebar-location-grid img {
  height: 70px;
}
.expert-widget {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px;
  text-align: center;
  background: linear-gradient(180deg, #f7f9fc, #fff);
}
.expert-widget > img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 8px;
}
.expert-widget h3 {
  font-size: var(--fs-card-h3);
  margin: 0 0 4px;
  color: var(--navy);
}
.expert-widget p {
  font-size: var(--fs-link);
  color: #56698f;
  line-height: 1.5;
  margin: 0 0 10px;
}
.expert-widget .btn {
  width: 100%;
  padding: 8px !important;
  font-size: var(--fs-btn) !important;
}
.expert-trust {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 12px;
  text-align: left;
}
.expert-trust span {
  font-size: var(--fs-footer);
  color: #56698f;
  display: flex;
  align-items: center;
  gap: 6px;
}
.expert-trust i {
  color: var(--pink);
  font-size: var(--fs-eyebrow);
}

@media (max-width: 991px) {
  .listing-hero-head {
    flex-direction: column;
  }
  .listing-trust {
    width: 100%;
    justify-content: space-between;
  }
  .listing-filters-col {
    flex: 0 0 100%;
    max-width: none;
    width: 100%;
  }
  .filters-panel {
    position: static;
    margin-bottom: 12px;
  }
  .listing-layout .col-lg-3.order-sidebar {
    order: 3;
  }
}

@media (max-width: 767px) {
  .listing-trust {
    flex-direction: column;
    gap: 10px;
  }
  .listing-search-wrap .search-box {
    flex-direction: column;
    border-radius: 8px;
  }
  .listing-search-wrap .search-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .listing-search-wrap .search-btn {
    border-radius: 0 0 8px 8px !important;
    padding: 12px !important;
    justify-content: center;
    width: 100%;
  }
  .listing-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .listing-toolbar-actions {
    width: 100%;
    justify-content: space-between;
  }
  .listing-card {
    flex-direction: column;
  }
  .listing-card-image {
    width: 100%;
    height: 180px;
  }
  .sidebar-map,
  .sidebar-locations,
  .expert-widget {
    margin-top: 12px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .listing-filters-col {
    flex: 0 0 260px;
    max-width: 260px;
    width: 260px;
  }
  .listing-card-image {
    width: 220px;
  }
  .listing-trust {
    gap: 12px;
  }
}

@media (min-width: 1200px) {
  .listing-hero {
    padding: 24px 0 18px;
  }
  .listing-hero-copy {
    max-width: 520px;
  }
  .listing-trust-item > i {
    font-size: calc(var(--fs-stat-b) + 8px);
  }
  .listing-popular a {
    padding: 5px 12px;
  }
  .listing-card-image {
    width: 280px;
  }
  .listing-card-body {
    padding: 12px 16px;
  }
  .sidebar-map-body {
    height: 180px;
  }
}

@media (min-width: 1440px) {
  .listing-filters-col {
    flex: 0 0 300px;
    max-width: 300px;
    width: 300px;
  }
  .listing-card-image {
    width: 300px;
  }
  .sidebar-location-grid img {
    height: 85px;
  }
}

/* ── Property Detail Page ── */
.detail-hero {
  padding: 14px 0 28px;
  background: #fff;
}
.detail-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 6px;
}
.detail-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.detail-title-row h1 {
  font-size: var(--fs-h1);
  margin: 0;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.8px;
}
.detail-title-row .status {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.detail-location-line {
  font-size: var(--fs-hero-copy);
  color: #607093;
  letter-spacing: 0.5px;
  margin: 6px 0 0;
}
.detail-location-line i {
  color: var(--pink);
}
.detail-location-line a {
  color: var(--pink);
  font-weight: 600;
  margin-left: 8px;
}
.detail-head-right {
  text-align: right;
  flex-shrink: 0;
}
.detail-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-bottom: 6px;
}
.detail-action-btn {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 4px;
  padding: 5px 10px;
  font-family: inherit;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.5px;
}
.detail-action-btn:hover {
  border-color: var(--pink);
  color: var(--pink);
}
.detail-price strong {
  display: block;
  color: var(--pink);
  font-size: var(--fs-card-price);
  line-height: 1.2;
}
.detail-price strong em {
  font-size: var(--fs-eyebrow);
  color: var(--navy);
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.5px;
}
.detail-price span {
  font-size: var(--fs-eyebrow);
  color: #667492;
  letter-spacing: 0.5px;
}
.detail-tagline {
  font-size: var(--fs-hero-copy);
  color: #56698f;
  margin: 0 0 12px;
  max-width: 100%;
  letter-spacing: 0.5px;
}
.detail-layout {
  align-items: flex-start;
}
.detail-main {
  min-width: 0;
}
.detail-gallery {
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 8px;
  margin-bottom: 12px;
}
.detail-gallery-main {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 240px;
}
.detail-gallery-main > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 240px;
}
.detail-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  box-shadow: 0 2px 8px #0003;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: var(--fs-btn);
  z-index: 2;
}
.detail-gallery-nav.prev {
  left: 10px;
}
.detail-gallery-nav.next {
  right: 10px;
}
.detail-gallery-all {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  border-radius: 4px;
  background: #fff;
  color: var(--navy);
  font-family: inherit;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  padding: 7px 14px;
  cursor: pointer;
  box-shadow: 0 2px 10px #0003;
  white-space: nowrap;
  z-index: 2;
}
.detail-gallery-all:hover {
  color: var(--pink);
}
.detail-gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.detail-thumb {
  position: relative;
  border: 0;
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  flex: 1;
  background: #eee;
}
.detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 110px;
}
.detail-thumb-overlay {
  position: absolute;
  inset: 0;
  background: #09275d99;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: var(--fs-card-h3);
  font-weight: 600;
}
.detail-stats-wrap {
  padding: 0 0 12px;
}
.detail-stats {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 12px;
}
.detail-stat {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-right: 1px solid var(--line);
}
.detail-stat:last-child {
  border-right: 0;
}
.detail-stat > i {
  font-size: calc(var(--fs-stat-b) + 4px);
  color: var(--pink);
  flex-shrink: 0;
}
.detail-stat b {
  display: block;
  font-size: var(--fs-eyebrow);
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: 0.5px;
}
.detail-stat span {
  display: block;
  font-size: var(--fs-stat-s);
  color: #667492;
  letter-spacing: 0.56px;
}
.detail-tabs {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  margin-bottom: 14px;
}
.detail-tabs-inner {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
}
.detail-tabs a {
  flex-shrink: 0;
  padding: 10px 12px;
  font-size: var(--fs-nav);
  font-weight: 500;
  color: #667492;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.5px;
}
.detail-tabs a:hover {
  color: var(--navy);
}
.detail-tabs a.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
  font-weight: 600;
}
.detail-section {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 16px;
  margin-bottom: 14px;
}
.detail-section h2 {
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--navy);
  letter-spacing: 0.6px;
}
.detail-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  gap: 10px;
}
.detail-section-head h2 {
  margin: 0;
}
.detail-section-head > a {
  font-size: var(--fs-eyebrow);
  color: var(--pink);
  font-weight: 600;
  white-space: nowrap;
}
.detail-about {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 14px;
}
.detail-about-text p {
  font-size: var(--fs-hero-copy);
  line-height: 1.65;
  color: #56698f;
  margin: 0 0 10px;
}
.detail-highlights {
  background: transparent;
  border-radius: 6px;
  padding: 13px 20px;
  border: 1px solid #dce4f0;
}
.detail-highlights h3 {
  font-size: var(--fs-card-h3);
  margin: 0 0 8px;
  color: var(--navy);
}
.detail-highlights ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.detail-highlights li {
  font-size: var(--fs-link);
  color: var(--navy);
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.detail-highlights li i {
  color: #09275d;
  margin-top: 1px;
  flex-shrink: 0;
}

.space-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.space-card {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.space-card-img {
  width: 140px;
  flex-shrink: 0;
}
.space-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 100px;
}
.space-card-body {
  flex: 1;
  padding: 10px 12px;
  min-width: 0;
}
.space-card-body h3 {
  font-size: var(--fs-card-h3);
  margin: 0 0 4px;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.space-card-body strong {
  color: #09275d;
  font-size: 17px;
  letter-spacing: 0.5px;
}
.space-card-body strong em {
  font-size: var(--fs-eyebrow);
  color: var(--navy);
  font-weight: 500;
  font-style: normal;
}
.space-card-body .features {
  margin: 6px 0;
}
.space-card-body .listing-link {
  display: inline-block;
  margin-top: 4px;
  letter-spacing: 0.6px;
}
.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
}
.amenity-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-hero-copy);
  color: var(--navy);
  padding: 6px 0;
  letter-spacing: 0.5px;
}

.amenity-item i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f3f8;
  color: var(--navy);
  display: grid;
  place-items: center;
  font-size: var(--fs-btn);
  flex-shrink: 0;
}
.detail-location {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}
.detail-map {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 180px;
  border: 1px solid var(--line);
}
.detail-map > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 180px;
}
.detail-landmarks h3 {
  font-size: 22px;
  margin: 0px 0px 16px;
  color: var(--navy);
}
.detail-address {
  font-size: var(--fs-link);
  color: #56698f;
  margin: 0 0 10px;
  letter-spacing: 0.5px;
  font-size: 15px;
}
.detail-address i {
  color: #09275d;
}
.similar-more {
  background: none;
  border: 0;
  border-top: 1px solid #eef1f6; /* already there, kept for consistency */
  cursor: pointer;
  width: 100%;
  font: inherit; /* ensures it keeps the same font-size/weight as before */
}
.detail-landmarks ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.detail-landmarks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--navy);
  padding: 18px 0;
  border-bottom: 1px solid #eef1f6;
  letter-spacing: 0.5px;
}
.detail-landmarks li:last-child {
  border-bottom: 0;
}
.detail-landmarks li i {
  color: #09275d;
  width: 14px;
  text-align: center;
}
.detail-landmarks li em {
  margin-left: auto;
  font-style: normal;
  color: #667492;
  font-weight: 500;
}
.detail-placeholder {
  font-size: var(--fs-hero-copy);
  color: #56698f;
  margin: 0;
  line-height: 1.5;
}
.detail-faq .accordion-item {
  border: 1px solid var(--line);
  border-radius: 4px !important;
  margin-bottom: 6px;
  overflow: hidden;
}
.detail-faq .accordion-button {
  font-family: Poppins, Arial, sans-serif;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--navy);
  padding: 16px 12px;
  box-shadow: none !important;
  background: #fff;
  letter-spacing: 0.5px;
}
p {
  letter-spacing: 0.4px;
}

.detail-faq .accordion-button:not(.collapsed) {
  color: #000000;
  background: var(--pale);
  letter-spacing: 0.5px;
}
.detail-faq .accordion-button::after {
  background-size: 12px;
  width: 12px;
  height: 12px;
}
.detail-faq .accordion-body {
  font-size: var(--fs-link);
  line-height: 1.6;
  color: #56698f;
  padding: 10px 12px;
  letter-spacing: 0.5px;
}
.detail-sidebar {
  position: sticky;
  top: 14px;
}
.enquiry-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 16px;
  margin-bottom: 14px;
  box-shadow: 0 4px 16px #213e6d12;
}
.enquiry-form h3 {
  font-size: var(--fs-card-h3);
  margin: 0 0 4px;
  color: var(--navy);
}
.enquiry-sub {
  font-size: 15px;
  color: #667492;
  margin: 0 0 12px;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.enquiry-field {
  margin-bottom: 10px;
}
.enquiry-field label {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  color: #56698f;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.enquiry-field input,
.enquiry-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 9px 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  letter-spacing: 0.5px;
}
.enquiry-field input:focus,
.enquiry-field textarea:focus {
  outline: none;
  border-color: var(--pink);
}
.enquiry-field textarea {
  resize: vertical;
  min-height: 72px;
  line-height: 1.45;
}
.enquiry-phone {
  display: flex;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: visible;
  background: #fff;
}
.enquiry-phone:focus-within {
  border-color: var(--pink);
}
.phone-code-select {
  flex: 0 0 auto;
  min-width: 88px;
  border-right: 1px solid var(--line);
}
.phone-code-select .select-trigger {
  min-height: 38px;
  padding: 6px 8px;
  gap: 4px;
  border: 0;
  border-radius: 4px 0 0 4px;
}
.phone-code-select .select-trigger span {
  font-size: var(--fs-hero-copy);
  font-weight: 500;
  display: inline;
}
.phone-code-select .select-trigger small {
  display: none;
}
.phone-flag {
  font-size: var(--fs-card-h3) !important;
  line-height: 1;
}
.phone-code-select .select-menu {
  min-width: 110px;
}
.enquiry-phone > input {
  border: 0;
  border-radius: 0 4px 4px 0;
  flex: 1;
  min-width: 0;
}
.enquiry-phone > input:focus {
  outline: none;
}
.enquiry-form .btn {
  margin-top: 4px;
  padding: 11px !important;
  font-size: var(--fs-btn) !important;
}
.enquiry-feedback {
  font-size: var(--fs-link);
  color: #087855;
  margin: 8px 0 0;
  min-height: 14px;
}
.enquiry-callback {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--navy);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eef1f6;
}
.enquiry-callback:hover {
  color: var(--pink);
}
.consultant-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  margin-bottom: 14px;
  box-shadow: 0 2px 10px #213e6d0a;
}
.consultant-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.consultant-top > img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.consultant-info b {
  display: block;
  font-size: var(--fs-card-h3);
  color: var(--navy);
}
.consultant-info span {
  display: block;
  font-size: var(--fs-link);
  color: #667492;
  margin: 2px 0 4px;
}
.consultant-info a {
  font-size: var(--fs-eyebrow);
  color: var(--pink);
  font-weight: 500;
}
.consultant-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.consultant-actions a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 4px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--navy);
  background: #fff;
}
.consultant-actions a:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: var(--pale);
}
.consultant-actions a i {
  font-size: var(--fs-btn);
}
.detail-trust {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 12px 14px;
  margin-bottom: 14px;
}
.detail-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eef1f6;
}
.detail-trust-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.detail-trust-item:first-child {
  padding-top: 0;
}
.detail-trust-icon {
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--pink);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--pink);
  font-size: var(--fs-card-h3);
  text-align: center;
  line-height: 32px;
}
.detail-trust-item b {
  display: block;
  font-size: var(--fs-eyebrow);
  color: var(--navy);
  line-height: 1.2;
}
.detail-trust-item span {
  display: block;
  font-size: var(--fs-footer);
  color: #667492;
  margin-top: 2px;
}
.solution-banner {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 150px;
  margin-bottom: 14px;
}
.solution-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.solution-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #09275d66, #09275dcc);
}
.solution-banner-content {
  position: relative;
  z-index: 1;
  padding: 16px;
  display: flex;
  align-items: center;
  min-height: 150px;
}
.solution-banner-box {
  background: #fff;
  border-radius: 6px;
  padding: 14px;
  width: 100%;
}
.solution-banner-box h3 {
  font-size: var(--fs-card-h3);
  margin: 0 0 6px;
  color: var(--navy);
}
.solution-banner-box p {
  font-size: var(--fs-link);
  color: #56698f;
  margin: 0 0 10px;
  line-height: 1.45;
}
.solution-banner-box .btn {
  width: 100%;
  padding: 8px !important;
  font-size: var(--fs-btn) !important;
  background: #09275d;
  color: #fff;
  border-color: #09275d;
  letter-spacing: 1px;
}
.solution-banner-box .btn:hover {
  background: var(--pink);
  color: #fff;
}
.similar-offices {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
  box-shadow: 0 2px 10px #213e6d0a;
}
.similar-offices h3 {
  font-size: var(--fs-card-h3);
  margin: 0 0 12px;
  color: var(--navy);
}
.similar-card {
  display: flex;
  gap: 10px;
  padding: 0 0 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #eef1f6;
}
.similar-card:last-of-type {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.similar-card-img {
  position: relative;
  width: 84px;
  height: 68px;
  flex-shrink: 0;
  border-radius: 5px;
  overflow: hidden;
}
.similar-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.similar-card-img button {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  font-size: var(--fs-eyebrow);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 1px 4px #0002;
}
.similar-card-img button:hover {
  color: var(--pink);
}
.similar-card-body {
  flex: 1;
  min-width: 0;
}
.similar-card-body b {
  display: block;
  font-size: var(--fs-eyebrow);
  color: var(--navy);
  line-height: 1.25;
  letter-spacing: 0.5px;
}
.similar-card-body > span {
  display: block;
  font-size: var(--fs-footer);
  color: #667492;
  margin: 3px 0 5px;
  letter-spacing: 0.5px;
}
.similar-card-body > span i {
  color: var(--pink);
}
.similar-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 6px;
}
.similar-card-meta strong {
  font-size: var(--fs-eyebrow);
  color: #09275d;
  letter-spacing: 0.5px;
}
.similar-card-meta strong em {
  font-size: var(--fs-footer);
  color: var(--navy);
  font-weight: 500;
  font-style: normal;
}
.similar-card-meta small {
  font-size: var(--fs-footer);
  color: #667492;
}
.similar-more {
  display: block;
  text-align: center;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--pink);
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #eef1f6;
  letter-spacing: 0.5px;
}

@media (max-width: 991px) {
  .detail-head {
    flex-direction: column;
  }
  .detail-head-right {
    text-align: left;
    width: 100%;
  }
  .detail-actions {
    justify-content: flex-start;
  }
  .detail-gallery {
    grid-template-columns: 1fr;
  }
  .detail-gallery-thumbs {
    flex-direction: row;
  }
  .detail-thumb img {
    min-height: 90px;
  }
  .detail-stats {
    flex-wrap: wrap;
  }
  .detail-stat {
    flex: 1 1 45%;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .detail-about,
  .detail-location {
    grid-template-columns: 1fr;
  }
  .detail-sidebar {
    position: static;
  }
}

@media (max-width: 575px) {
  .detail-stat {
    flex: 1 1 100%;
  }
  .amenity-grid {
    grid-template-columns: 1fr;
  }
  .space-card {
    flex-direction: column;
  }
  .space-card-img {
    width: 100%;
    height: 140px;
  }
  .space-card-img img {
    min-height: 140px;
  }
}

@media (min-width: 1200px) {
  .detail-gallery-main {
    min-height: 320px;
  }
  .detail-gallery-main > img {
    min-height: 320px;
  }
}

@media (min-width: 1440px) {
  .detail-price strong {
    font-size: var(--fs-card-price);
  }
  .detail-gallery-main {
    min-height: 380px;
  }
  .detail-gallery-main > img {
    min-height: 380px;
  }
  .detail-tabs a {
    padding: 12px 16px;
  }
}

/* ── Business Centers Listing ── */
.bc-hero {
  position: relative;
  overflow: hidden;
  padding: 18px 0 36px;
  min-height: 280px;
}
.bc-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
.bc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.88) 42%,
    rgba(255, 255, 255, 0.35) 72%,
    rgba(255, 255, 255, 0.15) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.bc-hero-content {
  position: relative;
  z-index: 2;
}
.bc-hero .breadcrumbs {
  margin-bottom: 8px;
}
.bc-hero-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.bc-hero h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
  color: var(--navy);
}
.bc-hero h1 strong {
  color: var(--pink);
  font-weight: 700;
}
.bc-hero-copy {
  font-size: var(--fs-hero-copy);
  line-height: 1.6;
  color: #56698f;
  margin: 8px 0 0;
  max-width: 480px;
}
.bc-props {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin-top: 14px;
}
.bc-prop {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  color: var(--navy);
}
.bc-prop i {
  color: var(--pink);
  font-size: var(--fs-btn);
}
.bc-script {
  font-family: Caveat, cursive;
  font-size: calc(var(--fs-h2) + 6px);
  color: var(--pink);
  margin: 0;
  line-height: 1.2;
  opacity: 0.85;
  flex-shrink: 0;
  max-width: 160px;
  text-align: right;
}
.bc-search-wrap {
  position: relative;
  z-index: 3;
}
.bc-search-wrap .search-box {
  border-radius: 8px;
  box-shadow: 0 5px 18px #213e6d28;
}
.bc-search-wrap .search-btn {
  white-space: nowrap;
  padding: 0 18px !important;
}
.bc-main {
  padding-top: 20px;
}
.bc-card .office-info {
  display: flex;
  flex-direction: column;
  height: calc(100% - var(--card-img-h));
}
.bc-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: auto;
  padding-top: 6px;
}
.bc-card-actions .btn {
  width: 100%;
  padding: 6px 4px !important;
  font-size: var(--fs-footer) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bc-view-toggle button {
  min-width: 34px;
  justify-content: center;
  padding: 6px 8px;
}
.bc-view-toggle button.active {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}
.bc-view-toggle button + button {
  border-left: 1px solid var(--line);
}
.bc-help {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff7fa, #fff);
  padding: 14px;
  margin-bottom: 12px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.bc-help h3 {
  font-size: var(--fs-card-h3);
  margin: 0 0 6px;
  color: var(--navy);
  line-height: 1.3;
}
.bc-help > p {
  font-size: 14px;
  color: #56698f;
  margin: 0 0 10px;
  line-height: 1.5;
}
.bc-help .btn {
  width: 100%;
  padding: 9px !important;
  font-size: var(--fs-btn) !important;
  margin-bottom: 10px;
}
.bc-help-list {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.bc-help-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: var(--navy);
  padding: 3px 0;
  letter-spacing: 0.4px;
}
.bc-help-list i {
  color: var(--pink);
  font-size: var(--fs-eyebrow);
}
.bc-help-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 4px auto 0;
  border: 3px solid #fff;
  box-shadow: 0 2px 10px #213e6d22;
}
.bc-why {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 14px;
}
.bc-why h3 {
  font-size: var(--fs-card-h3);
  margin: 0 0 12px;
  color: var(--navy);
}
.bc-why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid #eef1f6;
}
.bc-why-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.bc-why-item:first-of-type {
  padding-top: 0;
}
.bc-why-item > i {
  color: var(--pink);
  font-size: calc(var(--fs-btn) + 4px);
  margin-top: 2px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}
.bc-why-item b {
  display: block;
  font-size: var(--fs-eyebrow);
  color: var(--navy);
  line-height: 1.2;
}
.bc-why-item span {
  display: block;
  font-size: var(--fs-footer);
  color: #667492;
  margin-top: 2px;
  line-height: 1.35;
}

@media (max-width: 991px) {
  .bc-hero-head {
    flex-direction: column;
  }
  .bc-script {
    text-align: left;
    max-width: none;
  }
  .bc-search-wrap .search-box {
    flex-direction: column;
    border-radius: 8px;
  }
  .bc-search-wrap .search-divider {
    width: 100%;
    height: 1px;
    margin: 0;
  }
  .bc-search-wrap .search-btn {
    border-radius: 0 0 8px 8px !important;
    padding: 12px !important;
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .bc-props {
    flex-direction: column;
    gap: 8px;
  }
  .bc-card-actions {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 1200px) {
  .bc-hero {
    padding: 24px 0 44px;
    min-height: 320px;
  }
  .bc-hero-copy {
    max-width: 520px;
  }
  .bc-script {
    font-size: calc(var(--fs-h2) + 10px);
    max-width: 200px;
  }
}

@media (min-width: 1440px) {
  .bc-hero {
    min-height: 360px;
    padding-bottom: 52px;
  }
  .bc-script {
    max-width: 240px;
  }
}

/* Auth Pages */
.auth-hero {
  position: relative;
  min-height: calc(100vh - 57px);
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #edf1f7;
}
.auth-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  z-index: 0;
}
.auth-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    95deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 32%,
    rgba(255, 255, 255, 0.55) 52%,
    rgba(255, 255, 255, 0.18) 72%,
    rgba(255, 255, 255, 0.05) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.auth-hero-content {
  position: relative;
  z-index: 2;
  padding: 48px 0 56px;
  width: 100%;
}
.auth-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 32px 48px;
  align-items: center;
  min-height: calc(100vh - 160px);
}
.auth-promo {
  color: var(--navy);
  max-width: 560px;
  padding-right: 8px;
}
.auth-promo h1 {
  font-size: var(--fs-h1);
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -1.2px;
}
.auth-accent {
  position: relative;
  display: inline-block;
  color: var(--navy);
  isolation: isolate;
}
.auth-accent::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 0.08em;
  height: 0.28em;
  background: var(--pink);
  border-radius: 3px;
  z-index: -1;
  transform: skewX(-12deg);
}
.auth-promo-sub {
  font-size: var(--fs-btn);
  margin: 0 0 26px;
  color: #44587f;
  line-height: 1.55;
  max-width: 420px;
  font-weight: 500;
}
.auth-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: grid;
  gap: 16px;
}
.auth-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: var(--fs-btn);
  font-weight: 600;
  color: var(--navy);
}
.auth-features li i {
  width: 22px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: calc(var(--fs-btn) + 2px);
  flex-shrink: 0;
}
.auth-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid #e5ebf4;
  border-radius: 14px;
  box-shadow: 0 10px 28px #213e6d14;
  width: fit-content;
  max-width: 100%;
}
.auth-stat {
  display: flex;
  align-items: center;
  gap: 10px;
}
.auth-stat > i {
  font-size: calc(var(--fs-stat-b) + 6px);
  color: var(--pink);
  width: 24px;
  text-align: center;
}
.auth-stat b {
  display: block;
  font-size: var(--fs-stat-b);
  line-height: 1.1;
  color: var(--navy);
}
.auth-stat span {
  display: block;
  font-size: 14px;
  color: #667492;
  margin-top: 2px;
  letter-spacing: 0.5px;
}
.auth-card-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
.auth-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px 28px;
  box-shadow: 0 18px 48px #0a1f4a2e;
  border: 1px solid #eef1f6;
  width: 100%;
  max-width: 420px;
}
.auth-card h2 {
  font-size: 22px;
  margin: 0 0 6px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-align: center;
}
.auth-card-sub {
  font-size: var(--fs-eyebrow);
  color: #667492;
  margin: 0 auto 22px;
  line-height: 1.45;
  text-align: center;
  max-width: 280px;
}
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.auth-field {
  position: relative;
  display: flex;
  align-items: center;
}
.auth-field > i:first-child {
  position: absolute;
  left: 12px;
  color: #0c0c0c;
  font-size: var(--fs-eyebrow);
  pointer-events: none;
  z-index: 1;
}
.auth-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 40px 12px 36px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  letter-spacing: 0.5px;
}
.auth-field input::placeholder {
  color: #9aa6bd;
}
.auth-field input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px #f9006d1a;
}
.auth-toggle-pass {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: transparent;
  color: #8a97b0;
  padding: 6px;
  cursor: pointer;
  font-size: var(--fs-eyebrow);
  line-height: 1;
}
.auth-toggle-pass:hover {
  color: var(--pink);
}
.auth-form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 2px 0 4px;
}
.auth-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: var(--fs-link);
  color: #56698f;
  cursor: pointer;
  margin: 0;
  line-height: 1.4;
}
.auth-check input {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  accent-color: var(--pink);
  flex-shrink: 0;
}
.auth-check a {
  color: var(--pink);
  font-weight: 600;
}
.auth-agree {
  margin: 2px 0 4px;
}
.auth-forgot {
  font-size: var(--fs-link);
  font-weight: 600;
  color: var(--pink);
  white-space: nowrap;
}
.auth-forgot:hover {
  text-decoration: underline;
}
.auth-submit {
  padding: 12px !important;
  font-size: var(--fs-btn) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  border-radius: 8px;
}
.auth-feedback {
  font-size: var(--fs-link);
  color: #087855;
  margin: 4px 0 0;
  min-height: 14px;
}
.auth-feedback.is-error {
  color: #c0392b;
}
.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 14px;
  color: #000000;
  font-size: 14px;
}
.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.auth-divider span {
  white-space: nowrap;
}
.auth-social {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 8px;
  width: 100%;
}
.auth-social-btn {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px 4px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
  white-space: normal;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 1px;
}
.auth-social-btn:hover {
  border-color: var(--pink);
  background: var(--pale);
  color: var(--pink);
}
.auth-social-btn .fa-google {
  color: #db4437;
}
.auth-social-btn .fa-facebook-f {
  color: #1877f2;
}
.auth-social-btn:hover .fa-google,
.auth-social-btn:hover .fa-facebook-f {
  color: inherit;
}
.auth-switch {
  text-align: center;
  font-size: var(--fs-eyebrow);
  color: #56698f;
  margin: 18px 0 0;
}
.auth-switch a {
  color: var(--pink);
  font-weight: 600;
}
.auth-switch a:hover {
  text-decoration: underline;
}
.auth-phone-row {
  grid-template-columns: 110px 1fr;
  align-items: stretch;
}
.auth-phone-code {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  height: 100%;
}
.auth-phone-code .select-trigger {
  min-height: 100%;
  border: 0;
  border-radius: 8px;
  padding: 8px 10px;
}
.auth-phone-code .select-menu {
  z-index: 30;
}
.auth-phone-row .auth-field {
  min-width: 0;
}
.auth-card-register {
  max-width: 480px;
  padding: 28px 24px 24px;
}
.auth-card-register .auth-card-sub {
  max-width: 320px;
}
.auth-card-register .auth-form {
  gap: 10px;
}
.auth-card-register .auth-field input {
  padding-top: 10px;
  padding-bottom: 10px;
}
.auth-footer .cta {
  display: none;
}

@media (max-width: 991px) {
  .auth-hero {
    min-height: auto;
    align-items: flex-start;
  }
  .auth-hero-bg {
    object-position: center;
  }
  .auth-overlay {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 40%,
      rgba(255, 255, 255, 0.72) 100%
    );
  }
  .auth-hero-content {
    padding: 28px 0 36px;
  }
  .auth-layout {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: 0;
  }
  .auth-promo {
    max-width: none;
    padding-right: 0;
  }
  .auth-card-wrap {
    justify-content: center;
  }
  .auth-card,
  .auth-card-register {
    max-width: 420px;
    width: 100%;
  }
  .auth-stats {
    gap: 12px 16px;
    width: 100%;
  }
}

@media (max-width: 575px) {
  .auth-row {
    grid-template-columns: 1fr;
  }
  .auth-phone-row {
    grid-template-columns: 110px 1fr;
  }
  .auth-form-row {
    flex-wrap: wrap;
  }
  .auth-social {
    grid-template-columns: 1fr;
  }
  .auth-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .auth-card {
    padding: 24px 18px 20px;
  }
}

/* ── Contact Page ── */
.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 100px;
  min-height: 420px;
}
.contact-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 35%;
  z-index: 0;
}
.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    92deg,
    #fff 0%,
    #fff 34%,
    rgba(255, 255, 255, 0.92) 46%,
    rgba(255, 255, 255, 0.45) 62%,
    rgba(255, 255, 255, 0.1) 100%
  );
  z-index: 1;
  pointer-events: none;
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact-hero-copy-block {
  max-width: 560px;
  padding-top: 12px;
}
.contact-hero h1 {
  font-size: 43px;
  line-height: 1.12;
  margin: 0 0 14px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -1.2px;
}
.contact-hero-accent {
  position: relative;
  display: inline-block;
  color: var(--pink);
  isolation: isolate;
}
.contact-hero-accent::after {
  content: "";
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 0.02em;
  height: 0.3em;
  background: var(--pink);
  border-radius: 40% 60% 50% 50%;
  opacity: 0.35;
  z-index: -1;
  transform: skewX(-14deg) rotate(-1deg);
}
.contact-hero-copy {
  font-size: var(--fs-btn);
  line-height: 1.6;
  color: #3d5078;
  margin: 0;
  max-width: 480px;
  font-weight: 500;
}
.contact-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  width: 60%;
  max-width: none;
  margin: 0;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 16px;
  padding: 22px 10px;
  box-shadow: 0 12px 36px #213e6d1a;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.contact-trust-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 6px 10px;
  border-right: 1px solid rgba(220, 228, 240, 0.75);
}
.contact-trust-card:last-child {
  border-right: 0;
}
.contact-trust-card > i {
  color: var(--pink);
  font-size: calc(var(--fs-btn) + 15px);
  line-height: 1;
  margin-bottom: 2px;
}
.contact-trust-card b {
  display: block;
  font-size: var(--fs-link);
  color: var(--navy);
  line-height: 1.25;
  font-weight: 700;
}
.contact-trust-card span {
  display: block;
  font-size: var(--fs-stat-s);
  color: var(--navy);
  line-height: 1.35;
  max-width: 150px;
  letter-spacing: 0.3px;
}
.contact-form-section {
  background: linear-gradient(180deg, #fff5f9 0%, #f7f9fc 42%, #f4f7fb 100%);
  padding: 40px 0 40px;
  margin-top: -52px;
  position: relative;
  z-index: 3;
}

.contact-form-card {
  background: #fff;
  border: 1px solid #eef1f6;
  border-radius: 18px;
  padding: 34px 40px 36px;
  box-shadow: 0 18px 48px #0a1f4a1a;
  max-width: 720px;
  margin: 0 auto;
}
.contact-form-head {
  text-align: center;
  margin-bottom: 22px;
}
.contact-form-eyebrow {
  margin: 0 0 6px;
  color: var(--pink);
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 1.2px;
}
.contact-form-card h2 {
  font-size: var(--fs-h2);
  margin: 0 0 8px;
  color: var(--navy);
  font-weight: 600;
  letter-spacing: -0.6px;
  text-align: center;
  letter-spacing: 1px;
}
.contact-form-sub {
  font-size: 14px;
  color: #667492;
  margin: 0;
  line-height: 1.45;
  text-align: center;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-field {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}
.contact-field > i {
  position: absolute;
  left: 12px;
  color: #8a97b0;
  font-size: var(--fs-eyebrow);
  pointer-events: none;
  z-index: 1;
}
.contact-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px 12px 36px;
  font-family: inherit;
  font-size: var(--fs-eyebrow);
  color: var(--navy);
  background: #fff;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.contact-field input::placeholder {
  color: #9aa6bd;
}
.contact-field input:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px #f9006d1a;
}
.contact-phone {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: visible;
  background: #fff;
  min-width: 0;
}
.contact-phone:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px #f9006d1a;
}
.contact-phone-code {
  flex: 0 0 auto;
  min-width: 96px;
  border-right: 1px solid var(--line);
}
.contact-phone-code .select-trigger {
  min-height: 46px;
  border: 0;
  border-radius: 10px 0 0 10px;
  padding: 8px 10px;
  gap: 4px;
}
.contact-phone-code .select-trigger span {
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  color: var(--navy);
  display: inline;
}
.contact-phone-code .select-menu {
  z-index: 40;
  min-width: 120px;
}
.contact-phone > input {
  border: 0;
  border-radius: 0 10px 10px 0;
  flex: 1;
  min-width: 0;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: transparent;
  letter-spacing: 1px;
}
.contact-phone > input::placeholder {
  color: #9aa6bd;
}
.contact-phone > input:focus {
  outline: none;
}
.contact-interest-select {
  width: 100%;
}
.contact-interest-select .select-trigger {
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  gap: 10px;
}
.contact-interest-select .select-trigger > i:first-child {
  font-size: var(--fs-eyebrow);
  color: #8a97b0;
}
.contact-interest-select .select-trigger span {
  font-size: 14px;
  font-weight: 500;
  color: #9aa6bd;
  letter-spacing: 1px;
}
.contact-interest-select.has-value .select-trigger span {
  color: var(--navy);
}
.contact-interest-select .select-menu {
  z-index: 30;
}
.contact-message-wrap {
  position: relative;
}
.contact-message-wrap > i {
  position: absolute;
  left: 12px;
  top: 14px;
  color: #8a97b0;
  font-size: var(--fs-eyebrow);
  pointer-events: none;
  z-index: 1;
}
.contact-message-wrap textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px 28px 36px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: #fff;
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
  letter-spacing: 0.5px;
}
.contact-message-wrap textarea::placeholder {
  color: #9aa6bd;
}
.contact-message-wrap textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px #f9006d1a;
}
.contact-char-count {
  position: absolute;
  right: 12px;
  bottom: 8px;
  font-size: var(--fs-footer);
  color: #8a97b0;
}
.contact-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: #56698f;
  cursor: pointer;
  margin: 2px 0 4px;
  line-height: 1.4;
}
.contact-check input {
  width: 14px;
  height: 14px;
  margin-top: 1px;
  accent-color: var(--pink);
  flex-shrink: 0;
}
.contact-check a {
  color: var(--pink);
  font-weight: 600;
}
.contact-submit {
  padding: 13px !important;
  font-size: var(--fs-btn) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  border-radius: 10px;
}
.contact-locations {
  background: #fff;
  padding-top: 8px;
}
.contact-loc-card {
  height: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 14px #213e6d0a;
}
.contact-loc-card > img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}
.contact-loc-body {
  padding: 12px 12px 14px;
}
.contact-loc-body h3 {
  font-size: var(--fs-card-h3);
  margin: 0 0 8px;
  color: var(--navy);
  font-weight: 600;
}
.contact-loc-body p {
  font-size: 13px;
  color: #56698f;
  margin: 0 0 4px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.4;
}
.contact-loc-body p i {
  color: #8a97b0;
  margin-top: 2px;
  width: 12px;
  text-align: center;
  flex-shrink: 0;
}
.contact-loc-body > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  color: var(--pink);
}
.contact-map-section {
  padding: 0 0 28px;
  background: #fff;
}
.contact-map {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 20px #213e6d10;
}
.contact-map-head {
  max-width: 180px;
}
.contact-map-body {
  height: 380px;
  position: relative;
}
.contact-map-body > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-map-body .map-pin {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-size: 22px;
}
.contact-map-body .map-pin em {
  font-style: normal;
  font-size: var(--fs-footer);
  font-weight: 600;
  color: var(--navy);
  background: #fff;
  padding: 2px 6px;
  border-radius: 4px;
  box-shadow: 0 2px 8px #0002;
  white-space: nowrap;
}
.contact-pin-marina {
  top: 58%;
  left: 18%;
}
.contact-pin-bay {
  top: 42%;
  left: 48%;
}
.contact-pin-downtown {
  top: 36%;
  left: 58%;
}
.contact-pin-difc {
  top: 48%;
  left: 40%;
}
.contact-reach {
  background: #fff;
  padding: 22px 0;
  border-top: 1px solid #e8eef6;
  border-bottom: 1px solid #e8eef6;
}
.contact-reach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.contact-reach-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-reach-item > i {
  color: var(--pink);
  font-size: calc(var(--fs-btn) + 6px);
  margin-top: 2px;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}
.contact-reach-item b {
  display: block;
  font-size: var(--fs-eyebrow);
  color: var(--navy);
  margin-bottom: 2px;
  letter-spacing: 1px;
}
.contact-reach-item span,
.contact-reach-item a {
  display: block;
  font-size: 14px;
  color: #56698f;
  line-height: 1.4;
  letter-spacing: 0.5px;
}
.contact-reach-item a:hover {
  color: var(--pink);
}
.contact-faq {
  background: #fff;
  padding: 40px 0px;
}
.contact-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.contact-faq-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  width: 100%;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 16px 18px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 12px #213e6d08;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease;
}
.contact-faq-item:hover {
  border-color: #f3c0d5;
  box-shadow: 0 6px 16px #213e6d12;
}
.contact-faq-item > span {
  font-size: var(--fs-btn);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
  letter-spacing: 0.5px;
}
.contact-faq-item > i {
  color: #8a97b0;
  font-size: var(--fs-eyebrow);
  transition: transform 0.2s ease;
}
.contact-faq-item[aria-expanded="true"] {
  border-color: var(--pink);
  background: var(--pale);
}
.contact-faq-item[aria-expanded="true"] > i {
  transform: rotate(90deg);
  color: var(--pink);
}
.contact-faq-answer {
  grid-column: 1 / -1;
  display: none;
  font-size: 15px;
  color: #56698f;
  line-height: 1.55;
  padding-top: 4px;
  letter-spacing: 0.5px;
}
.contact-faq-item[aria-expanded="true"] .contact-faq-answer {
  display: block;
}

@media (max-width: 991px) {
  .contact-hero {
    padding: 28px 0 80px;
    min-height: auto;
  }
  .contact-trust-bar {
    width: 100%;
    max-width: none;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 18px 14px;
  }
  .contact-trust-card {
    border-right: 0;
    padding: 12px 8px;
    border-bottom: 1px solid #e8eef6;
  }
  .contact-trust-card:nth-child(3),
  .contact-trust-card:nth-child(4) {
    border-bottom: 0;
  }
  .contact-form-card {
    padding: 24px 18px 26px;
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .contact-reach-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-faq-grid {
    grid-template-columns: 1fr;
  }
  .contact-map-body {
    height: 280px;
  }
}

@media (max-width: 575px) {
  .contact-trust-bar {
    grid-template-columns: 1fr;
  }
  .contact-trust-card {
    border-bottom: 1px solid #e8eef6;
  }
  .contact-trust-card:last-child {
    border-bottom: 0;
  }
  .contact-reach-grid {
    grid-template-columns: 1fr;
  }
  .contact-loc-card > img {
    height: 120px;
  }
  .contact-map-body .map-pin em {
    display: none;
  }
}
:root {
  --brand-pink: #f51678;
  --brand-pink-dark: #ee0868;
  --text-dark: #172554;
  --muted: #667085;
  --border: #e9edf4;
}

body {
  margin: 0;

  background: #fff;
  color: var(--text-dark);
}

.testimonial-section {
  background: #fff;
  overflow: hidden;
  float: left;
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
.carousel {
  position: relative;
  margin-top: 25px;
}
.testimonial-wrap {
  position: relative;
  padding: 18px 0 14px;
}

.section-eyebrow {
  margin: 0 0 2px;
  color: #594193;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.section-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 600;
  color: #13234e;
  letter-spacing: 0.3px;
  margin-bottom: 24px;
}

.testimonial-card {
  min-height: 75px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 5px 18px 3px 0;
}

.client-photo {
  width: 78px;
  height: 78px;
  min-width: 78px;
  border-radius: 50%;
  object-fit: cover;
  background: #eef1f5;
  border: 1px solid #e4e8ef;
}

.quote-mark {
  color: var(--brand-pink);
  font-size: 30px;
  line-height: 15px;
  font-weight: 900;
  margin-right: -6px;
  align-self: flex-start;
  margin-top: 4px;
}

.testimonial-text {
  margin: 0 0 3px;
  font-size: 14px;
  line-height: 1.35;
  color: #000000;
  letter-spacing: 0.5px;
}

.client-name {
  margin: 0;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
  color: #0f2238;
  margin-top: 9px;
}

.client-role {
  margin: 1px 0 0;
  font-size: 14px;
  color: #000000;
  letter-spacing: 0.5px;
}

.testimonial-controls {
  position: absolute;
  right: 0;
  top: 13px;
  display: flex;
  gap: 7px;
  z-index: 5;
}

.testimonial-controls button {
  width: 31px;
  height: 31px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #e2e7ef;
  background: #fff;
  color: #15306b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 7px rgba(20, 35, 75, 0.06);
}

.testimonial-controls button:hover {
  color: var(--brand-pink);
  border-color: #ffd0e3;
}

/* Bottom CTA */
.cta-strip {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  float: left;
  width: 100%;
  min-height: 55px;
  background: linear-gradient(100deg, #0f2238 0%, #f9006d 55%, #0f2238 100%);
  color: #fff;
}

.cta-strip::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -20px;
  bottom: -12px;
  width: 390px;
  height: 78px;
  opacity: 0.24;
  background: linear-gradient(
    90deg,
    transparent 0 2%,
    #7c1551 2% 4%,
    transparent 4% 7%,
    #7c1551 7% 9%,
    transparent 9% 12%,
    #7c1551 12% 15%,
    transparent 15% 18%,
    #7c1551 18% 20%,
    transparent 20% 24%,
    #7c1551 24% 27%,
    transparent 27% 30%,
    #7c1551 30% 33%,
    transparent 33% 37%,
    #7c1551 37% 40%,
    transparent 40% 44%,
    #7c1551 44% 46%,
    transparent 46% 50%,
    #7c1551 50% 54%,
    transparent 54% 58%,
    #7c1551 58% 61%,
    transparent 61% 66%,
    #7c1551 66% 69%,
    transparent 69% 73%,
    #7c1551 73% 76%,
    transparent 76% 81%,
    #7c1551 81% 84%,
    transparent 84% 88%,
    #7c1551 88% 91%,
    transparent 91%
  );
  clip-path: polygon(
    0 100%,
    0 74%,
    3% 74%,
    3% 56%,
    6% 56%,
    6% 70%,
    9% 70%,
    9% 44%,
    12% 44%,
    12% 64%,
    15% 64%,
    15% 36%,
    18% 36%,
    18% 58%,
    21% 58%,
    21% 48%,
    24% 48%,
    24% 72%,
    27% 72%,
    27% 39%,
    30% 39%,
    30% 55%,
    33% 55%,
    33% 30%,
    36% 30%,
    36% 62%,
    39% 62%,
    39% 46%,
    42% 46%,
    42% 68%,
    45% 68%,
    45% 35%,
    48% 35%,
    48% 54%,
    51% 54%,
    51% 28%,
    54% 28%,
    54% 64%,
    57% 64%,
    57% 42%,
    60% 42%,
    60% 59%,
    63% 59%,
    63% 33%,
    66% 33%,
    66% 67%,
    69% 67%,
    69% 45%,
    72% 45%,
    72% 57%,
    75% 57%,
    75% 31%,
    78% 31%,
    78% 62%,
    81% 62%,
    81% 39%,
    84% 39%,
    84% 69%,
    87% 69%,
    87% 46%,
    90% 46%,
    90% 60%,
    93% 60%,
    93% 34%,
    96% 34%,
    96% 72%,
    100% 72%,
    100% 100%
  );
}

.cta-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-heading {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.3px;
}

#contact {
  float: left;
  width: 100%;
}

.cta-copy {
  margin: 1px 0 0;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 5px;
  letter-spacing: 0.5px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 17px;
  border-radius: 4px;
  background: #fff;
  color: #0f2238;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.cta-button:hover {
  color: var(--brand-pink-dark);
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991.98px) {
  .testimonial-wrap {
    padding-right: 65px;
  }

  .testimonial-card {
    padding-right: 0;
  }

  .cta-inner {
    gap: 20px;
  }
}

@media (max-width: 767.98px) {
  .testimonial-wrap {
    padding: 17px 58px 13px 0;
  }

  .section-eyebrow {
    font-size: 10px;
  }

  .section-title {
    font-size: 18px;
  }

  .testimonial-card {
    min-height: 100px;
    align-items: flex-start;
    padding-top: 9px;
  }

  .client-photo {
    width: 48px;
    height: 48px;
    min-width: 48px;
  }

  .testimonial-text {
    font-size: 10px;
  }

  .testimonial-controls {
    right: 0;
    top: 14px;
  }

  .cta-inner {
    min-height: auto;
    padding: 13px 0;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .cta-heading {
    font-size: 15px;
  }

  .cta-copy {
    font-size: 9px;
  }

  .cta-strip::before {
    width: 100%;
  }
}

.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.action-btn {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* Call & WhatsApp icon buttons */
.call-btn,
.whatsapp-btn {
  width: 46px;
  flex: 0 0 46px;
  font-size: 18px;
}

/* Call */
.call-btn {
  background: #f8e7ef;
  color: #f9006d;
}

.call-btn:hover {
  background: #d94b82;
  color: #fff;
}

/* WhatsApp */
.whatsapp-btn {
  background: #e8f7ee;
  color: #25d366;
}

.whatsapp-btn:hover {
  background: #25d366;
  color: #fff;
}

/* Enquire Now */
.enquire-btn {
  flex: 1;
  gap: 8px;
  padding: 0 18px;
  background: transparent;
  color: #13234e;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid #13234e;
  letter-spacing: 0.5px;
}

.enquire-btn:hover {
  background: transparent;
  color: #d94b82;
}

.enquire-btn i {
  font-size: 13px;
}

@media (max-width: 1600px) {
  .container {
    max-width: 1550px;
  }
}
@media (max-width: 1440px) {
  .container {
    max-width: 1400px !important;
  }
  .hero h1 {
    font-size: 48px;
  }

  .nav-link,
  .nav-actions a {
    font-size: 14px;
  }
  .nav-link,
  .nav-actions a {
    padding-left: 8px !important;
    padding-right: 8px !important;
  }

  .stat b {
    font-size: 20px;
    display: block;
  }
  .stat span {
    font-size: 14px;
  }
  .office-info strong {
    color: var(--pink);
    font-size: 16px;
    letter-spacing: 0.5px;
  }
  .location-grid b {
    font-size: 15px;
  }
  .tags span {
    font-size: 9px;
    padding: 6px 9px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 1400px) {
  .container {
    max-width: 1366px !important;
  }

  .link-columns h3,
  .popular h3 {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 1366px) {
  .link-columns h3,
  .popular h3 {
    font-size: 16px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .container {
    max-width: 1320px !important;
  }
}

.city-tabs {
  gap: 10px;
  margin: 26px 0 17px;
}
.popular p {
  font-size: 14px;
  margin-bottom: 8px;
  letter-spacing: 0.4px;
}
.popular a {
  font-size: 13px;
  padding: 7px 15px;
  letter-spacing: 0.5px;
}
.explore-result-label {
  font-size: 14px;
  margin: 29px 0 13px;
  letter-spacing: 0.5px;
}

.link-columns h3,
.popular h3 {
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}
.link-columns h3,
.popular h3 {
  font-size: 17px;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.city-tabs button {
  min-width: 106px;
  font-size: 13px;
  padding: 7px;
  letter-spacing: 0.5px;
}

.office-finder {
  width: 100%;
  max-width: 430px;
  margin: 0px auto;
  padding: 5px;
}

/* MAP */
.map-box {
  position: relative;
  height: 320px;
  overflow: hidden;
  border-radius: 6px;
  background: #e7f1f7;
}

.map-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-switch {
  position: absolute;
  top: 16px;
  left: 15px;
  display: flex;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 3px 12px rgba(20, 45, 90, 0.12);
  overflow: hidden;
  z-index: 4;
}

.map-switch button {
  border: 0;
  background: #fff;
  color: #142d60;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 12px;
  cursor: pointer;
}

.map-switch button.active {
  border-bottom: 3px solid #ff0870;
}

.fullscreen {
  position: absolute;
  right: 10px;
  top: 16px;
  width: 35px;
  height: 35px;
  border: 0;
  border-radius: 5px;
  background: #fff;
  color: #173568;
  font-size: 18px;
  box-shadow: 0 2px 10px rgba(20, 45, 90, 0.12);
  cursor: pointer;
  z-index: 4;
}

.pin {
  position: absolute;
  width: 22px;
  height: 28px;
  background: #ff0870;
  border: 4px solid #fff;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.12);
  z-index: 3;
}

.pin:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  top: 5px;
  left: 5px;
}

.pin-1 {
  left: 54%;
  top: 23%;
}
.pin-2 {
  left: 52%;
  top: 36%;
}
.pin-3 {
  left: 49%;
  top: 63%;
}
.pin-4 {
  left: 18%;
  top: 66%;
}
.pin-5 {
  left: 7%;
  top: 78%;
}
.pin-6 {
  left: 34%;
  top: 46%;
}

.office-popup {
  position: absolute;
  z-index: 5;
  left: 31%;
  top: 42%;
  width: 260px;
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
}

.office-popup img {
  width: 61px;
  height: 48px;
  border-radius: 5px;
  object-fit: cover;
  flex-shrink: 0;
}

.popup-title {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: #10295b;
}

.popup-price {
  margin: 0;
  font-size: 12px;
  color: #ff0870;
  font-weight: 700;
}

.popup-price span {
  color: #ff0870;
  font-weight: 400;
}

.zoom {
  position: absolute;
  right: 10px;
  bottom: 9px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  z-index: 4;
}

.zoom button {
  width: 31px;
  height: 31px;
  border: 0;
  background: #fff;
  font-size: 19px;
  color: #153466;
}

/* HELP CARD */
.help-card {
  position: relative;
  min-height: 136px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 5px;
  background: linear-gradient(100deg, #f7f7f7, #f7f7f7);
}

.help-content {
  position: relative;
  z-index: 2;
  padding: 18px 15px 16px;
  width: 72%;
}

.help-content h2 {
  margin: 0 0 4px;
  color: #112b61;
  font-size: 17px;
  line-height: 1.2;
}

.help-content p {
  margin: 0;
  color: #29477d;
  font-size: 12px;
  line-height: 1.45;
}

.expert-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-top: 13px;
  padding: 10px 14px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #09275d;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.expert-btn span {
  font-size: 17px;
  line-height: 0;
}

.expert-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 31%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* BENEFITS */
.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 16px;
  padding: 7px 0 3px;
}

.benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 45px;
  padding: 0 7px;
  border-right: 1px solid #dce1eb;
  color: #2c3e67;
  font-size: 9px;
  text-align: left;
}

.benefit:last-child {
  border-right: 0;
}

.benefit-icon {
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff0870;
  font-size: 22px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .listing-trust {
    flex-direction: row;
    gap: 10px;
  }

  .listing-popular a {
    border: 1px solid #d8e0ed;
    padding: 4px 10px;
    background: #fff;
    border-radius: 20px;
    font-size: 12px;
    color: #56698f;
    letter-spacing: 0.5px;
  }
  .listing-hero-copy {
    font-size: 13px;
    line-height: 1.6;
    color: #56698f;
    margin: 8px 0 0;
    max-width: 100%;
  }

  .office-finder {
    max-width: 850px;
  }
  .map-box {
    height: 420px;
  }
  .help-card {
    min-height: 170px;
  }
  .help-content {
    padding: 25px 25px;
    width: 100%;
  }
  .help-content h2 {
    font-size: 24px;
  }
  .help-content p {
    font-size: 14px;
    max-width: 470px;
  }
  .expert-btn {
    font-size: 13px;
    padding: 12px 20px;
  }
  .benefit {
    font-size: 12px;
  }
  .benefit-icon {
    font-size: 26px;
  }

  .hero-copy {
    max-width: 100%;
  }

  .search-box {
    width: 100%;
  }
  .search-box {
    width: 100%;
  }

  .eyebrow {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .watch {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
  }
  .btn {
    border-radius: 4px;
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 17px;
  }

  .btn .fa-arrow-right {
    display: none;
  }

  .select-trigger span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: 0.25px;
  }
  .select-trigger small {
    display: block;
    color: #667492;
    font-size: 13px;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 0.5px;
  }
  .search-btn {
    border-radius: 0 0 8px 8px !important;
    padding: 13px !important;
    justify-content: center;
    background-color: #172554;
    color: #fff;
  }
  .hero-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .stat b {
    font-size: 16px;
    display: block;
  }
  .stat:last-child {
    border-bottom: 1px solid #dce3ec;
  }
  .office-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }
  .section-title h2 {
    font-size: 19px;
  }
  .section-title > a,
  .all-link {
    font-size: 13px;
  }

  .office-info p {
    font-size: 12px;
    margin: 8px 0;
    color: #607093;
  }

  .features {
    display: flex;
    gap: 22px;
    font-size: 11px;
    margin: 11px 0;
    color: #4b5e85;
    margin-top: 6px;
    letter-spacing: 0.5px;
  }

  .enquire-btn {
    flex: 1;
    gap: 8px;
    padding: 0 8px;
    background: transparent;
    color: #13234e;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #13234e;
    letter-spacing: 0.5px;
  }
  .office-info strong {
    color: var(--pink);
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .office-info strong em {
    font-size: 11px;
    color: var(--navy);
    font-weight: 500;
    font-style: normal;
  }
  .tags span {
    font-size: 8px;
    padding: 6px 9px;
    letter-spacing: 0.5px;
  }
  .explore {
    margin-top: 13px;
    background: #fff;
    padding: 37px 0 37px;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
  }
  .city-tabs button {
    min-width: 92px;
    font-size: 12px;
    padding: 3px;
    letter-spacing: 0.5px;
  }
  .hero-tabs button,
  .city-tabs button,
  .explore-tabs button,
  .select-trigger,
  .search-btn,
  .card-image button {
    min-height: 33px;
  }

  .explore-tabs button {
    padding: 7px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid #d7ddea;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
  }

  .link-columns > div:not(:first-child) {
    border-left: 0;
    padding-left: 0.8rem;
  }

  .link-columns h3,
  .popular h3 {
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .explore-heading > p {
    font-size: 14px;

    line-height: 1.35;
  }
  .footer-main h3 {
    font-size: 16px;
    color: #fff;
    margin: 2px 0 7px;
  }
  .navbar .dropdown-item {
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    padding: 8px 16px;
    letter-spacing: 0.7px;
  }
  .select-menu button {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 3px;
    padding: 7px 8px;
    background: #fff;
    color: var(--navy);
    font:
      500 9px Poppins,
      Arial,
      sans-serif;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .office-info {
    padding: 21px 18px 21px;
  }

  .cta-heading {
    font-size: 18px;
  }
  .cta-copy {
    font-size: 13px;
  }
  .cta-inner {
    min-height: auto;
    padding: 32px 0;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .auth-promo {
    display: none;
  }
}

@media (max-width: 768px) {
  .auth-card-sub {
    font-size: 13px;

    max-width: 100%;
  }
  .auth-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #56698f;
    cursor: pointer;
    margin: 0;
    line-height: 1.4;
  }

  .space-card-body strong em {
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
    font-style: normal;
  }
  .detail-address {
    font-size: var(--fs-link);
    color: #56698f;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
    font-size: 13px;
  }
  .enquiry-field input,
  .enquiry-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 9px 10px;
    font-family: inherit;
    font-size: 13px;
    color: var(--navy);
    background: #fff;
    letter-spacing: 0.5px;
  }

  .detail-tabs a {
    flex-shrink: 0;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #667492;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.5px;
    letter-spacing: 1px;
  }
  .consultant-info span {
    display: block;
    font-size: 14px;
    color: #667492;
    margin: 2px 0 4px;
  }

  .consultant-info a {
    font-size: 13px;
    color: var(--pink);
    font-weight: 500;
  }

  .consultant-info b {
    display: block;
    font-size: 16px;
    color: var(--navy);
  }
  .consultant-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 8px 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    letter-spacing: 1px;
  }

  .similar-card-meta strong {
    font-size: 13px;
    color: #09275d;
    letter-spacing: 0.5px;
  }
  .similar-card-meta small {
    font-size: 14px;
    color: #667492;
  }

  .solution-banner-box h3 {
    font-size: 15px;
    margin: 0 0 6px;
    color: var(--navy);
  }
  .similar-card-body > span {
    display: block;
    font-size: 13px;
    color: #667492;
    margin: 3px 0 5px;
    letter-spacing: 0.5px;
  }

  .solution-banner-box p {
    font-size: 13px;
    color: #566990;
    margin: 0 0 10px;
    line-height: 1.45;
  }

  .similar-card-body b {
    display: block;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: 0.5px;
  }
  .detail-trust-item span {
    display: block;
    font-size: 13px;
    color: #667492;
    margin-top: 2px;
  }

  .detail-trust-item b {
    display: block;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: 1px;
  }
  .enquiry-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #56698f;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }
  .enquiry-form h3 {
    font-size: 19px;
    margin: 0 0 4px;
    color: var(--navy);
  }

  .detail-location-line {
    font-size: 14px;
  }

  .detail-tagline {
    font-size: 14px;
  }

  .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #667492;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .detail-price strong {
    display: block;
    color: var(--pink);
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-top: 13px;
  }
  .detail-price span {
    font-size: 13px;
    color: #667492;
    letter-spacing: 0.5px;
  }

  .detail-price strong em {
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.5px;
  }
  .detail-stat b {
    display: block;
    font-size: 14px;
  }
  .detail-stat span {
    display: block;
    font-size: 12px;
    color: #667492;
    letter-spacing: 0.56px;
    margin-top: 2px;
  }

  .listing-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #56698f;
    margin: 6px 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  .help-content h2 {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
  .expert-btn {
    font-size: 13px;
    padding: 12px 20px;
    letter-spacing: 0.5px;
  }

  .search-box {
    width: 100%;
  }

  .eyebrow {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .watch {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
  }
  .btn {
    border-radius: 4px;
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px !important;
    font-weight: 600;
    padding: 11px 17px;
  }

  .btn .fa-arrow-right {
    display: none;
  }

  .select-trigger span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: 0.25px;
  }
  .select-trigger small {
    display: block;
    color: #667492;
    font-size: 13px;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 0.5px;
  }
  .search-btn {
    border-radius: 0 0 8px 8px !important;
    padding: 13px !important;
    justify-content: center;
    background-color: #172554;
    color: #fff;
  }
  .hero-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .stat b {
    font-size: 16px;
    display: block;
  }
  .stat:last-child {
    border-bottom: 1px solid #dce3ec;
  }
  .office-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }
  .section-title h2 {
    font-size: 19px;
  }
  .section-title > a,
  .all-link {
    font-size: 13px;
  }

  .office-info p {
    font-size: 12px;
    margin: 8px 0;
    color: #607093;
  }

  .features {
    display: flex;
    gap: 22px;
    font-size: 13px;
    margin: 11px 0;
    color: #4b5e85;
    margin-top: 6px;
    letter-spacing: 0.5px;
  }

  .enquire-btn {
    flex: 1;
    gap: 8px;
    padding: 0 8px;
    background: transparent;
    color: #13234e;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #13234e;
    letter-spacing: 0.5px;
  }
  .office-info strong {
    color: var(--pink);
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .office-info strong em {
    font-size: 11px;
    color: var(--navy);
    font-weight: 500;
    font-style: normal;
  }
  .tags span {
    font-size: 8px;
    padding: 6px 9px;
    letter-spacing: 0.5px;
  }
  .explore {
    margin-top: 13px;
    background: #fff;
    padding: 37px 0 37px;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
  }
  .city-tabs button {
    min-width: 92px;
    font-size: 12px;
    padding: 3px;
    letter-spacing: 0.5px;
  }
  .hero-tabs button,
  .city-tabs button,
  .explore-tabs button,
  .select-trigger,
  .search-btn,
  .card-image button {
    min-height: 33px;
  }

  .explore-tabs button {
    padding: 7px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid #d7ddea;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
  }

  .link-columns > div:not(:first-child) {
    border-left: 0;
    padding-left: 0.8rem;
  }

  .link-columns h3,
  .popular h3 {
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .explore-heading > p {
    font-size: 14px;

    line-height: 1.35;
  }
  .footer-main h3 {
    font-size: 16px;
    color: #fff;
    margin: 2px 0 7px;
  }
  .navbar .dropdown-item {
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    padding: 8px 16px;
    letter-spacing: 0.7px;
  }
  .select-menu button {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 3px;
    padding: 7px 8px;
    background: #fff;
    color: var(--navy);
    font:
      500 9px Poppins,
      Arial,
      sans-serif;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .office-info {
    padding: 21px 18px 21px;
  }

  .cta-heading {
    font-size: 18px;
  }
  .cta-copy {
    font-size: 13px;
  }
  .cta-inner {
    min-height: auto;
    padding: 32px 0;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .detail-section h2 {
    font-size: 19px;
    margin: 0 0 12px;
    color: var(--navy);
    letter-spacing: 0.6px;
  }
  .detail-about-text p {
    font-size: 14px;
    line-height: 1.65;
    color: #56698f;
    margin: 0 0 10px;
  }
  .detail-highlights li {
    font-size: 14px;
  }
  .detail-highlights h3 {
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--navy);
  }
  .space-card-body h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--navy);
    letter-spacing: 0.5px;
  }
  .space-card-body strong {
    color: #09275d;
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .listing-link {
    align-self: flex-end;
    font-size: 14px;
    font-weight: 600;
    color: var(--pink);
    margin-top: auto;
  }
  .detail-section-head > a {
    font-size: 14px;
    color: var(--pink);
    font-weight: 600;
    white-space: nowrap;
  }
  .amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--navy);
    padding: 0px 0;
    letter-spacing: 0.5px;
  }
  .detail-landmarks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--navy);
    padding: 8px 0;
    border-bottom: 1px solid #eef1f6;
    letter-spacing: 1px;
  }

  .detail-placeholder {
    font-size: 14px;
    color: #56698f;
    margin: 0;
    line-height: 1.5;
  }
  .detail-faq .accordion-body {
    font-size: 14px;
    line-height: 1.6;
    color: #56698f;
    padding: 10px 12px;
    letter-spacing: 0.5px;
  }

  .detail-faq .accordion-button {
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    padding: 16px 12px;
    box-shadow: none !important;
    background: #fff;
    letter-spacing: 0.5px;
  }

  .contact-faq-answer {
    grid-column: 1 / -1;
    display: none;
    font-size: 14px;
    color: #56698f;
    line-height: 1.55;
    padding-top: 4px;
    letter-spacing: 0.5px;
  }
  .contact-faq-item > span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    letter-spacing: 0.5px;
  }
  .contact-reach-grid {
    grid-template-columns: 1fr;
  }

  .contact-reach-item b {
    display: block;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 2px;
    letter-spacing: 1px;
    font-weight: 600;
  }
  .contact-hero-copy {
    font-size: 14px;
  }
  .contact-trust-card span {
    display: block;
    font-size: 13px;
    color: var(--navy);
    line-height: 1.35;
    max-width: 150px;
    letter-spacing: 0.3px;
  }
  .contact-trust-card b {
    display: block;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .contact-field input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px 12px 36px;
    font-family: inherit;
    font-size: 14px;
    color: var(--navy);
    background: #fff;
    letter-spacing: 0.5px;
    transition:
      border-color 0.15s ease,
      box-shadow 0.15s ease;
  }
  .contact-loc-body p {
    font-size: 14px;
    color: #56698f;
    margin: 0 0 4px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
  }

  .contact-hero h1 {
    font-size: 35px;
  }

  .bc-help-photo {
    display: none;
  }
}

@media (max-width: 600px) {
  .auth-card-sub {
    font-size: 13px;

    max-width: 100%;
  }
  .auth-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: #56698f;
    cursor: pointer;
    margin: 0;
    line-height: 1.4;
  }

  .space-card-body strong em {
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
    font-style: normal;
  }
  .detail-address {
    font-size: var(--fs-link);
    color: #56698f;
    margin: 0 0 10px;
    letter-spacing: 0.5px;
    font-size: 13px;
  }
  .enquiry-field input,
  .enquiry-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 9px 10px;
    font-family: inherit;
    font-size: 13px;
    color: var(--navy);
    background: #fff;
    letter-spacing: 0.5px;
  }

  .detail-tabs a {
    flex-shrink: 0;
    padding: 10px 12px;
    font-size: 14px;
    font-weight: 500;
    color: #667492;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.5px;
    letter-spacing: 1px;
  }
  .consultant-info span {
    display: block;
    font-size: 14px;
    color: #667492;
    margin: 2px 0 4px;
  }

  .consultant-info a {
    font-size: 13px;
    color: var(--pink);
    font-weight: 500;
  }

  .consultant-info b {
    display: block;
    font-size: 16px;
    color: var(--navy);
  }
  .consultant-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 8px 4px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    background: #fff;
    letter-spacing: 1px;
  }

  .similar-card-meta strong {
    font-size: 13px;
    color: #09275d;
    letter-spacing: 0.5px;
  }
  .similar-card-meta small {
    font-size: 14px;
    color: #667492;
  }

  .solution-banner-box h3 {
    font-size: 15px;
    margin: 0 0 6px;
    color: var(--navy);
  }
  .similar-card-body > span {
    display: block;
    font-size: 13px;
    color: #667492;
    margin: 3px 0 5px;
    letter-spacing: 0.5px;
  }

  .solution-banner-box p {
    font-size: 13px;
    color: #566990;
    margin: 0 0 10px;
    line-height: 1.45;
  }

  .similar-card-body b {
    display: block;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.25;
    letter-spacing: 0.5px;
  }
  .detail-trust-item span {
    display: block;
    font-size: 13px;
    color: #667492;
    margin-top: 2px;
  }

  .detail-trust-item b {
    display: block;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: 1px;
  }
  .enquiry-field label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: #56698f;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
  }
  .enquiry-form h3 {
    font-size: 19px;
    margin: 0 0 4px;
    color: var(--navy);
  }

  .detail-location-line {
    font-size: 14px;
  }

  .detail-tagline {
    font-size: 14px;
  }

  .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #667492;
    margin-bottom: 10px;
    flex-wrap: wrap;
  }
  .detail-price strong {
    display: block;
    color: var(--pink);
    font-size: 19px;
    line-height: 1.2;
    letter-spacing: 1px;
    margin-top: 13px;
  }
  .detail-price span {
    font-size: 13px;
    color: #667492;
    letter-spacing: 0.5px;
  }

  .detail-price strong em {
    font-size: 13px;
    color: var(--navy);
    font-weight: 500;
    font-style: normal;
    letter-spacing: 0.5px;
  }
  .detail-stat b {
    display: block;
    font-size: 14px;
  }
  .detail-stat span {
    display: block;
    font-size: 12px;
    color: #667492;
    letter-spacing: 0.56px;
    margin-top: 2px;
  }

  .listing-desc {
    font-size: 14px;
    line-height: 1.55;
    color: #56698f;
    margin: 6px 0 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: 0.3px;
  }
  .help-content h2 {
    font-size: 20px;
    letter-spacing: 0.5px;
  }
  .expert-btn {
    font-size: 13px;
    padding: 12px 20px;
    letter-spacing: 0.5px;
  }

  .search-box {
    width: 100%;
  }

  .eyebrow {
    font-size: 12px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .watch {
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
  }
  .btn {
    border-radius: 4px;
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px !important;
    font-weight: 600;
    padding: 11px 17px;
  }

  .btn .fa-arrow-right {
    display: none;
  }

  .select-trigger span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: 0.25px;
  }
  .select-trigger small {
    display: block;
    color: #667492;
    font-size: 13px;
    font-weight: 400;
    margin-top: 5px;
    letter-spacing: 0.5px;
  }
  .search-btn {
    border-radius: 0 0 8px 8px !important;
    padding: 13px !important;
    justify-content: center;
    background-color: #172554;
    color: #fff;
  }
  .hero-content {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .stat b {
    font-size: 16px;
    display: block;
  }
  .stat:last-child {
    border-bottom: 1px solid #dce3ec;
  }
  .office-info h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
  }
  .section-title h2 {
    font-size: 19px;
  }
  .section-title > a,
  .all-link {
    font-size: 13px;
  }

  .office-info p {
    font-size: 12px;
    margin: 8px 0;
    color: #607093;
  }

  .features {
    display: flex;
    gap: 22px;
    font-size: 13px;
    margin: 11px 0;
    color: #4b5e85;
    margin-top: 6px;
    letter-spacing: 0.5px;
  }

  .enquire-btn {
    flex: 1;
    gap: 8px;
    padding: 0 8px;
    background: transparent;
    color: #13234e;
    font-size: 13px;
    font-weight: 600;
    border: 2px solid #13234e;
    letter-spacing: 0.5px;
  }
  .office-info strong {
    color: var(--pink);
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .office-info strong em {
    font-size: 11px;
    color: var(--navy);
    font-weight: 500;
    font-style: normal;
  }
  .tags span {
    font-size: 8px;
    padding: 6px 9px;
    letter-spacing: 0.5px;
  }
  .explore {
    margin-top: 13px;
    background: #fff;
    padding: 37px 0 37px;
    border-top: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
  }
  .city-tabs button {
    min-width: 92px;
    font-size: 12px;
    padding: 3px;
    letter-spacing: 0.5px;
  }
  .hero-tabs button,
  .city-tabs button,
  .explore-tabs button,
  .select-trigger,
  .search-btn,
  .card-image button {
    min-height: 33px;
  }

  .explore-tabs button {
    padding: 7px 20px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    border: 1px solid #d7ddea;
    border-radius: 6px;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
  }

  .link-columns > div:not(:first-child) {
    border-left: 0;
    padding-left: 0.8rem;
  }

  .link-columns h3,
  .popular h3 {
    font-size: 15px;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
  }

  .explore-heading > p {
    font-size: 14px;

    line-height: 1.35;
  }
  .footer-main h3 {
    font-size: 16px;
    color: #fff;
    margin: 2px 0 7px;
  }
  .navbar .dropdown-item {
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    padding: 8px 16px;
    letter-spacing: 0.7px;
  }
  .select-menu button {
    display: block;
    width: 100%;
    border: 0;
    border-radius: 3px;
    padding: 7px 8px;
    background: #fff;
    color: var(--navy);
    font:
      500 9px Poppins,
      Arial,
      sans-serif;
    text-align: left;
    cursor: pointer;
    font-size: 14px;
    letter-spacing: 1px;
  }

  .office-info {
    padding: 21px 18px 21px;
  }

  .cta-heading {
    font-size: 18px;
  }
  .cta-copy {
    font-size: 13px;
  }
  .cta-inner {
    min-height: auto;
    padding: 32px 0;
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .detail-section h2 {
    font-size: 19px;
    margin: 0 0 12px;
    color: var(--navy);
    letter-spacing: 0.6px;
  }
  .detail-about-text p {
    font-size: 14px;
    line-height: 1.65;
    color: #56698f;
    margin: 0 0 10px;
  }
  .detail-highlights li {
    font-size: 14px;
  }
  .detail-highlights h3 {
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--navy);
  }
  .space-card-body h3 {
    font-size: 16px;
    margin: 0 0 4px;
    color: var(--navy);
    letter-spacing: 0.5px;
  }
  .space-card-body strong {
    color: #09275d;
    font-size: 15px;
    letter-spacing: 0.5px;
  }

  .listing-link {
    align-self: flex-end;
    font-size: 14px;
    font-weight: 600;
    color: var(--pink);
    margin-top: auto;
  }
  .detail-section-head > a {
    font-size: 14px;
    color: var(--pink);
    font-weight: 600;
    white-space: nowrap;
  }
  .amenity-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--navy);
    padding: 0px 0;
    letter-spacing: 0.5px;
  }
  .detail-landmarks li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--navy);
    padding: 8px 0;
    border-bottom: 1px solid #eef1f6;
    letter-spacing: 1px;
  }

  .detail-placeholder {
    font-size: 14px;
    color: #56698f;
    margin: 0;
    line-height: 1.5;
  }
  .detail-faq .accordion-body {
    font-size: 14px;
    line-height: 1.6;
    color: #56698f;
    padding: 10px 12px;
    letter-spacing: 0.5px;
  }

  .detail-faq .accordion-button {
    font-family: Poppins, Arial, sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    padding: 16px 12px;
    box-shadow: none !important;
    background: #fff;
    letter-spacing: 0.5px;
  }

  .contact-faq-answer {
    grid-column: 1 / -1;
    display: none;
    font-size: 14px;
    color: #56698f;
    line-height: 1.55;
    padding-top: 4px;
    letter-spacing: 0.5px;
  }
  .contact-faq-item > span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.35;
    letter-spacing: 0.5px;
  }
  .contact-reach-grid {
    grid-template-columns: 1fr;
  }

  .contact-reach-item b {
    display: block;
    font-size: 13px;
    color: var(--navy);
    margin-bottom: 2px;
    letter-spacing: 1px;
    font-weight: 600;
  }
  .contact-hero-copy {
    font-size: 14px;
  }
  .contact-trust-card span {
    display: block;
    font-size: 13px;
    color: var(--navy);
    line-height: 1.35;
    max-width: 150px;
    letter-spacing: 0.3px;
  }
  .contact-trust-card b {
    display: block;
    font-size: 14px;
    color: var(--navy);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  .contact-field input {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 12px 14px 12px 36px;
    font-family: inherit;
    font-size: 14px;
    color: var(--navy);
    background: #fff;
    letter-spacing: 0.5px;
    transition:
      border-color 0.15s ease,
      box-shadow 0.15s ease;
  }
  .contact-loc-body p {
    font-size: 14px;
    color: #56698f;
    margin: 0 0 4px;
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.4;
  }

  .contact-hero h1 {
    font-size: 35px;
  }

  .bc-help-photo {
    display: none;
  }
}

@media (max-width: 480px) {
  .benefits {
    display: none;
  }

  .help-content h2 {
    font-size: 17px;
    letter-spacing: 0.5px;
  }

  .listing-card-top h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    color: var(--navy);
    letter-spacing: 1px;
  }

  .location-grid b {
    font-size: 14px;
  }
  .tags span {
    font-size: 11px;
    padding: 6px 9px;
    letter-spacing: 0.5px;
  }

  .watch {
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
  }
  .office-info p {
    font-size: 14px;
    margin: 8px 0;
    color: #607093;
    letter-spacing: 0.5px;
  }
  .features {
    display: flex;
    gap: 22px;
    font-size: 13px;
    margin: 11px 0;
    color: #4b5e85;
    margin-top: 6px;
    letter-spacing: 0.5px;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 14px;
  }
  .office-popup {
    left: 28%;
    width: 245px;
  }
  .expert-photo {
    width: 32%;
  }

  .location-grid span {
    font-size: 12px;
    display: block;
    color: #314b7d;
    padding-bottom: 4px;
  }
  .link-columns a {
    font-size: 13px;
    display: block;
    line-height: 1.7;
    letter-spacing: 0.4px;
  }
  .testimonial-text {
    font-size: 14px;
  }

  .explore-heading h2 {
    font-size: 19px;
    letter-spacing: 0.5px;
  }

  .bc-help-photo {
    display: none;
  }
}

@media (max-width: 414px) {
  .listing-card-top p {
    font-size: 13px;
    margin: 8px 0 0;
    color: #607093;
    letter-spacing: 1px;
  }

  .listing-card-top strong {
    letter-spacing: 0.5px;
  }

  .hero h1 {
    font-size: 33px;
  }
  .stat span {
    font-size: 13px;
  }

  .section-title > a,
  .all-link {
    font-size: 13px;
    margin-top: 7px;
  }

  .city-tabs {
    gap: 4px;
    margin: 26px 0 17px;
  }
  .popular a {
    font-size: 13px;
    padding: 7px 15px;
    letter-spacing: 0.5px;
    width: 100%;
  }

  .testimonial-text {
    font-size: 13px;
  }

  .footer-main .col-6 a:not(.social a) {
    display: block;
    font-size: 13px;
    line-height: 2.65;
    letter-spacing: 0.5px;
  }
  .footer-bottom {
    border-top: 1px solid #49618a;
    margin-top: 13px;
    padding-top: 9px;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    letter-spacing: 0.5px;
  }
  .select-trigger span {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: 0.25px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 29px;
  }
}
@media (max-width: 360px) {
  .stat b {
    font-size: 15px;
    display: block;
  }
  .stat span {
    font-size: 10px;
  }
}

.popular > div > a {
  display: inline-block;
  color: #56698f;
  white-space: nowrap;
  line-height: 1.4;
}
.popular > div > a:hover {
  border-color: var(--pink);
  color: var(--pink);
}
