@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&display=swap');

/*
 Theme Name: Astra Child (Real Estate)
 Template: astra
*/

/* === LL Matrimony / Real Estate — Template-styled (green accent) === */
:root{
  --ll-accent:#6AB42E;
  --ll-primary:#27272F;
  --ll-muted:#626262;
  --ll-border:#E1E1E1;
  --ll-card:#FFFFFF;
}

.ll-wrap{max-width:1120px;margin:40px auto;padding:0 16px}

/* Hero */
.ll-hero{
  padding:28px 0 14px;
  border-bottom:1px solid var(--ll-border);
}
.ll-hero h1{
  margin:0 0 6px;
  font-size:2rem;
  color:var(--ll-primary);
  letter-spacing:.2px;
}
.ll-hero .ll-sub{
  margin:0;
  color:var(--ll-muted);
}

/* Filters / chips (if used) */
.ll-chip{
  display:inline-block;
  padding:8px 14px;
  border:1px solid var(--ll-border);
  border-radius:999px;
  text-decoration:none;
  color:var(--ll-primary);
  background:#fff;
  transition:border-color .2s;
}
.ll-chip:hover{
  border-color:var(--ll-accent);
}

/* Grid (cards list – works for profiles or properties) */
.ll-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(300px,1fr));
  gap:24px;
}
.ll-card{
  background:var(--ll-card);
  border:1px solid #e8e8e8;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 2px 10px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  animation:llFadeUp .6s ease both;
}
.ll-card-img img{
  width:100%;
  aspect-ratio:3/2;
  object-fit:cover;
  display:block;
}
.ll-card-body{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  gap:8px;
  flex:1;
}
.ll-card-title{
  margin:0;
  font-size:1.08rem;
  line-height:1.3;
  color:var(--ll-primary);
}
.ll-card-meta{
  margin:0;
  color:var(--ll-muted);
  font-size:.95rem;
}
.ll-read-more{
  margin-top:auto;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--ll-primary);
  text-decoration:none;
}
.ll-read-more .ll-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--ll-accent);
  display:inline-block;
}

/* Sections (detail blocks on single profile / single property) */
.ll-section{
  margin:28px 0;
  background:#fff;
  border:1px solid #eee;
  border-radius:0 30px 30px 0;
  padding:18px;
}
.ll-section h2{
  margin:0 0 12px;
  color:var(--ll-accent);
  font-size:1.2rem;
}
.ll-deflist{
  list-style:none;
  margin:0;
  padding:0;
  border-top:1px solid #f3f3f3;
}
.ll-deflist li{
  display:flex;
  gap:12px;
  padding:10px 0;
  border-bottom:1px dashed #eee;
}
.ll-deflist li strong{
  min-width:200px;
  color:var(--ll-primary);
}

/* Gallery */
.ll-gallery{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:12px;
  margin:18px 0;
}
.ll-gallery img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:cover;
  border-radius:12px;
}

/* CTA / buttons (owner contact, WhatsApp, etc.) */
.ll-owner-cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:6px;
}
.ll-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  text-decoration:none;
  border:1px solid var(--ll-border);
  background:#fff;
}
.ll-btn-call{
  border-color:var(--ll-accent);
}
.ll-btn-wa{
  border-color:#25d366;
}

/* Utilities */
.ll-divider{
  height:1px;
  background:var(--ll-border);
  margin:16px 0;
}

@keyframes llFadeUp{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:none}
}

@media (max-width:768px){
  .ll-deflist li{
    flex-direction:column;
  }
}

/* =============================================
   Improved CTA Buttons for Agent
   ============================================= */

.ll-owner-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

/* Base button */
.ll-owner-cta .ll-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}

/* Call button */
.ll-owner-cta .ll-btn-call {
  background: #6AB42E;        /* Accent Green */
  color: #fff;
  box-shadow: 0 2px 6px rgba(106, 180, 46, 0.25);
}
.ll-owner-cta .ll-btn-call:hover {
  background: #5ca527;
  box-shadow: 0 3px 8px rgba(106, 180, 46, 0.35);
}

