/* ============================================================
   GH Propiedades — réplica visual del sitio ghpropiedades.cl
   Paleta y tipografía del sitio original (tema "samar" KiteProp)
   ============================================================ */

/* ---------- Fuente ---------- */
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/quicksand-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('fonts/quicksand-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Variables ---------- */
:root {
  --primary-color: #003166;
  --footer-color: #092642;
  --secondary-color: #ff6633;
  --links-color: #710000;
  --wa-color: #2edb6f;
  --wa-contrast: #ffffff;
  --wa-shadow: rgba(46, 219, 111, 0.38);
}

/* ---------- Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background-color: #fff;
  font-size: 13px;
  line-height: 25px;
  color: #333333;
  font-family: 'Quicksand', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  color: #000000;
  margin: 0 0 8px;
  line-height: 1.3;
}
p {
  margin: 0 0 16px;
}
a {
  color: var(--primary-color);
  text-decoration: none;
}
a:hover {
  color: var(--secondary-color);
}
img {
  max-width: 100%;
  border: 0;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-muted { color: #8a8a8a; }
.text-primary { color: var(--primary-color); }
.text-white { color: #fff; }
.mb-0 { margin-bottom: 0; }
.d-none { display: none !important; }

/* ---------- Grid ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.row.no-gutters {
  margin: 0;
}
.row.no-gutters > [class*='col'] {
  padding: 0;
}
[class*='col'] {
  padding: 0 15px;
  width: 100%;
  min-width: 0;
}
.justify-content-center { justify-content: center; }

@media (min-width: 576px) {
  .col-sm-2 { width: 16.666%; }
  .col-sm-3 { width: 25%; }
  .col-sm-6 { width: 50%; }
  .col-sm-7 { width: 58.333%; }
}
@media (min-width: 768px) {
  .col-md-3 { width: 25%; }
  .col-md-4 { width: 33.333%; }
  .col-md-6 { width: 50%; }
  .col-md-8 { width: 66.666%; }
  .col-md-12 { width: 100%; }
}
@media (min-width: 992px) {
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333%; }
  .col-lg-8 { width: 66.666%; }
}

/* ---------- Botones ---------- */
.btn {
  display: inline-block;
  border: 1px solid transparent;
  padding: 7px 20px;
  font-family: inherit;
  font-size: 13px;
  line-height: 1.6;
  cursor: pointer;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.btn-secondary {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
  border-radius: 35px;
}
.btn-secondary:hover,
.btn-secondary:focus {
  background-color: var(--primary-color) !important;
  border-color: var(--primary-color) !important;
  color: #fff;
}
.btn-outline-primary {
  background: transparent;
  border-color: #fff;
  color: #fff;
  border-radius: 50px;
  padding: 7px 16px;
}
.btn-outline-primary:hover {
  background: #fff;
  color: var(--primary-color);
}
.btn-whatsapp-cta {
  display: block;
  width: 100%;
  background: var(--wa-color);
  border-color: var(--wa-color);
  color: #fff;
  border-radius: 35px;
  font-weight: 600;
  margin-bottom: 10px;
}
.btn-whatsapp-cta:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.btn-block {
  display: block;
  width: 100%;
}
.font-weight-bold { font-weight: bold; }

/* ---------- Iconos SVG inline ---------- */
.icon {
  display: inline-block;
  width: 1.15em;
  height: 1.15em;
  vertical-align: -0.22em;
  fill: currentColor;
}

/* ---------- Header / Navbar ---------- */
.site-header .navbar {
  background-color: var(--primary-color);
  border-radius: 51px;
  margin: 25px auto 0;
  position: absolute;
  z-index: 999;
  left: 15px;
  right: 15px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 24px;
}
.navbar-brand img {
  max-height: 52px;
  display: block;
  padding: 6px 0;
}
.navbar-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
}
.navbar-nav .nav-item {
  position: relative;
}
.navbar-nav .nav-link {
  display: block;
  color: #fff;
  font-weight: normal;
  padding: 25px 18px;
  text-transform: uppercase;
  background: none;
  border: 0;
  font-family: inherit;
  font-size: 13px;
  cursor: pointer;
}
.navbar-nav .nav-link:hover {
  color: #fff;
  opacity: 0.85;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
}
.nav-item.open .dropdown-menu,
.nav-item:hover .dropdown-menu {
  display: block;
}
.dropdown-item {
  display: block;
  padding: 8px 20px;
  color: #333;
}
.dropdown-item:hover {
  background: var(--primary-color);
  color: #fff;
}
.main-nav-right {
  margin-left: auto;
}
@media (min-width: 992px) {
  .navbar-collapse {
    display: flex;
    flex: 1;
    align-items: center;
  }
}
.navbar-toggler {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 6px;
  color: #fff;
  padding: 6px 10px;
  margin-left: auto;
  cursor: pointer;
}

/* ---------- Hero slider ---------- */
.samar-slider {
  position: relative;
}
.samar-slider .carousel {
  position: relative;
  overflow: hidden;
}
.samar-slider .carousel-item {
  height: 560px;
  min-height: 560px;
  background: no-repeat center center scroll;
  background-size: cover;
  display: none;
  position: relative;
}
.samar-slider .carousel-item.active {
  display: block;
}
.slider-1 { background-image: url('img/slider/1.jpg') !important; }
.slider-2 { background-image: url('img/slider/3.jpg') !important; }
.slider-3 { background-image: url('img/slider/2.jpg') !important; }
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(2, 13, 28, 0.45);
}
.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.6;
  z-index: 10;
  background: none;
  border: 0;
  cursor: pointer;
  font-size: 28px;
}
.carousel-control-prev { left: 0; }
.carousel-control-next { right: 0; }
.carousel-control-prev:hover,
.carousel-control-next:hover { opacity: 1; color: #fff; }
.carousel-indicators {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 11;
}
.carousel-indicators button {
  width: 28px;
  height: 4px;
  border: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
}
.carousel-indicators button.active {
  background: #fff;
}

/* ---------- Buscador del hero ---------- */
.slider-form {
  left: 8%;
  position: absolute;
  right: 8%;
  top: 32%;
  z-index: 20;
}
.slider-form h2 {
  font-size: 46px;
  letter-spacing: 1.4px;
  color: #fff;
  font-weight: 600;
}
.slider-form .lead {
  color: #fff;
  margin-bottom: 40px;
}
.slider-form .nav-tabs {
  display: flex;
  margin-bottom: 12px;
}
.slider-form .nav-tabs button {
  background: #fff;
  border: 0;
  border-radius: 50px;
  color: var(--primary-color);
  font-weight: 600;
  font-family: inherit;
  font-size: 13px;
  margin-right: 10px;
  padding: 6px 23px;
  position: relative;
  text-transform: uppercase;
  cursor: pointer;
}
.slider-form .nav-tabs button.active {
  background: var(--secondary-color);
  color: #fff;
}
.slider-form .nav-tabs button.active::after {
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--secondary-color);
  bottom: -6px;
  content: '';
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 14px;
}
.slider-form .tab-content {
  background: #fff;
  border-radius: 35px;
  overflow: hidden;
}
.slider-form .input-group {
  position: relative;
}
.slider-form .input-group-addon {
  line-height: 58px;
  position: absolute;
  text-align: center;
  width: 41px;
  z-index: 9;
  color: var(--primary-color);
}
.slider-form input.form-control,
.slider-form select.form-control {
  border: 0;
  border-radius: 0;
  width: 100%;
  padding: 17px 15px 17px 38px;
  font-family: inherit;
  font-size: 13px;
  background: #fff;
  color: #333;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  height: 58px;
}
.slider-form .btn {
  height: 58px;
  border-radius: 0;
  font-size: 14px;
}

