/* ==========================================================================
   LANDS PK — Luxury Real Estate Skin (Dark + Gold)
   Loaded AFTER Bootstrap main.css so every rule overrides Bootstrap defaults.
   All colors are HSL via CSS variables for easy theming.
   ========================================================================== */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ==========================================================================
   1. DESIGN TOKENS  (override Bootstrap CSS variables)
   ========================================================================== */
:root,
[data-bs-theme="light"],
[data-bs-theme="dark"] {
  /* Brand palette */
  --lp-bg:            hsl(0 0% 5%);
  --lp-bg-soft:       hsl(0 0% 7%);
  --lp-fg:            hsl(42 30% 92%);
  --lp-muted:         hsl(42 10% 65%);
  --lp-border:        hsl(42 25% 20%);

  --lp-gold:          hsl(42 65% 55%);
  --lp-gold-glow:     hsl(45 80% 65%);
  --lp-gold-deep:     hsl(38 70% 42%);
  --lp-gold-fg:       hsl(0 0% 6%);

  --lp-whatsapp:      #25D366;
  --lp-whatsapp-dark: #128C7E;

  /* Gradients */
  --lp-grad-gold:        linear-gradient(135deg, var(--lp-gold-deep), var(--lp-gold-glow), var(--lp-gold-deep));
  --lp-grad-gold-soft:   linear-gradient(135deg, hsl(42 65% 55% / .15), hsl(45 80% 65% / .05));
  --lp-grad-text-gold:   linear-gradient(135deg, hsl(45 85% 70%) 0%, hsl(38 70% 50%) 50%, hsl(45 90% 75%) 100%);
  --lp-grad-card:        linear-gradient(160deg, hsl(0 0% 9%) 0%, hsl(0 0% 6%) 100%);
  --lp-grad-hero:        linear-gradient(180deg, hsl(0 0% 4% / .55) 0%, hsl(0 0% 4% / .3) 50%, hsl(0 0% 4%) 100%);

  /* Shadows */
  --lp-shadow-gold:    0 10px 40px -10px hsl(42 65% 55% / .35);
  --lp-shadow-gold-lg: 0 20px 60px -15px hsl(42 65% 55% / .50);
  --lp-shadow-card:    0 8px 30px -8px hsl(0 0% 0% / .60);
  --lp-shadow-elegant: 0 25px 80px -20px hsl(0 0% 0% / .80);

  /* Override Bootstrap defaults */
  --bs-body-bg: var(--lp-bg);
  --bs-body-color: var(--lp-fg);
  --bs-body-font-family: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --bs-primary: hsl(42 65% 55%);
  --bs-primary-rgb: 207, 168, 84;
  --bs-link-color: var(--lp-gold);
  --bs-link-hover-color: var(--lp-gold-glow);
  --bs-border-color: var(--lp-border);
  --bs-heading-color: var(--lp-fg);
}

/* ==========================================================================
   2. GLOBAL  (body, headings, links, scrollbar)
   ========================================================================== */
html { scroll-behavior: smooth; }

body {
  background-color: var(--lp-bg);
  color: var(--lp-fg);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 15% 10%, hsl(42 65% 55% / .05) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, hsl(42 65% 55% / .04) 0%, transparent 45%);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--lp-fg);
}
h1, .h1 { font-size: clamp(2.5rem, 6vw, 5.5rem); line-height: .95; }
h2, .h2 { font-size: clamp(2rem,   4vw, 3.75rem); line-height: 1.05; }
h3, .h3 { font-size: clamp(1.5rem, 2.5vw, 2.25rem); }
h4, .h4 { font-size: 1.5rem; }
h5, .h5 { font-size: 1.25rem; }

a { color: var(--lp-gold); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--lp-gold-glow); }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--lp-bg-soft); }
::-webkit-scrollbar-thumb { background: var(--lp-gold-deep); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--lp-gold); }

/* Eyebrow / kicker text used above each section heading */
.lp-eyebrow {
  font-size: .75rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin-bottom: .75rem;
}

/* Gold gradient text */
.lp-text-gold {
  background: var(--lp-grad-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lp-italic { font-style: italic; }

/* Decorative gold divider under headings */
.lp-divider {
  height: 1px;
  width: 6rem;
  margin: 1rem auto;
  background: linear-gradient(90deg, transparent, var(--lp-gold), transparent);
}

/* Section base spacing */
.lp-section { padding: 6rem 0; position: relative; }
@media (max-width: 768px) { .lp-section { padding: 4rem 0; } }

/* ==========================================================================
   3. BUTTONS  (override Bootstrap .btn variants)
   ========================================================================== */
.btn {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  letter-spacing: .03em;
  border-radius: .5rem;
  
  transition: all .35s cubic-bezier(.4,0,.2,1);
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}

.btn-xl  { padding: 1.15rem 2.75rem; font-size: 1.05rem; }

/* Luxury — primary gold gradient button */
.btn-luxury {
  background: var(--lp-grad-gold);
  background-size: 200% 100%;
  background-position: 0% 50%;
  color: var(--lp-gold-fg);
  box-shadow: var(--lp-shadow-gold);
}
.btn-luxury:hover {
  color: var(--lp-gold-fg);
  background-position: 100% 50%;
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--lp-shadow-gold-lg);
}

/* Outline gold — transparent with gold border, fills on hover */
.btn-outline-gold {
  background: transparent;
  color: var(--lp-gold);
  border: 1.5px solid var(--lp-gold);
}
.btn-outline-gold:hover {
  background: var(--lp-grad-gold);
  color: var(--lp-gold-fg);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--lp-shadow-gold);
}

/* WhatsApp green */
.btn-whatsapp {
  background: var(--lp-whatsapp);
  color: #fff;
  box-shadow: 0 10px 30px -10px rgba(37,211,102,.5);
}
.btn-whatsapp:hover {
  background: var(--lp-whatsapp-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 15px 40px -10px rgba(37,211,102,.6);
}

/* ==========================================================================
   4. HEADER / NAVBAR
   ========================================================================== */
.lp-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1030;
  padding: 1rem 0;
  background: transparent;
  transition: all .5s ease;
}
.lp-header.scrolled {
  background: hsl(0 0% 5% / .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(42 65% 55% / .2);
  padding: .5rem 0;
}

.lp-brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; }
.lp-brand img { height: 100px; width: 200px; object-fit: contain; }
.lp-brand .lp-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  background: var(--lp-grad-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lp-brand .lp-brand-tag {
  font-size: 10px;
  letter-spacing: .3em;
  color: hsl(42 65% 55% / .8);
  margin-top: 2px;
}

/* Nav menu links */
.lp-nav { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.lp-nav a {
  position: relative;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: hsl(42 30% 92% / .8);
  padding: .5rem 0;
  transition: color .3s ease;
}
.lp-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--lp-gold);
  transition: width .35s ease;
}
.lp-nav a:hover,
.lp-nav a.active { color: var(--lp-gold); }
.lp-nav a:hover::after,
.lp-nav a.active::after { width: 100%; }

/* Mobile toggle */
.lp-nav-toggle {
  background: transparent;
  border: 1px solid var(--lp-gold);
  color: var(--lp-gold);
  width: 42px; height: 42px;
  border-radius: .5rem;
  display: none;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .lp-nav-toggle { display: inline-flex; }
  .lp-nav, .lp-header .btn-luxury { display: none; }
  .lp-header.open .lp-nav,
  .lp-header.open .btn-luxury {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 1rem;
    background: hsl(0 0% 5% / .95);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-top: 1px solid hsl(42 65% 55% / .2);
    align-items: stretch;
    gap: 1rem;
  }
  
}

/* ==========================================================================
   5. HERO SECTION
   ========================================================================== */
.lp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 8rem 0 5rem;
}
.lp-hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); z-index: 0; }
.lp-hero__overlay { position: absolute; inset: 0; background: var(--lp-grad-hero); z-index: 1; }
.lp-hero__overlay-2 { position: absolute; inset: 0; background: hsl(0 0% 5% / .3); z-index: 1; }
.lp-hero__inner { position: relative; z-index: 2; text-align: center; }

.lp-hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .375rem 1rem;
  border: 1px solid hsl(42 65% 55% / .4);
  background: hsl(0 0% 5% / .4);
  backdrop-filter: blur(12px);
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.lp-hero__badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--lp-gold);
  animation: lp-pulse 1.6s ease-in-out infinite;
}
.lp-hero__badge span {
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--lp-gold);
}
@keyframes lp-pulse { 0%,100% { opacity:1 } 50% { opacity:.4 } }