/* WhatsApp button */
.ll-owner-cta .ll-btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 2px 6px rgba(37, 211, 102, 0.25);
}
.ll-owner-cta .ll-btn-wa:hover {
  background: #1ebe5b;
  box-shadow: 0 3px 8px rgba(37, 211, 102, 0.35);
}

/* Optional: button icon spacing */
.ll-owner-cta .ll-btn svg,
.ll-owner-cta .ll-btn img {
  width: 18px;
  height: 18px;
  display: inline-block;
}

/* ============================================================
   GLOBAL HEADING COLOR — MATCH SINGLE PROPERTY GREEN
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    color: var(--ll-accent) !important;
}

/* Make all page/post/archive titles green */
.entry-title,
.entry-title a,
.ast-archive-title,
.ast-archive-title a {
  color: var(--ll-accent) !important;
}

.ll-card__badges {
  display:flex;
  gap:6px;
  margin-bottom:4px;
}

.ll-badge {
  display:inline-block;
  font-size:0.7rem;
  padding:3px 7px;
  border-radius:6px;
  font-weight:600;
  line-height:1;
}

.ll-badge-type {
  background:#0078ff;
  color:#fff;
}

.ll-badge-status {
  background:#e5efff;
  color:#0f172a;
}

/* Used on search results header – adjust for better contrast on dark */
.ll-results-summary {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: #9ca3af;
}

/* ============================================================
   GLOBAL DARK THEME (MATCHES search-properties.php)
   Applies to all pages / PHP templates
   ============================================================ */

/* Main background */
body,
.site,
.ast-container,
.site-content,
#content,
.page,
.single,
.archive,
.blog {
  background-color:#0b0c10 !important;
}

/* Header + mobile header */
.site-header,
header#masthead,
.ast-primary-header-bar,
.main-header-bar,
.ast-mobile-header-wrap,
.ast-mobile-header-content {
  background-color:#0b0c10 !important;
}

/* Footer */
.site-footer,
.ast-footer-overlay,
footer {
  background-color:#0b0c10 !important;
}

/* Remove Astra white content boxes */
.ast-separate-container .ast-article-post,
.ast-separate-container .ast-article-single,
.ast-plain-container,
.ast-separate-container .ast-row,
.ast-page-builder-template .site-content > .ast-container {
  background-color:#0b0c10 !important;
  box-shadow:none !important;
}

/* Base body text colour on dark */
body {
  color:#e5e7eb;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",system-ui,sans-serif;
}

/* Make normal content text readable on dark */
.entry-content p,
.entry-content li,
.entry-content span {
  color:#e5e7eb;
}

/* Links on dark */
a {
  text-decoration:none;
  transition:color 150ms ease;
}

/* ============================================================
   LUXURY LAYOUT UTILITIES FOR ALL PHP TEMPLATES
   (You can reuse these in any custom template)
   ============================================================ */

/* Generic page wrapper (use in your PHP templates) */
.ll-page {
  max-width:1200px;
  margin:32px auto;
  padding:32px 20px;
  color:#e5e7eb;
}

/* Hero / page heading block */
.ll-hero-kicker {
  font-size:0.72rem;
  text-transform:uppercase;
  letter-spacing:0.16em;
  color:#9ca3af;
  margin-bottom:6px;
}

.ll-hero-title {
  font-size:clamp(1.8rem, 2.3vw, 2.4rem);
  text-transform:uppercase;
  letter-spacing:0.06em;
  color:#f9fafb; /* local hero titles can override global green if you want */
  margin:0 0 6px;
  font-weight:500;
}

.ll-hero-sub {
  font-size:0.86rem;
  color:#9ca3af;
  max-width:540px;
}

/* Buttons – optional luxury variants for new templates */
.ll-btn-primary {
  background:#f9fafb;
  color:#020617;
  border-radius:999px;
  border:1px solid #f9fafb;
  padding:9px 20px;
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-weight:500;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 150ms ease, border-color 150ms ease;
}
.ll-btn-primary:hover {
  background:#e5e7eb;
  box-shadow:0 10px 30px rgba(15,23,42,0.7);
  transform:translateY(-1px);
}