/* Filtros del listado (página propiedades) */
.properties-main-filter h1 {
  font-size: 36px;
  color: #fff !important;
  margin-bottom: 30px;
  font-weight: 600;
}
.properties-main-filter .filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e8e8e8;
  border-radius: 25px;
  overflow: hidden;
}
.properties-main-filter .input-group {
  background: #fff;
}
.properties-main-filter .btn {
  height: 100%;
  min-height: 58px;
}

/* ---------- Secciones ---------- */
.section-padding {
  padding: 50px 0;
}
.section-title h2 {
  font-size: 27px;
  font-weight: bold;
}
.section-title {
  margin-bottom: 48px;
}
.line {
  height: 3px;
  background: var(--secondary-color);
  width: 12%;
  margin: 6px auto 10px;
}

/* ---------- Cards de propiedades ---------- */
.card {
  background: #fff;
  border: 1px solid #eee;
  margin-bottom: 30px;
  display: block;
}
.card-list {
  border-radius: 35px;
  overflow: hidden;
  border: 1px solid #f1f1f1;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
}
.card-list > a {
  display: block;
  color: inherit;
}
.card-img {
  position: relative;
}
.card-img-top {
  border: 1px solid #f8f8f8;
  padding: 5px;
  border-radius: 30px;
  width: 100%;
  height: 235px;
  object-fit: cover;
  display: block;
  background: #f4f6f8;
}
.images-badge {
  color: var(--secondary-color);
  font-size: 16px;
  left: 20px;
  top: 20px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.22);
  position: absolute;
  z-index: 9;
  background: #fff;
  border-radius: 50px;
  padding: 4px 12px;
  font-weight: 500;
}
.badge-primary {
  border-radius: 50px;
  top: 20px;
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.22);
  font-size: 11px;
  font-weight: 500;
  padding: 6px 8px;
  position: absolute;
  right: 20px;
  z-index: 9;
  background: var(--primary-color);
  color: #fff;
}
.card-body {
  padding: 16px 20px 8px;
}
.card-list .card-body h2 {
  border-radius: 15px;
  box-shadow: 0 -5px 4px 0 #0000001f;
  font-size: 20px;
  font-weight: bold;
  background: #fff;
  line-height: 39px;
  margin: -49px 6px 8px;
  position: relative;
  text-align: center;
  color: var(--primary-color);
}
.card-list .card-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-list .card-subtitle {
  color: #8a8a8a;
  font-size: 12px;
  font-weight: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.card-footer {
  padding: 10px 20px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 14px;
  font-size: 12px;
  color: #555;
  border-top: 1px solid #f4f4f4;
}

/* ---------- Equipo ---------- */
.agents-card {
  background: #fff;
  border-radius: 2px;
  padding: 40px;
  box-shadow: 0 5px 7px #e0e5e8;
  margin-bottom: 30px;
}
.agents-card img {
  background: #fff;
  border-radius: 90px;
  box-shadow: 0 0 24px rgba(11, 123, 255, 0.12);
  height: 107px;
  width: 107px;
  object-fit: cover;
  margin-bottom: 24px;
}
.agents-card h6 {
  color: var(--primary-color);
  font-size: 15px;
}
.agents-card a {
  color: var(--primary-color);
}
.agents-card .wa-link {
  color: #1da851;
}

/* ---------- Header interior (breadcrumbs) ---------- */
.inner-header {
  background: url('img/slider/1.jpg') no-repeat center top / cover;
  position: relative;
  padding-top: 160px !important;
}
.inner-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(2, 13, 28, 0.6);
}
.inner-header .container {
  position: relative;
  z-index: 2;
}
.inner-header h1 {
  color: #fff !important;
  font-size: 32px;
  font-weight: 600;
}
.breadcrumbs p,
.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}
.breadcrumbs a:hover {
  color: #fff;
}

