/* =====================================================
   VIP Eden Park – Main Stylesheet
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --gold:        #c8a55b;
  --gold-dark:   #a8883f;
  --gold-light:  #e8d5aa;
  --dark:        #0e1318;
  --dark-2:      #1a232d;
  --dark-3:      #2b3642;
  --text:        #555f6d;
  --text-light:  #7b8898;
  --light-bg:    #f7f6f2;
  --white:       #ffffff;
  --border:      #e8e2d9;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow:      0 8px 40px rgba(14, 19, 24, 0.10);
  --shadow-lg:   0 20px 60px rgba(14, 19, 24, 0.18);
  --transition:  all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'Inter', system-ui, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--dark);
  line-height: 1.25;
}

.section-padding { padding: 100px 0; }
.mb-60 { margin-bottom: 60px; }
.bg-light-vip { background: var(--light-bg); }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.preloader-logo span { color: var(--gold); }
.preloader-logo-img {
  width: min(280px, 70vw);
  margin: 0 auto 20px;
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: var(--dark-3);
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}
.preloader-bar::after {
  content: '';
  position: absolute;
  left: -50%;
  top: 0;
  width: 50%;
  height: 100%;
  background: var(--gold);
  border-radius: 10px;
  animation: preloaderBar 1.2s ease infinite;
}
@keyframes preloaderBar {
  0%   { left: -50%; }
  100% { left: 100%; }
}

/* ---------- Buttons ---------- */
.btn-primary-vip {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid var(--gold);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary-vip:hover {
  background: transparent;
  color: var(--gold) !important;
  border-color: var(--gold);
}
.btn-outline-vip {
  background: transparent;
  color: var(--white) !important;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-vip:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark) !important;
}
.btn-white-vip {
  background: var(--white);
  color: var(--dark) !important;
  font-weight: 600;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: var(--radius);
  border: none;
}
.btn-white-vip:hover { background: var(--gold); color: var(--dark) !important; }

/* ---------- Section Labels ---------- */
.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  background: rgba(200, 165, 91, 0.12);
  padding: 4px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  border-left: 3px solid var(--gold);
}
.section-heading {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-heading span { color: var(--gold); }
.section-desc {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0;
}

/* ====================================================
   HEADER
   ==================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.site-header.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.property-page .site-header {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.25);
}
.property-page .site-header.scrolled {
  background: var(--dark);
  padding: 12px 0;
}
.navbar { gap: 0; }
.site-logo {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  overflow: hidden;
}
.site-logo-img {
  height: 90px;
  width: auto;
  object-fit: contain;
  margin: -12px 0 -22px;
}

.navbar-nav .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }

.nav-phone {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone i { color: var(--gold); }
.nav-phone:hover { color: var(--gold); }

/* Mobile Toggle */
.navbar-toggler {
  border: none;
  background: none;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.navbar-toggler span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar-toggler:focus { outline: none; box-shadow: none; }

/* ====================================================
   HERO
   ==================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 700px;
}
.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide { height: 100%; }

.hero-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,19,24,0.78) 0%, rgba(14,19,24,0.40) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding-top: 140px;
  animation: heroFadeIn 0.8s ease;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  border: 1px solid rgba(200,165,91,0.4);
  padding: 5px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--gold); }
.hero-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Navigation */
.hero-prev, .hero-next {
  width: 50px !important;
  height: 50px !important;
  background: rgba(255,255,255,0.12) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 50% !important;
  color: var(--white) !important;
  transition: var(--transition) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.hero-prev::after, .hero-next::after { display: none; }
.hero-prev:hover, .hero-next:hover { background: var(--gold) !important; border-color: var(--gold) !important; }
.hero-prev { left: 30px !important; }
.hero-next { right: 30px !important; }

.hero-pagination { bottom: 180px !important; }
.hero-pagination .swiper-pagination-bullet { background: rgba(255,255,255,0.5) !important; width: 8px; height: 8px; }
.hero-pagination .swiper-pagination-bullet-active { background: var(--gold) !important; width: 30px; border-radius: 4px; }

/* Hero Search Bar */
.hero-search-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: var(--white);
  padding: 28px 0;
  box-shadow: var(--shadow-lg);
}
.search-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.search-tab {
  background: none;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 20px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}
.search-tab.active,
.search-tab:hover {
  background: var(--gold);
  color: var(--dark);
}
.search-form .form-control,
.search-form .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  padding: 12px 16px;
  color: var(--dark);
  background: var(--white);
}
.search-form .form-control:focus,
.search-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,165,91,0.15);
}
.search-form label {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}
.search-btn { font-size: 14px; }

