/*
Theme Name: Resido
Theme URI: 
Author: TemplatesJungle
Author URI: https://templatesjungle.com/
Description: Resido is Bootstrap 5 HTML Template for Real Estate by TemplatesJungle.
Version: 1.2
*/

/** Base Styles
--------------------------------------------------------------*/


:root {
  --accent-color: #e86a1a;
  --accent-dark: #b34f0e;
  --accent-light: #fff3ea;
  --dark-color: #111111;
  --light-color: #FFFFFF;
  --grey-color: #83898F;
  --body-text-color: #111111;
  --light-text-color: #505050;
  --link-color: #092035;

  --bs-primary-rgb: 252, 187, 88;

  --jg-orange: #e86a1a;
  --jg-orange-dark: #b34f0e;
  --jg-orange-light: #fff3ea;
  --jg-radius: 14px;
  --jg-radius-sm: 10px;
  --jg-shadow: 0 8px 32px rgba(0,0,0,.18);
  --font-display: "Nunito", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

/** Typography
  --------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 19px;
  line-height: 1.6em;
  color: var(--body-text-color);
  background-color: var(--light-color);
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Nunito", sans-serif;
  font-weight: 600;
  color: var(--body-text-color);
}

h1,
.h1 {
  font-size: 68px;
}

h2,
.h2 {
  font-size: 52px;
}

h3,
.h3 {
  font-size: 32px;
}

@media only screen and (max-width: 500px) {

  h1,
  .h1 {
    font-size: 58px;
  }

  h2,
  .h2 {
    font-size: 40px;
  }
}

em {
  font-weight: 700;
}

ul {
  padding: 0;
}

p {
  font-family: 'Open Sans', sans-serif;
  color: var(--light-text-color);
  font-size: 20px;
}

/* Smooth wipe left to right effect */
.swipe-reveal {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateX(-15px);
  animation: smoothWipe 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 0.5s; /* Tiempito de carga inicial */
}

@keyframes smoothWipe {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
    transform: translateX(-15px);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
    transform: translateX(0);
  }
}

/* Gradient for icons */
.icon-gradient {
  background: linear-gradient(135deg, var(--jg-orange), var(--jg-orange-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

a {
  color: var(--light-text-color);
  text-decoration: none;
  transition: all 0.3s ease-out;
}

a:hover {
  color: var(--accent-color);
}


li.residence-list {
  list-style: none;
  margin-right: 10px;
}

i {
  color: var(--light-text-color);
}

i:hover {
  color: var(--body-text-color);
  text-decoration: none;
}


.padding-large {
  padding-top: 20rem;
}

.padding-medium {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.padding-medium-2 {
  padding-top: 14rem;
  padding-bottom: 6rem;
}

@media only screen and (max-width: 768px) {

  .padding-large {
    padding-top: 18rem;
  }

  .padding-medium {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .padding-medium-2 {
    padding-top: 12rem;
  }
}

/* Bootstrap button style  */
.btn {
  --bs-btn-border-radius: 10rem;
  --bs-btn-padding-x: 2rem;
  --bs-btn-padding-y: 1rem;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--accent-color);
  --bs-btn-border-color: var(--accent-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--accent-color);
  --bs-btn-hover-border-color: var(--accent-color);

  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--accent-color);
  --bs-btn-active-border-color: var(--accent-color);

  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--accent-color);
  --bs-btn-disabled-border-color: var(--accent-color);
}

.btn-outline-primary {
  --bs-btn-color: var(--accent-color);
  --bs-btn-border-color: var(--accent-color);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--accent-color);
  --bs-btn-hover-border-color: var(--accent-color);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--accent-color);
  --bs-btn-active-border-color: var(--accent-color);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--accent-color);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--accent-color);
  --bs-gradient: none;
}


/*---- navbar section start ---- */

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: var(--light-color);
}

.nav-link {
  color: var(--light-color);
  font-size: 16px;
  position: relative;
}

.nav-link:not(.dropdown-toggle):after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  background: var(--accent-color);
  border-bottom: 2px solid var(--accent-color);
  transition: width 0.3s ease-out;
}

.dropdown-menu {
  --bs-dropdown-border-radius: 0px;
  --bs-dropdown-link-active-bg: var(--grey-color);
  min-width: max-content;
}

.nav-link.active:after {
  width: 100%;
}

/* login form  */
a.password:hover {
  color: var(--link-color);
}