.lp-hero h1 { margin-bottom: 1.5rem; }
.lp-hero p.lead {
  font-size: 1.05rem;
  color: hsl(42 30% 92% / .85);
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* Filter bar */
.lp-filter-bar {
  max-width: 1080px;
  margin: 0 auto;
  background: hsl(0 0% 5% / .7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid hsl(42 65% 55% / .3);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: var(--lp-shadow-elegant);
}
@media (min-width: 768px) { .lp-filter-bar { padding: 1.5rem; } }

.lp-filter-bar .form-select,
.lp-filter-bar .form-control {
  height: 56px;
  background: hsl(0 0% 7% / .8);
  border: 1px solid hsl(42 65% 55% / .3);
  color: var(--lp-fg);
  border-radius: .5rem;
  padding-left: 2.5rem;
  background-position: left .9rem center, right .75rem center;
  background-repeat: no-repeat, no-repeat;
  background-size: 1rem, .75rem;
}
.lp-filter-bar .form-select:focus,
.lp-filter-bar .form-control:focus {
  border-color: var(--lp-gold);
  box-shadow: 0 0 0 .2rem hsl(42 65% 55% / .15);
  background-color: hsl(0 0% 7% / .9);
}
.lp-filter-bar .form-select option { background: var(--lp-bg-soft); color: var(--lp-fg); }

/* Bottom fade strip on hero */
.lp-hero__fade {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 8rem; z-index: 1;
  background: linear-gradient(to top, var(--lp-bg), transparent);
}

/* ==========================================================================
   6. STATS / COUNTERS
   ========================================================================== */
.lp-stats {
  padding: 5rem 0;
  border-top: 1px solid hsl(42 65% 55% / .2);
  border-bottom: 1px solid hsl(42 65% 55% / .2);
  background: var(--lp-grad-card);
}
.lp-stat { text-align: center; }
.lp-stat__icon {
  display: inline-grid; place-items: center;
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--lp-grad-gold-soft);
  border: 1px solid hsl(42 65% 55% / .3);
  margin-bottom: 1rem;
  transition: all .5s ease;
}
.lp-stat__icon i,
.lp-stat__icon svg { color: var(--lp-gold); font-size: 2rem; width: 36px; height: 36px; }
.lp-stat:hover .lp-stat__icon {
  border-color: var(--lp-gold);
  box-shadow: var(--lp-shadow-gold);
}
.lp-stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  background: var(--lp-grad-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .5rem;
}
.lp-stat__label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--lp-muted);
}

/* ==========================================================================
   7. PROPERTY CARDS  (scrolling marquee)
   ========================================================================== */
.lp-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.lp-marquee__track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  padding: 0 1.5rem;
  animation: lp-marquee 40s linear infinite;
}
.lp-marquee:hover .lp-marquee__track { animation-play-state: paused; }
@keyframes lp-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.lp-property {
  width: 360px;
  flex-shrink: 0;
  background: var(--lp-grad-card);
  border: 1px solid hsl(42 25% 20% / .6);
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: var(--lp-shadow-card);
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.lp-property:hover {
  transform: translateY(-6px);
  border-color: hsl(42 65% 55% / .5);
  box-shadow: var(--lp-shadow-gold);
}
.lp-property__media { position: relative; height: 240px; overflow: hidden; }
.lp-property__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.lp-property:hover .lp-property__media img { transform: scale(1.1); }
.lp-property__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--lp-bg), hsl(0 0% 5% / .2) 50%, transparent);
}

.lp-property__tag {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: var(--lp-grad-gold);
  color: var(--lp-gold-fg);
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .15em;
  padding: .35rem .75rem;
  border-radius: .25rem;
}
.lp-property__heart {
  position: absolute; top: 1rem; right: 1rem; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: hsl(0 0% 5% / .7);
  backdrop-filter: blur(8px);
  display: grid; place-items: center;
  color: var(--lp-gold);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}
.lp-property__heart:hover { background: var(--lp-gold); color: var(--lp-gold-fg); }

.lp-property__price {
  position: absolute; bottom: 1rem; left: 1rem; right: 1rem; z-index: 2;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--lp-grad-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
span.lp-property__price-extra { font-size: 17px;}

.lp-property__body { padding: 1.25rem; }
.lp-property__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 .25rem;
  transition: color .3s ease;
}
.lp-title-height{ height:50px; }
.lp-property:hover .lp-property__title { color: var(--lp-gold); }
.lp-property__loc {
  display: flex; align-items: center; gap: .375rem;
  font-size: .77rem; color: var(--lp-muted);
  margin-bottom: 1rem;
  justify-content: space-between;
}
span.propid {text-transform: uppercase;}
span.propid i.bi.bi-hash {font-size: 17px;}
.lp-property__loc i { color: var(--lp-gold); }
.lp-property__meta {
  display: flex; justify-content: space-between;
  font-size: .75rem; color: var(--lp-muted);
  border-top: 1px solid hsl(42 25% 20% / .6);
  padding-top: 1rem;
}
.lp-property__meta span { display: inline-flex; align-items: center; gap: .375rem; }
.lp-property__meta i { color: var(--lp-gold); }

/* ==========================================================================
   8. ABOUT
   ========================================================================== */
.lp-about__media {
  position: relative;
  aspect-ratio: 6 / 6;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid hsl(42 65% 55% / .3);
  box-shadow: var(--lp-shadow-elegant);
}
.lp-about__media img { width: 100%; height: 100%; object-fit: cover; }
.lp-about__media-glow {
  position: absolute; inset: -1rem; z-index: -1;
  background: var(--lp-grad-gold-soft);
  filter: blur(40px);
  border-radius: 1.5rem;
}
.lp-about__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, var(--lp-bg), transparent);
}
.lp-about__caption h5 {
  background: var(--lp-grad-text-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0;
}
.lp-about__caption small { letter-spacing: .25em; text-transform: uppercase; color: var(--lp-muted); font-size: 10px; }

.lp-about__badge {
  position: absolute; right: -1rem; bottom: -1.5rem;
  background: var(--lp-grad-gold);
  color: var(--lp-gold-fg);
  padding: 1rem 1.5rem;
  border-radius: .75rem;
  box-shadow: var(--lp-shadow-gold-lg);
  text-align: center;
}
.lp-about__badge strong { font-family: 'Cormorant Garamond', serif; font-size: 1.85rem; display: block; line-height: 1; }
.lp-about__badge small { letter-spacing: .2em; text-transform: uppercase; font-size: 10px; }

.lp-checklist { list-style: none; padding: 0; margin: 0 0 2rem; }
.lp-checklist li {
  display: flex; align-items: flex-start; gap: .75rem;
  padding: .375rem 0;
}
.lp-checklist i {
  color: var(--lp-gold);
  margin-top: .25rem;
  flex-shrink: 0;
}

/* ==========================================================================
   9. SERVICES
   ========================================================================== */
.lp-service {
  background: var(--lp-grad-card);
  border: 1px solid hsl(42 25% 20% / .6);
  border-radius: .75rem;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all .5s cubic-bezier(.4,0,.2,1);
}
.lp-service:hover {
  transform: translateY(-6px);
  border-color: hsl(42 65% 55% / .5);
  box-shadow: var(--lp-shadow-gold);
}
.lp-service__icon {
  display: inline-grid; place-items: center;
  width: 64px; height: 64px;
  border-radius: .75rem;
  background: var(--lp-grad-gold-soft);
  border: 1px solid hsl(42 65% 55% / .3);
  color: var(--lp-gold);
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  transition: all .5s ease;
}
.lp-service:hover .lp-service__icon {
  background: var(--lp-grad-gold);
  color: var(--lp-gold-fg);
}
.lp-service h3 {
  font-size: 1.5rem;
  margin-bottom: .75rem;
  transition: color .3s ease;
}
.lp-service:hover h3 { color: var(--lp-gold); }
.lp-service p { font-size: .9rem; color: var(--lp-muted); margin: 0; line-height: 1.65; }

/* ==========================================================================
   10. CTA
   ========================================================================== */
.lp-cta { position: relative; padding: 6rem 0; overflow: hidden; }
.lp-cta__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .2; }
.lp-cta::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--lp-bg), hsl(0 0% 5% / .6), var(--lp-bg)),
    hsl(0 0% 5% / .85);
}
.lp-cta__inner { position: relative; z-index: 1; text-align: center; }

/* ==========================================================================
   11. FOOTER
   ========================================================================== */
.lp-footer {
  background: var(--lp-grad-card);
  border-top: 1px solid hsl(42 65% 55% / .2);
}
.lp-footer .lp-contact-row {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1rem;
}
.lp-footer .lp-contact-row .icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  border-radius: .5rem;
  background: var(--lp-grad-gold-soft);
  border: 1px solid hsl(42 65% 55% / .3);
  color: var(--lp-gold);
}
.lp-footer .lp-contact-row small { letter-spacing: .2em; text-transform: uppercase; font-size: 10px; color: var(--lp-muted); }
.lp-footer .lp-contact-row p { margin: 0; font-weight: 500; }

.lp-social { display: flex; gap: .75rem; }
.lp-social a {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  border: 1px solid hsl(42 65% 55% / .3);
  color: var(--lp-gold);
  transition: all .3s ease;
}
.lp-social a:hover {
  background: var(--lp-grad-gold);
  color: var(--lp-gold-fg);
  border-color: transparent;
}

.lp-footer form .form-control,
.lp-footer form .form-select,
.lp-footer form textarea {
  background: hsl(0 0% 7% / .6);
  border: 1px solid hsl(42 65% 55% / .2);
  color: var(--lp-fg);
  height: 48px;
  border-radius: .5rem;
}
.lp-footer form textarea { height: auto; resize: none; }
.lp-footer form .form-control:focus,
.lp-footer form textarea:focus {
  border-color: var(--lp-gold);
  box-shadow: 0 0 0 .2rem hsl(42 65% 55% / .15);
  background: hsl(0 0% 7% / .8);
}
.lp-footer form .form-control::placeholder,
.lp-footer form textarea::placeholder { color: var(--lp-muted); }