/* ====================================================
   STATS
   ==================================================== */
.stats-section {
  background: var(--dark);
  padding: 60px 0;
}
.stat-card {
  text-align: center;
  position: relative;
}
.stat-card h3 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  display: inline-block;
  line-height: 1;
}
.stat-card span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  vertical-align: top;
  line-height: 1.2;
}
.stat-card p {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
  margin-bottom: 0;
}

/* ====================================================
   ABOUT
   ==================================================== */
.about-images {
  position: relative;
  padding-bottom: 60px;
}
.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-main img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-img-main:hover img { transform: scale(1.04); }

.about-img-secondary {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.about-badge-box {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.badge-number sup { font-size: 1.2rem; }
.badge-text {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}
.about-features { margin: 24px 0; }
.about-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  padding: 6px 0;
}
.about-features li i { color: var(--gold); font-size: 16px; }
.about-phone {
  display: flex;
  align-items: center;
  gap: 14px;
}
.phone-icon {
  width: 48px;
  height: 48px;
  background: rgba(200,165,91,0.12);
  border: 2px solid rgba(200,165,91,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.about-phone small {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  font-weight: 600;
}
.about-phone a {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.about-phone a:hover { color: var(--gold); }

/* ====================================================
   SERVICES
   ==================================================== */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 50px;
  height: 50px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(200,165,91,0.4);
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1); }
.service-img { height: 200px; overflow: hidden; }
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover .service-img img { transform: scale(1.06); }
.service-content { padding: 22px 24px 24px; }
.service-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.service-content p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.service-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.service-link:hover { gap: 10px; }

/* ====================================================
   PROPERTIES
   ==================================================== */
.prop-filter-tabs {
  display: flex;
  gap: 4px;
  justify-content: flex-end;
}
.filter-tab {
  background: none;
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 8px 18px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab.active,
.filter-tab:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* Filter animation */
.prop-item { transition: opacity 0.4s ease, transform 0.4s ease; }
.prop-item.hidden { display: none; }

.property-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.property-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.prop-image {
  position: relative;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}
.prop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.property-card:hover .prop-image img { transform: scale(1.06); }
.prop-content {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.prop-footer { margin-top: auto; }
.prop-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 30px;
  z-index: 2;
}
.prop-badge.for-sale { background: var(--gold); color: var(--dark); }
.prop-badge.for-rent { background: var(--dark); color: var(--gold); }
.prop-featured {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 30px;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  z-index: 2;
}
.prop-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,19,24,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}
.property-card:hover .prop-overlay { opacity: 1; }
.prop-content { padding: 22px 24px; }
.prop-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.prop-price small {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-light);
}
.prop-content h5 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 14px;
}
.prop-content h5 a { color: var(--dark); }
.prop-content h5 a:hover { color: var(--gold); }
.prop-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--text);
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 14px;
}
.prop-features span { display: flex; align-items: center; gap: 5px; }
.prop-features i { color: var(--gold); }
.prop-footer { display: flex; align-items: center; justify-content: space-between; }
.prop-agent { display: flex; align-items: center; gap: 8px; }
.prop-agent img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; }
.prop-agent-icon { display: flex; align-items: center; justify-content: center; width: 32px; height: 32px; font-size: 1.6rem; color: var(--gold); flex-shrink: 0; }
.prop-address { font-size: .78rem; color: #888; margin-bottom: .6rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prop-address i { color: var(--gold); margin-right: .25rem; }
.prop-agent span { font-size: 13px; font-weight: 500; color: var(--text); }
.prop-call {
  width: 36px;
  height: 36px;
  background: rgba(200,165,91,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: var(--transition);
}
.prop-call:hover { background: var(--gold); color: var(--dark); }

/* ====================================================
   CTA BANNER
   ==================================================== */
.cta-banner {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-gallery {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.cta-gallery-item { overflow: hidden; }
.cta-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  transition: transform 0.8s ease;
}
.cta-gallery-item:hover img { transform: scale(1.08); }
.cta-content {
  position: relative;
  z-index: 2;
  padding: 70px 20px;
  width: 100%;
}
.cta-content h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-content h2 span { color: var(--gold); }
.cta-content p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ====================================================
   TEAM
   ==================================================== */
.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}
.team-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-image img { transform: scale(1.05); }
.team-social {
  position: absolute;
  inset: 0;
  background: rgba(14,19,24,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-social { opacity: 1; }
.team-social a {
  width: 38px;
  height: 38px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark) !important;
  font-size: 14px;
  transition: var(--transition);
}
.team-social a:hover { background: var(--white); color: var(--dark) !important; }
.team-content { padding: 20px 22px; }
.team-content h5 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
.team-content span { font-size: 13px; color: var(--gold); font-weight: 500; display: block; margin-bottom: 10px; }
.team-phone {
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.team-phone i { color: var(--gold); }
.team-phone:hover { color: var(--gold); }
.team-pagination { margin-top: 30px !important; position: relative !important; bottom: 0 !important; }
.team-pagination .swiper-pagination-bullet { background: var(--border) !important; }
.team-pagination .swiper-pagination-bullet-active { background: var(--gold) !important; width: 24px; border-radius: 3px; }

/* ====================================================
   TESTIMONIALS
   ==================================================== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testi-quote {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}
.testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 20px; gap: 2px; display: flex; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-author img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-author strong { display: block; font-size: 14px; font-weight: 700; color: var(--dark); }
.testi-author span { font-size: 12px; color: var(--text-light); }
.testi-pagination { margin-top: 30px !important; position: relative !important; bottom: 0 !important; }
.testi-pagination .swiper-pagination-bullet { background: var(--border) !important; }
.testi-pagination .swiper-pagination-bullet-active { background: var(--gold) !important; width: 24px; border-radius: 3px; }

/* ====================================================
   CONTACT
   ==================================================== */
.contact-info-list { margin: 30px 0; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(200,165,91,0.12);
  border: 2px solid rgba(200,165,91,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
}
.contact-info-item strong {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--dark);
  display: block;
  margin-bottom: 3px;
}
.contact-info-item p {
  font-size: 14px;
  color: var(--text);
  margin: 0;
}
.contact-info-item a { color: var(--text); }
.contact-info-item a:hover { color: var(--gold); }
.contact-social { display: flex; gap: 10px; margin-top: 10px; }
.contact-social a {
  width: 40px;
  height: 40px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 15px;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--gold);
}
.contact-form-box h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 26px;
}
.contact-form-box .form-control,
.contact-form-box .form-select {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  padding: 12px 16px;
  color: var(--dark);
}
.contact-form-box .form-control:focus,
.contact-form-box .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,165,91,0.15);
}
.form-success-msg {
  text-align: center;
  padding: 16px;
  margin-top: 16px;
  background: rgba(200,165,91,0.1);
  border-radius: var(--radius);
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
}
.form-success-msg i { margin-right: 6px; }