.form-control:focus {
  color: #212529;
  background-color: #fff;
  border-color: var(--dark-color);
  outline: 0;
  box-shadow: 0 0 0 0.25rem #ffffffea;
}

.modal-backdrop {
  --bs-backdrop-zindex: 1029;
}

.bg-dark {
  background-color: var(--dark-color) !important;
}

.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99999;
  transition: background 0.3s ease-out;
}

a.navbar-brand {
  color: var(--body-text-color);
}

a.nav-link.dropdown-toggle {
  color: #D6D6D6;
  font-size: 16px;
}

.offcanvas.show {
  background-color: var(--dark-color);
}



/*---- billboard section start ----  */

.form-select {
  border: 1px solid transparent;
  border-radius: none;
}

.form-select:focus {
  border-color: transparent;
  outline: 0;
  box-shadow: 0 0 0 0.25rem transparent;
}





button.btn.btn-primary.btn-lg.billboard-search {
  padding: 24px;
  border: 5px solid white;
  width: 100%;
}


@media only screen and (max-width: 1000px) {

  

}



/*---- residence section start ----  */

.card {
  --bs-card-border-width: none;
  --bs-card-border-radius: none;
  --bs-card-inner-border-radius: none;
  background-color: transparent !important;

}


/*---- testimonial section start ---- */
p.testimonial-p {
  font-size: 32px;
  color: var(--body-text-color);
}

.testimonial-swiper-button {
  bottom: 30px;
  right: 0px;
  width: 120px;
}

.swiper-button-prev.testimonial-arrow,
.swiper-button-next.testimonial-arrow {
  color: var(--body-text-color);
  --swiper-navigation-size: 30px;
  font-weight: bold;
}

.arrow-divider {
  font-size: 30px;
  color: var(--grey-color);
  padding-left: 56px;
  padding-bottom: 6px;
}

@media only screen and (max-width: 900px) {
  p.testimonial-p {
    font-size: 25px;
    color: var(--body-text-color);
  }

}



/*--------------------------------------------------------------
about page style start
--------------------------------------------------------------*/

img.abt-img {
  width: inherit;
}


/*--------------------------------------------------------------
blog page style start
--------------------------------------------------------------*/

.pagination {
  --bs-pagination-color: var(--dark-color);
  --bs-pagination-active-bg: var(--accent-color);
  --bs-pagination-active-border-color: var(--grey-color);
}

.post-grid .post-item .post-image {
  width: 100%;
}

.post-item .btn-link {
  display: block;
  color: var(--light-text-color);
  position: relative;
  margin-top: 20px;
  text-decoration: none;
}

.post-item .post-image {
  margin-right: 20px;
}

.post-item .btn-link:hover:after {
  width: 90px;
}

.post-item .btn-link:after {
  content: '';
  display: block;
  border-bottom: 1px solid var(--light-text-color);
  width: 20px;
  transition: width 0.3s ease-out;
}

.btn-link,
.btn-link:hover {
  color: var(--body-text-color);
}



/*--------------------------------------------------------------
single-post page style start
--------------------------------------------------------------*/

.commentorImg {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}


/*--------------------------------------------------------------
style page style start
--------------------------------------------------------------*/

/* chocolat style  */
.chocolat-wrapper {
  z-index: 99999;
}

.accordion-button:not(.collapsed) {
  color: var(--body-text-color);
  background-color: transparent;
}

.accordion {
  --bs-accordion-color: var(--light-text-color);
  --bs-accordion-bg: none;
  --bs-accordion-btn-color: var(--body-text-color);
  --bs-accordion-btn-icon: url('https://api.iconify.design/eva/arrow-up-fill.svg?color=black');
  --bs-accordion-btn-active-icon: url('https://api.iconify.design/eva/arrow-up-fill.svg?color=black');
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  box-shadow: none;
}

.nav-tabs {
  --bs-nav-tabs-border-width: none;
  --bs-nav-tabs-link-active-color: none;
  --bs-nav-tabs-link-active-bg: none;
  border-bottom: 1px solid var(--light-text-color);
}

.card.style-card.mb-4.rounded-3.shadow-sm {
  --bs-card-border-width: 1px;
  --bs-card-border-color: var(--light-text-color);
}

.border-primary {

  border-color: var(--accent-color) !important;

}

button.btn.btn-dark {
  --bs-btn-color: #fff;
  --bs-btn-bg: #424649;
  --bs-btn-border-color: #424649;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #212529;
  --bs-btn-hover-border-color: #212529;
}


.bg-primary {
  background-color: var(--accent-color) !important;
}