.lp-footer__bottom {
  border-top: 1px solid hsl(42 65% 55% / .15);
  padding: 1.75rem 0;
  font-size: .8rem;
  color: var(--lp-muted);
}
.lp-footer__bottom a {
  color: var(--lp-muted);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .7rem;
  margin-left: 1.5rem;
}
.lp-footer__bottom a:hover { color: var(--lp-gold); }

/* ==========================================================================
   12. ANIMATIONS / UTILITIES
   ========================================================================== */
@keyframes lp-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.lp-fade-up { animation: lp-fade-up .8s cubic-bezier(.4,0,.2,1) both; }

.lp-no-scrollbar::-webkit-scrollbar { display: none; }
.lp-no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
html,
body {
  overflow-x: hidden;
  max-width: 100%;
  margin:0px !important;
}
 
 
/* ── 1. STRIP the WordPress theme content wrapper constraints ─────────────
   These selectors target the most common wrappers used by Bootstrap-based
   WP themes. They make the wrapper transparent so your sections control
   their own width.
   ────────────────────────────────────────────────────────────────────────── */
 
/* WP Bootstrap Starter — common wrapper class names */
.site-content,
#content,
#page,
.site,
#main,
.entry-content,
.page-content {
  padding-left:  0 !important;
  padding-right: 0 !important;
}
 
/* If the theme wraps content in .container directly, neutralise it
   only for the home page template */
.page-template-teamplate-home-page .container:first-of-type,
.page-template-template-home-page  .container:first-of-type {
  max-width:    100% !important;
  padding-left: 0    !important;
  padding-right: 0   !important;
}
 
.lp-hero,
.lp-stats,
.lp-cta {
  width:         100vw;
  margin-left:   calc(-50vw + 50%);
  margin-right:  0;              /* prevent double-offset */
  position:      relative;       /* already set, but be explicit */
  box-sizing:    border-box;
}
 
/* The marquee only (not the whole #properties section, so heading/button
   containers inside it stay normally centred) */
.lp-marquee {
  width:        100vw;
  margin-left:  calc(-50vw + 50%);
  margin-right: 0;
  box-sizing:   border-box;
}
 
.lp-hero   > .container,
.lp-stats  > .container,
.lp-cta    > .container {
  margin-left:  auto  !important;
  margin-right: auto  !important;
}
 
 
@media (min-width: 1400px) {
  .container,
  .container-xxl { max-width: 1400px; }
}
 
@media (min-width: 1200px) {
  .container,
  .container-xl  { max-width: 1200px; }
}
 

 
/* Base select reset (applies to all four filter selects) */
.lp-filter-bar .form-select {
  -webkit-appearance: none;
  -moz-appearance:    none;
  appearance:         none;
  padding-left:       0.75rem  !important;
  padding-right:      2.5rem   !important;
  background-color:   hsl(0 0% 7% / .8) !important;
  border:             1px solid hsl(42 65% 55% / .3) !important;
  color:              var(--lp-fg) !important;
  height:             56px !important;
  border-radius:      .5rem !important;
  /* Gold chevron on right — shared by all */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23cfa854' 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") !important;
  background-position:  right 1rem center !important;
  background-repeat:    no-repeat !important;
  background-size:      .65rem !important;
}
 
.lp-filter-bar .form-select:focus {
  border-color: var(--lp-gold) !important;
  box-shadow:   0 0 0 .2rem hsl(42 65% 55% / .15) !important;
  background-color: hsl(0 0% 7% / .9) !important;
}
 
.lp-filter-bar .form-select option {
  background: var(--lp-bg-soft);
  color: var(--lp-fg);
}
 
/* ── Location select — pin icon ── */
.lp-select--location {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%23cfa854' d='M8 16s6-5.686 6-10A6 6 0 0 0 2 6c0 4.314 6 10 6 10zm0-7a3 3 0 1 1 0-6 3 3 0 0 1 0 6z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23cfa854' 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") !important;
  background-position:  left 1rem center, right 1rem center !important;
  background-repeat:    no-repeat, no-repeat !important;
  background-size:      .9rem, .65rem !important;
}
 
/* ── Property Type select — house icon ── */
.lp-select--type {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%23cfa854' d='M8.354 1.146a.5.5 0 0 0-.708 0l-6 6A.5.5 0 0 0 1.5 7.5v7a.5.5 0 0 0 .5.5h4.5a.5.5 0 0 0 .5-.5v-4h2v4a.5.5 0 0 0 .5.5H14a.5.5 0 0 0 .5-.5v-7a.5.5 0 0 0-.146-.354L13 5.793V2.5a.5.5 0 0 0-.5-.5h-1a.5.5 0 0 0-.5.5v1.293L8.354 1.146zM2.5 14V7.707l5.5-5.5 5.5 5.5V14H10v-4a.5.5 0 0 0-.5-.5h-3a.5.5 0 0 0-.5.5v4H2.5z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23cfa854' 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") !important;
  background-position:  left 1rem center, right 1rem center !important;
  background-repeat:    no-repeat, no-repeat !important;
  background-size:      .9rem, .65rem !important;
}
 
/* ── Price Range select — currency icon ── */
.lp-select--price {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%23cfa854' d='M4 10.781c.148 1.667 1.513 2.85 3.591 3.003V15h1.043v-1.216c2.27-.179 3.678-1.438 3.678-3.3 0-1.59-.947-2.51-2.956-3.028l-.722-.187V3.467c1.122.11 1.879.714 2.07 1.616h1.47c-.166-1.6-1.54-2.748-3.54-2.875V1H7.591v1.233c-1.939.23-3.27 1.472-3.27 3.156 0 1.454.966 2.483 2.661 2.917l.61.162v4.031c-1.149-.17-1.94-.8-2.131-1.718H4zm3.391-3.836c-1.043-.263-1.6-.825-1.6-1.616 0-.944.704-1.641 1.8-1.828v3.495l-.2-.051zm1.591 1.872c1.287.323 1.852.859 1.852 1.769 0 1.097-.826 1.828-2.2 1.939V8.73l.348.087z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23cfa854' 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") !important;
  background-position:  left 1rem center, right 1rem center !important;
  background-repeat:    no-repeat, no-repeat !important;
  background-size:      .9rem, .65rem !important;
}
 
/* ── Plot Size select — resize/fullscreen icon ── */
.lp-select--size {
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 16 16'%3E%3Cpath fill='%23cfa854' d='M1.5 1a.5.5 0 0 0-.5.5v4a.5.5 0 0 1-1 0v-4A1.5 1.5 0 0 1 1.5 0h4a.5.5 0 0 1 0 1h-4zM10 .5a.5.5 0 0 1 .5-.5h4A1.5 1.5 0 0 1 16 1.5v4a.5.5 0 0 1-1 0v-4a.5.5 0 0 0-.5-.5h-4a.5.5 0 0 1-.5-.5zM.5 10a.5.5 0 0 1 .5.5v4a.5.5 0 0 0 .5.5h4a.5.5 0 0 1 0 1h-4A1.5 1.5 0 0 1 0 14.5v-4a.5.5 0 0 1 .5-.5zm15 0a.5.5 0 0 1 .5.5v4a1.5 1.5 0 0 1-1.5 1.5h-4a.5.5 0 0 1 0-1h4a.5.5 0 0 0 .5-.5v-4a.5.5 0 0 1 .5-.5z'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 16 16'%3E%3Cpath fill='%23cfa854' 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") !important;
  background-position:  left 1rem center, right 1rem center !important;
  background-repeat:    no-repeat, no-repeat !important;
  background-size:      .9rem, .65rem !important;
}
 
 /* Logo Slider Css */

 /*.lp-logo {
    background: #ffffffd6;
    border-radius: 10px;
    padding: 10px;
}*/
.lp-logo {
  background: linear-gradient(145deg, #ffffff, #e8e8e8);
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow:
    0 0 0 1px rgba(200, 200, 200, 0.4),
    0 0 20px rgba(180, 220, 255, 0.6),  /* blue-white outer glow */
    inset 0 1px 2px rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  }
/* ── 6. BUTTON FIXES — prevent Bootstrap overriding our custom buttons ──── */
 
/* Bootstrap .btn sets border-radius to a CSS var. Force our value. */
.btn-luxury,
.btn-outline-gold,
.btn-whatsapp {
  border-radius: .5rem !important;
}
 
/* Bootstrap adds its own focus ring via box-shadow. Remove it for our btns. */
.btn-luxury:focus,
.btn-luxury:focus-visible,
.btn-outline-gold:focus,
.btn-outline-gold:focus-visible,
.btn-whatsapp:focus,
.btn-whatsapp:focus-visible {
  box-shadow: var(--lp-shadow-gold) !important;
  outline: none;
}
 
 
/* ── 7. HERO specific — ensure bg image and overlays are truly full-screen  */
 
/* Prevent Bootstrap's grid from creating padding inside .lp-hero */
.lp-hero .lp-hero__inner.container {
  /* keep horizontal padding so text doesn't touch viewport edge on mobile */
  padding-left:  max(1.5rem, env(safe-area-inset-left));
  padding-right: max(1.5rem, env(safe-area-inset-right));
}
 
/* Fix: Bootstrap's .row inside filter bar can get negative margins that
   cause overflow. Reset those specifically inside .lp-filter-bar */
.lp-filter-bar .row {
  --bs-gutter-x: 1rem;
  margin-left:  0;
  margin-right: 0;
}
 
.lp-filter-bar .row > * {
  padding-left:  calc(var(--bs-gutter-x) * .5);
  padding-right: calc(var(--bs-gutter-x) * .5);
}
 
 
/* ── 8. MARQUEE — View All Properties button spacing fix ──────────────────
   The button after the marquee isn't in a .container so it sits at full
   width. Centre it without adding a container in HTML.
   ────────────────────────────────────────────────────────────────────────── */
#properties > .text-center.mt-5 {
  max-width: 1400px;
  margin-left:  auto  !important;
  margin-right: auto  !important;
  padding-left:  1.5rem;
  padding-right: 1.5rem;
}
 
 
/* ── 9. RESPONSIVE TWEAKS ─────────────────────────────────────────────────
   On smaller screens, the breakout sections need a tiny nudge because
   Bootstrap's container adds different padding at each breakpoint.
   ────────────────────────────────────────────────────────────────────────── */
 