/* ====================================================
   BLOG
   ==================================================== */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.blog-card:hover .blog-image img { transform: scale(1.06); }
.blog-cat {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 30px;
  background: var(--gold);
  color: var(--dark);
}
.blog-content { padding: 22px 24px; }
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.blog-meta i { margin-right: 5px; color: var(--gold); }
.blog-content h5 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}
.blog-content h5 a { color: var(--dark); }
.blog-content h5 a:hover { color: var(--gold); }
.blog-content p { font-size: 14px; color: var(--text); margin-bottom: 14px; }
.blog-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.blog-link:hover { gap: 10px; color: var(--gold); }

/* ====================================================
   FOOTER
   ==================================================== */
.footer-newsletter {
  background: var(--dark-2);
  padding: 50px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-newsletter h4 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.footer-newsletter p { font-size: 14px; color: rgba(255,255,255,0.55); margin: 0; }
.newsletter-form {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-form input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  padding: 14px 20px;
  font-size: 14px;
  color: var(--white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-form button {
  background: var(--gold);
  border: none;
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.newsletter-form button:hover { background: var(--gold-dark); }
.footer-main {
  background: var(--dark);
  padding: 70px 0 50px;
}
.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--gold); }
.footer-logo-img {
  width: min(220px, 70vw);
  border-radius: 8px;
}
.footer-about {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.footer-heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a i { font-size: 10px; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact { list-style: none; padding: 0; }
.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact i { color: var(--gold); font-size: 15px; margin-top: 3px; flex-shrink: 0; }
.footer-contact span,
.footer-contact a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}
.footer-bottom a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-left: 16px;
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

/* ====================================================
   BACK TO TOP
   ==================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--dark); color: var(--gold); transform: translateY(-3px); }

/* ====================================================
   ANIMATIONS / SCROLL REVEAL
   ==================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 1199px) {
  .about-img-secondary { right: 0; width: 200px; }
  .about-badge-box { left: 0; }
  .cta-gallery { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
  .section-padding { padding: 70px 0; }
  .site-header { background: var(--dark); padding: 14px 0; }
  .site-logo-img { height: 75px; margin: -10px 0 -19px; }
  .navbar-collapse {
    background: var(--dark-2);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-top: 12px;
  }
  .navbar-nav .nav-link { padding: 10px 8px !important; }
  .nav-actions { margin-top: 16px; flex-wrap: wrap; }
  .hero-section { height: auto; min-height: 100vh; }
  .hero-content { padding-top: 120px; padding-bottom: 280px; }
  .hero-search-bar { position: relative; bottom: auto; }
  .hero-pagination { bottom: 300px !important; }
  .about-images { padding-bottom: 40px; }
  .about-img-main img { height: 360px; }
  .about-img-secondary { display: none; }
  .about-badge-box { left: 10px; top: 10px; }
}

@media (max-width: 767px) {
  .section-padding { padding: 55px 0; }
  .hero-content { padding-top: 100px; padding-bottom: 300px; }
  .hero-prev, .hero-next { display: none !important; }
  .cta-gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-form-box { padding: 24px; }
  .testimonial-card { padding: 24px; }
  .prop-filter-tabs { justify-content: flex-start; margin-top: 10px; }
  .footer-bottom .col-md-6:last-child { text-align: left !important; }
  .footer-bottom a:first-child { margin-left: 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { border-radius: 0; }
  .mb-60 { margin-bottom: 40px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .search-form label { display: none; }
  .stat-card h3 { font-size: 2rem; }
  .site-logo-img { height: 65px; margin: -9px 0 -16px; }
  .preloader-logo-img { width: min(240px, 78vw); }
  .footer-logo-img { width: min(180px, 62vw); }
}

/* =======================================================
   PROPERTY DETAIL PAGE
   ======================================================= */

/* ── Hero banner ── */
.pd-hero {
  position: relative;
  height: 560px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  margin-top: 66px; /* clear fixed header */
}
.pd-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14,19,24,0.92) 0%,
    rgba(14,19,24,0.55) 45%,
    rgba(14,19,24,0.15) 100%
  );
}
.pd-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
  width: 100%;
}
.pd-breadcrumb .breadcrumb {
  background: none;
  padding: 0;
  margin: 0 0 14px;
}
.pd-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 13px;
  transition: color .2s;
}
.pd-breadcrumb .breadcrumb-item a:hover { color: var(--gold); }
.pd-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.45); font-size: 13px; }
.pd-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.35); }