.table-dark {
  --bs-table-border-color: none;
}

.bi {
  fill: #fff;
}


/*--------------------------------------------------------------
reviews page style start
--------------------------------------------------------------*/
.reviews-components {
  border: 1px solid var(--light-text-color);
  box-shadow: 0px 12px 90px rgba(12, 12, 12, 0.06);
  border-radius: 9px;
}

iconify-icon.quote {
  font-size: 60px;
  color: var(--accent-color);
}

.rate {
  color: var(--accent-color);
}



/*--------------------------------------------------------------
Properties page style start
--------------------------------------------------------------*/

.form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* price slider style  */
.price-input {
  width: 100%;
  display: flex;
  margin: 30px 0 35px;
}

.price-input .field {
  display: flex;
  width: 100%;
  height: 45px;
  align-items: center;
}

.field input {
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 19px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.price-input .separator {
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}

.slider {
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}

.slider .progress {
  height: 100%;
  left: 5%;
  right: 90%;
  position: absolute;
  border-radius: 5px;
  background: var(--accent-color);
}

.range-input {
  position: relative;
}

.range-input input {
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
  height: 17px;
  width: 17px;
  border-radius: 50%;
  background: var(--accent-color);
  pointer-events: auto;
  -webkit-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}

input[type="range"]::-moz-range-thumb {
  height: 17px;
  width: 17px;
  border: none;
  border-radius: 50%;
  background: var(--accent-color);
  pointer-events: auto;
  -moz-appearance: none;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.05);
}


.swatch-element .swatch-label {
  font-weight: 400;
  line-height: 32px;
  text-align: center;
  display: inline-block;
  margin-right: 10px;
  min-width: 50px;
  height: 50px;
  border: 1px solid var(--bs-gray);
  transition: all 0.3s;
  cursor: pointer;
  padding: 8px;
}

.swatch-element .swatch-input {
  display: none;
}

.swatch-element .swatch-input:checked+.swatch-label {
  border: 3px solid var(--accent-color);
}


/*--------------------------------------------------------------
Properties-single page style start
--------------------------------------------------------------*/

iconify-icon.property-icon {
  color: var(--body-text-color);
  font-size: 30px;

}

/* --- JG Inmobiliaria Custom Styles --- */
.site-header { transition: background 0.3s ease; }
.site-header.scrolled { background: #111 !important; }

.service-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid #eee;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: var(--accent-color);
}

@media (max-width: 500px) {
  h1, .h1 { font-size: 42px; }
  h2, .h2 { font-size: 32px; }
}

.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; z-index: 9999;
  box-shadow: 0 4px 16px rgba(37,211,102,0.5);
  transition: transform 0.2s;
  text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); color: white; }

/* --- TIMELINE SLIDER --- */
.timeline {
    --color-accent-light: #fc9a51;
    
    --wrapper-width: 1200px;
    width: 95%;
    max-width: var(--wrapper-width);
    margin: auto;

    --color-accent-light: #fc9a51;
    
    --color-secondary: #ccc;
    --text-color-default: #000;
    --text-color-light: #fff;
    --font-size-default: 18px;
    --font-weight-regular: 400;
    --font-weight-semibold: 700;
    --font-weight-default: var(--font-weight-regular);
    --border-color-default: var(--color-secondary);
    --border-color-accent: var(--color-accent-dark);
    --bg-color-default: #fff;
    --bg-color-dark: #2c2c2c;
    --transition-duration: .2s;
    --transition-timing-function: linear;
    --transition-delay: 0s;
    --negative-multiplier: -1;
    --gradient-default: linear-gradient(122deg, var(--color-accent-light) 0%, var(--color-accent-dark) 100%);
}

.timeline__stepper {
    --step-border-width: 3px;
    --offset-to-slider-content: 30px;
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 services */
    gap: 15px;
    margin-bottom: var(--offset-to-slider-content);
}

@media(min-width: 700px) {
    .timeline__stepper {
        display: flex;
        justify-content: space-around;
        gap: 0;
        --offset-to-slider-content: 50px;
    }
}