/* ---------- Detalle de propiedad ---------- */
.property-single-title h1 {
  font-size: 26px;
  font-weight: 600;
}
.property-single-title h6 {
  color: #666;
  font-weight: 400;
}
.property-single-title h3 {
  font-size: 28px;
  color: var(--primary-color);
  font-weight: bold;
}
.property-single-title h3 small {
  font-size: 60%;
  font-weight: 500;
}
.property-single-title hr {
  border: 0;
  border-top: 1px solid #eee;
  margin: 18px 0;
}
.padding-card {
  border-radius: 12px;
  border: 1px solid #eee;
  margin-bottom: 30px;
}
.padding-card .card-body {
  padding: 26px;
}
.padding-card .card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 16px;
}
.gallery-carousel .carousel-item {
  display: none;
  height: 430px;
}
.gallery-carousel .carousel-item.active {
  display: block;
}
.gallery-carousel .carousel-item img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  border-radius: 12px;
}
.gallery-carousel {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
}
.gallery-count {
  position: absolute;
  right: 14px;
  bottom: 14px;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  border-radius: 20px;
  padding: 2px 12px;
  font-size: 12px;
  z-index: 12;
}
.list-icon {
  margin-bottom: 24px;
}
.list-icon strong {
  text-transform: uppercase;
  font-size: 12px;
}
.list-icon p {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
}
.list-icon .icon {
  width: 1.6em;
  height: 1.6em;
  color: var(--secondary-color);
  margin-right: 4px;
}
.sidebar-card-list li {
  padding: 4px 0;
  border-bottom: 1px dashed #f0f0f0;
}
.sidebar-card-list .icon {
  color: #28a745;
}
.description-text {
  white-space: pre-line;
}
.agent-contact {
  text-align: center;
}
.agent-contact img {
  border-radius: 90px;
  height: 96px;
  width: 96px;
  object-fit: cover;
  margin-bottom: 12px;
}
.share-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  margin-left: 6px;
}
.share-row a:hover {
  background: var(--secondary-color);
  color: #fff;
}

/* ---------- Paginación ---------- */
.pagination-nav {
  margin-top: 30px;
}
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination button {
  border: 1px solid #e4e4e4;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50px;
  padding: 8px 22px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}