.pd-badges { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.pd-type-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 20px;
  color: var(--dark);
}
.pd-type-sale { background: var(--gold); }
.pd-type-rent { background: #2ecc71; color: #fff; }
.pd-status-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(4px);
}
.pd-hero-address {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 6px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  line-height: 1.2;
}
.pd-hero-locality {
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 12px;
}
.pd-hero-locality i { color: var(--gold); }
.pd-hero-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
}

/* ── Specs bar ── */
.pd-specs-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(200,165,91,0.2);
}
.pd-specs-inner {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
}
.pd-spec-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 36px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.pd-spec-item:last-child { border-right: none; }
.pd-spec-item i {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 2px;
}
.pd-spec-item span { line-height: 1.3; }
.pd-spec-divider { display: none; } /* kept for non-breaking compat */

/* ── Main layout ── */
.pd-main-section {
  padding: 50px 0 80px;
  background: #f4f2ef;
}

/* ── Left column cards ── */
.pd-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 34px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.06);
}
.pd-section-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 22px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0ece4;
  position: relative;
}
.pd-section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}
.pd-description {
  color: #555;
  line-height: 1.85;
  font-size: 15px;
  margin: 0;
}

/* ── Gallery ── */
.pd-gallery {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}
.pd-main-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.pd-gallery:hover .pd-main-image { transform: scale(1.02); }