.timeline__step {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.timeline__icon {
    --timeline-icon-dimensions: 55px;
    position: relative;
    display: block;
    width: var(--timeline-icon-dimensions);
    max-height: var(--timeline-icon-dimensions);
    height: auto;
    margin: 0 auto 25px auto;
    transition: opacity var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
}

@media(min-width: 700px) {
    .timeline__icon {
        --timeline-icon-dimensions: 80px;
        margin-bottom: 35px;
    }
}

.timeline__icon--active {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    
    opacity: 0;
}

.timeline__step-title {
    --timeline-dot-dimensions: 11px;
    --extra-offset-fox-pixelperfect: -1px;
    position: relative;
    display: block;
    padding-top: 30px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.7;
    border-top: var(--step-border-width) solid var(--border-color-default);
    font-size: 0;
    font-weight: 700;
    color: #000;
}

@media(min-width: 700px) {
    .timeline__step-title {
        font-size: 18px;
    }
}


.timeline__step-title:before,
.timeline__step-title:after {
    position: absolute;
    top: var(--dot-top-position);
    left: 50%;
    display: block;
    width: var(--timeline-dot-dimensions);
    height: var(--timeline-dot-dimensions);
    content: '';
    border-radius: 50%;
}

.timeline__step-title:before {
    --dot-top-position: calc(var(--timeline-dot-dimensions)/2 * var(--negative-multiplier) + var(--extra-offset-fox-pixelperfect));
    transform: translate(-50%);
    border: 2px solid var(--border-color-default);
    background-color: #000;
    z-index: 5;
}

.timeline__step-title:after {
    --timeline-dot-dimensions: 25px;
    --dot-top-position: calc(var(--timeline-dot-dimensions)/2 * var(--negative-multiplier) + var(--extra-offset-fox-pixelperfect));
    transform: translate(-50%) scale(0);
    background-color: #fff;
}

.timeline__step-active-marker {
    --slide-pos-y: none;
    --slide-pos-x: none;
    --slide-width: auto;
    --transition-timing-function: cubic-bezier(0, 0, 0, 1.2);
    position: absolute;
    top: var(--slide-pos-y);
    left: 0;
    display: block;
    width: var(--slide-width);
    height: var(--step-border-width);
    transform: translateX(var(--slide-pos-x));
    transition: transform var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
    background-image: var(--gradient-default);
}


.timeline__step.is-active {
    cursor: default;
}

.timeline__step.is-active .timeline__step-title {
    font-weight: var(--font-weight-semibold);
}

.timeline__step.is-active .timeline__step-title:before {
    transition: background-color var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
    background-color: var(--color-accent-light);
    border-color: var(--color-accent-light);
}

.timeline__step.is-active .timeline__step-title:after {
    transform: translate(-50%) scale(1);
    transition: transform var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
    background-image: var(--gradient-default);
    opacity: .35;
}

.timeline__step.is-active .timeline__icon--default,
.timeline__step:not(.is-active):hover .timeline__icon--default {
    opacity: 0;
}
.timeline__icon--default {
    fill: #000;
}

.timeline__step.is-active .timeline__icon--active,
.timeline__step:not(.is-active):hover .timeline__icon--active {
    opacity: 1;
}

.timeline__slides {
    --slides-container-height: 0px;
    --content-offset-x: 20px;
    --content-offset-y: 30px;
    --decoration-blur-spread: 20px;
    --decoration-opacity: .7;
    --decoration-pos-x: 0;
    --decoration-pos-y: 20px;
    --decoration-scale: 1;
    position: relative;
    width: 1000px;
    max-width: 100%;
    margin: auto;
    height: var(--slides-container-height);
    border-radius: 5px;
    background-color: var(--bg-color-default);
    transition: height var(--transition-duration) var(--transition-timing-function);
}

@media(min-width: 700px) {
    .timeline__slides {
        --content-offset-x: 40px;
        --content-offset-y: 50px;
    }
}

.timeline__slides:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    opacity: var(--decoration-opacity);
    background-image: var(--gradient-default);
    filter: blur(var(--decoration-blur-spread));
    transform: translate3d(var(--decoration-pos-x), var( --decoration-pos-y), 0) scale(var(--decoration-scale));
    z-index: -1;
    border-radius: 10px;
}

.timeline__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: var(--content-offset-y) var(--content-offset-x);
    opacity: 0;
    visibility: hidden;
}

.timeline__slide.is-active {
    transition: opacity var(--transition-duration) var(--transition-timing-function) var(--transition-delay);
    opacity: 1;
    visibility: visible;
}

.timeline__slide-title {
    margin-top: 0;
    margin-bottom: 20px;
    color: #d86a14;
    font-size: 2rem;
}

.timeline__slide-content {
    line-height: 1.8;
    font-size: 1.25rem;
}

.timeline__slide-content p {
    margin-bottom: 1rem;
}
.timeline__slide-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}
.timeline__slide-content li {
    margin-bottom: 0.5rem;
}