@media (max-width: 575.98px) {
  .lp-hero {
    padding-top:    6rem;
    padding-bottom: 3rem;
  }
  .lp-filter-bar .row {
    --bs-gutter-x: .75rem;
  }
  .lp-filter-bar .d-flex.gap-3 {
    gap: .75rem !important;
  }
   .lp-marquee__track {
    animation-duration: 25s;
  }
}
 
@media (max-width: 767.98px) {
  /* Stack filter selects 2x2 instead of 1x4 */
  .lp-filter-bar .col-md-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
/* ── Navbar base — override Bootstrap's default bg/padding ── */
.site-header {
  padding: 1rem 0;
  background: transparent;
  transition: background .5s ease, padding .3s ease, border-bottom-color .3s ease;
  border-bottom: 1px solid transparent;
}
 
/* Scrolled state: frosted dark glass — triggered by JS in footer.php */
.site-header.scrolled {
  background: hsl(0 0% 5% / .88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: hsl(42 65% 55% / .2);
  padding: .5rem 0;
}
 
/* ── Logo wrapper: the gold-border box seen in the screenshot ── */
.site-header .lp-logo-wrap {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  border: 1px solid hsl(42 65% 55% / .45);
  border-radius: .5rem;
  padding: .45rem .9rem;
  text-decoration: none;
  transition: border-color .3s ease;
}
.site-header .lp-logo-wrap:hover {
  border-color: hsl(42 65% 55% / .8);
}
 
/* ── Logo image — Bootstrap's img-fluid sets max-width:100% which
      can collapse the image. We override with explicit dimensions. ── */
.site-header .lp-brand-img {
  width: 200px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  /* remove Bootstrap's img-fluid max-width constraint */
  max-width: none !important;
}
 
/* ── Brand text block (name + tagline) ── */
.site-header .lp-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.site-header .lp-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  letter-spacing: .01em;
  background: var(--lp-grad-text-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  /* Bootstrap may set color on .navbar-brand — force transparent fill */
  color: transparent !important;
}
.site-header .lp-brand-tag {
  font-size: 9px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: hsl(42 65% 55% / .75);
  margin-top: 3px;
  /* Bootstrap navbar-brand inherits color — reset */
  -webkit-text-fill-color: hsl(42 65% 55% / .75);
}
 
/* ── Bootstrap .navbar-brand resets (removes Bootstrap's own styling) ── */
.site-header .navbar-brand {
  padding: 0;
  margin-right: 0;
}
 
/* ── Nav links ──
   Bootstrap sets .nav-link color via --bs-nav-link-color.
   We override with !important only where Bootstrap is stubborn.    ── */
.site-header .lp-main-nav {
  gap: 2rem;
  align-items: center;
}
.site-header .lp-main-nav .nav-item {
  list-style: none;
}
.site-header .lp-main-nav .nav-link,
.site-header .lp-main-nav > li > a {
  position: relative;
  font-size: .75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: hsl(42 30% 92% / .8) !important;
  padding: .5rem 0 !important;
  transition: color .3s ease;
}
/* Underline hover effect */
.site-header .lp-main-nav .nav-link::after,
.site-header .lp-main-nav > li > a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--lp-gold);
  transition: width .35s ease;
}
.site-header .lp-main-nav .nav-link:hover,
.site-header .lp-main-nav .nav-link.active,
.site-header .lp-main-nav > li.current-menu-item > a,
.site-header .lp-main-nav > li.current_page_item > a {
  color: var(--lp-gold) !important;
}
.site-header .lp-main-nav .nav-link:hover::after,
.site-header .lp-main-nav .nav-link.active::after,
.site-header .lp-main-nav > li.current-menu-item > a::after {
  width: 100%;
}
 
/* ── Call Now header button ── */
.site-header .lp-header-cta {
  /* btn-sm adds smaller padding; keep our font-size from btn base */
  padding: .6rem 1.4rem !important;
  font-size: .8rem !important;
  white-space: nowrap;
}
 
/* ── Mobile toggler ── */
.site-header .lp-nav-toggler {
  border: 1px solid hsl(42 65% 55% / .5) !important;
  border-radius: .5rem;
  padding: .35rem .6rem;
  color: var(--lp-gold) !important;
  background: transparent;
  font-size: 1.4rem;
  line-height: 1;
  /* Remove Bootstrap's default toggler icon (we use BI icon instead) */
  background-image: none !important;
}
.site-header .lp-nav-toggler:focus {
  box-shadow: 0 0 0 .2rem hsl(42 65% 55% / .2) !important;
  outline: none;
}
 
/* ── Search form: hidden — matches Lovable design (no search in nav) ── */
.site-header .search-form {
  display: none !important;
}
 
/* ── Mobile: collapsed menu panel ── */
@media (max-width: 991.98px) {
  .site-header #navbarNav.show,
  .site-header #navbarNav.collapsing {
    background: hsl(0 0% 5% / .97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid hsl(42 65% 55% / .2);
    border-radius: 0 0 .75rem .75rem;
    padding: 1.25rem 1.5rem 1.5rem;
    margin-top: .5rem;
  }
  .site-header .lp-main-nav {
    gap: 0 !important;
    width: 100%;
  }
  .site-header .lp-main-nav .nav-link {
    padding: .75rem 0 !important;
    border-bottom: 1px solid hsl(42 65% 55% / .1);
    font-size: .8rem !important;
  }
  .site-header .lp-main-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  /* Show Call Now inside mobile menu */
  .site-header .lp-header-cta-mobile {
    display: inline-flex !important;
    margin-top: 1.25rem;
    width: 100%;
    justify-content: center;
  }
}
 
 
/* ============================================================
   LANDS PK — FOOTER CSS
   Where to paste: immediately below the HEADER CSS above,
   still at the END of  /assets/lands-pk.css
   ============================================================ */
 
/* ── Footer wrapper ── */
.lp-footer {
  background: var(--lp-grad-card);
  border-top: 1px solid hsl(42 65% 55% / .2);
}
 
/* ── Section heading inside footer ── */
.lp-footer__heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--lp-fg);
  line-height: 1.15;
}
 
/* ── Description text ── */
.lp-footer__desc {
  color: var(--lp-muted);
  font-size: .95rem;
  line-height: 1.7;
  max-width: 420px;
}
 
/* ── Contact rows (icon box + label + value) ── */
.lp-footer__contacts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 2rem;
}
/* Override/extend the existing .lp-contact-row from lands-pk.css */
.lp-footer__contacts .lp-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.lp-footer__contacts .lp-contact-row .icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: .5rem;
  background: var(--lp-grad-gold-soft);
  border: 1px solid hsl(42 65% 55% / .3);
  color: var(--lp-gold);
  font-size: 1.1rem;
}
.lp-footer__contacts .lp-contact-row small {
  display: block;
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--lp-muted);
  margin-bottom: .2rem;
}
.lp-footer__contacts .lp-contact-row p {
  margin: 0;
  font-weight: 500;
  color: var(--lp-fg);
  font-size: .95rem;
}
.lp-footer__contacts .lp-contact-row p a {
  color: var(--lp-fg);
  text-decoration: none;
  transition: color .25s ease;
}
.lp-footer__contacts .lp-contact-row p a:hover {
  color: var(--lp-gold);
}
 
/* ── Form card (right column) ── */
.lp-footer__form-card {
  background: hsl(0 0% 7% / .6);
  border: 1px solid hsl(42 65% 55% / .2);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--lp-shadow-elegant);
}
 
/* ── Form inputs/textarea ── */
.lp-footer__input {
  background: hsl(0 0% 5% / .7) !important;
  border: 1px solid hsl(42 65% 55% / .2) !important;
  color: var(--lp-fg) !important;
  border-radius: .5rem !important;
  height: 52px;
  font-size: .9rem;
  padding: .75rem 1rem;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.lp-footer__input:focus {
  border-color: var(--lp-gold) !important;
  box-shadow: 0 0 0 .2rem hsl(42 65% 55% / .15) !important;
  background: hsl(0 0% 6% / .9) !important;
  outline: none;
  color: var(--lp-fg) !important;
}
.lp-footer__input::placeholder {
  color: var(--lp-muted) !important;
}
 
/* Textarea-specific override */
.lp-footer__textarea {
  height: auto !important;
  resize: vertical;
  min-height: 120px;
}
 
/* ── Bottom bar ── */
.lp-footer__bottom {
  border-top: 1px solid hsl(42 65% 55% / .15);
  padding: 1.5rem 0;
}
 
.lp-footer__copy {
  font-size: .8rem;
  color: var(--lp-muted);
}
 
/* ── Footer nav links ── */
.lp-footer__nav {
  display: flex;
  gap: 2rem;
  justify-content: flex-end;
  align-items: center;
}
.lp-footer__nav a,
.lp-footer__nav li a {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--lp-muted);
  text-decoration: none;
  transition: color .25s ease;
  list-style: none;
}
.lp-footer__nav a:hover,
.lp-footer__nav li a:hover {
  color: var(--lp-gold);
}
/* Remove default <ul> bullets if WP nav outputs a list */
.lp-footer__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 2rem;
}
 
