/* ================================================================
   BONAFIDE LUXURY — HOMEPAGE SPECIFIC STYLES  v1.2
   ================================================================ */

/* ── HERO ────────────────────────────────────────────────────── */
.lux-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0D1B2A; /* fallback while image loads */
}

.lux-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 10s ease;
  will-change: transform;
}

.lux-hero:hover .lux-hero__bg {
  transform: scale(1);
}

/* Fuerte overlay: muy oscuro a la izquierda donde va el texto */
.lux-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(13, 27, 42, 0.95) 0%,
      rgba(13, 27, 42, 0.85) 35%,
      rgba(13, 27, 42, 0.60) 60%,
      rgba(13, 27, 42, 0.30) 100%
    ),
    linear-gradient(
      to bottom,
      rgba(13, 27, 42, 0.40) 0%,
      rgba(13, 27, 42, 0.00) 40%,
      rgba(13, 27, 42, 0.50) 100%
    );
}

.lux-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 9rem 0 6rem;
}

.lux-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* Eyebrow pill */
.lux-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #E8D5A3;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1.1rem;
  border: 1px solid rgba(232, 213, 163, 0.45);
  border-radius: 100px;
  background: rgba(201, 168, 76, 0.12);
  backdrop-filter: blur(4px);
}

/* Hero title — MUST be white, large, dramatic */
.lux-hero__title {
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: clamp(2.8rem, 5.5vw, 5rem) !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin: 0 0 1.5rem !important;
  max-width: 740px;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.6),
    0 4px 60px rgba(0, 0, 0, 0.4) !important;
  letter-spacing: -0.02em;
}

.lux-hero__title em {
  font-style: italic;
  color: #E8D5A3 !important;
  display: block;
}

/* Hero subtitle */
.lux-hero__subtitle {
  font-family: 'Inter', sans-serif !important;
  font-size: 1.1rem !important;
  line-height: 1.7 !important;
  color: rgba(255, 255, 255, 0.88) !important;
  margin: 0 0 2.5rem !important;
  max-width: 540px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5) !important;
}

/* Hero CTAs */
.lux-hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Scroll indicator */
.lux-hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 2;
}

.lux-hero__scroll span {
  display: block;
  width: 2px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollPulse 1.5s ease-in-out infinite;
}

.lux-hero__scroll span:nth-child(2) { animation-delay: 0.2s; }
.lux-hero__scroll span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.4); }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.lux-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.95rem 2rem;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.lux-btn--gold {
  background: #C9A84C;
  color: #ffffff !important;
  border-color: #C9A84C;
}
.lux-btn--gold:hover {
  background: #A07830;
  border-color: #A07830;
  box-shadow: 0 6px 28px rgba(201,168,76,0.45);
  transform: translateY(-2px);
  color: #ffffff !important;
}
.lux-btn--outline {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.7);
}
.lux-btn--outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
}
.lux-btn--outline-navy {
  background: transparent;
  color: #0D1B2A !important;
  border-color: #0D1B2A;
}
.lux-btn--outline-navy:hover {
  background: #0D1B2A;
  color: #ffffff !important;
}
.lux-btn--outline-white {
  background: transparent;
  color: #ffffff !important;
  border-color: rgba(255,255,255,0.55);
}
.lux-btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #ffffff;
}
.lux-btn--navy {
  background: #0D1B2A;
  color: #ffffff !important;
  border-color: #0D1B2A;
}
.lux-btn--navy:hover {
  background: #1E3A5F;
  border-color: #1E3A5F;
  color: #ffffff !important;
}
.lux-btn--full { width: 100%; justify-content: center; }