.ll-btn-secondary-soft {
  background:transparent;
  color:#e5e7eb;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.7);
  padding:9px 20px;
  font-size:0.78rem;
  text-transform:uppercase;
  letter-spacing:0.12em;
  font-weight:500;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background 150ms ease, color 150ms ease, box-shadow 150ms ease, transform 150ms ease, border-color 150ms ease;
}
.ll-btn-secondary-soft:hover {
  background:#020617;
  border-color:#f9fafb;
}

/* Cards you can reuse (if not using template-specific .ll-card) */
.ll-card-dark {
  background:#020617;
  border-radius:20px;
  border:1px solid rgba(15,23,42,0.9);
  box-shadow:0 18px 45px rgba(15,23,42,0.9);
  display:flex;
  flex-direction:column;
  position:relative;
  overflow:hidden;
  transition:transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.ll-card-dark:hover {
  transform:translateY(-3px);
  box-shadow:0 26px 60px rgba(15,23,42,1);
  border-color:#f9fafb;
}
.ll-card-dark-body {
  padding:14px 16px 16px;
}
.ll-card-dark-footer {
  padding:10px 16px 14px;
  border-top:1px solid rgba(31,41,55,0.9);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

/* Forms (search/enquiry fields) */
.ll-field-label {
  font-size:0.75rem;
  color:#9ca3af;
  display:block;
  margin-bottom:5px;
}

.ll-input,
.ll-select {
  width:100%;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.55);
  padding:8px 12px;
  font-size:0.82rem;
  background:#020617;
  color:#e5e7eb;
  outline:none;
  transition:border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.ll-input::placeholder {
  color:#6b7280;
}

.ll-input:focus,
.ll-select:focus {
  border-color:#f9fafb;
  background:#020617;
  box-shadow:0 0 0 1px rgba(249,250,251,0.35);
}

/* Generic chips/tags (filters, meta, etc.) */
.ll-chip-dark {
  display:inline-flex;
  align-items:center;
  padding:3px 9px;
  border-radius:999px;
  border:1px solid rgba(148,163,184,0.7);
  background:rgba(15,23,42,0.9);
  color:#e5e7eb;
  font-size:0.75rem;
}

/* Responsive grid helper for list pages */
.ll-grid-2 {
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:22px;
}

@media (max-width:1024px) {
  .ll-grid-2 {
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:768px) {
  .ll-page {
    padding:20px 14px 24px;
    margin:20px auto;
  }
  .ll-grid-2 {
    grid-template-columns:1fr;
  }
}

/* ---- Single Property Custom Styles ---- */
/* ---- GLOBAL -------------------------------------------------- */
.single-property .ll-single-wrap {
  max-width: 1280px;
  margin: 32px auto 80px;
  padding: 0 20px;
  color: #e5e7eb;
  font-family: Inter, sans-serif;
}

/* ---- BACK LINK ------------------------------------------------ */
.single-property .ll-back-link {
  display:inline-block;
  margin-bottom:16px;
  color:#9ca3af;
  font-size:0.83rem;
  text-decoration:none;
}
.single-property .ll-back-link:hover {color:#fff;}

/* ---- HERO — LUXE PANEL ------------------------------------- */
.single-property .ll-hero {
  position:relative;
  display:flex;
  align-items:flex-end;
  min-height:360px;
  border-radius:32px;
  background:#111;
  background-size:cover;
  background-position:center calc(50% + var(--hero-shift, 0px));
  background-attachment:fixed;
  overflow:hidden;
  margin-bottom:38px;
  box-shadow:0 30px 70px rgba(0,0,0,0.55);
}
.single-property .ll-hero::after {
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 25% 20%, rgba(99,102,241,0.25), transparent 55%);
  pointer-events:none;
}
.single-property .ll-hero-overlay {
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(13,16,24,0.1) 0%, rgba(6,8,12,0.85) 78%);
}
.single-property .ll-hero-content {
  position:relative;
  z-index:2;
  width:100%;
  padding:28px 32px 36px;
  display:flex;
  flex-direction:column;
  gap:22px;
}
.single-property .ll-hero-panel {
  max-width:520px;
  background:rgba(9,14,24,0.65);
  border-radius:22px;
  padding:20px 26px 22px;
  border:1px solid rgba(255,255,255,0.08);
  box-shadow:0 30px 60px rgba(0,0,0,0.5);
  backdrop-filter:blur(12px);
}
.single-property .ll-hero-kicker {
  margin:0 0 6px;
  font-size:0.75rem;
  text-transform:uppercase;
  letter-spacing:0.4em;
  color:#a5b4fc;
  font-family:'Playfair Display', serif;
}
.single-property .ll-hero-title {
  font-size:clamp(2rem,3vw,2.6rem);
  line-height:1.2;
  font-weight:600;
  margin:0 0 10px;
  color:var(--ll-accent) !important;
  text-transform:uppercase;
  letter-spacing:0.08em;
}
.single-property .ll-hero-location {
  font-size:1rem;
  color:#e2e8f0;
  margin:0;
}
.single-property .ll-hero-highlights {
  display:flex;
  gap:12px;
  margin:16px 0 0;
  padding:0;
  list-style:none;
}
.single-property .ll-hero-highlights li {
  text-transform:uppercase;
  letter-spacing:0.18em;
  font-size:0.62rem;
  color:#0f172a;
  background:#f8fafc;
  border-radius:999px;
  padding:5px 16px;
}
.single-property .ll-hero-utility {
  display:flex;
  gap:10px;
  margin-top:14px;
}
.single-property .ll-hero-utility-btn {
  border:1px solid rgba(255,255,255,0.4);
  background:rgba(255,255,255,0.12);
  color:#f8fafc;
  text-transform:uppercase;
  letter-spacing:0.2em;
  font-size:0.62rem;
  border-radius:999px;
  padding:8px 18px;
  cursor:pointer;
  transition:background 150ms ease, color 150ms ease;
}
.single-property .ll-hero-utility-btn--ghost {
  background:transparent;
}
.single-property .ll-hero-utility-btn:hover {
  background:#f8fafc;
  color:#020617;
}
.single-property .ll-hero-utility-btn.is-active {
  background:#f8fafc;
  color:#020617;
}
.single-property .ll-hero-facts {
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.single-property .ll-hero-fact {
  display:flex;
  gap:10px;
  align-items:center;
  padding:12px 16px;
  border-radius:18px;
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(8,13,22,0.7);
  box-shadow:0 12px 35px rgba(0,0,0,0.35);
  backdrop-filter:blur(10px);
  opacity:0;
  transform:translateY(12px);
  animation:llHeroFactIn .5s ease forwards;
  animation-delay:calc(var(--fact-index, 0) * 0.08s);
}
.single-property .ll-hero-fact:hover {
  border-color:rgba(255,255,255,0.25);
  box-shadow:0 18px 40px rgba(0,0,0,0.45);
  transform:translateY(-3px);
}
.single-property .ll-hero-fact-icon {
  width:42px;
  height:42px;
  border-radius:14px;
  background:rgba(255,255,255,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
}
.single-property .ll-hero-fact-icon::before {
  content:'';
  width:22px;
  height:22px;
  display:block;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
}
/* hero fact icon using CSS variables for theme colors */
.single-property .ll-hero-fact-icon--price::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f8fafc" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M8 6h8M8 10h6a4 4 0 0 1 0 8H9l7-8"/></svg>');
}
.single-property .ll-hero-fact-icon--tag::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f8fafc" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><path d="M4 9V4h5l11 11-5 5L4 9Z"/><circle cx="9" cy="9" r="1.2"/></svg>');
}
.single-property .ll-hero-fact-icon--plan::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f8fafc" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><rect x="5" y="5" width="14" height="14" rx="2"/><path d="M5 9h14M9 5v14"/></svg>');
}
.single-property .ll-hero-fact-icon--status::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23f8fafc" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="6"/><path d="M12 8v4l2 2"/></svg>');
}
.single-property .ll-hero-fact-label {
  margin:0 0 2px;
  font-size:0.62rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:#9ca3af;
}
.single-property .ll-hero-fact-value {
  margin:0;
  font-size:1rem;
  font-weight:600;
  color:#f8fafc;
}