@media (max-width: 767.98px) {
  .lp-footer__nav {
    justify-content: center;
  }
  .lp-footer__form-card {
    padding: 1.5rem;
  }
  .lp-footer__bottom .col-12.col-md.text-center {
    order: 3;
  }
}

@media (max-width:1200px){
  .lp-footer__contacts {
 
    grid-template-columns: auto !important;
    
  
  }
}

/************** About Us page Css ***************/


.lp-page-banner, .lp-page-banner-property {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  margin-top: 0;
}
.lp-page-banner-property{ padding: 8rem 0 5rem; }
@media (min-width: 992px) { .lp-page-banner { min-height: 600px; } .lp-page-banner-property{ min-height: 750px;} }

.lp-page-banner__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05);
  animation: lpBannerZoom 18s ease-in-out infinite alternate;
}
@keyframes lpBannerZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.15); }
}

/* Dark gradient overlay — matches homepage hero treatment */
.lp-page-banner__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, hsl(0 0% 4% / .65) 0%, hsl(0 0% 4% / .55) 50%, hsl(0 0% 4% / .9) 100%),
    radial-gradient(circle at 50% 50%, transparent 0%, hsl(0 0% 4% / .55) 80%);
  z-index: -1;
}

.lp-page-banner__inner { position: relative; padding: 2rem 1rem; }
.lp-page-banner__tag   { margin-bottom: 1rem; }

.lp-page-banner__title {
  font-size: clamp(2.75rem, 7vw, 6rem);
  line-height: 1;
  margin-bottom: 1.5rem;
}

/* Breadcrumb */
.lp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .65rem 1.5rem;
  border: 1px solid hsl(42 65% 55% / .35);
  border-radius: 999px;
  background: hsl(0 0% 8% / .55);
  backdrop-filter: blur(10px);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--lp-muted);
}
.lp-breadcrumb a {
  color: var(--lp-fg);
  text-decoration: none;
  transition: color .25s ease;
}
.lp-breadcrumb a:hover  { color: var(--lp-gold); }
.lp-breadcrumb__sep     { color: var(--lp-gold); font-weight: 700; }
.lp-breadcrumb [aria-current="page"] { color: var(--lp-gold); font-weight: 600; }


/* ==========================================================================
   2. INTRO SECTION (reuses .lp-about__media, .lp-about__badge from skin)
   Only adds slight content tweaks specific to the about page.
   ========================================================================== */
.lp-about-intro__lead {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--lp-fg);
  margin-bottom: 1.25rem;
}
.lp-about-intro__media-wrap { max-width: 520px; }


/* ==========================================================================
   3. DIRECTOR'S MESSAGE
   ========================================================================== */
.lp-director { background: linear-gradient(180deg, transparent, hsl(0 0% 7% / .6), transparent); }

.lp-director__media-wrap { max-width: 440px; }

.lp-director__media {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid hsl(42 65% 55% / .25);
  box-shadow: var(--lp-shadow-elegant);
  aspect-ratio: 4 / 5;
}
.lp-director__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.lp-director__media:hover img { transform: scale(1.04); }

/* Floating gold quote mark */
.lp-director__quote-mark {
  position: absolute;
  top: -22px; left: -22px;
  width: 78px; height: 78px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--lp-grad-gold);
  color: var(--lp-gold-fg);
  font-size: 2.4rem;
  box-shadow: var(--lp-shadow-gold-lg);
  z-index: 2;
}

.lp-director__quote {
  position: relative;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  line-height: 1.7;
  color: var(--lp-fg);
  padding: 1.25rem 0 1.25rem 1.75rem;
  border-left: 3px solid var(--lp-gold);
  margin-bottom: 1.75rem;
}

.lp-director__sign h5 {
  font-size: 1.5rem;
  margin: 0;
}
.lp-director__sign small {
  color: var(--lp-muted);
  letter-spacing: .15em;
  text-transform: uppercase;
  font-size: .75rem;
}


/* ==========================================================================
   4. MISSION / VISION / COMMITMENT CARDS
   Built on top of .luxury-card from the global skin so hover/glow are inherited.
   ========================================================================== */
.lp-mvc__card {
  position: relative;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: left;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.lp-mvc__card:hover {
  transform: translateY(-8px);
  border-color: hsl(42 65% 55% / .55);
}

/* Big gold icon badge */
.lp-mvc__icon {
  width: 84px; height: 84px;
  border-radius: 1rem;
  display: grid; place-items: center;
  font-size: 2.4rem;
  color: var(--lp-gold);
  background: var(--lp-grad-gold-soft);
  border: 1px solid hsl(42 65% 55% / .35);
  margin-bottom: 1.75rem;
  transition: all .4s ease;
}
.lp-mvc__card:hover .lp-mvc__icon {
  background: var(--lp-grad-gold);
  color: var(--lp-gold-fg);
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--lp-shadow-gold);
}

.lp-mvc__title {
  font-size: 1.75rem;
  margin-bottom: .9rem;
}
.lp-mvc__text {
  color: var(--lp-muted);
  line-height: 1.7;
  margin: 0;
}

/* Animated gold underline on hover */
.lp-mvc__line {
  position: absolute;
  left: 2rem; bottom: 1.5rem;
  width: 40px; height: 3px;
  background: var(--lp-grad-gold);
  border-radius: 3px;
  transition: width .45s ease;
}
.lp-mvc__card:hover .lp-mvc__line { width: 80px; }


/* ==========================================================================
   5. TEAM GRID (property-card style hover overlay with WhatsApp + Call)
   ========================================================================== */
.lp-team__card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid hsl(42 65% 55% / .15);
  background: var(--lp-grad-card);
  box-shadow: var(--lp-shadow-card);
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
  aspect-ratio: 4 / 5;
}
.lp-team__card:hover {
  transform: translateY(-8px);
  border-color: hsl(42 65% 55% / .55);
  box-shadow: var(--lp-shadow-gold);
}

.lp-team__media { width: 100%; height: 100%; }
.lp-team__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
  filter: grayscale(15%) brightness(.92);
}
.lp-team__card:hover .lp-team__media img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

/* Overlay slides up on hover */
.lp-team__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, transparent 30%, hsl(0 0% 4% / .55) 60%, hsl(0 0% 4% / .96) 100%);
  padding: 1.75rem;
  opacity: 1;
  transition: background .45s ease;
}

.lp-team__info {
  width: 100%;
  transform: translateY(48px);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.lp-team__card:hover .lp-team__info { transform: translateY(0); }

.lp-team__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin: 0 0 .15rem;
  color: var(--lp-fg);
}
.lp-team__role {
  color: var(--lp-gold);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lp-team__actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
}
.lp-team__card:hover .lp-team__actions {
  opacity: 1;
  transform: translateY(0);
}
.lp-team__actions .btn {
  flex: 1;
  min-width: 110px;
  font-size: .78rem;
  padding: .55rem .8rem;
}

/* ==========================================================================
   6. RESPONSIVE TUNING
   ========================================================================== */
@media (max-width: 767px) {
  .lp-page-banner               { min-height: 420px; }
  .lp-page-banner__title        { font-size: 2.5rem; }
  .lp-director__quote-mark      { width: 60px; height: 60px; font-size: 1.8rem; top: -15px; left: -15px; }
  .lp-director__quote           { font-size: 1.05rem; padding-left: 1.25rem; }
  .lp-mvc__card                 { padding: 2rem 1.5rem; }
  .lp-mvc__icon                 { width: 68px; height: 68px; font-size: 1.9rem; }

  /* Team: keep overlay info always visible on touch devices */
  .lp-team__info       { transform: translateY(0); }
  .lp-team__actions    { opacity: 1; transform: none; }
  .lp-team__media img  { filter: none; }
}
 
/************ Services Page ***********/
.lp-mvc__card {
  position: relative;
  padding: 2.5rem 2rem;
  height: 100%;
  text-align: left;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.lp-mvc__card:hover {
  transform: translateY(-8px);
  border-color: hsl(42 65% 55% / .55);
}

/* Big gold icon badge */
.lp-mvc__icon {
  width: 84px; height: 84px;
  border-radius: 1rem;
  display: grid; place-items: center;
  font-size: 2.4rem;
  color: var(--lp-gold);
  background: var(--lp-grad-gold-soft);
  border: 1px solid hsl(42 65% 55% / .35);
  margin-bottom: 1.75rem;
  transition: all .4s ease;
}
.lp-mvc__card:hover .lp-mvc__icon {
  background: var(--lp-grad-gold);
  color: var(--lp-gold-fg);
  transform: rotate(-6deg) scale(1.05);
  box-shadow: var(--lp-shadow-gold);
}

.lp-mvc__title {
  font-size: 1.75rem;
  margin-bottom: .9rem;
}
.lp-mvc__text {
  color: var(--lp-muted);
  line-height: 1.7;
  margin: 0;
}

/* Animated gold underline on hover */
.lp-mvc__line {
  position: absolute;
  left: 2rem; bottom: 1.5rem;
  width: 40px; height: 3px;
  background: var(--lp-grad-gold);
  border-radius: 3px;
  transition: width .45s ease;
}
.lp-mvc__card:hover .lp-mvc__line { width: 80px; }


/* ==========================================================================
   5. TEAM GRID (property-card style hover overlay with WhatsApp + Call)
   ========================================================================== */
.lp-team__card {
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid hsl(42 65% 55% / .15);
  background: var(--lp-grad-card);
  box-shadow: var(--lp-shadow-card);
  transition: transform .45s ease, box-shadow .45s ease, border-color .45s ease;
  aspect-ratio: 4 / 5;
}
.lp-team__card:hover {
  transform: translateY(-8px);
  border-color: hsl(42 65% 55% / .55);
  box-shadow: var(--lp-shadow-gold);
}

.lp-team__media { width: 100%; height: 100%; }
.lp-team__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease, filter .8s ease;
  filter: grayscale(15%) brightness(.92);
}
.lp-team__card:hover .lp-team__media img {
  transform: scale(1.08);
  filter: grayscale(0%) brightness(1);
}