/* ── SEARCH BAR ──────────────────────────────────────────────── */
.lux-search-bar {
  background: #fff;
  padding: 0 0 3rem;
  position: relative;
  z-index: 10;
}
.lux-search-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 70px rgba(13,27,42,0.18);
  padding: 2rem 2.5rem;
  margin-top: -4rem;
  border: 1px solid rgba(201,168,76,0.15);
}
.lux-search-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 1.25rem;
  align-items: end;
}
.lux-search-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 0.45rem;
}
.lux-search-group select {
  width: 100%;
  border: 1.5px solid #D1D5DB;
  border-radius: 3px;
  padding: 0.8rem 2.5rem 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #1A1A1A;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
}
.lux-search-group select:focus {
  outline: none;
  border-color: #C9A84C;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

/* ── SECTIONS ────────────────────────────────────────────────── */
.lux-section { padding: 6rem 0; }
.lux-section__header { margin-bottom: 3.5rem; }
.lux-section__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: #0D1B2A;
  margin-bottom: 0.75rem;
}
.lux-gold-line {
  width: 50px; height: 2px;
  background: #C9A84C;
  margin: 1rem auto;
}
.lux-section__desc {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  color: #6B7280;
  line-height: 1.75;
}
.lux-center { text-align: center; }
.lux-mt-3   { margin-top: 3rem; }
.lux-bg-sand { background: #F5F0E8; }

/* ── STATS ───────────────────────────────────────────────────── */
.lux-stats { background: #0D1B2A; padding: 4rem 0; }
.lux-stats__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 2rem;
}
.lux-stat {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.lux-stat:last-child { border-right: none; }
.lux-stat__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.lux-stat__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* ── WHY US ──────────────────────────────────────────────────── */
.lux-why__grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
}
.lux-why__card {
  background: #fff;
  border-radius: 10px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 24px rgba(13,27,42,0.08);
  transition: all 0.35s ease;
  border-bottom: 3px solid transparent;
}
.lux-why__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,27,42,0.14);
  border-bottom-color: #C9A84C;
}
.lux-why__icon {
  width: 64px; height: 64px;
  background: rgba(201,168,76,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #C9A84C;
}
.lux-why__card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #0D1B2A;
  margin-bottom: 0.75rem;
}
.lux-why__card p { color: #6B7280; margin: 0; }

/* ── LEAD MAGNET ─────────────────────────────────────────────── */
.lux-lead-magnet {
  background: linear-gradient(135deg, #0D1B2A 0%, #1E3A5F 100%);
  padding: 6rem 0;
}
.lux-lead-magnet__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.lux-lead-magnet__text h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem,3vw,2.6rem);
  color: #fff;
  margin-bottom: 1rem;
}
.lux-lead-magnet__text p { color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 2rem; }
.lux-eyebrow--light {
  color: #E8D5A3 !important;
  border-color: rgba(232,213,163,0.4) !important;
  background: rgba(201,168,76,0.08) !important;
}
.lux-checklist { list-style: none; padding: 0; margin: 0; }
.lux-checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}
.lux-checklist li::before { content:'✓'; position:absolute; left:0; color:#C9A84C; font-weight:700; }

/* Form on dark bg */
.lux-contact-form {
  background: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 2.5rem;
  border: 1px solid rgba(201,168,76,0.2);
  backdrop-filter: blur(10px);
}
.lux-form__row { margin-bottom: 1.25rem; }
.lux-form__row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.lux-form__group { display: flex; flex-direction: column; }
.lux-form__group label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 0.4rem;
}
.lux-form__group input,
.lux-form__group select,
.lux-form__group textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 3px;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #fff;
  transition: border-color 0.2s, background 0.2s;
}
.lux-form__group input::placeholder,
.lux-form__group textarea::placeholder { color: rgba(255,255,255,0.32); }
.lux-form__group input:focus,
.lux-form__group select:focus,
.lux-form__group textarea:focus {
  outline: none;
  border-color: #C9A84C;
  background: rgba(255,255,255,0.13);
}
.lux-form__group select option { background: #0D1B2A; color: #fff; }
.lux-checkbox { display: flex; gap: 0.75rem; align-items: flex-start; cursor: pointer; }
.lux-checkbox input { margin-top: 3px; flex-shrink: 0; accent-color: #C9A84C; }
.lux-checkbox span { font-size: 0.78rem; color: rgba(255,255,255,0.6); line-height: 1.5; }
.lux-checkbox span a { color: #E8D5A3; text-decoration: underline; }

/* ── FEATURED PROPERTIES ─────────────────────────────────────── */
.lux-props__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.75rem; }
.lux-prop-card {
  background: #fff; border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(13,27,42,0.08);
  transition: all 0.35s ease;
  border: 1px solid transparent;
}
.lux-prop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(13,27,42,0.15);
  border-color: #C9A84C;
}
.lux-prop-card__link { display:block; text-decoration:none; color:inherit; }
.lux-prop-card__img { height:240px; overflow:hidden; background:#f0ede8; }
.lux-prop-card__img img { width:100%; height:100%; object-fit:cover; transition:transform 0.6s ease; }
.lux-prop-card:hover .lux-prop-card__img img { transform:scale(1.06); }
.lux-prop-card__body { padding: 1.5rem; }
.lux-prop-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 700;
  color: #C9A84C; margin-bottom: 0.35rem;
}
.lux-prop-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: #1A1A1A; margin-bottom: 0.4rem; line-height: 1.35;
}
.lux-prop-card__location {
  font-size: 0.78rem; color: #6B7280;
  display: flex; align-items: center; gap: 0.3rem; margin-bottom: 0.75rem;
}
.lux-prop-card__meta {
  display: flex; gap: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid #E5E7EB;
  font-size: 0.78rem; color: #6B7280; font-weight: 500;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.lux-testimonials__grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.lux-testimonial {
  background:#fff; border-radius:12px; padding:2.5rem;
  box-shadow:0 4px 20px rgba(13,27,42,0.07);
  border-left: 4px solid #C9A84C;
}
.lux-testimonial__stars { color:#C9A84C; font-size:1rem; letter-spacing:2px; margin-bottom:1rem; }
.lux-testimonial blockquote {
  font-family:'Playfair Display',serif; font-style:italic;
  font-size:0.95rem; color:#1A1A1A; line-height:1.7;
  margin:0 0 1.5rem; padding:0; border:none;
}
.lux-testimonial__author strong {
  display:block; font-size:0.85rem; font-weight:700; color:#1A1A1A; margin-bottom:0.2rem;
}
.lux-testimonial__author span { font-size:0.75rem; color:#6B7280; }

/* ── MAP ─────────────────────────────────────────────────────── */
.lux-map__embed { margin-bottom:2.5rem; }
.lux-map__features {
  display:grid; grid-template-columns:repeat(4,1fr); gap:1.5rem; text-align:center;
}
.lux-map__feature {
  display:flex; flex-direction:column; align-items:center; gap:0.4rem;
  padding:1.5rem; background:#FAFAF7; border-radius:8px;
  border: 1px solid rgba(201,168,76,0.15);
}
.lux-map__feature svg { color:#C9A84C; margin-bottom:0.25rem; }
.lux-map__feature strong {
  font-family:'Playfair Display',serif; font-size:1.4rem; color:#0D1B2A;
}
.lux-map__feature span { font-size:0.72rem; color:#6B7280; font-weight:500; letter-spacing:0.05em; }

/* ── CTA STRIP ───────────────────────────────────────────────── */
.lux-cta-strip {
  background: linear-gradient(90deg, #0D1B2A 0%, #1E3A5F 100%);
  padding: 4rem 0;
}
.lux-cta-strip__inner {
  display:flex; align-items:center; justify-content:space-between; gap:2rem; flex-wrap:wrap;
}
.lux-cta-strip__inner h2 {
  font-family:'Playfair Display',serif;
  font-size:clamp(1.5rem,3vw,2rem); color:#fff; margin-bottom:0.5rem;
}
.lux-cta-strip__inner p { color:rgba(255,255,255,0.65); margin:0; }
.lux-cta-strip__btns { display:flex; gap:1rem; flex-shrink:0; }

/* ── RESALES ONLINE LUXURY GRID ──────────────────────────────── */
.lux-developments .rol-listings-wrap { width: 100%; }
.lux-developments #rol-listings { min-height: 200px; }

/* Luxury card for Resales Online */
.lux-rol-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(13,27,42,0.09);
  transition: all 0.38s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
}
.lux-rol-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(13,27,42,0.18);
  border-color: #C9A84C;
}
.lux-rol-card a { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
.lux-rol-card__img {
  height: 260px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #f5f0e8, #e8e0d0);
  flex-shrink: 0;
}
.lux-rol-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.65s ease;
  display: block;
}
.lux-rol-card:hover .lux-rol-card__img img { transform: scale(1.07); }

/* New Development badge */
.lux-rol-card__badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: #0D1B2A;
  color: #C9A84C;
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  z-index: 2;
}

/* Ref badge */
.lux-rol-card__ref {
  position: absolute;
  bottom: 1rem; right: 1rem;
  background: rgba(13,27,42,0.75);
  color: rgba(255,255,255,0.75);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

.lux-rol-card__body {
  padding: 1.5rem 1.75rem 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lux-rol-card__price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #C9A84C;
  margin-bottom: 0.4rem;
  line-height: 1.1;
}

.lux-rol-card__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #1A1A1A;
  margin-bottom: 0.35rem;
  line-height: 1.35;
}

.lux-rol-card__location {
  font-size: 0.8rem;
  color: #6B7280;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 1rem;
}

.lux-rol-card__meta {
  display: flex;
  gap: 0;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid #F3F4F6;
}

.lux-rol-card__feat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #6B7280;
  padding: 0 1rem 0 0;
  border-right: 1px solid #E5E7EB;
  margin-right: 1rem;
}
.lux-rol-card__feat:last-child { border-right: none; margin-right: 0; }
.lux-rol-card__feat svg { color: #C9A84C; flex-shrink: 0; }

/* Grid container */
.lux-rol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Luxury search form (Resales) */
.lux-rol-search {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(13,27,42,0.1);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  border: 1px solid rgba(201,168,76,0.15);
}

.lux-rol-search form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.lux-rol-field { display: flex; flex-direction: column; }
.lux-rol-field label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1A1A1A;
  margin-bottom: 0.45rem;
}
.lux-rol-field select,
.lux-rol-field input {
  border: 1.5px solid #D1D5DB;
  border-radius: 3px;
  padding: 0.8rem 2.5rem 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.875rem;
  color: #1A1A1A;
  background: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.8rem center;
  transition: border-color 0.2s;
}
.lux-rol-field select:focus { outline: none; border-color: #C9A84C; box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }

/* Results header */
.lux-rol-results-info {
  font-size: 0.85rem;
  color: #6B7280;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Pagination luxury */
.lux-rol-pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.lux-rol-pagination .rol-page-btn,
.rol-pagination-inner .rol-page-btn {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding: 0.6rem 1rem !important;
  border: 1.5px solid #D1D5DB !important;
  border-radius: 3px !important;
  background: #fff !important;
  color: #1A1A1A !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}
.rol-pagination-inner .rol-page-btn:hover,
.rol-pagination-inner .rol-page-btn.active {
  background: #C9A84C !important;
  border-color: #C9A84C !important;
  color: #fff !important;
}

/* No results / loading */
.rol-no-results, .rol-error {
  text-align: center;
  padding: 4rem 2rem;
  color: #6B7280;
  font-size: 1rem;
}
.rol-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 4rem;
  color: #6B7280;
}
.rol-spinner {
  width: 24px; height: 24px;
  border: 2px solid #E5E7EB;
  border-top-color: #C9A84C;
  border-radius: 50%;
  animation: rolSpin 0.8s linear infinite;
  display: inline-block;
}
@keyframes rolSpin { to { transform: rotate(360deg); } }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .lux-why__grid,
  .lux-props__grid,
  .lux-rol-grid { grid-template-columns: repeat(2,1fr); }
  .lux-stats__grid { grid-template-columns: repeat(2,1fr); }
  .lux-lead-magnet__inner { grid-template-columns: 1fr; gap: 3rem; }
  .lux-map__features { grid-template-columns: repeat(2,1fr); }
  .lux-rol-search form { grid-template-columns: 1fr 1fr 1fr; }
  .lux-rol-search form .lux-rol-field--btn { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .lux-section { padding: 4rem 0; }
  .lux-hero__content { padding: 7rem 0 4rem; }
  .lux-hero__ctas { flex-direction: column; align-items: flex-start; }
  .lux-search-form { grid-template-columns: 1fr 1fr; }
  .lux-search-group:last-child { grid-column: 1/-1; }
  .lux-why__grid { grid-template-columns: 1fr; }
  .lux-props__grid { grid-template-columns: 1fr; }
  .lux-testimonials__grid { grid-template-columns: 1fr; }
  .lux-rol-grid { grid-template-columns: 1fr; }
  .lux-cta-strip__inner { text-align: center; justify-content: center; }
  .lux-cta-strip__btns { flex-direction: column; width: 100%; }
  .lux-form__row--2col { grid-template-columns: 1fr; }
  .lux-rol-search form { grid-template-columns: 1fr; }
  .lux-testimonials__grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .lux-search-form { grid-template-columns: 1fr; }
  .lux-stats__grid { grid-template-columns: 1fr 1fr; }
  .lux-stat { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .lux-map__features { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   RESALES ONLINE NATIVE CARD LUXURY OVERRIDE
   Styles the plugin's own .rol-card HTML to look luxury
   ================================================================ */

/* Grid container (set by JS + this CSS) */
.lux-rol-native-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.75rem !important;
  width: 100%;
}

/* Luxury card base */
.lux-rol-native-grid .rol-card,
.rol-listings .rol-card {
  background: #ffffff !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 24px rgba(13,27,42,0.09) !important;
  transition: all 0.38s cubic-bezier(0.4,0,0.2,1) !important;
  border: 1px solid transparent !important;
  display: flex !important;
  flex-direction: column !important;
  margin: 0 !important;
}

.lux-rol-native-grid .rol-card:hover,
.rol-listings .rol-card:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 56px rgba(13,27,42,0.17) !important;
  border-color: #C9A84C !important;
}

/* Card link wrapper */
.rol-card .rol-card-link {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  text-decoration: none !important;
  color: inherit !important;
}

/* Image area */
.rol-card .rol-card-image,
.rol-card .lux-rol-img-wrap {
  height: 250px !important;
  overflow: hidden !important;
  position: relative !important;
  background: linear-gradient(135deg, #f5f0e8, #e8e0d0) !important;
  flex-shrink: 0 !important;
}

.rol-card .rol-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.65s ease !important;
  display: block !important;
}

.rol-card:hover .rol-card-image img {
  transform: scale(1.07) !important;
}

/* Reference badge */
.rol-card .rol-card-ref {
  position: absolute !important;
  bottom: 0.75rem !important;
  right: 0.75rem !important;
  background: rgba(13,27,42,0.72) !important;
  color: rgba(255,255,255,0.8) !important;
  font-size: 0.62rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em !important;
  padding: 0.2rem 0.6rem !important;
  border-radius: 3px !important;
  backdrop-filter: blur(4px) !important;
  font-family: 'Inter', sans-serif !important;
}

/* Card body */
.rol-card .rol-card-body {
  padding: 1.4rem 1.6rem 1.6rem !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 1 !important;
}

/* Price — gold, serif, top */
.rol-card .rol-card-price {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  color: #C9A84C !important;
  margin: 0 0 0.4rem !important;
  line-height: 1.1 !important;
  order: -1 !important;
}

/* Title */
.rol-card .rol-card-title {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.05rem !important;
  font-weight: 600 !important;
  color: #1A1A1A !important;
  margin: 0 0 0.35rem !important;
  line-height: 1.35 !important;
}

/* Location */
.rol-card .rol-card-location,
.rol-card .lux-rol-location {
  font-size: 0.78rem !important;
  color: #6B7280 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  margin: 0 0 0.85rem !important;
  font-family: 'Inter', sans-serif !important;
}

.rol-card .rol-card-location svg {
  color: #C9A84C !important;
  flex-shrink: 0 !important;
}

/* Features row */
.rol-card .rol-card-features {
  display: flex !important;
  gap: 0 !important;
  margin-top: auto !important;
  padding-top: 0.9rem !important;
  border-top: 1px solid #F3F4F6 !important;
}

.rol-card .rol-card-feat,
.rol-card .lux-rol-feat {
  display: flex !important;
  align-items: center !important;
  gap: 0.3rem !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  color: #6B7280 !important;
  padding-right: 0.9rem !important;
  margin-right: 0.9rem !important;
  border-right: 1px solid #E5E7EB !important;
  font-family: 'Inter', sans-serif !important;
}

.rol-card .rol-card-feat:last-child,
.rol-card .lux-rol-feat:last-child {
  border-right: none !important;
  margin-right: 0 !important;
  padding-right: 0 !important;
}

.rol-card .rol-card-feat svg,
.rol-card .lux-rol-feat svg {
  color: #C9A84C !important;
  flex-shrink: 0 !important;
}

/* Luxury search form (native Resales form + our form) */
.lux-rol-native-form,
.rol-search-form,
#rol-search-form {
  background: #ffffff !important;
  border-radius: 10px !important;
  padding: 1.5rem 1.75rem !important;
  margin-bottom: 2rem !important;
  border: 1px solid rgba(201,168,76,0.18) !important;
  box-shadow: 0 4px 20px rgba(13,27,42,0.08) !important;
}

.lux-rol-native-form .rol-form,
.rol-search-form .rol-form {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr auto !important;
  gap: 1rem !important;
  align-items: end !important;
}

.lux-rol-field,
.lux-rol-native-form .rol-field {
  display: flex !important;
  flex-direction: column !important;
}

.lux-rol-native-form .rol-field label,
.lux-rol-field label {
  font-size: 0.68rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  color: #1A1A1A !important;
  margin-bottom: 0.4rem !important;
  font-family: 'Inter', sans-serif !important;
}

.lux-rol-select,
.lux-rol-native-form select,
.rol-search-form select {
  border: 1.5px solid #D1D5DB !important;
  border-radius: 3px !important;
  padding: 0.8rem 2.5rem 0.8rem 1rem !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.875rem !important;
  color: #1A1A1A !important;
  background: #fff !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 0.75rem center !important;
  transition: border-color 0.2s !important;
  width: 100% !important;
}

.lux-rol-native-form select:focus,
.rol-search-form select:focus {
  outline: none !important;
  border-color: #C9A84C !important;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12) !important;
}

/* Resales submit button */
.lux-rol-submit,
.lux-rol-native-form .rol-btn-primary,
.rol-search-form #rol-search-btn {
  background: #C9A84C !important;
  color: #ffffff !important;
  border: none !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  padding: 0.85rem 1.5rem !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  white-space: nowrap !important;
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem !important;
}

.lux-rol-native-form .rol-btn-primary:hover,
.rol-search-form #rol-search-btn:hover,
.lux-rol-submit:hover {
  background: #A07830 !important;
  box-shadow: 0 6px 20px rgba(201,168,76,0.4) !important;
}

/* Pagination luxury */
.rol-pagination-inner {
  display: flex !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  margin-top: 3rem !important;
  flex-wrap: wrap !important;
}

.rol-pagination-inner .rol-page-btn {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.8rem !important;
  font-weight: 600 !important;
  padding: 0.55rem 0.9rem !important;
  border: 1.5px solid #D1D5DB !important;
  border-radius: 3px !important;
  background: #fff !important;
  color: #1A1A1A !important;
  cursor: pointer !important;
  transition: all 0.2s !important;
}

.rol-pagination-inner .rol-page-btn:hover,
.rol-pagination-inner .rol-page-btn.active {
  background: #C9A84C !important;
  border-color: #C9A84C !important;
  color: #fff !important;
}

/* Results info */
#rol-results-info,
.lux-rol-info {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  color: #6B7280 !important;
  margin-bottom: 1.25rem !important;
}

/* No results */
.rol-no-results,
.lux-rol-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 4rem 2rem;
  color: #6B7280;
}

.lux-rol-empty p { margin: 0.5rem 0; }
.lux-rol-empty svg { margin-bottom: 1rem; }

/* Spinner */
.rol-loading {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.75rem !important;
  padding: 4rem !important;
  color: #6B7280 !important;
  grid-column: 1/-1 !important;
}

.rol-spinner {
  width: 22px !important; height: 22px !important;
  border: 2px solid #E5E7EB !important;
  border-top-color: #C9A84C !important;
  border-radius: 50% !important;
  animation: rolSpin 0.8s linear infinite !important;
  display: inline-block !important;
  flex-shrink: 0 !important;
}

@keyframes rolSpin { to { transform: rotate(360deg); } }

/* Responsive */
@media (max-width: 1024px) {
  .lux-rol-native-grid { grid-template-columns: repeat(2,1fr) !important; }
  .lux-rol-native-form .rol-form,
  .rol-search-form .rol-form { grid-template-columns: 1fr 1fr 1fr !important; }
  .lux-rol-native-form .rol-field-submit { grid-column: 1/-1 !important; }
}

@media (max-width: 640px) {
  .lux-rol-native-grid { grid-template-columns: 1fr !important; }
  .lux-rol-native-form .rol-form,
  .rol-search-form .rol-form { grid-template-columns: 1fr !important; }
}

/* ================================================================
   CARD TITLE + LOCATION INLINE  (v2 update)
   "New Development · La Cala de Mijas" on the same line
   ================================================================ */

.rol-card p.rol-card-title-location {
  font-family: 'Playfair Display', serif !important;
  font-size: 1.08rem !important;
  font-weight: 600 !important;
  color: #1A1A1A !important;
  margin: 0 0 0.85rem !important;
  line-height: 1.35 !important;
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
  flex-wrap: wrap !important;
}

.rctl-title {
  color: #1A1A1A !important;
  font-weight: 600 !important;
}

.rctl-sep {
  color: #C9A84C !important;
  font-weight: 400 !important;
  padding: 0 0.35rem !important;
  font-style: italic !important;
}

.rctl-loc {
  font-family: 'Inter', sans-serif !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: #6B7280 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.25rem !important;
}

/* Hide the now-replaced old title and location */
.rol-card.lux-enhanced .rol-card-title:not(.rol-card-title-location) {
  display: none !important;
}
.rol-card.lux-enhanced .rol-card-location {
  display: none !important;
}