@keyframes llHeroFactIn {
  from {opacity:0; transform:translateY(12px);}
  to {opacity:1; transform:translateY(0);}
}
@media (max-width:1024px){
  .single-property .ll-hero{background-attachment:scroll;}
}
@media (max-width:600px){
  .single-property .ll-hero{
    min-height:270px;
    border-radius:22px;
  }
  .single-property .ll-hero-content{
    padding:22px 20px 26px;
  }
  .single-property .ll-hero-facts{
    overflow-x:auto;
    padding-bottom:6px;
    justify-content:center;
  }
  .single-property .ll-hero-fact{
    min-width:180px;
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
}

@media (prefers-reduced-motion: reduce){
  .single-property .ll-hero{background-attachment:scroll;}
  .single-property .ll-hero-fact{
    animation:none;
    transform:none;
    opacity:1;
  }
  .single-property .ll-gallery-main-img{
    animation:none;
  }
}

@keyframes llIconPulse {
  0% {transform:translateY(-50%) scale(1); box-shadow:0 0 0 rgba(255,255,255,0);}
  50% {transform:translateY(-50%) scale(1.08); box-shadow:0 0 12px rgba(165,180,252,0.4);}
  100% {transform:translateY(-50%) scale(1); box-shadow:0 0 0 rgba(255,255,255,0);}
}

@keyframes llGalleryDrift {
  0% {transform:scale(1) translate3d(0,0,0);}
  100% {transform:scale(1.05) translate3d(-2%, -3%, 0);}
}


/* ---- SECTIONS ------------------------------------------------- */
.single-property .ll-section {
  background:#020617;
  padding:32px;
  border-radius:28px;
  border:1px solid rgba(15,23,42,0.9);
  box-shadow:0 18px 45px rgba(15,23,42,0.75);
  margin-bottom:40px;
  position:relative;
  overflow:hidden;
}
.single-property .ll-section::before {content:none;}
.single-property .ll-section-title {
  text-transform:uppercase;
  font-size:0.95rem;
  letter-spacing:0.3em;
  color:var(--ll-accent);
  margin-bottom:22px;
  font-family:'Playfair Display', serif;
}

/* ---- DETAILS LIST -------------------------------------------- */
.single-property .ll-deflist {
  list-style:none;
  margin:0;
  padding:0;
  border-top:1px solid rgba(255,255,255,0.06);
}
.single-property .ll-deflist li {
  display:grid;
  grid-template-columns:minmax(180px, 32%) 1fr;
  gap:14px;
  padding:14px 0 14px 48px;
  border-bottom:1px solid rgba(255,255,255,0.06);
  align-items:center;
  position:relative;
}
.single-property .ll-deflist li::before {
  content:'';
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.12);
  position:absolute;
  left:0;
  top:50%;
  transform:translateY(-50%);
  background-repeat:no-repeat;
  background-position:center;
  background-size:55%;
}
.single-property .ll-deflist li:hover::before {
  animation:llIconPulse 1.4s ease-in-out infinite;
}
.single-property .ll-deflist li strong {
  text-transform:uppercase;
  color:var(--ll-accent);
  font-size:0.76rem;
  letter-spacing:0.3em;
}
.single-property .ll-deflist li span {
  color:#f8fafc;
  font-size:0.95rem;
  text-align:left;
}
.single-property .ll-about-row span {
  white-space:pre-wrap;
}
.single-property .ll-detail-row[data-field="city"]::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23cbd5f5" stroke-width="1.4" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="10" r="3"/><path d="M5.5 21h13l1.5-8a8 8 0 1 0-16 0z"/></svg>');
}
.single-property .ll-detail-row[data-field="area"]::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23cbd5f5" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M4 9h16M4 15h10M9 3v18"/></svg>');
}
.single-property .ll-detail-row[data-field="status"]::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23cbd5f5" stroke-width="1.6" stroke-linecap="round" stroke-linejoin="round"><path d="M20 6L9 17l-5-5"/></svg>');
}
.single-property .ll-detail-row[data-field="price"]::before,
.single-property .ll-detail-row[data-field="price_label"]::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23cbd5f5" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M8 6h8M8 10h6a4 4 0 0 1 0 8H9l7-8"/></svg>');
}
.single-property .ll-detail-row[data-field="listing_type"]::before,
.single-property .ll-detail-row[data-field="property_type"]::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23cbd5f5" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><path d="M3 9l9-6 9 6v9a2 2 0 0 1-2 2h-4v-6H9v6H5a2 2 0 0 1-2-2z"/></svg>');
}
.single-property .ll-detail-row[data-field="land_area"]::before,
.single-property .ll-detail-row[data-field="builtup_area"]::before {
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23cbd5f5" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="5" y="5" width="14" height="14" rx="2"/><path d="M5 9h14M9 5v14"/></svg>');
}