/* Overlay slides up on hover */
.lp-team__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(180deg, transparent 30%, hsl(0 0% 4% / .55) 60%, hsl(0 0% 4% / .96) 100%);
  padding: 1.75rem;
  opacity: 1;
  transition: background .45s ease;
}

.lp-team__info {
  width: 100%;
  transform: translateY(48px);
  transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}
.lp-team__card:hover .lp-team__info { transform: translateY(0); }

.lp-team__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin: 0 0 .15rem;
  color: var(--lp-fg);
}
.lp-team__role {
  color: var(--lp-gold);
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.lp-team__actions {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .35s ease .1s, transform .35s ease .1s;
}
.lp-team__card:hover .lp-team__actions {
  opacity: 1;
  transform: translateY(0);
}
.lp-team__actions .btn {
  flex: 1;
  min-width: 110px;
  font-size: .78rem;
  padding: .55rem .8rem;
}

/* ==========================================================================
   6. RESPONSIVE TUNING
   ========================================================================== */
@media (max-width: 767px) {
  .lp-page-banner               { min-height: 420px; }
  .lp-page-banner__title        { font-size: 2.5rem; }
  .lp-director__quote-mark      { width: 60px; height: 60px; font-size: 1.8rem; top: -15px; left: -15px; }
  .lp-director__quote           { font-size: 1.05rem; padding-left: 1.25rem; }
  .lp-mvc__card                 { padding: 2rem 1.5rem; }
  .lp-mvc__icon                 { width: 68px; height: 68px; font-size: 1.9rem; }

  /* Team: keep overlay info always visible on touch devices */
  .lp-team__info       { transform: translateY(0); }
  .lp-team__actions    { opacity: 1; transform: none; }
  .lp-team__media img  { filter: none; }
}

/* ---------- Page banner (mirror About page; safe duplicate so this
   page works even when about.css is not enqueued) ---------- */
.lp-services-page .lp-page-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--lp-fg, #fff);
}
@media (min-width: 992px) {
  .lp-services-page .lp-page-banner { min-height: 600px; }

}
.lp-services-page .lp-page-banner__bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}
.lp-services-page .lp-page-banner__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient( to bottom, rgba(0,0,0,.55), rgba(0,0,0,.85) ),
    radial-gradient( ellipse at center, rgba(0,0,0,.2), rgba(0,0,0,.7) );
}
.lp-services-page .lp-page-banner__inner { position: relative; padding: 2rem 1rem; }
.lp-services-page .lp-page-banner__tag   { margin-bottom: 1rem; }
.lp-services-page .lp-page-banner__title {
  font-family: var(--lp-serif, "Playfair Display", serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1;
  margin: 0 0 1.5rem;
}
.lp-services-page .lp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--lp-muted, #aaa);
}
.lp-services-page .lp-breadcrumb a {
  color: var(--lp-gold, #d4a437);
  text-decoration: none;
  transition: color .2s ease;
}
.lp-services-page .lp-breadcrumb a:hover { color: #fff; }
.lp-services-page .lp-breadcrumb__sep    { opacity: .5; }

@media (max-width: 767px) {
  .lp-services-page .lp-page-banner        { min-height: 420px; }
  .lp-services-page .lp-page-banner__title { font-size: 2.5rem; }
}


/* ---------- Service block container ---------- */
.lp-svc-block {
  position: relative;
  overflow: hidden;
}
/* Subtle alternating background so the eye can separate the 6 sections */
.lp-svc-block:nth-of-type(even) {
  background:
    linear-gradient( 180deg,
      rgba(255,255,255,.015),
      rgba(255,255,255,0) 60% );
}
/* Soft gold accent line under each block heading area */
.lp-svc-block h2 { position: relative; }
.lp-svc-block h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 2px;
  margin-top: 1rem;
  background: linear-gradient( 90deg,
    var(--lp-gold, #d4a437),
    transparent );
}

.lp-svc-block__lead {
  font-size: 1.1rem;
  color: var(--lp-fg, #fff);
  margin-bottom: 1rem;
  line-height: 1.6;
}


/* ---------- Image gallery (auto-scroll horizontal slider) ---------- */
.lp-svc-gallery {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.6),
    0 0 0 1px rgba(212,164,55,.15);
  background: #0d0d0d;
}
.lp-svc-gallery::before {
  /* Soft gold inner glow on hover */
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(212,164,55,.0);
  transition: box-shadow .4s ease;
  pointer-events: none;
  z-index: 3;
  border-radius: inherit;
}
.lp-svc-gallery:hover::before {
  box-shadow: inset 0 0 0 1px rgba(212,164,55,.45);
}

.lp-svc-gallery__track {
  display: flex;
  width: 100%;
  transition: transform .9s cubic-bezier(.65,.05,.36,1);
  will-change: transform;
}
.lp-svc-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.lp-svc-gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 6s ease;
}
.lp-svc-gallery:hover .lp-svc-gallery__slide img {
  transform: scale(1.08);
}

/* Dot indicators */
.lp-svc-gallery__dots {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
  padding: 6px 12px;
  background: rgba(0,0,0,.45);
  border-radius: 999px;
  backdrop-filter: blur(6px);
}
.lp-svc-gallery__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.35);
  transition: background .3s ease, width .3s ease;
}
.lp-svc-gallery__dot.is-active {
  background: var(--lp-gold, #d4a437);
  width: 22px;
  border-radius: 4px;
}


/* ---------- Reverse layout helper (image right) ----------
   Bootstrap's flex-md-row-reverse already swaps columns; this
   class is here for any future per-side styling hooks. */
.lp-svc-block--reverse .lp-svc-gallery {
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.6),
    0 0 0 1px rgba(212,164,55,.2);
}


/* ---------- Mobile tweaks ---------- */
@media (max-width: 767px) {
  .lp-svc-block h2::after { margin-left: auto; margin-right: auto; }
  .lp-svc-block .col-md-6 { text-align: left; }
  .lp-svc-gallery__slide  { aspect-ratio: 16 / 11; }
}


/* ---------- Reveal on scroll (paired with shared lp-fade-up
   IntersectionObserver in lands-pk.js if present; otherwise just
   a static fade-in). ---------- */