/* ============================================================
       MODALES (bottom sheet en mobile)
    ============================================================ */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.55);
      display: flex;
      align-items: center;        /* centrado en toda pantalla */
      justify-content: center;
      z-index: 9999;
      opacity: 0;
      pointer-events: none;
      transition: opacity .25s;
      padding: 20px; /* Margen para que no toque los bordes en móviles */
    }

    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }

    .modal-box {
      background: #fff;
      border-radius: 20px;
      width: 100%;
      max-width: 480px;
      /* espacio seguro para teléfonos con notch inferior */
      padding-bottom: env(safe-area-inset-bottom, 16px);
      transform: scale(0.95);
      opacity: 0;
      transition: all .3s cubic-bezier(.25,.8,.25,1);
      overflow-y: auto;
      max-height: 90vh; /* Permite scroll si el contenido supera la pantalla */
    }

    .modal-overlay.open .modal-box {
      transform: scale(1);
      opacity: 1;
    }

    /* Handle visual para swipe-to-close */
    .modal-handle {
      width: 40px;
      height: 4px;
      background: #e0e0e0;
      border-radius: 2px;
      margin: 12px auto 0;
    }

    /* Cabecera del modal */
    .modal-head {
      padding: 16px 20px 12px;
      border-bottom: 1px solid #f0f0f0;
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .modal-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .modal-icon.orange { background: var(--jg-orange-light); }
    .modal-icon.blue   { background: #e8f0fb; }
    .modal-icon svg    { width: 20px; height: 20px; }

    .modal-title {
      font-family: var(--font-display);
      font-size: 16px;
      font-weight: 800;
      color: #111;
      margin-bottom: 3px;
    }

    .modal-sub {
      font-size: 13px;
      color: #888;
      line-height: 1.45;
    }

    .modal-close {
      background: none;
      border: none;
      cursor: pointer;
      color: #bbb;
      font-size: 22px;
      line-height: 1;
      padding: 0;
      margin-top: 2px;
      flex-shrink: 0;
      transition: color .2s;
    }

    .modal-close:hover { color: #555; }

    /* Cuerpo del modal */
    .modal-body { padding: 16px 20px; }

    /* ---- Pasos del modal Personal Shopper ---- */
    .step-indicator {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 18px;
    }

    .step-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #e0e0e0;
      transition: background .25s, transform .25s;
    }

    .step-dot.active { background: var(--jg-orange); transform: scale(1.35); }
    .step-dot.done   { background: #c8e6c9; }

    .step-pane         { display: none; }
    .step-pane.active  { display: block; }

    /* ---- Campos del formulario ---- */
    .form-field { margin-bottom: 14px; }

    .form-label {
      font-family: var(--font-display);
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: #aaa;
      display: block;
      margin-bottom: 5px;
    }

    .form-label .hint {
      font-family: var(--font-body);
      font-size: 10px;
      color: #bbb;
      font-weight: 400;
      letter-spacing: 0;
      text-transform: none;
    }

    .form-input {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #e8e2db;
      border-radius: var(--jg-radius-sm);
      font-family: var(--font-body);
      font-size: 14px;
      color: #222;
      background: #fafaf8;
      outline: none;
      transition: border-color .2s;
    }

    .form-input:focus { border-color: var(--jg-orange); }

    .form-select {
      width: 100%;
      padding: 11px 32px 11px 14px;
      border: 1.5px solid #e8e2db;
      border-radius: var(--jg-radius-sm);
      font-family: var(--font-body);
      font-size: 14px;
      color: #222;
      background: #fafaf8;
      appearance: none;
      -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23aaa'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      outline: none;
      cursor: pointer;
      transition: border-color .2s;
    }

    .form-select:focus { border-color: var(--jg-orange); }

    /* ---- Radio buttons custom ---- */
    .radio-group {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .radio-opt {
      flex: 1;
      min-width: calc(50% - 4px);
      border: 1.5px solid #e8e2db;
      border-radius: var(--jg-radius-sm);
      padding: 10px 12px;
      cursor: pointer;
      font-size: 13px;
      color: #555;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all .2s;
      background: #fafaf8;
      user-select: none;
    }

    .radio-opt:hover    { border-color: var(--jg-orange); background: var(--jg-orange-light); }
    .radio-opt.selected { border-color: var(--jg-orange); background: var(--jg-orange-light); color: var(--jg-orange-dark); font-weight: 700; }

    .radio-dot {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      border: 2px solid #ddd;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all .2s;
    }

    .radio-opt.selected .radio-dot {
      border-color: var(--jg-orange);
      background: var(--jg-orange);
    }

    .radio-dot-inner {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #fff;
    }

    /* ---- Textarea ---- */
    .form-textarea {
      width: 100%;
      padding: 11px 14px;
      border: 1.5px solid #e8e2db;
      border-radius: var(--jg-radius-sm);
      font-family: var(--font-body);
      font-size: 14px;
      color: #222;
      background: #fafaf8;
      outline: none;
      resize: none;
      transition: border-color .2s;
    }

    .form-textarea:focus { border-color: var(--jg-orange); }

    /* ---- Pill de WhatsApp ---- */
    .whatsapp-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      background: #e8f9ee;
      border-radius: var(--jg-radius-sm);
      padding: 10px 14px;
      margin-bottom: 14px;
    }

    .wa-icon { width: 20px; height: 20px; fill: #25d366; flex-shrink: 0; }

    .wa-text {
      font-size: 13px;
      color: #2e7d32;
      line-height: 1.4;
    }

    /* ---- Checklist en modal Vender ---- */
    .seller-checklist {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin-bottom: 16px;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
      color: #444;
    }

    .check-item svg { width: 16px; height: 16px; fill: #25a06b; flex-shrink: 0; }

    /* ---- Botones de modal ---- */
    .btn-modal {
      width: 100%;
      padding: 14px;
      background: var(--jg-orange);
      color: #fff;
      border: none;
      border-radius: 12px;
      font-family: var(--font-display);
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      transition: background .2s, transform .1s;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .btn-modal:hover  { background: var(--jg-orange-dark); }
    .btn-modal:active { transform: scale(.98); }

    .btn-modal.secondary {
      background: transparent;
      color: var(--jg-orange);
      border: 2px solid var(--jg-orange);
      margin-top: 8px;
    }

    .btn-modal.secondary:hover { background: var(--jg-orange-light); }

    /* ---- Pie del modal ---- */
    .modal-footer {
      padding: 8px 20px 12px;
      font-size: 11px;
      color: #bbb;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 4px;
    }

    .modal-footer svg { width: 12px; height: 12px; fill: #bbb; }


    /* ============================================================
       SECCIÓN DE RESULTADOS (anchor de scroll)
       Esto es un placeholder. En tu sitio, acá van las cards
       de propiedades reales o las destacadas por defecto.
    ============================================================ */
    #resultados {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      background: #f5f5f3;
      padding: 60px 20px;
      gap: 16px;
    }

    #resultados h2 {
      font-family: var(--font-display);
      font-size: 28px;
      font-weight: 800;
      color: #111;
      text-align: center;
    }

    #resultados p {
      font-size: 15px;
      color: #888;
      text-align: center;
      max-width: 400px;
      line-height: 1.6;
    }

    #resultados-titulo {
      transition: all .4s ease;
    }
  

.billboard-select {
  border-right: 1px solid #E8E8E8;
}

.billboard-row {
  background-color: white;
  border-radius: 50rem;
}

.billboard-search {
  border-radius: 50rem;
  transition: all 0.2s ease-in-out;
}

@media only screen and (max-width: 1000px) {
  .billboard-row {
    background-color: white !important;
    border-radius: 20px;
    overflow: hidden;
  }
  
  .billboard-select {
    border-right: none;
    border-bottom: 1px solid #E8E8E8;
  }
  
  .search-container {
    max-width: 400px !important;
  }
  
  .billboard-search {
    border-radius: 0 0 20px 20px !important;
  }
}

/* --- ABOUT US VERTICAL CARDS --- */
.feature-card-vertical {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
  z-index: 1;
}
.feature-card-vertical:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  border-color: var(--color-accent-light, #fc9a51);
}
.feature-card-vertical .feature-number {
  font-family: inherit;
  font-size: 60px;
  font-weight: 900;
  color: var(--color-accent-light, #fc9a51);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
  z-index: -1;
  transition: all 0.3s ease;
}
.feature-card-vertical:hover .feature-number {
  opacity: 0.3;
  transform: scale(1.1);
}
.feature-card-vertical .feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
  margin-top: 10px;
}
.feature-card-vertical .feature-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0;
}

/* --- GLOBAL PADDING MOBILE --- */
@media (max-width: 768px) {
  .container, .container-fluid {
    padding-left: 25px !important;
    padding-right: 25px !important;
  }
}