/* ---- GALLERY -------------------------------------------------- */
.single-property .ll-gallery {
  display:grid;
  grid-template-columns:3fr 1.1fr;
  gap:20px;
  max-width:1000px;
  margin:0 auto;
}
.single-property .ll-agent-video {
  margin-bottom:20px;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(15,23,42,0.9);
}
.single-property .ll-agent-video iframe {
  width:100%;
  height:320px;
}
.single-property .ll-gallery-main {
  background:#020617;
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 18px 45px rgba(15,23,42,0.75);
  position:relative;
}
.single-property .ll-gallery-nav {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(255,255,255,0.3);
  background:rgba(2,6,23,0.6);
  color:#f8fafc;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background 150ms ease, border-color 150ms ease;
}
.single-property .ll-gallery-nav--prev {left:16px;}
.single-property .ll-gallery-nav--next {right:16px;}
.single-property .ll-gallery-nav::before {
  content:'';
  border:solid currentColor;
  border-width:0 2px 2px 0;
  padding:6px;
  display:inline-block;
}
.single-property .ll-gallery-nav--prev::before {
  transform:rotate(135deg);
}
.single-property .ll-gallery-nav--next::before {
  transform:rotate(-45deg);
}
.single-property .ll-gallery-nav:hover {
  background:#f8fafc;
  color:#020617;
  border-color:#f8fafc;
}
.single-property .ll-gallery-main-img {
  width:100%;
  height:320px;
  object-fit:cover;
  transition:opacity .25s ease, transform .25s ease;
  animation:llGalleryDrift 18s ease-in-out infinite alternate;
}
.single-property .ll-gallery-main::after {
  content:'';
  position:absolute;
  inset:0;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:22px;
  pointer-events:none;
}
.single-property .ll-gallery-main-img.is-fading {
  opacity:0; transform:scale(1.015);
}