.lp-svc-block {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.lp-svc-block.is-visible,
.no-js .lp-svc-block {
  opacity: 1;
  transform: none;
}


/******* Property Single Page ****************/

/* ---------- 2. Body wrapper ---------- */
.lp-single-property{
  background: var(--lp-bg, #0b0b0e);
  color: rgba(255,255,255,.85);
}
.lp-sp-body{ background: var(--lp-bg, #0b0b0e); }

/* ---------- 3. Gallery (Bootstrap carousel skin) ---------- */

/* FIX: contain everything inside gallery */
.lp-sp-gallery {
    height: 500px;
    overflow: hidden;
    position: relative;
}

/* IMPORTANT: make carousel inner respect height */
.lp-sp-gallery .carousel-inner,
.lp-sp-gallery .carousel-item {
    height: 100%;
}

/* prevent Bootstrap overlap issues */
.lp-sp-gallery .carousel-item {
    position: relative;
}


.lp-sp-img-wrap {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* overlay for dark effect */
.lp-sp-img-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
}

/* main image */
.lp-sp-gallery-img {
    position: relative;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 2;
    cursor: pointer;
}

/* thumbnail images */
.lp-sp-thumb img {
    width: 80px;
    height: 60px;
    object-fit: cover;
}

.lp-sp-gallery-ctrl{
  width: 48px; height: 48px;
  background: rgba(0,0,0,.55);
  border: 1px solid rgba(201,162,74,.4);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: 1;
  font-size: 1.6rem; color: var(--lp-gold, #c9a24a);
  display: flex; align-items: center; justify-content: center;
  transition: all .3s ease;
}
.lp-sp-gallery-ctrl:hover{ background: var(--lp-gold, #c9a24a); color: #0b0b0e; }
.carousel-control-prev.lp-sp-gallery-ctrl{ left: 16px; z-index:999 }
.carousel-control-next.lp-sp-gallery-ctrl{ right: 16px; z-index:999}

.lp-sp-thumbs{ overflow-x: auto; scrollbar-width: none; }
.lp-sp-thumbs::-webkit-scrollbar{ display: none; }
.lp-sp-thumb{
  flex: 0 0 96px;
  height: 70px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: #14141a;
  transition: border-color .25s ease, transform .25s ease;
}
.lp-sp-thumb img{ width: 100%; height: 100%; object-fit: cover; }
.lp-sp-thumb:hover{ transform: translateY(-2px); border-color: rgba(201,162,74,.5); }
.lp-sp-thumb.active{ border-color: var(--lp-gold, #c9a24a); }

/* ---------- 4. Header info: title, location, price, tags ---------- */
.lp-sp-headinfo{
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 16px;
}
.lp-sp-title{
  font-family: var(--lp-font-serif, 'Playfair Display', serif);
  color: #fff;
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
}
.lp-sp-location{
  color: rgba(255,255,255,.65);
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .95rem;
}
.lp-sp-location svg{ color: var(--lp-gold, #c9a24a); }
.lp-sp-price-label{
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}
.lp-sp-price{
  font-family: var(--lp-font-serif, 'Playfair Display', serif);
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--lp-gold, #c9a24a);
  font-weight: 700;
}
.lp-tag{
  display: inline-block;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
}
.lp-tag-gold{
  background: rgba(201,162,74,.12);
  border-color: rgba(201,162,74,.45);
  color: var(--lp-gold, #c9a24a);
}

/* ---------- 5. Key features grid ---------- */
.lp-sp-feature-card{
  display: flex; align-items: center; gap: 14px;
  padding: 18px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  transition: border-color .3s ease, transform .3s ease, background .3s ease;
}
.lp-sp-feature-card:hover{
  border-color: rgba(201,162,74,.5);
  transform: translateY(-3px);
  background: rgba(201,162,74,.05);
}
.lp-sp-feature-icon{
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(201,162,74,.12);
  color: var(--lp-gold, #c9a24a);
  flex-shrink: 0;
}
.lp-sp-feature-label{ font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.lp-sp-feature-value{ color: #fff; font-weight: 600; font-size: 1.05rem; }

/* ---------- 6. Section titles ---------- */
.lp-sp-section-title{
  font-family: var(--lp-font-serif, 'Playfair Display', serif);
  color: #fff;
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.lp-sp-section-divider{
  width: 60px; height: 3px;
  background: var(--lp-gold, #c9a24a);
  border-radius: 2px;
  margin-bottom: 22px;
}
.lp-sp-prose{ color: rgba(255,255,255,.75); line-height: 1.75; font-size: 1rem; }
.lp-sp-prose p + p{ margin-top: 1em; }

/* ---------- 7. Amenities ---------- */
.lp-sp-amenity{
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 10px;
  color: rgba(255,255,255,.85);
  font-size: .95rem;
  transition: border-color .25s ease, color .25s ease;
}
.lp-sp-amenity:hover{ border-color: rgba(201,162,74,.5); }
.lp-sp-amenity svg{ color: var(--lp-gold, #c9a24a); flex-shrink: 0; }

/* ---------- 8. Map ---------- */
.lp-sp-map{ border: 1px solid rgba(255,255,255,.08); }
.lp-sp-map iframe{ filter: invert(.92) hue-rotate(180deg) saturate(.7); }

/* ---------- 9. Sticky sidebar ---------- */
.lp-sp-sticky{
  position: sticky;
  top: 110px; /* offset for fixed header */
}
@media (max-width: 991.98px){
  .lp-sp-sticky{ position: static; }
}

/* ---------- 10. Agent card ---------- */
.lp-sp-agent{
  position: relative;
  background: linear-gradient(180deg, #14141a 0%, #0d0d12 100%);
  border: 1px solid rgba(201,162,74,.25);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.6);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.lp-sp-agent:hover{
  transform: translateY(-4px);
  border-color: rgba(201,162,74,.55);
  box-shadow: 0 30px 70px -25px rgba(201,162,74,.25);
}
.lp-sp-agent-cover{
  height: 90px;
  background: linear-gradient(135deg, rgba(201,162,74,.5), rgba(201,162,74,.15));
}
.lp-sp-agent-photo{
  width: 120px; height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: -60px auto 16px;
  border: 3px solid #14141a;
  box-shadow: 0 0 0 2px var(--lp-gold, #c9a24a);
  background: #14141a;
}
.lp-sp-agent-photo img{ width: 100%; height: 100%; object-fit: cover; }
.lp-sp-agent-body{ padding: 0 24px 28px; }
.lp-sp-agent-name{
  font-family: var(--lp-font-serif, 'Playfair Display', serif);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 4px;
}
.lp-sp-agent-role{
  color: var(--lp-gold, #c9a24a);
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.lp-sp-agent-socials a{
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.7);
  transition: all .3s ease;
}
.lp-sp-agent-socials a:hover{
  background: var(--lp-gold, #c9a24a);
  color: #0b0b0e;
  border-color: var(--lp-gold, #c9a24a);
  transform: translateY(-2px);
}

/* ---------- 11. Sidebar buttons ---------- */
.lp-btn-gold{
  background: linear-gradient(135deg, #d6b15a 0%, #b88a35 100%);
  color: #0b0b0e !important;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.lp-btn-gold:hover{ transform: translateY(-2px); filter: brightness(1.07); box-shadow: 0 12px 24px -10px rgba(201,162,74,.6); color: #0b0b0e; }

.lp-btn-whatsapp{
  background: #25d366;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .82rem;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: transform .25s ease, background .25s ease, box-shadow .25s ease;
}
.lp-btn-whatsapp:hover{ background: #1ebe5a; transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(37,211,102,.5); color: #fff; }

.lp-btn-outline{
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 11px 18px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .8rem;
  transition: all .25s ease;
}
.lp-btn-outline:hover{ border-color: var(--lp-gold, #c9a24a); color: var(--lp-gold, #c9a24a) !important; }

/* ---------- 12. Inquiry form ---------- */
.lp-sp-inquiry{
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px;
  padding: 22px;
}
.lp-sp-inquiry-title{
  color: #fff;
  font-family: var(--lp-font-serif, 'Playfair Display', serif);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.lp-input{
  background: rgba(0,0,0,.35) !important;
  border: 1px solid rgba(255,255,255,.1) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 11px 14px !important;
  font-size: .92rem !important;
  transition: border-color .25s ease, background .25s ease;
}
.lp-input::placeholder{ color: rgba(255,255,255,.4); }
.lp-input:focus{ border-color: var(--lp-gold, #c9a24a) !important; box-shadow: 0 0 0 3px rgba(201,162,74,.15) !important; outline: none; }

/*********** BLOGS PAGE CSS **********************/

/* ---------- Card ---------- */
.lp-blog-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--lp-card, #131316);
  border: 1px solid var(--lp-border, rgba(212, 175, 55, 0.18));
  border-radius: 14px;
  overflow: hidden;
  transition: transform .45s ease, border-color .45s ease, box-shadow .45s ease;
  position: relative;
}
.lp-blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--lp-gold, #d4af37);
  box-shadow: 0 18px 40px -18px rgba(212, 175, 55, 0.35);
}

/* Media */
.lp-blog-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.lp-blog-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.lp-blog-card:hover .lp-blog-card__media img { transform: scale(1.08); }

.lp-blog-card__cat {
  position: absolute;
  top: 14px; left: 14px;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 12px;
  background: linear-gradient(135deg, #d4af37, #b8902a);
  color: #0b0b0d;
  font-weight: 600;
  border-radius: 999px;
}

/* Body */
.lp-blog-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.lp-blog-card__meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--lp-muted, #8a8a90);
  margin-bottom: 10px;
}
.lp-blog-card__meta i { color: var(--lp-gold, #d4af37); margin-right: 4px; }

.lp-blog-card__title {
  font-family: var(--lp-font-serif, 'Playfair Display', serif);
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 12px;
}
.lp-blog-card__title a {
  color: var(--lp-text, #f5f5f0);
  text-decoration: none;
  transition: color .3s ease;
}
.lp-blog-card__title a:hover { color: var(--lp-gold, #d4af37); }

.lp-blog-card__excerpt {
  color: var(--lp-muted, #9b9ba0);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 18px;
  flex: 1;
}
.lp-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-gold, #d4af37);
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  text-decoration: none;
}
.lp-blog-card__link i { transition: transform .3s ease; }
.lp-blog-card__link:hover i { transform: translateX(5px); }

/* ---------- Load More button ---------- */
.lp-blog-loadmore-wrap { padding-top: 20px; }
#lp-blog-loadmore {
  position: relative;
  min-width: 200px;
}
#lp-blog-loadmore .lp-btn__spinner {
  display: none;
  width: 16px; height: 16px;
  border: 2px solid rgba(0,0,0,.25);
  border-top-color: #0b0b0d;
  border-radius: 50%;
  margin-left: 10px;
  vertical-align: middle;
  animation: lp-spin .7s linear infinite;
}
#lp-blog-loadmore.is-loading .lp-btn__spinner { display: inline-block; }
#lp-blog-loadmore.is-loading .lp-btn__label   { opacity: .7; }
#lp-blog-loadmore[disabled] { opacity: .55; cursor: not-allowed; }
@keyframes lp-spin { to { transform: rotate(360deg); } }

/* =========================================================
   Single post
   ========================================================= */
.lp-single-banner__title {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.15;
}

.lp-single-section {
  padding: 90px 0 110px;
  background: var(--lp-bg, #0b0b0d);
}

/* Content column */
.lp-single-content {
  background: var(--lp-card, #131316);
  border: 1px solid var(--lp-border, rgba(212,175,55,.15));
  border-radius: 16px;
  padding: 40px 44px;
}
@media (max-width: 767px) {
  .lp-single-content { padding: 26px 22px; }
}

.lp-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  font-size: 13px;
  color: var(--lp-muted, #9b9ba0);
  padding-bottom: 22px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--lp-border, rgba(212,175,55,.15));
}
.lp-single-meta i { color: var(--lp-gold, #d4af37); margin-right: 6px; }

.lp-single-body {
  color: var(--lp-text, #e9e9e4);
  font-size: 16px;
  line-height: 1.85;
}
.lp-single-body p { margin: 0 0 1.2em; }
.lp-single-body h2,
.lp-single-body h3,
.lp-single-body h4 {
  font-family: var(--lp-font-serif, 'Playfair Display', serif);
  color: var(--lp-text, #f5f5f0);
  margin: 1.6em 0 .6em;
  line-height: 1.25;
}
.lp-single-body h2 { font-size: 30px; }
.lp-single-body h3 { font-size: 24px; }
.lp-single-body h4 { font-size: 20px; }
.lp-single-body a {
  color: var(--lp-gold, #d4af37);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lp-single-body img,
.lp-single-body .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 24px 0;
}
.lp-single-body blockquote {
  border-left: 3px solid var(--lp-gold, #d4af37);
  background: rgba(212,175,55,.06);
  padding: 22px 26px;
  margin: 28px 0;
  font-family: var(--lp-font-serif, 'Playfair Display', serif);
  font-style: italic;
  font-size: 18px;
  border-radius: 0 10px 10px 0;
}
.lp-single-body ul,
.lp-single-body ol { padding-left: 22px; margin: 0 0 1.2em; }
.lp-single-body li { margin-bottom: .5em; }
.lp-single-body code {
  background: rgba(255,255,255,.06);
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 14px;
}

.lp-single-tags {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--lp-border, rgba(212,175,55,.15));
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.lp-single-tags__label {
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--lp-muted, #8a8a90);
  margin-right: 6px;
}
.lp-single-tags a {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--lp-border, rgba(212,175,55,.25));
  color: var(--lp-text, #e9e9e4);
  text-decoration: none;
  transition: all .3s ease;
}
.lp-single-tags a:hover {
  background: var(--lp-gold, #d4af37);
  color: #0b0b0d;
  border-color: var(--lp-gold, #d4af37);
}

/* ---------- Sidebar ---------- */
.lp-single-sidebar {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 991px) {
  .lp-single-sidebar { position: static; }
}

.lp-sidebar-block {
  background: var(--lp-card, #131316);
  border: 1px solid var(--lp-border, rgba(212,175,55,.15));
  border-radius: 14px;
  padding: 22px 20px;
}
.lp-sidebar-title {
  font-family: var(--lp-font-serif, 'Playfair Display', serif);
  font-size: 18px;
  color: var(--lp-text, #f5f5f0);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--lp-border, rgba(212,175,55,.18));
  position: relative;
}
.lp-sidebar-title::after {
  content: "";
  position: absolute;
  bottom: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--lp-gold, #d4af37);
}

/* Related property card (sidebar) */
.lp-side-prop {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--lp-border, rgba(212,175,55,.12));
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease;
}
.lp-side-prop:last-child { border-bottom: none; }
.lp-side-prop:hover { transform: translateX(3px); }

.lp-side-prop__media {
  flex: 0 0 90px;
  width: 90px; height: 72px;
  border-radius: 8px;
  overflow: hidden;
}
.lp-side-prop__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.lp-side-prop:hover .lp-side-prop__media img { transform: scale(1.08); }

.lp-side-prop__body { flex: 1; min-width: 0; }
.lp-side-prop__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--lp-text, #f5f5f0);
  margin: 0 0 4px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lp-side-prop:hover .lp-side-prop__title { color: var(--lp-gold, #d4af37); }
.lp-side-prop__loc {
  font-size: 12px;
  color: var(--lp-muted, #9b9ba0);
  margin: 0 0 4px;
}
.lp-side-prop__loc i { color: var(--lp-gold, #d4af37); margin-right: 3px; }
.lp-side-prop__price {
  font-size: 13px;
  color: var(--lp-gold, #d4af37);
  font-weight: 600;
  margin: 0;
}

.lp-sidebar-cta { text-align: center; }
.lp-sidebar-cta p {
  color: var(--lp-muted, #9b9ba0);
  font-size: 14px;
  margin: 0 0 14px;
}

/* ---------- Responsive ---------- */
@media (max-width: 575px) {
  .lp-blog-section { padding: 60px 0 80px; }
  .lp-blog-card__title { font-size: 18px; }
  .btn-xl {padding: 1.15rem 1.6rem;}
  .btn-lg { padding: 1rem 1rem; font-size: .9rem;}
  nav#header { background: hsl(0 0% 5% / .88); padding: 0px 10px !important; }
}

/****** Filter Page Number Css **********/
.lp-pagination>a {
    font-size: 1.5em;
    border: 1px solid var(--lp-gold);
    padding: 10px;
}

a.appDesktop {
    position: fixed;
    bottom: 55px;
    right: 20px;
    font-size: 37px;
    background: #3eed71;
    padding: 10px 20px;
    border-radius: 50%;
    color:#fff;
    z-index: 9999;
}

.qlwapp__container.qlwapp__container--rounded .qlwapp__button--button{ display:none }

/******** SOLD BADGE **************/
.lp-property__sold-badge {
    position: absolute;
    top: 35%;
    left: 0px;
    background: red;
    color: #fff;
    padding: 5px 40px;
    font-size: 30px;
    font-weight: bold;
}
.lp-property__sold-badge-2{
    background: red;
    color: #fff;
    padding: 5px 40px;
    font-size: 30px;
    font-weight: bold;
}

/******* Video Css ********/
/* Video slide dark background */
.lp-sp-video-slide {
    background: #111;
}

/* Center the play button inside the slide */
.lp-sp-video-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.lp-sp-play-btn svg {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.5));
    transition: transform .2s;
}
.lp-sp-video-trigger:hover .lp-sp-play-btn svg {
    transform: scale(1.12);
}

/* Video thumbnail in the thumbstrip */
.lp-sp-thumb-video svg {
    width: 100%;
    height: 100%;
    display: block;
}
.lp-sp-video-preview {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none; /* clicks pass through to the lightbox link */
}

/* =============================================================
   SINGLE PROPERTY PAGE — Custom Styles
   Copy this block into your main CSS file (lands-pk.css)
   ============================================================= */

/* ── Feature Group Headings ─────────────────────────────────── */
.lp-sp-feature-group {
    margin-bottom: 2rem;
}

.lp-sp-feature-group-title {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--lp-gold, #c9a84c);
    margin-bottom: 0.5rem;
}

.lp-sp-feature-group-divider {
    height: 1px;
    background: linear-gradient(to right, rgba(201, 168, 76, 0.45), transparent);
}

/* ── Feature Card ────────────────────────────────────────────── */
.lp-sp-feature-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    height: 100%;
    min-width: 0; /* prevent flex overflow */
    transition: border-color 0.2s;
}

.lp-sp-feature-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
}

.lp-sp-feature-icon {
    flex-shrink: 0;
    color: var(--lp-gold, #c9a84c);
    display: flex;
    align-items: center;
}

.lp-sp-feature-text {
    min-width: 0;
    flex: 1;
}

.lp-sp-feature-label {
    font-size: 0.6rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.25rem;
    line-height: 1.3;
    word-break: break-word;
}

.lp-sp-feature-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.35;
}

/* ── Title / Price Block ─────────────────────────────────────── */
.lp-sp-headinfo-inner {
    align-items: flex-start !important;
}

.lp-sp-headinfo-left {
    min-width: 0;
}

.lp-sp-title {
    font-size: clamp(1.1rem, 3vw, 1.65rem);
    font-weight: 700;
    line-height: 1.3;
    word-break: break-word;
}

.lp-sp-headinfo-price {
    text-align: right;
    white-space: nowrap;
}

.lp-sp-price-label {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.15rem;
}

.lp-sp-price {
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    font-weight: 700;
    color: var(--lp-gold, #c9a84c);
    white-space: nowrap;
}

/* ── Mobile Responsive ───────────────────────────────────────── */
@media (max-width: 575px) {

    /* Stack title and price vertically */
    .lp-sp-headinfo-inner {
        flex-direction: column !important;
    }

    .lp-sp-headinfo-price {
        text-align: left;
        white-space: normal;
        width: 100%;
    }

    .lp-sp-price {
        font-size: 1.2rem;
        white-space: normal;
        word-break: break-word;
    }

    /* Slightly smaller icon on very small screens */
    .lp-sp-feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .lp-sp-feature-card {
        padding: 0.65rem;
        gap: 0.5rem;
    }

    .lp-sp-feature-value {
        font-size: 0.82rem;
    }

    .lp-sp-feature-label {
        font-size: 0.58rem;
    }
}

/* Very narrow screens: make labels wrap instead of overflow */
@media (max-width: 380px) {
    .lp-sp-feature-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ── Amenity Items ───────────────────────────────────────────── */
.lp-sp-amenity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    padding: 0.4rem 0;
    word-break: break-word;
}

.lp-sp-amenity svg {
    flex-shrink: 0;
    color: var(--lp-gold, #c9a84c);
}
/* ============================================================= */




