
    .container-wide {
        max-width: 1500px;
        margin: auto;
    }
    #listing-loader {
        font-style: italic;
        color: #555;
    }
    .swiper-button-next,
    .swiper-button-prev {
        filter: drop-shadow(0 0 4px rgba(0,0,0,0.6));
    }
    .inter {
        font-family: "Inter", sans-serif !important;
    }
    .list-group-item {
        margin-bottom: 10px;
        border: 3px solid #b7b7b7ff !important;
    }
    .list-group-item:hover {
        border: 3px solid #da2128 !important;
        cursor: pointer;
    }
    .min-100 {
        min-width: 100px;
    }
    .swiper-button-next,
    .swiper-button-prev {
        color: white !important;
    }
    .modal-title {
        margin: 0 auto;
        font-weight: bold;
    }
    .call-card {
        max-width: 400px;
    }
    .border-none {
        border: 1px solid rgba(0,0,0,0);
    }
    .slide-box-image {
        /* width: 100%; */
    }
    .slidey.swiper-container {
        overflow: hidden;
    }

    ul.highlights {
        list-style: none;
        padding-left: 1.2em;
    }
    ul.highlights li {
        padding-left: 10px;
        line-height: 1.5;
    }
    ul.highlights li::marker {
        content: "•";
        color: #d92229;
        font-size: 2em;
    }

    .accordion-body {
        display: none;
        padding: 1rem;
        border-top: 1px solid #ddd;
        animation: fadeIn 0.3s ease;
    }

    .accordion-item.active .accordion-body {
        display: block;
    }

    .chevron {
        display: inline-block;
        width: 0.6rem;
        height: 0.6rem;
        border-right: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);          /* ▼ arrow */
        transition: transform 0.25s ease;  /* smooth animation */
    }

    /* When the accordion is open */
    .accordion-item.active .chevron {
        transform: rotate(-135deg);        /* ▲ arrow */
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(-4px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .accordion-button {
        width: 100%;
        text-align: left;
        background: #f8f9fa;
        border: none;
        outline: none;
        padding: 0.75rem 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .accordion-button:hover {
        background: #e9ecef;
        border: none;
    }

    .accordion-body {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, opacity 0.3s ease;
        opacity: 0;
        padding: 0 1rem;
        border-top: 1px solid #ddd;
    }

    .accordion-item.active .accordion-body {
        max-height: 1500px;
        opacity: 1;
        padding: 1rem;
    }

    .accordion-item {
        background-color: #fff;
        border: 1px solid #eee;
        margin-bottom: 20px;
        border-radius: 20px;
    }
    .swiper-pagination-bullet-active {
        background: var(--swiper-pagination-color,#e22436);
        opacity: var(--swiper-pagination-bullet-opacity,1);
    }

    .btn-red {
        background-color: #e22436;
        color: #fff;
    }

    .red-badge {
        background-color: #db1e2d !important;
        color: white;
    }

    .slide-box-image {
        display: flex;
        justify-content: center;   /* horizontal center */
        align-items: center;       /* vertical center */
    }

    .aspect-3-2 {
        width: 100%;
        aspect-ratio: 3 / 2;   /* 🔒 locked ratio */
        overflow: hidden;
        background: #f3f3f3;
    }

    .aspect-3-2 img {
        width: 100%;
        height: 100%;
        object-fit: contain;    /* fill box, crop if needed */
        display: block;
    }

    /* optional polish */
    .img-link {
        display: block;
        text-decoration: none;
    }

    .aspect-3-2-pdf {
        width: 100%;
        aspect-ratio: 3 / 2;
        position: relative;
        overflow: hidden;
        border-radius: 8px;
        background: #f3f3f3;
        }

        /* Full clickable area */
    .aspect-3-2-pdf .pdf-link {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #b11226;
        background: linear-gradient(
            rgba(0,0,0,0.05),
            rgba(0,0,0,0.15)
        );
    }

        /* Centered PDF UI */
    .aspect-3-2-pdf .pdf-content {
        text-align: center;
    }

    .aspect-3-2-pdf svg {
        width: 56px;
        height: 56px;
        fill: #b11226;
    }

    .aspect-3-2-pdf span {
        display: block;
        margin-top: 8px;
        font-weight: 600;
        letter-spacing: 0.4px;
    }

        /* Hover polish */
    .aspect-3-2-pdf .pdf-link:hover {
        background: rgba(177, 18, 38, 0.1);
    }

    /* FIX: allow multiple slides to show */
    /* .slidey .swiper-wrapper {
        display: flex;
    } */

    .slidey .swiper-slide {
        flex-shrink: 0;
    }

    .red-style {
        margin-top: 40px;
        color: #e22436;
        text-decoration: underline;
    }



.lease-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.lease-modal-overlay.active {
  display: flex;
}

.lease-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 95vh;
  overflow-y: auto;
  background: #f5f5f5;
  border-radius: 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  border: 1px solid #d9d9d9;
}

.lease-modal-header {
  padding: 22px 70px 18px;
  border-bottom: 1px solid #cfcfcf;
  background: #f5f5f5;
}

.lease-modal-title {
  margin: 0;
  color: #000;
  text-align: center;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
}

.lease-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 56px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  z-index: 2;
}

.lease-modal-body {
  padding: 22px 44px 28px;
}

.lease-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.lease-required {
  color: #e30000;
  margin-left: 2px;
}

.lease-optional {
  color: #666;
  font-weight: 400;
}

.lease-input.form-control {
  height: auto;
  border: 2px solid #bdbdbd;
  border-radius: 9px;
  background: #fff;
  box-shadow: none;
  color: #111;
  font-size: 14px;
  font-weight: 300;
  padding: 8px 20px;
}

.lease-input.form-control:focus {
  border-color: #999;
  box-shadow: none;
}

.lease-input::placeholder,
.lease-textarea::placeholder {
  color: #b1b1b1;
  opacity: 1;
}

.lease-select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 22px center;
  background-size: 26px;
  padding-right: 60px;
}

.lease-textarea.form-control {
  min-height: 140px;
  height: auto;
  resize: vertical;
  padding-top: 16px;
}

.lease-submit-btn {
  height: 94px;
  border: 0;
  border-radius: 8px;
  background: #e10000;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
}

.lease-submit-btn:hover,
.lease-submit-btn:focus {
  background: #c90000;
  color: #fff;
  box-shadow: none;
}

.lease-submit-icon {
  margin-right: 14px;
  font-size: 34px;
  vertical-align: middle;
}

#leaseFormResponse .alert {
  font-size: 16px;
}