.single-property .ll-gallery-thumbs {
  display:flex;
  flex-direction:column;
  gap:10px;
  overflow-y:auto;
  padding-right:4px;
  max-height:380px;
}
.single-property .ll-thumbnail::-webkit-scrollbar {width:6px;}

.single-property .ll-thumb {
  border:none; padding:0;
  cursor:pointer;
  border-radius:16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,0.12);
  background:transparent;
  transition:all .2s ease;
}
.single-property .ll-thumb img {
  width:100%; height:80px; object-fit:cover;
  transition:transform .35s ease, filter .35s ease;
}
.single-property .ll-thumb:hover img {
  transform:scale(1.08);
  filter:brightness(1.08);
}
.single-property .ll-thumb:hover {
  transform:translateY(-2px);
  box-shadow:0 12px 30px rgba(0,0,0,0.55);
}
.single-property .ll-thumb.is-active {
  border-color:#fff;
  box-shadow:0 18px 40px rgba(255,255,255,0.2);
}

.single-property .ll-lightbox {
  position:fixed;
  inset:0;
  background:rgba(2,6,23,0.92);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  pointer-events:none;
  transition:opacity 200ms ease;
  z-index:9999;
  padding:40px 20px;
}
.single-property .ll-lightbox.is-visible {
  opacity:1;
  pointer-events:auto;
}
.single-property .ll-lightbox__img {
  max-width:100%;
  max-height:100%;
  border-radius:24px;
  box-shadow:0 25px 50px rgba(0,0,0,0.7);
  border:1px solid rgba(255,255,255,0.08);
}
.single-property .ll-lightbox__content {
  text-align:center;
}
.single-property .ll-lightbox__caption {
  margin-top:16px;
  text-align:center;
  color:#cbd5f5;
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-size:0.75rem;
}
.single-property .ll-lightbox__arrow {
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:48px;
  height:48px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.3);
  background:rgba(2,6,23,0.6);
  color:#f8fafc;
  cursor:pointer;
}
.single-property .ll-lightbox__arrow::before {
  content:'';
  border:solid currentColor;
  border-width:0 2px 2px 0;
  padding:7px;
  display:inline-block;
}
.single-property .ll-lightbox__arrow--prev {left:30px;}
.single-property .ll-lightbox__arrow--prev::before {transform:rotate(135deg);}
.single-property .ll-lightbox__arrow--next {right:30px;}
.single-property .ll-lightbox__arrow--next::before {transform:rotate(-45deg);}
.single-property .ll-lightbox__close {
  position:absolute;
  top:20px;
  right:26px;
  background:rgba(15,23,42,0.8);
  color:#f8fafc;
  border:none;
  border-radius:999px;
  width:42px;
  height:42px;
  font-size:1.4rem;
  cursor:pointer;
}