/* ── Features list ── */
.pd-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
}
.pd-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  font-size: 14px;
  font-weight: 500;
}
.pd-features-list li i {
  color: var(--gold);
  font-size: 15px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* ── Details table ── */
.pd-details-grid { display: flex; flex-direction: column; }
.pd-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #f2eeea;
  font-size: 14px;
}
.pd-detail-row:last-child { border-bottom: none; }
.pd-detail-label { color: #999; font-weight: 500; }
.pd-detail-value { color: var(--dark); font-weight: 600; }
.pd-price-highlight { color: var(--gold); font-size: 1.05rem; }

/* ── Map placeholder ── */
.pd-map-placeholder {
  background: linear-gradient(135deg, #f4f2ef 0%, #ece8e0 100%);
  border-radius: 10px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 32px;
  color: #999;
  border: 2px dashed #ddd8d0;
}
.pd-map-placeholder i { font-size: 3rem; color: var(--gold); margin-bottom: 14px; opacity: .8; }
.pd-map-placeholder p { margin: 0; font-size: 14px; color: #666; }

/* ── Sticky sidebar ── */
.pd-sidebar-sticky {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ── Price box ── */
.pd-price-box {
  background: var(--dark);
  border-radius: 14px;
  padding: 28px;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: 0 8px 40px rgba(14,19,24,0.18);
}
.pd-price-value {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.pd-price-type {
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 20px;
}
.pd-price-actions { display: flex; gap: 10px; }
.pd-price-actions .btn { padding: 10px 14px; font-size: 13px; }

/* ── Agent card ── */
.pd-agent-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.07);
  border-left: 4px solid var(--gold);
}
.pd-agent-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.pd-agent-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid var(--gold);
  box-shadow: 0 2px 12px rgba(200,165,91,0.3);
}
.pd-agent-name { font-weight: 700; color: var(--dark); font-size: 15px; margin-bottom: 3px; }
.pd-agent-role {
  font-size: 11px;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.pd-agent-bio { font-size: 13px; color: #777; line-height: 1.6; margin-bottom: 16px; }
.pd-agent-actions .btn { font-size: 12px; padding: 8px 12px; }

/* ── Enquiry form ── */
.pd-enquiry-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.07);
}
.pd-enquiry-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pd-enquiry-title i { color: var(--gold); }
.pd-enquiry-card .form-control,
.pd-enquiry-card .form-select {
  border: 1.5px solid #e8e4dc;
  border-radius: 8px;
  font-size: 13.5px;
  padding: 10px 14px;
  background: #fafaf8;
  color: var(--dark);
}
.pd-enquiry-card .form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,165,91,0.12);
  background: #fff;
}