.pagination button:disabled {
  opacity: 0.4;
  cursor: default;
}
.pagination button:not(:disabled):hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: #fff;
}
.results-count {
  text-align: center;
  color: #777;
  margin-bottom: 24px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--primary-color);
}
.footer h6 {
  color: #fff;
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 22px;
}
.footer ul li a {
  opacity: 0.55;
  color: #fff;
  display: block;
  padding: 3px 0;
}
.footer ul li a:hover {
  opacity: 1;
}
.footer p,
.footer span {
  color: rgba(255, 255, 255, 0.75);
}
.footer .logo img {
  max-width: 240px;
  max-height: 55px;
  margin-bottom: 14px;
}
.footer a.contact-line {
  color: #ffc107;
}
.footer a.contact-line.email {
  color: #2edb6f;
}
.footer a.contact-line.web {
  color: #6fb7ff;
}
.footer .newsletter-info {
  color: #8fc9ff;
  font-size: 12px;
  margin-top: 12px;
}
.footer .input-group {
  display: flex;
}
.footer input.form-control {
  flex: 1;
  border: 0;
  border-radius: 4px 0 0 4px;
  padding: 10px 12px;
  font-family: inherit;
  outline: none;
  min-width: 0;
}
.footer .input-group .btn {
  border-radius: 0 4px 4px 0;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  margin-right: 6px;
}
.footer-social a:hover {
  background: var(--secondary-color);
  color: #fff;
}
.footer-bottom {
  background: var(--footer-color);
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p,
.footer-bottom small {
  color: #fff;
  margin: 0;
}

/* ---------- Botón flotante WhatsApp ---------- */
.wa-wrap {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  gap: 10px;
}
.wa-float {
  width: 64px;
  height: 64px;
  border-radius: 9999px;
  background: var(--wa-color);
  color: var(--wa-contrast);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px var(--wa-shadow);
  cursor: pointer;
  animation: wa-pulse 2.25s infinite;
  transition: transform 0.2s ease;
}
.wa-float:hover {
  transform: translateY(-2px);
  color: var(--wa-contrast);
}
.wa-float svg {
  width: 30px;
  height: 30px;
  fill: var(--wa-contrast);
}
.wa-bubble {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #3aa8ff 0%, #2e90ff 100%);
  color: #ffffff;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 6px 22px rgba(46, 143, 255, 0.25);
  font-size: 13px;
  font-weight: 600;
}
.wa-bubble:hover {
  color: #fff;
  transform: translateY(-1px);
}
.wa-bubble::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  margin-top: -6px;
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent #2e90ff;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 var(--wa-shadow); }
  70% { box-shadow: 0 0 0 18px rgba(46, 219, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(46, 219, 111, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float,
  .wa-bubble {
    animation: none;
  }
}

/* ---------- Loading / vacíos ---------- */
.boot-loading {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #777;
}
.boot-spinner {
  width: 42px;
  height: 42px;
  border: 4px solid #e8eef5;
  border-top-color: var(--secondary-color);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin-bottom: 14px;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #777;
}

/* ---------- Páginas estáticas ---------- */
.static-page-content {
  max-width: 860px;
  margin: 0 auto;
  font-size: 14px;
  line-height: 27px;
}
.static-page-content h2 {
  font-size: 24px;
  margin-bottom: 18px;
}
.contact-info-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px;
  text-align: center;
}
.contact-info-card p {
  font-size: 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
  .navbar-toggler {
    display: block;
  }
  .site-header .navbar {
    border-radius: 26px;
    padding: 8px 18px;
  }
  .navbar-collapse {
    display: none;
    width: 100%;
  }
  .navbar-collapse.show {
    display: block;
  }
  .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
  }
  .navbar-nav .nav-link {
    padding: 10px 6px;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.08);
  }
  .dropdown-item {
    color: #fff;
  }
  .main-nav-right {
    margin: 10px 0;
  }
  .slider-form {
    left: 5%;
    right: 5%;
    top: 24%;
  }
  .slider-form h2 {
    font-size: 30px;
  }
  .properties-main-filter .filter-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 16px;
  }
  .inner-header {
    padding-top: 22% !important;
  }
}
@media (max-width: 575px) {
  .samar-slider .carousel-item {
    height: 640px;
    min-height: 640px;
  }
  .slider-form .tab-content {
    border-radius: 20px;
  }
  .slider-form h2 {
    display: none;
  }
  .slider-form .lead {
    display: none;
  }
  .properties-main-filter .filter-grid {
    grid-template-columns: 1fr;
  }
  .properties-main-filter h1 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .gallery-carousel .carousel-item,
  .gallery-carousel .carousel-item img {
    height: 260px;
  }
  .wa-bubble {
    display: none;
  }
  .property-single-title .text-right {
    text-align: left;
  }
}