/* ---- AGENT CTA ------------------------------------------------ */
.single-property .ll-agent-card {
  background:transparent;
  border-radius:0;
  padding:0;
  border:none;
  display:flex;
  flex-direction:column;
  gap:18px;
}
.single-property .ll-agent-profile {
  display:flex;
  gap:18px;
  align-items:flex-start;
}
.single-property .ll-agent-info {
  flex:1;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.single-property .ll-agent-avatar {
  width:64px;
  height:64px;
  border-radius:18px;
  background:linear-gradient(135deg,#1d4ed8,#a855f7);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
  font-weight:600;
  color:#fff;
  box-shadow:0 18px 35px rgba(0,0,0,0.4);
}
.single-property .ll-agent-role {
  margin:0;
  font-size:0.75rem;
  letter-spacing:0.3em;
  text-transform:uppercase;
  color:#94a3af;
}
.single-property .ll-agent-name {
  margin:4px 0 6px;
  font-size:1.2rem;
  color:#f8fafc;
}
.single-property .ll-agent-caption {
  margin:0;
  font-size:0.95rem;
  color:#cbd5f5;
}
.single-property .ll-agent-trust {
  margin-top:8px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  font-size:0.8rem;
  color:#cbd5f5;
}
.single-property .ll-agent-badge {
  text-transform:uppercase;
  letter-spacing:0.2em;
  font-size:0.7rem;
  padding:6px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,0.12);
}
.single-property .ll-agent-updated {
  letter-spacing:0.12em;
}
.single-property .ll-agent-brochure {
  margin-left:auto;
  color:#020617;
  background:#f8fafc;
  text-decoration:none;
  padding:8px 18px;
  border-radius:999px;
  letter-spacing:0.14em;
  font-size:0.68rem;
  text-transform:uppercase;
}
.single-property .ll-agent-brochure:hover {
  background:#e5e7eb;
}
.single-property .ll-agent-actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.single-property .ll-agent-credentials {
  margin-top:18px;
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}
.single-property .ll-agent-credential {
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:12px 16px;
  min-width:150px;
}
.single-property .ll-agent-credential-label {
  margin:0;
  font-size:0.68rem;
  letter-spacing:0.2em;
  color:#9ca3af;
  text-transform:uppercase;
}
.single-property .ll-agent-credential-value {
  margin:4px 0 0;
  font-size:1rem;
  color:#f8fafc;
  font-weight:600;
}
.single-property .ll-agent-signature {
  max-height:48px;
}
.single-property .ll-agent-testimonials {
  margin-top:20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.single-property .ll-agent-testimonial {
  flex:1 1 220px;
  border:1px solid rgba(255,255,255,0.08);
  border-radius:18px;
  padding:16px;
  background:rgba(2,6,23,0.6);
}
.single-property .ll-agent-testimonial-text {
  margin:0 0 8px;
  font-size:0.9rem;
  color:#f8fafc;
}
.single-property .ll-agent-testimonial-name {
  margin:0;
  font-size:0.75rem;
  letter-spacing:0.24em;
  text-transform:uppercase;
  color:#9ca3af;
}
.single-property .ll-agent-note--cta {
  margin-top:20px;
  display:flex;
  gap:10px;
  align-items:center;
}
.single-property .ll-agent-callchip {
  border:1px solid rgba(255,255,255,0.4);
  background:transparent;
  color:#f8fafc;
  padding:8px 18px;
  border-radius:999px;
  text-transform:uppercase;
  letter-spacing:0.18em;
  cursor:pointer;
}
.single-property .ll-agent-chip {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 18px;
  border-radius:999px;
  border:1px solid rgba(248,250,252,0.4);
  color:#f8fafc;
  text-decoration:none;
  letter-spacing:0.2em;
  font-size:0.72rem;
  text-transform:uppercase;
}
.single-property .ll-agent-chip--ghost {
  background:transparent;
}
.single-property .ll-agent-chip:not(.ll-agent-chip--ghost) {
  background:#f8fafc;
  color:#020617;
  border-color:#f8fafc;
}
.single-property .ll-agent-note {
  font-size:0.85rem;
  color:#9ca3af;
  margin-top:18px;
}

/* ---- STICKY CTA ----------------------------------------------- */
.single-property .ll-sticky-cta {
  position:fixed; left:0; right:0; bottom:0;
  display:flex;
  gap:10px;
  padding:10px 15px;
  background:linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.75));
  z-index:999;
}
.single-property .ll-sticky-btn {
  flex:1;
  padding:10px;
  border-radius:12px;
  text-align:center;
  font-size:0.95rem;
  font-weight:500;
  text-decoration:none;
  color:#fff;
}
.single-property .ll-sticky-wa {
  background:#1dbf73;
}
.single-property .ll-sticky-call {
  background:#2563eb;
}
@media(min-width:768px){
  .single-property .ll-sticky-cta{display:none;}
}