/* ── Share box ── */
.pd-share-box {
  background: #fff;
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.06);
}
.pd-share-label { font-size: 12px; color: #aaa; font-weight: 600; text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.pd-share-btns { display: flex; gap: 8px; }
.pd-share-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f4f2ef;
  color: var(--dark-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  text-decoration: none;
  transition: background .2s, color .2s, transform .2s;
}
.pd-share-btn:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }

/* ── Related section ── */
.pd-related-section {
  padding: 70px 0 80px;
  background: #fff;
  border-top: 1px solid #f0ece4;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .pd-hero { height: 400px; margin-top: 66px; }
  .pd-hero-address { font-size: 1.7rem; }
  .pd-spec-item { padding: 16px 22px; font-size: 12px; }
  .pd-main-image { height: 300px; }
  .pd-sidebar-sticky { position: static; }
}
@media (max-width: 576px) {
  .pd-hero { height: 340px; margin-top: 60px; }
  .pd-hero-address { font-size: 1.3rem; }
  .pd-hero-price { font-size: 1.2rem; }
  .pd-spec-item { padding: 14px 16px; font-size: 11px; }
  .pd-spec-item i { font-size: 16px; }
  .pd-card { padding: 20px 18px; }
  .pd-features-list { grid-template-columns: 1fr; }
  .pd-main-image { height: 230px; }
  .pd-price-value { font-size: 1.7rem; }
  .pd-price-actions { flex-direction: column; }
}

/* =======================================================
   PROPERTIES LISTING PAGE
   ======================================================= */

/* ── Page hero ── */
.pl-hero {
  position: relative;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  margin-top: 66px;
  padding: 60px 0 48px;
  overflow: hidden;
}
.pl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154526-990dced4db0d?w=1400&q=60') center/cover no-repeat;
  opacity: .12;
}
.pl-hero > .container-xl { position: relative; z-index: 1; }
.pl-breadcrumb .breadcrumb { background: none; padding: 0; margin: 0 0 14px; }
.pl-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; transition: color .2s; }
.pl-breadcrumb .breadcrumb-item a:hover { color: var(--gold); }
.pl-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,0.4); font-size: 13px; }
.pl-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.pl-hero-title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.pl-hero-sub { color: rgba(255,255,255,0.6); font-size: 15px; margin: 0; }