body.lease-modal-open {
  overflow: hidden;
}

@media (max-width: 991.98px) {

  .lease-modal-title {
    font-size: 20px;
    line-height: 1.25;
  }

  .lease-label {
    font-size: 18px;
  }

  .lease-input.form-control {
    height: 52px;
    font-size: 16px;
    padding: 10px 12px;
  }

  .lease-submit-btn {
    height: 56px;
    font-size: 18px;
  }

  .lease-modal-body {
    padding: 18px;
  }

  .lease-modal-header {
    padding: 18px 44px 14px;
  }

  .lease-modal-close {
    font-size: 34px;
    top: 8px;
    right: 12px;
  }

}

@media (max-width: 575.98px) {

  .lease-modal-overlay {
    padding: 0;
  }

  .lease-modal-dialog {
    max-height: 100vh;
    height: 100vh;
    border-radius: 0;
  }

  .lease-modal-title {
    font-size: 16px;
    line-height: 1.3;
  }

  .lease-label {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .lease-input.form-control {
    height: 44px;
    font-size: 14px;
    padding: 8px 10px;
  }

  .lease-textarea.form-control {
    min-height: 90px;
  }

  .lease-submit-btn {
    height: 48px;
    font-size: 16px;
  }

}

.lease-modal-agents-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
  margin-bottom: 20px;
}

.agent-slider-window{
    overflow:hidden;
    width:220px;
}

.agent-slider-track{
    display:flex;
    transition:transform .35s ease;
}

.agent-slide{
    min-width:220px;
    display:flex;
    align-items:center;
}

.agent-arrow{
    border:none;
    background:#f3f3f3;
    width:34px;
    height:34px;
    border-radius:50%;
    font-size:22px;
    cursor:pointer;
}

.agent-arrow:hover{
    background:#e6e6e6;
}

.cpl-listing { max-width: 1500px; }
.cpl-listing .cpl-fact { display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.cpl-listing .cpl-fact-icon { width:60px; height:auto; }
.cpl-listing .accordion-body { display:block; }
.cpl-listing .accordion-item:not(.active) .accordion-body { max-height:0; opacity:0; padding-top:0; padding-bottom:0; overflow:hidden; }
.cpl-listing .accordion-item.active .accordion-body { max-height:5000px; opacity:1; padding:1rem; }
.cpl-listing .slidey:has(.swiper-slide:only-child) .swiper-button-next,
.cpl-listing .slidey:has(.swiper-slide:only-child) .swiper-button-prev,
.cpl-listing .slidey:has(.swiper-slide:only-child) .swiper-pagination { display:none; }