/* ---- RESPONSIVE ----------------------------------------------- */
@media(max-width:900px){
  .single-property .ll-gallery {
    grid-template-columns:1fr;
  }
  .single-property .ll-gallery-main-img{height:260px;}
  .single-property .ll-gallery-thumbs {
    flex-direction:row;
    max-height:none;
    overflow-x:auto;
    overflow-y:hidden;
  }
  .single-property .ll-thumb {min-width:110px;}
}

@media(max-width:600px){
  .single-property .ll-single-wrap {
    padding-bottom:80px;
  }

  /* Keep label + value on one line in Property Details */
  .single-property .ll-deflist li {
    grid-template-columns:minmax(120px, 40%) 1fr;
  }
  .single-property .ll-deflist li strong {
    letter-spacing:0.24em;
  }
  .single-property .ll-agent-profile {
    flex-direction:column;
    align-items:flex-start;
  }
  .single-property .ll-agent-avatar {
    width:72px;
    height:72px;
  }
  .single-property .ll-agent-trust {
    flex-direction:column;
    align-items:flex-start;
  }
  .single-property .ll-agent-brochure {
    margin-left:0;
  }
  .single-property .ll-agent-credentials,
  .single-property .ll-agent-testimonials,
  .single-property .ll-agent-note--cta {
    flex-direction:column;
    align-items:flex-start;
  }
}