/* ── Search bar ── */
.pl-search-bar {
  background: var(--dark);
  border-bottom: 1px solid rgba(200,165,91,0.2);
  padding: 18px 0;
}
.pl-search-form { width: 100%; }
.pl-search-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.pl-search-input-wrap {
  position: relative;
  flex: 1 1 220px;
  min-width: 0;
}
.pl-search-input-wrap i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  pointer-events: none;
}
.pl-search-input {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: #fff;
  font-size: 14px;
  padding: 10px 14px 10px 38px;
  outline: none;
  transition: border-color .2s;
}
.pl-search-input::placeholder { color: rgba(255,255,255,0.35); }
.pl-search-input:focus { border-color: var(--gold); }
.pl-search-selects { display: flex; gap: 8px; flex-wrap: wrap; }
.pl-select {
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 10px 32px 10px 12px;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='rgba(200,165,91,0.8)' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
}
.pl-select:focus { border-color: var(--gold); }
.pl-select option { background: var(--dark-2); color: #fff; }
.pl-search-btn { white-space: nowrap; flex-shrink: 0; }
.pl-clear-btn {
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  white-space: nowrap;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 4px 2px;
  transition: color .2s;
}
.pl-clear-btn:hover { color: var(--gold); }

/* ── Main layout ── */
.pl-main {
  padding: 44px 0 80px;
  background: #f4f2ef;
}

/* ── Sidebar ── */
.pl-sidebar-sticky {
  position: sticky;
  top: 84px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pl-filter-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 22px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04), 0 4px 20px rgba(0,0,0,0.06);
}
.pl-filter-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pl-filter-title i { color: var(--gold); }
.pl-filter-links { display: flex; flex-direction: column; gap: 2px; }
.pl-filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13.5px;
  color: #666;
  text-decoration: none;
  transition: background .15s, color .15s;
}
.pl-filter-link:hover { background: #f4f2ef; color: var(--dark); }
.pl-filter-link.active { background: rgba(200,165,91,0.12); color: var(--gold); font-weight: 600; }
.pl-filter-count {
  font-size: 11px;
  background: #f0ece4;
  color: #999;
  border-radius: 20px;
  padding: 2px 8px;
  font-weight: 600;
}
.pl-filter-link.active .pl-filter-count { background: rgba(200,165,91,0.2); color: var(--gold); }

/* ── CTA box ── */
.pl-cta-box {
  background: var(--dark);
  border-radius: 12px;
  padding: 24px 22px;
  text-align: center;
  border-top: 3px solid var(--gold);
}
.pl-cta-box i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; display: block; }
.pl-cta-box h6 { font-family: var(--font-serif); color: #fff; font-size: 1rem; margin-bottom: 8px; }
.pl-cta-box p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 16px; }

/* ── Toolbar ── */
.pl-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.pl-results-count { font-size: 14px; color: #777; }
.pl-results-count strong { color: var(--dark); font-size: 16px; }
.pl-results-count em { color: var(--gold); font-style: normal; }
.pl-toolbar-right { display: flex; align-items: center; gap: 8px; }
.pl-sort-label { font-size: 13px; color: #999; white-space: nowrap; }
.pl-sort-select {
  border: 1.5px solid #e0dbd2;
  border-radius: 8px;
  font-size: 13px;
  padding: 7px 30px 7px 12px;
  color: var(--dark);
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23666' d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  background-size: 12px;
  appearance: none;
  outline: none;
  cursor: pointer;
  transition: border-color .2s;
}
.pl-sort-select:focus { border-color: var(--gold); }

/* ── Active filter pills ── */
.pl-active-filters { display: flex; flex-wrap: wrap; gap: 8px; }
.pl-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,165,91,0.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid rgba(200,165,91,0.3);
  transition: background .2s;
}
.pl-filter-pill:hover { background: rgba(200,165,91,0.22); color: var(--gold); }
.pl-filter-pill i { font-size: 10px; }

/* ── Property card short description ── */
.prop-desc {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── No results ── */
.pl-no-results {
  text-align: center;
  padding: 80px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.pl-no-results i { font-size: 3rem; color: #ddd; margin-bottom: 18px; display: block; }
.pl-no-results h4 { font-family: var(--font-serif); color: var(--dark); margin-bottom: 8px; }
.pl-no-results p { color: #aaa; font-size: 14px; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .pl-hero { margin-top: 66px; padding: 40px 0 32px; }
  .pl-hero-title { font-size: 1.8rem; }
  .pl-sidebar-sticky { position: static; }
  .pl-search-inner { gap: 8px; }
}
@media (max-width: 576px) {
  .pl-hero-title { font-size: 1.4rem; }
  .pl-search-selects { width: 100%; }
  .pl-select { flex: 1; }
  .pl-search-btn { width: 100%; justify-content: center; }
  .pl-toolbar { flex-direction: column; align-items: flex-start; }
}
