/* ═══════════════════════════════════════════════════════════════
   WhiteNest Projects — Global Stylesheet
   ═══════════════════════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary:      #1a1a1a;
  --primary-dark: #0d0d0d;
  --accent:       #c5a059;
  --accent-hover: #a9823f;
  --text:         #4a4a4a;
  --text-dark:    #161616;
  --light-bg:     #faf8f4;
  --white:        #ffffff;
  --border:       #e8e2d5;
  --error:        #ef4444;
  --success:      #10b981;
  --shadow-sm:    0 2px 8px rgba(0,0,0,.06);
  --shadow-md:    0 4px 24px rgba(0,0,0,.09);
  --shadow-lg:    0 12px 40px rgba(0,0,0,.14);
  --radius:       12px;
  --radius-sm:    8px;
  --transition:   .22s ease;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

/* ── CONTAINER ────────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SECTION HELPERS ──────────────────────────────────────────── */
.section         { padding: 80px 0; }
.section--bg     { background: var(--light-bg); }

.section-label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
}
.section-subtitle {
  color: #888;
  margin-top: 10px;
  font-size: 15px;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--transition);
  border: 2px solid transparent;
}
.btn--sm { padding: 7px 16px; font-size: 13px; }
.btn-primary  { background: var(--accent);  color: #fff; }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(197,160,89,.35); }
.btn-white    { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--accent); color: #fff; }
.btn-outline  { border-color: var(--primary); color: var(--primary); background: transparent; }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-outline-white { border-color: rgba(255,255,255,.5); color: #fff; background: transparent; }
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.1); }

.btn-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 2px solid var(--primary);
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-link:hover { background: var(--primary); color: #fff; }

.btn-link-sm {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--transition);
  margin-top: 12px;
}
.btn-link-sm:hover { gap: 8px; }

/* ── TOP BAR ──────────────────────────────────────────────────── */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,.85);
  font-size: 12.5px;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left  { display: flex; align-items: center; gap: 20px; }
.topbar-left i { color: var(--accent); margin-right: 5px; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-right a {
  width: 26px; height: 26px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; color: rgba(255,255,255,.8);
  transition: all var(--transition);
}
.topbar-right a:hover { border-color: var(--accent); color: var(--accent); }

/* ── NAVBAR ───────────────────────────────────────────────────── */
.navbar {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}

.logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.logo-icon {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}
.logo-text {
  font-size: 20px; font-weight: 800;
  color: var(--primary); letter-spacing: -.3px;
}
.logo-text span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  font-size: 14px; font-weight: 600; color: #444;
  padding: 6px 12px; border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--primary); background: rgba(26,26,26,.06); }
.nav-links a.active {
  color: var(--primary);
  font-weight: 700;
}
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -2px; left: 12px; right: 12px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.nav-actions { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── FLASH MESSAGES ───────────────────────────────────────────── */
.flash-container {
  position: fixed; top: 80px; right: 20px;
  z-index: 2000; display: flex; flex-direction: column; gap: 8px;
  max-width: 420px; width: calc(100% - 40px);
}
.flash {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: slideIn .3s ease;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.flash--success { background: var(--success); color: #fff; }
.flash--error   { background: var(--error);   color: #fff; }
.flash i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.flash-close {
  margin-left: auto; background: none; border: none; color: rgba(255,255,255,.8);
  font-size: 13px; padding: 0 0 0 8px; cursor: pointer;
}
.flash-close:hover { color: #fff; }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 55%, #0d0d0d 100%);
  min-height: 640px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600596542815-ffad4c1539a9?w=1600&q=70') center/cover no-repeat;
  opacity: .12;
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 80px 24px;
  max-width: 1280px; margin: 0 auto; width: 100%;
}
.hero-eyebrow {
  font-size: 13px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.hero-eyebrow i { margin-right: 6px; }
.hero h1 {
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800; color: #fff; line-height: 1.12;
  max-width: 600px; margin-bottom: 18px;
}
.hero h1 span { color: var(--accent); }
.hero-sub {
  color: rgba(255,255,255,.72);
  font-size: 16px; max-width: 500px;
  margin-bottom: 40px; line-height: 1.75;
}

/* Search Box */
.search-box {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
  padding: 24px 24px 20px;
  max-width: 860px;
}
.search-tabs {
  display: flex; gap: 0;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
.search-tab {
  padding: 9px 22px; font-size: 14px; font-weight: 700;
  color: #888; background: none; border: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all var(--transition);
}
.search-tab.active,
.search-tab:hover { color: var(--primary); }
.search-tab.active { border-bottom-color: var(--accent); }
.search-row { display: flex; gap: 12px; align-items: flex-end; flex-wrap: wrap; }
.search-field { flex: 1; min-width: 150px; }
.search-field label {
  display: block; font-size: 11.5px; font-weight: 700; color: #444;
  text-transform: uppercase; letter-spacing: .6px; margin-bottom: 7px;
}
.search-field select, .search-field input {
  width: 100%; padding: 10px 13px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14px; color: #333; background: #fff; font-family: inherit;
  transition: border var(--transition);
}
.search-field select:focus, .search-field input:focus {
  outline: none; border-color: var(--accent);
}
.search-btn {
  padding: 10px 26px; background: var(--accent); color: #fff;
  border: none; border-radius: var(--radius-sm);
  font-size: 15px; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: background var(--transition); white-space: nowrap;
}
.search-btn:hover { background: var(--accent-hover); }

/* ── STATS BAND ───────────────────────────────────────────────── */
.stats-band { background: var(--primary); padding: 32px 0; }
.stats-inner {
  display: flex; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  text-align: center; color: #fff;
  padding: 12px 40px;
  border-right: 1px solid rgba(255,255,255,.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-size: 36px; font-weight: 800; color: var(--accent); line-height: 1;
}
.stat-number sup, .stat-number span { font-size: 22px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,.65); margin-top: 6px; }

/* ── BRANDS ───────────────────────────────────────────────────── */
.brands-section { background: var(--light-bg); padding: 36px 0; }
.brands-label {
  text-align: center; font-size: 11.5px; font-weight: 700;
  color: #aaa; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 24px;
}
.brands-row {
  display: flex; justify-content: center; align-items: center;
  gap: 48px; flex-wrap: wrap;
}
.brand-logo {
  font-size: 17px; font-weight: 800;
  color: #bbb; letter-spacing: -1px;
  transition: color var(--transition); cursor: default;
}
.brand-logo:hover { color: var(--primary); }

/* ── PROPERTY TYPES ───────────────────────────────────────────── */
.types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 16px;
}
.type-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px 20px; text-align: center;
  transition: all var(--transition); display: block;
}
.type-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(197,160,89,.15);
  transform: translateY(-3px);
}
.type-img {
  width: 100%; height: 130px;
  border-radius: 10px;
  margin: 0 auto 14px;
  overflow: hidden;
  background: #f6ead0;
}
.type-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.type-card:hover .type-img img { transform: scale(1.08); }
.type-name  { font-size: 14px; font-weight: 700; color: #222; }
.type-count { font-size: 12px; color: #aaa; margin-top: 3px; }

/* ── PROPERTY CARDS ───────────────────────────────────────────── */
.props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.props-grid--large {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.prop-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.prop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.prop-img-wrap {
  position: relative;
  height: 210px;
  overflow: hidden;
}
.prop-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.prop-card:hover .prop-img-wrap img { transform: scale(1.06); }

.badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 11px; border-radius: 5px;
  font-size: 11.5px; font-weight: 700;
}
.badge--sale { background: var(--accent); color: #fff; }
.badge--rent { background: #f97316; color: #fff; }
.badge--sold { background: #ef4444; color: #fff; }

.prop-overlay {
  position: absolute; inset: 0;
  background: rgba(26,26,26,.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.prop-card:hover .prop-overlay { opacity: 1; }

.prop-body { padding: 18px 20px; }
.prop-price { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 5px; }
.prop-name  { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.prop-loc   {
  font-size: 13px; color: #888;
  display: flex; align-items: center; gap: 5px; margin-bottom: 14px;
}
.prop-loc i { color: var(--accent); }
.prop-meta {
  display: flex; gap: 14px;
  padding-top: 14px; border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.prop-meta span {
  font-size: 12.5px; color: #666;
  display: flex; align-items: center; gap: 5px;
}
.prop-meta i { color: var(--accent); }
.prop-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; color: var(--primary);
  margin-top: 14px; transition: gap var(--transition);
}
.prop-cta:hover { gap: 9px; }

/* ── SERVICES ─────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.services-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(197,160,89,.13);
  transform: translateY(-3px);
}
.service-card--large {
  display: flex; gap: 22px; align-items: flex-start;
}
.service-icon {
  width: 54px; height: 54px; flex-shrink: 0;
  background: linear-gradient(135deg, #f6ead0, #f0e2c0);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 21px; color: var(--primary);
  transition: all var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); color: #fff; }
.service-title { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.service-desc  { font-size: 13.5px; color: #777; line-height: 1.75; }
.service-bullets {
  margin-top: 14px; list-style: none; display: flex; flex-direction: column; gap: 7px;
}
.service-bullets li {
  font-size: 13.5px; color: #666;
  display: flex; align-items: center; gap: 8px;
}
.service-bullets i { color: var(--accent); font-size: 11px; flex-shrink: 0; }

/* ── CTA BAND ─────────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #1a1a1a, #0d0d0d);
  padding: 60px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.cta-inner h2 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #fff; }
.cta-inner p  { color: rgba(255,255,255,.7); margin-top: 8px; font-size: 15px; }
.cta-btns { display: flex; gap: 12px; flex-shrink: 0; flex-wrap: wrap; }

/* ── PAGE HERO (inner pages) ──────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
  padding: 60px 0 50px;
  text-align: center;
}
.page-hero .section-label { margin-bottom: 10px; }
.page-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800; color: #fff; line-height: 1.15;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  justify-content: center; margin-top: 16px;
  font-size: 13.5px; color: rgba(255,255,255,.55);
}
.breadcrumb a { color: rgba(255,255,255,.55); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { font-size: 10px; }
.breadcrumb span { color: var(--accent); }

/* ── FILTER BAR ───────────────────────────────────────────────── */
.filter-bar { background: #fff; border-bottom: 1px solid var(--border); padding: 16px 0; }
.filter-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.filter-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-pill {
  padding: 7px 18px; border-radius: 20px; font-size: 13.5px; font-weight: 700;
  background: var(--light-bg); color: #555;
  border: 1.5px solid transparent; transition: all var(--transition);
}
.filter-pill.active,
.filter-pill:hover { background: var(--primary); color: #fff; }
.results-count { font-size: 14px; color: #888; }
.results-count strong { color: var(--primary); }

.empty-state {
  text-align: center; padding: 80px 24px; color: #aaa;
}
.empty-state i { font-size: 56px; margin-bottom: 16px; display: block; }
.empty-state h3 { font-size: 20px; color: #666; margin-bottom: 8px; }
.empty-state a { color: var(--accent); font-weight: 600; }

/* ── BLOG ─────────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-grid--full {
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  display: block; color: inherit;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img { height: 200px; overflow: hidden; position: relative; }
.blog-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .45s ease;
}
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--primary); color: #fff;
  padding: 3px 10px; border-radius: 4px;
  font-size: 11.5px; font-weight: 700;
}
.blog-body { padding: 20px; }
.blog-meta { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.blog-date  { font-size: 12.5px; color: #aaa; display: flex; align-items: center; gap: 5px; }
.blog-read  { font-size: 12.5px; color: #aaa; display: flex; align-items: center; gap: 5px; }
.blog-cat   { font-size: 12px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
.blog-title {
  font-size: 16px; font-weight: 700; color: var(--text-dark);
  line-height: 1.45; margin-bottom: 10px;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--accent); }
.blog-excerpt { font-size: 13.5px; color: #888; line-height: 1.7; }

/* Featured blog post */
.blog-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.blog-featured-img {
  border-radius: var(--radius); overflow: hidden;
  height: 380px; position: relative;
}
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  color: var(--text-dark); line-height: 1.3; margin: 12px 0 14px;
}
.blog-featured-excerpt { font-size: 15px; color: #777; line-height: 1.75; margin-bottom: 24px; }

/* Pagination */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.page-btn {
  width: 38px; height: 38px;
  border-radius: 8px; border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: #555;
  transition: all var(--transition);
}
.page-btn:hover, .page-btn.active {
  background: var(--primary); color: #fff; border-color: var(--primary);
}
.page-btn--next { border-color: var(--accent); color: var(--accent); }

/* ── NEWSLETTER ───────────────────────────────────────────────── */
.newsletter-section { background: var(--primary); padding: 48px 0; }
.newsletter-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.newsletter-text h3 { font-size: 22px; font-weight: 800; color: #fff; }
.newsletter-text p  { font-size: 14px; color: rgba(255,255,255,.65); margin-top: 4px; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  padding: 13px 18px; border: none; border-radius: 8px 0 0 8px;
  font-size: 14px; width: 300px; font-family: inherit;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  padding: 13px 22px; background: var(--accent); color: #fff;
  border: none; border-radius: 0 8px 8px 0;
  font-size: 14px; font-weight: 700; font-family: inherit;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--accent-hover); }

/* ── ABOUT PAGE ───────────────────────────────────────────────── */
.about-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-intro-img {
  position: relative; border-radius: var(--radius); overflow: visible;
}
.about-intro-img img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: #fff;
  border-radius: 12px; padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.about-badge-float .stat-number { font-size: 32px; color: var(--accent); font-weight: 800; }
.about-badge-float span:last-child { font-size: 12px; color: rgba(255,255,255,.7); display: block; margin-top: 4px; }
.about-stats-row { display: flex; gap: 28px; margin-top: 32px; flex-wrap: wrap; }
.about-stat-num { font-size: 32px; font-weight: 800; color: var(--primary); }
.about-stat-num sup { font-size: 18px; }
.about-stat-lbl { font-size: 13px; color: #888; margin-top: 2px; }

.mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.mv-card {
  background: #fff; border-radius: var(--radius); padding: 32px;
  border-top: 4px solid var(--accent);
}
.mv-icon {
  width: 52px; height: 52px; background: #f6ead0;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--primary); margin-bottom: 18px;
}
.mv-card h3 { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; }
.mv-card p  { font-size: 14px; color: #777; line-height: 1.8; }
.values-list { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.values-list li { font-size: 14px; color: #666; display: flex; align-items: center; gap: 8px; }
.values-list i  { color: var(--accent); font-size: 11px; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); transition: transform var(--transition); }
.team-card:hover { transform: translateY(-4px); }
.team-img { height: 240px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-body { padding: 20px; }
.team-name  { font-size: 16px; font-weight: 800; color: var(--text-dark); }
.team-role  { font-size: 12.5px; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: .5px; margin: 4px 0 10px; }
.team-bio   { font-size: 13px; color: #777; line-height: 1.7; }
.team-social { display: flex; gap: 8px; margin-top: 14px; }
.team-social a {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--light-bg); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; transition: all var(--transition);
}
.team-social a:hover { background: var(--accent); color: #fff; }

.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-md);
}
.testi-stars { color: #f59e0b; margin-bottom: 14px; }
.testi-text  { font-size: 14px; color: #666; line-height: 1.8; font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.testi-name  { font-size: 14px; font-weight: 700; color: #222; }
.testi-role  { font-size: 12px; color: #aaa; }

/* ── SERVICES PAGE ────────────────────────────────────────────── */
.services-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.services-intro-img { border-radius: var(--radius); overflow: hidden; height: 380px; }
.services-intro-img img { width: 100%; height: 100%; object-fit: cover; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 28px;
  position: relative;
}
.process-step { text-align: center; padding: 24px 16px; }
.step-number {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  color: var(--accent); text-transform: uppercase; margin-bottom: 12px;
}
.step-icon {
  width: 60px; height: 60px; background: var(--primary);
  border-radius: 50%; margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
}
.step-title { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.step-desc  { font-size: 13.5px; color: #888; line-height: 1.75; }

/* ── CONTACT PAGE ─────────────────────────────────────────────── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: flex-start;
}
.contact-intro { font-size: 15px; color: #777; line-height: 1.75; margin: 14px 0 28px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 14px; }
.ci-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--light-bg); border-radius: var(--radius-sm); padding: 16px 20px;
  border: 1px solid var(--border);
}
.ci-icon {
  width: 42px; height: 42px; background: var(--primary);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #fff; flex-shrink: 0;
}
.ci-label { font-size: 16px; color: #1c1919e3; display: block; margin-bottom: 3px; text-transform: uppercase; letter-spacing: .5px; }
.ci-text strong { font-size: 20px; color: var(--text-dark); font-weight: 700; }
.contact-social { margin-top: 28px; }
.contact-social p { font-size: 13px; color: #aaa; margin-bottom: 10px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--primary); transition: all var(--transition);
}
.social-links a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

/* Contact Form Card */
.contact-form-card {
  background: #fff; border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.contact-form-card h3 { font-size: 22px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.form-subtitle { font-size: 13.5px; color: #aaa; margin-bottom: 24px; }

.form-group { margin-bottom: 22px; }
.form-group label {
  display: block; font-size: 13px; font-weight: 700; color: #444;
  margin-bottom: 8px;
}
.required { color: var(--error); margin-left: 2px; }
.input-wrap { position: relative; }
.input-icon {
  position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  color: #bbb; font-size: 14px; pointer-events: none; transition: color var(--transition);
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  width: 100%; padding: 13px 14px 13px 42px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 15px; font-family: inherit; color: #333;
  background: var(--light-bg); transition: all var(--transition);
}
.form-group input:focus {
  outline: none; border-color: var(--accent);
  background: #fff; box-shadow: 0 0 0 3px rgba(197,160,89,.12);
}
.form-group input:focus + .input-icon,
.input-wrap:focus-within .input-icon { color: var(--accent); }
.input-error { border-color: var(--error) !important; }
.input-error + .input-icon { color: var(--error) !important; }
.field-hint { display: block; font-size: 12px; color: #bbb; margin-top: 6px; }

.submit-btn {
  width: 100%; padding: 15px;
  background: var(--primary); color: #fff; border: none;
  border-radius: var(--radius-sm); font-size: 16px; font-weight: 700;
  font-family: inherit; transition: all var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.submit-btn:hover { background: var(--accent); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(197,160,89,.3); }
.submit-btn:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-privacy {
  text-align: center; font-size: 12.5px; color: #bbb;
  margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 5px;
}

.trust-badges {
  display: flex; gap: 16px; margin-top: 20px; flex-wrap: wrap;
}
.trust-badge {
  flex: 1; min-width: 90px;
  background: var(--light-bg); border-radius: var(--radius-sm);
  padding: 14px; text-align: center;
  border: 1px solid var(--border);
}
.trust-badge i   { font-size: 20px; color: var(--accent); display: block; margin-bottom: 6px; }
.trust-badge span { font-size: 12px; font-weight: 700; color: #555; }

/* Map */
.map-section { position: relative; height: 380px; overflow: hidden; }
.map-img { width: 100%; height: 100%; object-fit: cover; filter: brightness(.7); }
.map-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; z-index: 2;
}
.map-card {
  background: #fff; border-radius: var(--radius); padding: 28px 32px;
  text-align: center; box-shadow: var(--shadow-lg);
}
.map-card i   { font-size: 32px; color: var(--accent); margin-bottom: 10px; }
.map-card h4  { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.map-card p   { font-size: 13.5px; color: #888; line-height: 1.6; }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer { background: #59605d; color: rgba(255,255,255,.7); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo-text { display: block; font-size: 22px; margin-bottom: 10px; color: #fff; }
.footer-brand p { font-size: 17.5px; line-height: 1.8; color: rgba(21, 21, 22, 0.961); margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a {
  width: 40px; height: 40px; border: 1.5px solid rgba(255,255,255,.2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.6); transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-col h4 { font-size: 14px; font-weight: 800; color: #161515; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(17, 17, 17, 0.961); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px; font-size: 13.5px; color: rgba(19, 18, 18, 0.93);
}
.contact-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 40px; padding: 20px 0; }
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(21, 21, 21, 0.965);
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(22, 21, 21, 0.92); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .about-intro, .services-intro, .contact-layout, .blog-featured { grid-template-columns: 1fr; gap: 40px; }
  .blog-featured-img { height: 280px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 70px; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    border-top: 1px solid var(--border);
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 10px 12px; display: block; }
  .nav-actions { display: none; }
  .navbar { position: relative; }

  .topbar-left  { gap: 12px; }
  .topbar-right { display: none; }

  .hero { min-height: auto; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 14px 20px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.15); width: 50%; }
  .stat-item:last-child, .stat-item:nth-child(even) { border-right: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-btns  { justify-content: center; }
  .newsletter-inner { flex-direction: column; }
  .newsletter-form input { width: 220px; }
  .search-row { flex-direction: column; }
  .search-field { min-width: unset; width: 100%; }
}

@media (max-width: 480px) {
  .section { padding: 56px 0; }
  .props-grid { grid-template-columns: 1fr; }
  .types-grid { grid-template-columns: repeat(2, 1fr); }
  .about-badge-float { position: static; margin-top: 16px; }
  .process-steps { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   TOP DEVELOPERS CAROUSEL
   ═══════════════════════════════════════════════════════════════ */

.tdc-section {
  background: #faf8f4;
  padding: 56px 0 48px;
}
.tdc-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── Header text ── */
.tdc-top-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 14px;
  text-decoration: none;
  transition: gap var(--transition);
}
.tdc-top-link:hover { gap: 9px; }

.tdc-heading {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.tdc-subtitle {
  font-size: 14px;
  color: #777;
  line-height: 1.8;
  max-width: 1060px;
  margin-bottom: 32px;
}

/* ── Carousel wrapper & arrows ── */
.tdc-carousel-wrap {
  position: relative;
}
.tdc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 2px 14px rgba(0,0,0,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: #444;
  transition: background var(--transition), color var(--transition),
              box-shadow var(--transition), transform .2s;
  line-height: 1;
}
.tdc-arrow:hover {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(26,26,26,.35);
  transform: translateY(-50%) scale(1.08);
}
.tdc-arrow:disabled {
  opacity: .3;
  cursor: default;
  pointer-events: none;
}
.tdc-arrow--prev { left: -20px; }
.tdc-arrow--next { right: -20px; }

/* ── Track ── */
.tdc-track-outer {
  overflow: hidden;
}
.tdc-track {
  display: flex;
  gap: 20px;
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* ── Individual card ── */
.tdc-card {
  background: #fff;
  border: 1.5px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  flex: 0 0 calc((100% - 40px) / 3);   /* 3 visible, 2 gaps */
  min-width: 0;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.tdc-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transform: translateY(-4px);
  border-color: var(--accent);
}

/* Card top row */
.tdc-card-header {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #f0f0f0;
}
.tdc-logo-box {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border: 1.5px solid #e4e4e4;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 4px;
}
.tdc-logo-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.tdc-logo-text {
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  line-height: 1.25;
  letter-spacing: -.2px;
}

.tdc-card-meta { flex: 1; min-width: 0; }
.tdc-dev-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 3px;
  line-height: 1.3;
}
.tdc-dev-city {
  font-size: 12px;
  color: #999;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.tdc-dev-city::before { content: '📍'; font-size: 10px; }

.tdc-stats { display: flex; gap: 22px; }
.tdc-stat-num {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.tdc-stat-label {
  font-size: 11px;
  color: #aaa;
  margin-top: 3px;
  white-space: nowrap;
}

/* Card link rows */
.tdc-links { list-style: none; margin: 0; }
.tdc-links li { border-top: 1px solid #f2f2f2; }
.tdc-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  font-size: 13.5px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition), padding-left var(--transition);
}
.tdc-links a:hover { color: var(--primary); padding-left: 5px; }
.tdc-arrow-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background var(--transition), color var(--transition);
}
.tdc-links a:hover .tdc-arrow-icon { background: var(--accent); color: #fff; }

/* ── Dots ── */
.tdc-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
}
.tdc-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: #d8d8d8;
  border: none; cursor: pointer; padding: 0;
  transition: background var(--transition), width .25s ease;
}
.tdc-dot.active { background: var(--primary); width: 22px; }

/* ── Bottom link ── */
.tdc-bottom-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13.5px;
  color: var(--primary);
  font-weight: 700;
  margin-top: 24px;
  text-decoration: none;
  transition: gap var(--transition);
}
.tdc-bottom-link:hover { gap: 9px; color: var(--accent); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .tdc-card { flex: 0 0 calc((100% - 20px) / 2); }
  .tdc-arrow--prev { left: -14px; }
  .tdc-arrow--next { right: -14px; }
  .tdc-container { padding: 0 28px; }
}
@media (max-width: 580px) {
  .tdc-card { flex: 0 0 100%; }
  .tdc-arrow--prev { left: -12px; }
  .tdc-arrow--next { right: -12px; }
  .tdc-arrow { width: 34px; height: 34px; font-size: 16px; }
  .tdc-heading { font-size: 20px; }
  .tdc-container { padding: 0 20px; }
}


/* ═══════════════════════════════════════════════════════════════
   LEAD CAPTURE POPUP
   ═══════════════════════════════════════════════════════════════ */

/* Overlay / backdrop */
.wn-popup-overlay {
  /* HIDDEN BY DEFAULT — JS sets display:flex via inline style to open */
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 20, 15, 0.72);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .35s ease;
}
/* JS adds this class 30ms after display:flex — triggers fade-in */
.wn-popup-overlay.wn-visible {
  opacity: 1;
}

/* Card */
.wn-popup-card {
  background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 440px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  transform: translateY(28px) scale(.97);
  transition: transform .38s cubic-bezier(.34,1.56,.64,1);
  padding: 0 0 28px;
}
.wn-popup-overlay.wn-visible .wn-popup-card {
  transform: translateY(0) scale(1);
}

/* Decorative top strip */
.wn-popup-top-strip {
  height: 6px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
}

/* Close button */
.wn-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: #f0f0f0;
  color: #555;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  z-index: 2;
}
.wn-popup-close:hover {
  background: #e74c3c;
  color: #fff;
  transform: rotate(90deg);
}

/* Icon circle */
.wn-popup-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  margin: 22px auto 14px;
  box-shadow: 0 6px 20px rgba(197,160,89,.35);
}

/* Heading & sub */
.wn-popup-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-dark);
  text-align: center;
  padding: 0 28px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.wn-popup-sub {
  font-size: 13.5px;
  color: #888;
  text-align: center;
  padding: 0 28px;
  line-height: 1.7;
  margin-bottom: 22px;
}

/* Form fields */
#wn-popup-form {
  padding: 0 28px;
}
.wn-popup-field {
  margin-bottom: 16px;
}
.wn-popup-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #444;
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.wn-req { color: #e74c3c; margin-left: 2px; }

.wn-popup-input-wrap {
  position: relative;
}
.wn-popup-input-icon {
  position: absolute;
  left: 13px;
  top: 50%;
  transform: translateY(-50%);
  color: #bbb;
  font-size: 13px;
  pointer-events: none;
  transition: color var(--transition);
}
.wn-popup-input-wrap input {
  width: 100%;
  padding: 12px 14px 12px 38px;
  border: 1.5px solid #e0e0e0;
  border-radius: 9px;
  font-size: 14.5px;
  font-family: inherit;
  color: #333;
  background: #fafafa;
  transition: border var(--transition), box-shadow var(--transition), background var(--transition);
}
.wn-popup-input-wrap input:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(197,160,89,.14);
}
.wn-popup-input-wrap input:focus + .wn-popup-input-icon,
.wn-popup-input-wrap:focus-within .wn-popup-input-icon {
  color: var(--accent);
}
.wn-popup-input-wrap input.wn-err-input {
  border-color: #e74c3c;
}
.wn-popup-err {
  display: block;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 5px;
  min-height: 16px;
}

/* Success state */
.wn-popup-success {
  background: #faf3e0;
  border: 1.5px solid #c5a059;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
  font-size: 14px;
  color: #1a1a1a;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.wn-popup-success i {
  font-size: 20px;
  color: var(--accent);
}
.wn-popup-success[hidden] { display: none !important; }

/* Submit button */
.wn-popup-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  border: none;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-top: 4px;
  box-shadow: 0 4px 18px rgba(26,26,26,.28);
}
.wn-popup-submit:hover:not(:disabled) {
  opacity: .92;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,26,26,.35);
}
.wn-popup-submit:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}
.wn-btn-loading[hidden] { display: none !important; }

/* Privacy note */
.wn-popup-privacy {
  font-size: 12px;
  color: #bbb;
  text-align: center;
  margin-top: 14px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* Countdown badge shown inside card */
.wn-countdown-badge {
  position: absolute;
  bottom: 10px;
  right: 16px;
  font-size: 11px;
  color: #ccc;
}

/* Mobile */
@media (max-width: 480px) {
  .wn-popup-card { border-radius: 14px; }
  .wn-popup-title { font-size: 18px; }
  #wn-popup-form { padding: 0 20px; }
  .wn-popup-sub { padding: 0 20px; }
}

/* ── Developer Card Footer (tagline + visit link + enquire btn) ── */
.tdc-tagline {
  font-size: 11px;
  color: #aaa;
  font-style: italic;
  margin-bottom: 10px;
  line-height: 1.4;
}
.tdc-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  margin-top: 12px;
  border-top: 1px solid #f0f0f0;
  gap: 10px;
}
.tdc-visit-link {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color var(--transition);
  text-decoration: none;
}
.tdc-visit-link:hover { color: var(--primary); }
.tdc-visit-link i { font-size: 10px; }

.tdc-enquire-btn {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  background: var(--primary);
  color: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
  white-space: nowrap;
}
.tdc-enquire-btn:hover {
  background: var(--accent);
  transform: translateY(-1px);
}

/* Logo image inside box */
.tdc-logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* Brand logos as clickable links */
a.brand-logo {
  text-decoration: none;
  cursor: pointer;
}
a.brand-logo:hover { color: var(--primary); opacity: 1; }

/* ── Real logo images inside developer cards ── */
.tdc-logo-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  display: block;
}
.tdc-logo-fallback {
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  border-radius: 4px;
  padding: 4px;
}
/* Sobha SVG is white — give it a dark bg so it's visible */
.tdc-logo-box img[src*="SOBHA_White"],
.tdc-logo-box img[src*="sobha"] {
  background: #003087;
  border-radius: 6px;
  padding: 8px;
}
/* Sattva favicon — give it an orange tint bg */
.tdc-logo-box img[src*="sattva"],
.tdc-logo-box img[src*="favicon-512"] {
  background: #f5f5f5;
  border-radius: 6px;
  padding: 4px;
}

/* ── Property Types — 4 cards forced into one line ── */
.types-grid--inline {
  grid-template-columns: repeat(4, 1fr) !important;
}
@media (max-width: 768px) {
  .types-grid--inline {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 400px) {
  .types-grid--inline {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* ── Uploaded logo overrides ── */
/* Sobha PNG has its own yellow background — show it naturally */
.tdc-logo-box img[src*="sobha.png"] {
  background: transparent !important;
  padding: 2px !important;
  border-radius: 6px;
  object-fit: contain;
}
/* Sattva JPG has white background — show cleanly */
.tdc-logo-box img[src*="sattva.jpg"] {
  background: #fff !important;
  padding: 4px !important;
  border-radius: 6px;
  object-fit: contain;
}

/* ── Uploaded local logos — clean display with no colour override ── */
.tdc-logo-box img[src*="sobha.png"],
.tdc-logo-box img[src*="sattva.jpg"] {
  background: transparent !important;
  padding: 4px !important;
  border-radius: 0 !important;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
/* Override the earlier remote-URL rules that don't apply anymore */
.tdc-logo-box img[src*="SOBHA_White"],
.tdc-logo-box img[src*="favicon-512"] {
  background: transparent !important;
  padding: 4px !important;
  border-radius: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   DEVELOPER PAGE & PROJECT CARDS
   ═══════════════════════════════════════════════════════════════ */

/* ── Developer Hero ── */
.dev-hero { padding: 40px 0 30px; text-align: left; }
.dev-hero-inner {
  display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.dev-hero-logo {
  width: 100px; height: 100px; flex-shrink: 0;
  background: #fff; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.2); overflow: hidden; padding: 6px;
}
.dev-hero-logo img { width: 100%; height: 100%; object-fit: contain; }
.dev-logo-fb {
  width: 100%; height: 100%; border-radius: 10px;
  align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; text-align: center;
  line-height: 1.2; padding: 6px;
}
.dev-hero-info { flex: 1; min-width: 200px; }
.dev-hero-info h1 { font-size: clamp(22px, 3vw, 34px); font-weight: 800; color: #fff; margin: 6px 0; }
.dev-hero-tagline { color: rgba(255,255,255,.7); font-size: 14px; margin-bottom: 16px; }
.dev-hero-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.dev-hero-stat { font-size: 13px; color: rgba(255,255,255,.75); }
.dev-hero-stat span { display: block; font-size: 24px; font-weight: 800; color: var(--accent); line-height: 1; }

/* ── Filter pills with status colours ── */
.filter-pill.status-ready.active   { background: var(--success); }
.filter-pill.status-uc.active      { background: #f97316; }
.filter-pill.status-nl.active      { background: #8b5cf6; }

/* ── Project cards grid ── */
.proj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}
.proj-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex; flex-direction: column;
}
.proj-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.proj-card-img {
  position: relative; height: 210px; overflow: hidden;
}
.proj-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.proj-card:hover .proj-card-img img { transform: scale(1.06); }

/* Status badge on image */
.proj-status-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  display: flex; align-items: center; gap: 5px;
}
.proj-status-badge.status-ready          { background: var(--success); color: #fff; }
.proj-status-badge.status-under_construction { background: #f97316; color: #fff; }
.proj-status-badge.status-new_launch     { background: #8b5cf6; color: #fff; }

/* Company logo on image top-right */
.proj-logo-overlay {
  position: absolute; top: 12px; right: 12px;
  width: 52px; height: 52px;
  background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.2); padding: 4px; overflow: hidden;
}
.proj-logo-overlay img { width: 100%; height: 100%; object-fit: contain; }
.proj-logo-fb {
  width: 100%; height: 100%; border-radius: 5px;
  align-items: center; justify-content: center;
  font-size: 9px; font-weight: 800; text-align: center;
}

.proj-card-body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; }
.proj-price { font-size: 20px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.proj-name  { font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 5px; }
.proj-loc   { font-size: 12.5px; color: #888; display: flex; align-items: center; gap: 4px; margin-bottom: 14px; }
.proj-loc i { color: var(--accent); }

/* Stats row */
.proj-stats-row {
  display: flex; gap: 0;
  border: 1px solid var(--border); border-radius: 8px;
  overflow: hidden; margin-bottom: 12px;
}
.proj-stat {
  flex: 1; padding: 10px 8px;
  display: flex; align-items: center; gap: 8px;
  border-right: 1px solid var(--border);
  font-size: 12px;
}
.proj-stat:last-child { border-right: none; }
.proj-stat i { color: var(--accent); font-size: 14px; flex-shrink: 0; }
.proj-stat-val { font-weight: 700; color: var(--text-dark); font-size: 13px; }
.proj-stat-key { color: #aaa; font-size: 11px; }

.proj-bhk-badge {
  display: inline-block; background: #f6ead0;
  color: var(--primary); font-size: 12px; font-weight: 700;
  padding: 3px 10px; border-radius: 4px; margin-bottom: 4px;
}
.proj-sqft { font-size: 12.5px; color: #888; margin-bottom: 6px; }
.proj-completion { font-size: 12.5px; color: #f97316; margin-bottom: 8px; display: flex; align-items: center; gap: 5px; }
.proj-desc { font-size: 13px; color: #777; line-height: 1.65; flex: 1; margin-bottom: 16px; }

.proj-actions {
  display: flex; gap: 10px; margin-top: auto;
  padding-top: 14px; border-top: 1px solid var(--border);
}
.btn-proj-detail {
  flex: 1; padding: 9px 14px; background: var(--light-bg);
  color: var(--primary); border-radius: 7px;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all var(--transition); text-decoration: none;
}
.btn-proj-detail:hover { background: var(--primary); color: #fff; }
.btn-proj-enquire {
  flex: 1; padding: 9px 14px; background: var(--accent);
  color: #fff; border-radius: 7px;
  font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: all var(--transition); text-decoration: none;
}
.btn-proj-enquire:hover { background: var(--accent-hover); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════════════════════
   PROJECT DETAIL PAGE
   ═══════════════════════════════════════════════════════════════ */

/* Hero with image bg */
.proj-detail-hero {
  position: relative; padding: 0;
}
.proj-detail-img-wrap {
  position: relative; height: 380px; overflow: hidden;
}
.proj-detail-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.proj-detail-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25) 0%, rgba(0,0,0,.72) 100%);
}

/* Hero content row — logo left, title centre, price right */
.proj-detail-hero-inner {
  position: absolute; bottom: 48px; left: 0; right: 0;
  display: flex; align-items: flex-end; gap: 20px; flex-wrap: wrap;
}
.proj-detail-logo-wrap {
  width: 80px; height: 80px; flex-shrink: 0;
  background: #fff; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,.3); overflow: hidden; padding: 6px;
}
.proj-detail-logo-img { width: 100%; height: 100%; object-fit: contain; }
.proj-detail-logo-fb {
  width: 100%; height: 100%; border-radius: 8px;
  align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; text-align: center; line-height: 1.2;
}
.proj-detail-title-block { flex: 1; }
.proj-detail-name {
  font-size: clamp(22px, 3vw, 36px); font-weight: 800;
  color: #fff; line-height: 1.2; margin-bottom: 8px;
}
.proj-detail-location {
  font-size: 14px; color: rgba(255,255,255,.8);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.proj-detail-location i { color: var(--accent); }
.see-on-map {
  font-size: 12px; color: var(--accent); font-weight: 700;
  display: inline-flex; align-items: center; gap: 4px;
  border: 1px solid var(--accent); padding: 2px 8px; border-radius: 4px;
  text-decoration: none; transition: all var(--transition);
}
.see-on-map:hover { background: var(--accent); color: #fff; }

.proj-detail-price-block { text-align: right; flex-shrink: 0; }
.proj-detail-price-label { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .8px; }
.proj-detail-price { font-size: 28px; font-weight: 800; color: #fff; line-height: 1; }
.proj-detail-price-note { font-size: 11px; color: rgba(255,255,255,.5); }

.proj-detail-breadcrumb { margin-top: 14px; padding-top: 14px; }

/* ── Layout ── */
.proj-detail-section { padding-top: 0; }
.proj-detail-layout {
  display: grid; grid-template-columns: 1fr 340px;
  gap: 32px; align-items: start; padding-top: 32px;
}

/* Facts strip (like reference image) */
.proj-detail-facts-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; background: #fff; border-radius: 12px;
  box-shadow: var(--shadow-md); overflow: hidden; margin-bottom: 24px;
  border: 1px solid var(--border);
}
.proj-fact {
  padding: 18px 16px; display: flex; align-items: flex-start; gap: 12px;
  border-right: 1px solid var(--border);
}
.proj-fact:last-child { border-right: none; }
.proj-fact-icon {
  width: 36px; height: 36px; background: #f6ead0;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--primary); flex-shrink: 0;
}
.proj-fact-label { font-size: 11px; color: #aaa; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 4px; }
.proj-fact-val { font-size: 15px; font-weight: 800; color: var(--text-dark); display: flex; align-items: center; gap: 5px; }
.proj-fact-val.status-ready          { color: var(--success); }
.proj-fact-val.status-under_construction { color: #f97316; }
.proj-fact-val.status-new_launch     { color: #8b5cf6; }

/* Detail cards */
.proj-detail-card {
  background: #fff; border-radius: 12px; padding: 24px;
  box-shadow: var(--shadow-sm); margin-bottom: 20px;
  border: 1px solid var(--border);
}
.proj-detail-card-title {
  font-size: 16px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.proj-detail-card-title i { color: var(--accent); }

/* Config grid */
.proj-config-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.proj-config-item {
  background: var(--light-bg); border-radius: 8px; padding: 14px;
  border: 1px solid var(--border);
}
.proj-config-type  { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.proj-config-sqft  { font-size: 12.5px; color: #888; margin: 4px 0; }
.proj-config-price { font-size: 14px; font-weight: 800; color: var(--primary); }

.proj-detail-desc { font-size: 14.5px; color: #666; line-height: 1.8; }
.proj-completion-strip {
  display: flex; align-items: center; gap: 8px;
  font-size: 13.5px; color: #f97316;
  background: #fff7ed; border: 1px solid #fed7aa;
  padding: 10px 14px; border-radius: 8px; margin-top: 16px;
}
.proj-completion-ready { color: var(--success); background: #faf3e0; border-color: #e6d3a3; }

.proj-highlights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.proj-highlight-item {
  display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: #555;
}
.proj-highlight-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }

/* Developer strip */
.proj-dev-strip { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.proj-dev-logo-wrap {
  width: 72px; height: 72px; flex-shrink: 0;
  background: #fafafa; border: 1px solid var(--border);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 4px;
}
.proj-dev-logo-wrap img { width: 100%; height: 100%; object-fit: contain; }
.proj-dev-logo-fb {
  width: 100%; height: 100%; border-radius: 7px;
  align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; text-align: center;
}
.proj-dev-info { flex: 1; }
.proj-dev-name { font-size: 15px; font-weight: 800; color: var(--text-dark); }
.proj-dev-tag  { font-size: 12.5px; color: #888; margin: 2px 0 4px; }
.proj-dev-exp  { font-size: 12px; color: var(--accent); font-weight: 600; }
.proj-dev-actions { display: flex; flex-direction: column; gap: 8px; align-items: flex-end; }

/* ── RIGHT SIDEBAR ── */
/* Enquiry card */
.proj-enquiry-card {
  background: #fff; border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  border: 1px solid var(--border);
  overflow: hidden; position: sticky; top: 90px;
}
.proj-enquiry-header {
  background: linear-gradient(135deg, var(--primary), #0d0d0d);
  padding: 18px 20px; display: flex; align-items: center; gap: 12px; color: #fff;
}
.proj-enquiry-header i { font-size: 22px; color: var(--accent); flex-shrink: 0; }
.proj-enquiry-header h3 { font-size: 15px; font-weight: 800; margin-bottom: 2px; }
.proj-enquiry-header p  { font-size: 12.5px; color: rgba(255,255,255,.7); }

.enquiry-project-name {
  background: #faf3e0; border-bottom: 1px solid var(--border);
  padding: 10px 20px; font-size: 13px; font-weight: 700; color: var(--primary);
  display: flex; align-items: center; gap: 6px;
}

#proj-enquiry-form { padding: 16px 20px 0; }
.enq-field { margin-bottom: 14px; }
.enq-field label {
  display: block; font-size: 12px; font-weight: 700; color: #555;
  text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px;
}
.enq-input-wrap { position: relative; }
.enq-icon {
  position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
  color: #bbb; font-size: 13px; pointer-events: none;
}
.enq-input-wrap input {
  width: 100%; padding: 11px 12px 11px 36px;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: inherit; color: #333;
  background: #fafafa; transition: all var(--transition);
}
.enq-input-wrap input:focus {
  outline: none; border-color: var(--accent); background: #fff;
  box-shadow: 0 0 0 3px rgba(197,160,89,.12);
}
.enq-err { font-size: 11.5px; color: var(--error); display: block; margin-top: 4px; }
.enq-success {
  background: #faf3e0; border: 1.5px solid var(--accent);
  border-radius: 8px; padding: 12px 14px;
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13.5px; color: var(--primary); margin-bottom: 12px;
}
.enq-success i { color: var(--accent); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.enq-success[hidden] { display: none !important; }
.enq-submit {
  width: 100%; padding: 13px; margin: 4px 0 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 800; font-family: inherit;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all var(--transition); box-shadow: 0 4px 14px rgba(26,26,26,.28);
}
.enq-submit:hover:not(:disabled) { opacity: .92; transform: translateY(-1px); }
.enq-submit:disabled { opacity: .65; cursor: not-allowed; transform: none; }
.enq-btn-load[hidden] { display: none !important; }

.enq-trust-row {
  display: flex; justify-content: space-around;
  padding: 12px 20px; border-top: 1px solid var(--border);
  font-size: 11.5px; color: #aaa;
}
.enq-trust-row i { color: var(--accent); margin-right: 3px; }

.enq-quick {
  padding: 14px 20px; border-top: 1px solid var(--border);
  text-align: center;
}
.enq-quick p { font-size: 12px; color: #aaa; margin-bottom: 8px; }
.enq-call-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary); color: #fff;
  padding: 9px 18px; border-radius: 8px;
  font-size: 13.5px; font-weight: 700; text-decoration: none;
  transition: background var(--transition);
}
.enq-call-btn:hover { background: var(--accent); }

/* Similar projects card */
.proj-similar-card {
  background: #fff; border-radius: 12px; padding: 18px;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  margin-top: 16px;
}
.proj-similar-card h4 {
  font-size: 14px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 14px; display: flex; align-items: center; gap: 7px;
}
.proj-similar-card h4 i { color: var(--accent); }
.proj-similar-link {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 8px;
  font-size: 13.5px; color: #555; font-weight: 600;
  text-decoration: none; transition: all var(--transition);
  border: 1px solid var(--border); margin-bottom: 8px;
}
.proj-similar-link:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.proj-similar-link i { font-size: 13px; }
.proj-similar-link:hover i { color: var(--accent); }
.proj-similar-all {
  background: var(--light-bg); justify-content: space-between;
  color: var(--primary); font-weight: 700;
}
.proj-similar-all:hover { background: var(--primary); color: #fff; }

/* Responsive */
@media (max-width: 1024px) {
  .proj-detail-layout { grid-template-columns: 1fr; }
  .proj-enquiry-card  { position: static; }
  .proj-detail-facts-strip { grid-template-columns: repeat(2, 1fr); }
  .proj-detail-hero-inner { bottom: 16px; }
  .proj-detail-img-wrap { height: 280px; }
}
@media (max-width: 600px) {
  .proj-grid { grid-template-columns: 1fr; }
  .proj-detail-facts-strip { grid-template-columns: 1fr 1fr; }
  .dev-hero-stats { gap: 12px; }
  .proj-highlights-grid { grid-template-columns: 1fr; }
  .proj-detail-hero-inner { flex-direction: column; align-items: flex-start; }
  .proj-detail-price-block { text-align: left; }
}

/* ── Uploaded local logos — DS MAX, Sowparnika, SBR ── */
.tdc-logo-box img[src*="ds_max.jpg"],
.tdc-logo-box img[src*="sowparnika.png"],
.tdc-logo-box img[src*="sbr.jpg"] {
  background: #fff !important;
  padding: 4px !important;
  border-radius: 0 !important;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
/* Dev hero logo boxes — same treatment */
.dev-hero-logo img[src*="ds_max.jpg"],
.dev-hero-logo img[src*="sowparnika.png"],
.dev-hero-logo img[src*="sbr.jpg"],
.proj-logo-overlay img[src*="ds_max.jpg"],
.proj-logo-overlay img[src*="sowparnika.png"],
.proj-logo-overlay img[src*="sbr.jpg"],
.proj-detail-logo-wrap img[src*="ds_max.jpg"],
.proj-detail-logo-wrap img[src*="sowparnika.png"],
.proj-detail-logo-wrap img[src*="sbr.jpg"],
.proj-dev-logo-wrap img[src*="ds_max.jpg"],
.proj-dev-logo-wrap img[src*="sowparnika.png"],
.proj-dev-logo-wrap img[src*="sbr.jpg"] {
  background: #fff !important;
  padding: 4px !important;
  object-fit: contain;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE — VISION / MISSION / VALUES + CORE SERVICES
   ═══════════════════════════════════════════════════════════════ */

/* ── VMV (Vision Mission Values) layout ── */
.vmv-layout {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.vmv-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow-md);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  border-left: 5px solid var(--accent);
  transition: box-shadow var(--transition), transform var(--transition);
}
.vmv-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.vmv-vision  { border-left-color: #4a4a4a; }
.vmv-mission { border-left-color: var(--primary); }
.vmv-values  { border-left-color: var(--accent); }

.vmv-icon-wrap { flex-shrink: 0; }
.vmv-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: #fff;
  box-shadow: 0 4px 14px rgba(26,26,26,.25);
}
.vmv-vision .vmv-icon  { background: linear-gradient(135deg,#4a4a4a,#6b6b6b); }
.vmv-mission .vmv-icon { background: linear-gradient(135deg,var(--primary),#0d0d0d); }
.vmv-values .vmv-icon  { background: linear-gradient(135deg,var(--accent),#a9823f); }

.vmv-content { flex: 1; }
.vmv-content h3 {
  font-size: 20px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 10px;
}
.vmv-content p {
  font-size: 14.5px; color: #666; line-height: 1.85;
}

/* Values grid inside vmv-values card */
.vmv-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}
.vmv-value-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: #444; font-weight: 600;
  background: #faf8f4; border-radius: 8px;
  padding: 10px 12px;
  transition: background var(--transition);
}
.vmv-value-item:hover { background: #f6ead0; }
.vmv-value-item i { color: var(--accent); font-size: 14px; flex-shrink: 0; }

/* ── About core services grid ── */
.about-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.about-svc-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  display: flex; flex-direction: column;
}
.about-svc-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.about-svc-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.about-svc-card h3 {
  font-size: 17px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 4px;
}
.about-svc-lead {
  font-size: 12.5px; color: var(--accent); font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 10px;
}
.about-svc-card > p {
  font-size: 13.5px; color: #777; line-height: 1.75;
  margin-bottom: 14px; flex: 1;
}
.about-svc-list {
  list-style: none; margin-bottom: 16px;
  display: flex; flex-direction: column; gap: 7px;
}
.about-svc-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #555;
}
.about-svc-list i { color: var(--accent); font-size: 11px; flex-shrink: 0; }

/* ── Why Choose Us grid ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.why-card {
  background: #fff; border-radius: var(--radius);
  padding: 22px 18px; text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(197,160,89,.13);
  transform: translateY(-3px);
}
.why-icon {
  width: 50px; height: 50px;
  background: linear-gradient(135deg, #f6ead0, #f0e2c0);
  border-radius: 12px; margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: var(--primary);
  transition: all var(--transition);
}
.why-card:hover .why-icon { background: var(--accent); color: #fff; }
.why-card h4 { font-size: 13.5px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.why-card p  { font-size: 12.5px; color: #888; line-height: 1.65; }

/* ═══════════════════════════════════════════════════════════════
   SERVICES PAGE — FULL DETAIL SECTIONS
   ═══════════════════════════════════════════════════════════════ */

/* Intro tags */
.svc-intro-tags {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px;
}
.svc-intro-tags span {
  display: inline-flex; align-items: center; gap: 6px;
  background: #f6ead0; color: var(--primary);
  font-size: 13px; font-weight: 700;
  padding: 6px 14px; border-radius: 20px;
}
.svc-intro-tags i { color: var(--accent); }

/* Full-section service layout */
.svc-full-section { scroll-margin-top: 80px; }
.svc-full-layout {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 40px;
  align-items: flex-start;
}
.svc-full-layout--reverse { }

.svc-full-icon-col {
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; padding-top: 8px;
}
.svc-full-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.svc-number {
  font-size: 13px; font-weight: 800; color: #ccc;
  letter-spacing: 1px;
}

.svc-full-title {
  font-size: clamp(22px, 3vw, 30px); font-weight: 800;
  color: var(--text-dark); margin: 6px 0 4px;
}
.svc-full-lead {
  font-size: 14px; color: var(--accent); font-weight: 700;
  text-transform: uppercase; letter-spacing: .6px;
  margin-bottom: 14px;
}
.svc-full-desc {
  font-size: 14.5px; color: #666; line-height: 1.85;
  margin-bottom: 12px;
}
.svc-sub-heading {
  font-size: 15px; font-weight: 800; color: var(--text-dark);
  margin-bottom: 14px; margin-top: 4px;
}

/* Feature items grid (icon + title + desc) */
.svc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px; margin: 18px 0;
}
.svc-feature-item {
  display: flex; align-items: flex-start; gap: 12px;
  background: var(--light-bg); border-radius: 10px;
  padding: 14px; border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.svc-feature-item:hover { border-color: var(--accent); }
.svc-feature-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: #fff; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.svc-feature-title { font-size: 13.5px; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.svc-feature-desc  { font-size: 12px; color: #888; line-height: 1.5; }

/* Checklist grid */
.svc-checklist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 18px 0;
}
.svc-checklist-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; color: #444; font-weight: 600;
  background: var(--light-bg); border-radius: 8px;
  padding: 10px 14px;
}
.svc-checklist-item i { color: var(--success); font-size: 14px; flex-shrink: 0; }

/* USP grid (construction) */
.svc-usp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px; margin: 4px 0;
}
.svc-usp-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: #555; font-weight: 600;
  padding: 8px 12px;
  background: #fff; border-radius: 8px;
  border: 1px solid var(--border);
}
.svc-usp-item i { color: var(--primary); font-size: 14px; flex-shrink: 0; width: 18px; text-align: center; }

/* Highlight box */
.svc-highlight-box {
  display: flex; align-items: flex-start; gap: 10px;
  background: #faf3e0; border: 1.5px solid #a7f3d0;
  border-radius: 10px; padding: 14px 16px;
  font-size: 13.5px; color: #065f46; font-weight: 600;
  line-height: 1.65; margin: 20px 0;
}
.svc-highlight-box i { font-size: 18px; color: var(--accent); flex-shrink: 0; margin-top: 1px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .vmv-values-grid       { grid-template-columns: 1fr; }
  .svc-full-layout       { grid-template-columns: 1fr; gap: 20px; }
  .svc-full-icon-col     { flex-direction: row; align-items: center; }
  .svc-features-grid,
  .svc-checklist-grid,
  .svc-usp-grid          { grid-template-columns: 1fr; }
  .why-grid              { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .vmv-card              { flex-direction: column; gap: 16px; }
  .vmv-values-grid       { grid-template-columns: 1fr; }
  .why-grid              { grid-template-columns: 1fr 1fr; }
  .about-services-grid   { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   WHITENEST BRAND LOGO — Navbar & Footer
   ═══════════════════════════════════════════════════════════════ */

/* Navbar logo image */
.wn-navbar-logo {
  height: 83px;
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;
  background: transparent;
  filter: none;
  transition: transform .2s ease, opacity .2s ease;
}
.logo:hover .wn-navbar-logo {
  transform: scale(1.03);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.14));
}

/* Keep the logo anchor flex so it aligns properly */
a.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

/* Footer logo image — transparent PNG on a soft rounded card so the
   black/gold logo ink stays legible on the dark green footer background */

/* ═══════════════════════════════════════════════════════════════
   BRANDS SECTION — Logo Cards (replaces plain text)
   ═══════════════════════════════════════════════════════════════ */
.brands-section {
  background: #fff;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brands-label {
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 32px;
}
.brands-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  flex-wrap: wrap;
}

/* Each brand card */
.brand-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  padding: 20px 24px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: #fff;
  min-width: 160px;
  flex: 1;
  max-width: 200px;
  transition: all .25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.brand-logo-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(197,160,89,.15);
  transform: translateY(-4px);
}

/* Logo image container */
.brand-logo-img-wrap {
  width: 100px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 8px;
  background: #fafafa;
}
.brand-logo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
  transition: transform .3s ease;
}
.brand-logo-card:hover .brand-logo-img-wrap img {
  transform: scale(1.05);
}

/* Fallback coloured box if image fails */
.brand-logo-fallback {
  display: none;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .5px;
  text-align: center;
}

/* Company name label below logo */
.brand-logo-name {
  font-size: 13px;
  font-weight: 700;
  color: #555;
  text-align: center;
  transition: color .2s;
  line-height: 1.3;
}
.brand-logo-card:hover .brand-logo-name {
  color: var(--primary);
}

/* Remove old plain brand-logo text styles */
.brand-logo { display: none; }

/* Responsive */
@media (max-width: 768px) {
  .brands-row { gap: 14px; }
  .brand-logo-card { min-width: 130px; padding: 16px 14px; }
  .brand-logo-img-wrap { width: 80px; height: 56px; }
  .brand-logo-name { font-size: 12px; }
}
@media (max-width: 480px) {
  .brands-row { gap: 10px; }
  .brand-logo-card { min-width: 100px; max-width: 48%; padding: 14px 10px; flex: 0 0 calc(50% - 5px); }
  .brand-logo-img-wrap { width: 70px; height: 48px; }
}

/* ═══════════════════════════════════════════════════════════════
   LATEST PROPERTIES — Card grid (home + listing page)
   ═══════════════════════════════════════════════════════════════ */
.lp-filter-pills{display:flex;gap:8px;margin-bottom:28px;flex-wrap:wrap;}
.lp-pill{padding:7px 18px;border-radius:20px;font-size:13.5px;font-weight:700;background:var(--light-bg);color:#555;border:1.5px solid transparent;text-decoration:none;transition:all var(--transition);}
.lp-pill--active,.lp-pill:hover{background:var(--primary);color:#fff;}

.lp-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(300px,1fr));gap:24px;}
.lp-grid--full{grid-template-columns:repeat(auto-fill,minmax(320px,1fr));}

.lp-card{background:#fff;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-md);transition:transform var(--transition),box-shadow var(--transition);display:flex;flex-direction:column;}
.lp-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg);}

.lp-card-img{position:relative;height:210px;overflow:hidden;}
.lp-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .4s;}
.lp-card:hover .lp-card-img img{transform:scale(1.06);}

.lp-badge{position:absolute;top:12px;left:12px;padding:4px 12px;border-radius:20px;font-size:12px;font-weight:700;color:#fff;display:flex;align-items:center;gap:5px;}
.lp-card-price-badge{position:absolute;bottom:12px;right:12px;background:rgba(26,26,46,.85);color:#fff;padding:5px 12px;border-radius:6px;font-size:13px;font-weight:800;}

.lp-card-body{padding:18px 20px;flex:1;display:flex;flex-direction:column;}
.lp-developer-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px;}
.lp-developer-name{font-size:12px;color:var(--accent);font-weight:700;display:flex;align-items:center;gap:4px;}
.lp-rera-mini{font-size:11px;background:#f6ead0;color:var(--primary);padding:2px 7px;border-radius:4px;font-weight:700;display:flex;align-items:center;gap:3px;}
.lp-name{font-size:16px;font-weight:800;color:var(--text-dark);margin-bottom:5px;line-height:1.3;}
.lp-location{font-size:12.5px;color:#888;display:flex;align-items:center;gap:4px;margin-bottom:12px;}
.lp-location i{color:var(--accent);}

.lp-stats{display:flex;gap:0;border:1px solid var(--border);border-radius:8px;overflow:hidden;margin-bottom:12px;}
.lp-stat{flex:1;padding:9px 8px;display:flex;align-items:center;gap:7px;border-right:1px solid var(--border);font-size:12px;}
.lp-stat:last-child{border-right:none;}
.lp-stat i{color:var(--accent);font-size:13px;flex-shrink:0;}
.lp-stat strong{display:block;font-size:12.5px;font-weight:700;color:var(--text-dark);}
.lp-stat span{font-size:10.5px;color:#aaa;}

.lp-config-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:10px;flex-wrap:wrap;gap:6px;}
.lp-bhk-tag{background:#f6ead0;color:var(--primary);font-size:12px;font-weight:700;padding:3px 10px;border-radius:4px;display:flex;align-items:center;gap:4px;}
.lp-sqft{font-size:12px;color:#888;}

.lp-price-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:8px;flex-wrap:wrap;gap:6px;}
.lp-price{font-size:18px;font-weight:800;color:var(--primary);} 
.lp-price span{font-size:13px;font-weight:400;color:#aaa;}
.lp-completion{font-size:12px;color:#f97316;display:flex;align-items:center;gap:4px;}

.lp-rera{font-size:11px;color:#888;margin-bottom:8px;display:flex;align-items:center;gap:4px;}
.lp-rera i{color:var(--success);}
.lp-desc{font-size:13px;color:#777;line-height:1.65;flex:1;margin-bottom:14px;}

.lp-actions{display:flex;gap:10px;padding-top:12px;border-top:1px solid var(--border);margin-top:auto;}
.lp-btn-detail{flex:1;padding:9px 12px;background:var(--light-bg);color:var(--primary);border-radius:7px;font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center;gap:6px;text-decoration:none;transition:all var(--transition);}
.lp-btn-detail:hover{background:var(--primary);color:#fff;}
.lp-btn-enquire{flex:1;padding:9px 12px;background:var(--accent);color:#fff;border-radius:7px;font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center;gap:6px;text-decoration:none;transition:all var(--transition);}
.lp-btn-enquire:hover{background:var(--accent-hover);transform:translateY(-1px);}

/* ═══════════════════════════════════════════════════════════════
   LATEST PROPERTY DETAIL PAGE
   ═══════════════════════════════════════════════════════════════ */
.lpd-hero{position:relative;}
.lpd-hero-img-wrap{height:400px;overflow:hidden;position:relative;}
.lpd-hero-img-wrap img{width:100%;height:100%;object-fit:cover;}
.lpd-hero-overlay{position:absolute;inset:0;background:linear-gradient(to bottom,rgba(0,0,0,.15) 0%,rgba(0,0,0,.75) 100%);}

.lpd-hero-inner{position:absolute;bottom:50px;left:0;right:0;display:flex;align-items:flex-end;justify-content:space-between;gap:20px;flex-wrap:wrap;}
.lpd-status-badge{display:inline-flex;align-items:center;gap:6px;padding:5px 14px;border-radius:20px;color:#fff;font-size:13px;font-weight:700;margin-bottom:10px;}
.lpd-hero-name{font-size:clamp(24px,3.5vw,42px);font-weight:800;color:#fff;line-height:1.15;margin-bottom:8px;}
.lpd-hero-developer{font-size:14px;color:rgba(255,255,255,.8);margin-bottom:4px;display:flex;align-items:center;gap:5px;}
.lpd-hero-location{font-size:14px;color:rgba(255,255,255,.75);display:flex;align-items:center;gap:6px;flex-wrap:wrap;}
.lpd-hero-location i{color:var(--accent);}
.lpd-map-link{font-size:12px;color:var(--accent);font-weight:700;border:1px solid var(--accent);padding:2px 8px;border-radius:4px;text-decoration:none;display:inline-flex;align-items:center;gap:4px;transition:all var(--transition);}
.lpd-map-link:hover{background:var(--accent);color:#fff;}

.lpd-hero-right{text-align:right;flex-shrink:0;}
.lpd-hero-price-label{font-size:11px;color:rgba(255,255,255,.6);text-transform:uppercase;letter-spacing:.8px;}
.lpd-hero-price{font-size:32px;font-weight:800;color:#fff;line-height:1;}
.lpd-hero-price-range{font-size:14px;color:rgba(255,255,255,.6);margin-top:4px;}
.lpd-hero-sqft{font-size:12px;color:rgba(255,255,255,.5);margin-top:2px;}

.lpd-breadcrumb{margin-top:12px;padding-top:12px;}

/* Facts strip */
.lpd-facts-strip{background:#fff;border-bottom:1px solid var(--border);box-shadow:var(--shadow-sm);}
.lpd-facts-inner{display:flex;flex-wrap:wrap;padding:0;}
.lpd-fact{flex:1;min-width:140px;padding:18px 16px;display:flex;align-items:flex-start;gap:12px;border-right:1px solid var(--border);}
.lpd-fact:last-child{border-right:none;}
.lpd-fact-icon{width:36px;height:36px;background:#f6ead0;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:14px;color:var(--primary);flex-shrink:0;}
.lpd-fact-label{font-size:11px;color:#aaa;text-transform:uppercase;letter-spacing:.5px;margin-bottom:4px;}
.lpd-fact-val{font-size:14px;font-weight:800;color:var(--text-dark);}
.lpd-rera-val{font-size:11px;word-break:break-all;}

/* Main layout */
.lpd-main-section{padding-top:0;}
.lpd-layout{display:grid;grid-template-columns:1fr 340px;gap:28px;align-items:start;padding-top:28px;}

.lpd-card{background:#fff;border-radius:var(--radius);padding:24px;box-shadow:var(--shadow-sm);margin-bottom:20px;border:1px solid var(--border);}
.lpd-card-title{font-size:17px;font-weight:800;color:var(--text-dark);margin-bottom:16px;display:flex;align-items:center;gap:8px;}
.lpd-card-title i{color:var(--accent);}
.lpd-description{font-size:15px;color:#555;line-height:1.85;}
.lpd-completion-strip{display:flex;align-items:center;gap:8px;font-size:13.5px;color:#f97316;background:#fff7ed;border:1px solid #fed7aa;padding:10px 14px;border-radius:8px;margin-top:16px;}

/* Configurations */
.lpd-config-intro{font-size:14px;color:#888;margin-bottom:16px;}
.lpd-config-grid{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.lpd-config-card{background:var(--light-bg);border-radius:10px;padding:18px;border:1.5px solid var(--border);transition:border-color var(--transition);}
.lpd-config-card:hover{border-color:var(--accent);}
.lpd-config-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:10px;}
.lpd-config-type{font-size:15px;font-weight:800;color:var(--primary);}
.lpd-config-price{font-size:14px;font-weight:700;color:var(--text-dark);}
.lpd-config-sqft{font-size:13px;color:#666;margin-bottom:6px;display:flex;align-items:center;gap:5px;}
.lpd-config-rooms{font-size:12.5px;color:#888;margin-bottom:12px;display:flex;align-items:center;gap:5px;}
.lpd-config-enquire{font-size:13px;font-weight:700;color:var(--accent);display:inline-flex;align-items:center;gap:5px;text-decoration:none;transition:gap var(--transition);}
.lpd-config-enquire:hover{gap:8px;}

/* Floor plans */
.lpd-floorplan-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.lpd-floorplan-box{border:1.5px solid var(--border);border-radius:10px;overflow:hidden;transition:border-color var(--transition);}
.lpd-floorplan-box:hover{border-color:var(--accent);}
.lpd-floorplan-svg-wrap{background:#f8f9fa;padding:12px;}
.lpd-fp-svg{width:100%;height:auto;display:block;}
.lpd-floorplan-info{padding:14px 16px;background:#fff;}
.lpd-fp-type{font-size:15px;font-weight:800;color:var(--primary);margin-bottom:4px;}
.lpd-fp-sqft{font-size:13px;color:#888;margin-bottom:3px;}
.lpd-fp-price{font-size:14px;font-weight:700;color:var(--text-dark);margin-bottom:5px;}
.lpd-fp-rooms{font-size:12px;color:#aaa;}
.lpd-floorplan-note{display:flex;align-items:flex-start;gap:8px;font-size:12.5px;color:#aaa;background:#fafafa;border:1px solid var(--border);padding:10px 14px;border-radius:8px;margin-top:16px;}
.lpd-floorplan-note i{color:var(--accent);flex-shrink:0;margin-top:1px;}

/* Highlights */
.lpd-highlights-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;}
.lpd-highlight{display:flex;align-items:flex-start;gap:9px;font-size:13.5px;color:#555;background:var(--light-bg);border-radius:8px;padding:10px 12px;}
.lpd-highlight i{color:var(--accent);margin-top:2px;flex-shrink:0;}

/* Sidebar */
.lpd-enq-card{background:#fff;border-radius:14px;box-shadow:0 8px 32px rgba(0,0,0,.1);border:1px solid var(--border);overflow:hidden;position:sticky;top:90px;margin-bottom:16px;}
.lpd-enq-header{background:linear-gradient(135deg,var(--primary),#0d0d0d);padding:18px 20px;display:flex;align-items:center;gap:12px;color:#fff;}
.lpd-enq-header i{font-size:22px;color:var(--accent);flex-shrink:0;}
.lpd-enq-header h3{font-size:15px;font-weight:800;margin-bottom:2px;}
.lpd-enq-header p{font-size:12.5px;color:rgba(255,255,255,.7);}
.lpd-enq-project-name{background:#faf3e0;border-bottom:1px solid var(--border);padding:10px 20px;font-size:13px;font-weight:700;color:var(--primary);display:flex;align-items:center;gap:6px;}

.lpd-quick-card{background:#fff;border-radius:12px;padding:20px;box-shadow:var(--shadow-sm);border:1px solid var(--border);margin-bottom:16px;}
.lpd-quick-card h4{font-size:14px;font-weight:800;color:var(--text-dark);margin-bottom:14px;display:flex;align-items:center;gap:7px;}
.lpd-quick-card h4 i{color:var(--accent);}
.lpd-qf-row{display:flex;justify-content:space-between;align-items:flex-start;gap:12px;padding:8px 0;border-bottom:1px solid var(--border);font-size:13px;}
.lpd-qf-row:last-child{border-bottom:none;}
.lpd-qf-row span{color:#aaa;flex-shrink:0;width:90px;}
.lpd-qf-row strong{color:var(--text-dark);text-align:right;font-size:12.5px;}
.lpd-qf-rera strong{font-size:11px;word-break:break-all;}

.lpd-wn-card{background:var(--light-bg);border-radius:12px;padding:20px;border:1px solid var(--border);}
.lpd-wn-logo img{height:40px;object-fit:contain;margin-bottom:12px;}
.lpd-wn-card p{font-size:13px;color:#666;line-height:1.7;}
.lpd-wn-card strong{color:var(--primary);}

/* Contact page updates */
.map-img{filter:brightness(.65);}

/* Responsive */
@media(max-width:1024px){
  .lpd-layout{grid-template-columns:1fr;}
  .lpd-enq-card{position:static;}
  .lpd-hero-img-wrap{height:300px;}
  .lpd-hero-inner{bottom:20px;}
  .lpd-facts-inner{overflow-x:auto;}
}
@media(max-width:600px){
  .lp-grid{grid-template-columns:1fr;}
  .lpd-config-grid{grid-template-columns:1fr;}
  .lpd-floorplan-grid{grid-template-columns:1fr;}
  .lpd-highlights-grid{grid-template-columns:1fr;}
  .lpd-hero-inner{flex-direction:column;align-items:flex-start;}
  .lpd-hero-right{text-align:left;}
}

/* ── Contact project tag ── */
.enquiry-project-tag {
  background: #f6ead0; border: 1px solid var(--accent);
  border-radius: 8px; padding: 10px 14px; margin-bottom: 18px;
  font-size: 13.5px; color: var(--primary); display: flex; align-items: center; gap: 6px;
}
.enquiry-project-tag strong { color: var(--text-dark); }

/* ── Map section fix — iframe replaces old img ── */
.map-section { position: relative; height: 420px; overflow: hidden; }
.map-section iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.map-section .map-overlay {
  position: absolute; inset: 0; display: flex;
  align-items: center; justify-content: center; z-index: 2;
  pointer-events: none;
}
.map-section .map-card { pointer-events: all; }

/* ── Combined Properties Listing — Latest Ribbon & Developer Tag ── */
.prop-card { position: relative; }
.prop-card--latest {
  border: 2px solid var(--accent);
  box-shadow: 0 8px 28px rgba(197,160,89,.18);
}
.latest-ribbon {
  position: absolute;
  top: 14px;
  right: -8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px 5px 12px;
  border-radius: 4px 0 0 4px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(197,160,89,.4);
  letter-spacing: .3px;
}
.latest-ribbon::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 0;
  border-style: solid;
  border-width: 0 8px 11px 0;
  border-color: transparent var(--accent-hover) transparent transparent;
}
.prop-developer-row { margin-bottom: 6px; }
.prop-developer-tag {
  font-size: 11.5px;
  color: var(--accent);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.prop-completion-row {
  font-size: 12px;
  color: #f97316;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  margin-bottom: 4px;
}
.filter-pill.status-nl { color: #8b5cf6; }
.filter-pill.status-nl.active { background: #8b5cf6; color: #fff; }
.filter-pill.status-uc { color: #f97316; }
.filter-pill.status-uc.active { background: #f97316; color: #fff; }
.filter-pill.status-ready { color: var(--success); }
.filter-pill.status-ready.active { background: var(--success); color: #fff; }

/* ── Property detail image gallery thumbnails ── */
.lpd-gallery-strip {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 4px;
}
.lpd-gallery-thumb {
  width: 90px;
  height: 64px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  background: none;
  flex-shrink: 0;
  transition: border-color .2s, transform .2s;
}
.lpd-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lpd-gallery-thumb:hover {
  transform: translateY(-2px);
}
.lpd-gallery-thumb.active {
  border-color: var(--accent);
}
.services-3d-row {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow-x: auto;
  background: #ffffff;
  padding: 32px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border: 1px solid #e8e2d5;
}
.service-3d-item {
  flex: 1;
  min-width: 110px;
  text-align: center;
  text-decoration: none;
  color: #333;
  padding: 12px 20px;
  transition: transform .22s ease, background .22s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  border-radius: 10px;
}
.service-3d-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #e8e2d5;
}
.service-3d-item:hover { transform: translateY(-5px); background: #f7f9ff; }
.service-3d-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.service-3d-icon img { max-width: 100%; max-height: 100%; object-fit: contain; }
.service-3d-title { font-size: 13.5px; font-weight: 700; margin: 0; line-height: 1.4; }
.service-3d-item:hover .service-3d-title { color: #1a1a1a; }
@media (max-width: 900px) {
  .services-3d-row { flex-wrap: wrap; gap: 12px; padding: 20px; }
  .service-3d-item { flex: 0 0 calc(33.333% - 12px); }
  .service-3d-item:not(:last-child)::after { display: none; }
}
@media (max-width: 480px) {
  .service-3d-item { flex: 0 0 calc(50% - 8px); }
  .service-3d-icon { width: 60px; height: 60px; }
  .service-3d-title { font-size: 12px; }
}
/* ==========================================================================
   Navbar Core Layout & Base Styles
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  z-index: 1000;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* --- Premium Transparent Logo Layout --- */
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.wn-navbar-logo {
  height: 300px; /* Perfect height to balance layout proportions */
  width: 150px;
  display: block;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), filter 0.3s ease;
  
  /* Creates an upscale depth profile hugging the letters precisely */
  filter: drop-shadow(0px 2px 4px rgba(197, 160, 89, 0.05));
}

/* Micro-interactions on Hover */
.wn-navbar-logo:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0px 6px 12px rgba(0, 0, 0, 0.1));
}

.wn-navbar-logo:active {
  transform: translateY(0);
}

/* --- Center Navigation Menu Links --- */
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  margin: 0;
  padding: 0;
}

.nav-links a {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.3px;
  position: relative;
  padding: 6px 0;
  transition: color 0.3s ease;
}

/* Premium Gold Underline Accent Line */
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #c5a059; /* Brand Luxury Gold */
  transition: width 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links a:hover {
  color: #c5a059;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: #c5a059;
  font-weight: 600;
}

/* --- Inquire CTA Button --- */
.nav-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #111111;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-actions .btn-primary:hover {
  background-color: #c5a059;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.25);
}

/* --- Mobile Responsiveness Setup --- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: #111111;
}

@media (max-width: 992px) {
  .nav-links { gap: 20px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
}
/* Container adjustment to align both items side-by-side */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px; /* Space between the WhatsApp icon and the Inquire button */
}

/* Navbar WhatsApp Button Styling */
.btn-whatsapp-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366; /* Official WhatsApp Green */
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Perfect circle matching navigation UI flows */
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn-whatsapp-nav:hover {
    background-color: #20ba5a; /* Slightly darker green on hover */
    transform: scale(1.05);
    color: #ffffff;
}

/* ── COVERAGE SECTION ── */
.coverage.section { background: var(--light-bg); }

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.coverage-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px 24px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.coverage-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 28px rgba(35,201,157,.14);
  transform: translateY(-5px);
}
.coverage-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #e8f8f4, #d0f0e8);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.coverage-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.coverage-card:hover .coverage-icon {
  box-shadow: 0 0 0 3px var(--primary);
  transform: scale(1.05);
}
.coverage-card h4 { font-size: 17px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.coverage-type {
  display: inline-block; font-size: 11.5px; font-weight: 700;
  color: var(--accent); background: #e8f8f4;
  padding: 3px 10px; border-radius: 20px; margin-bottom: 10px;
}
.coverage-desc { font-size: 12.5px; color: #888; line-height: 1.6; margin: 0; }

@media (max-width: 1024px) { .coverage-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .coverage-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }
@media (max-width: 380px)  { .coverage-grid { grid-template-columns: 1fr; } }
/* ══════════════════════════════════════════════════════════════
   MOBILE NAV FIX — bigger logo, compact Inquire button,
   visible WhatsApp icon, working hamburger menu
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .navbar-inner {
    flex-wrap: nowrap;
    padding: 0 16px;
    gap: 8px;
  }

  /* Logo — bigger & clearly visible on phones */
  .logo { order: 1; }
  .wn-navbar-logo {
    height: 110px !important;
    width: auto !important;
  }

  /* WhatsApp + Inquire Now group — pushed to the right, before the hamburger */
  .nav-actions {
    display: flex !important;
    order: 2;
    margin-left: auto;
    align-items: center;
    gap: 8px;
  }

  .btn-whatsapp-nav {
    width: 34px !important;
    height: 34px !important;
    font-size: 16px !important;
    flex-shrink: 0;
  }

  /* Inquire Now — smaller so it doesn't crowd the bar */
  .nav-actions .btn-primary {
    padding: 7px 10px !important;
    font-size: 11.5px !important;
    gap: 5px !important;
    white-space: nowrap;
  }

  /* Hamburger — stays visible on the far right */
  .hamburger {
    order: 3;
    display: flex !important;
    flex-shrink: 0;
    z-index: 1100;
  }

  .nav-links {
    order: 4;
    display: none;
  }
  .nav-links.open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.1);
    border-top: 1px solid #eee;
    z-index: 1050;
  }
}

/* Extra-small phones — drop the Inquire Now label, keep the icon */
@media (max-width: 360px) {
  .nav-actions .btn-primary .btn-text { display: none; }
  .nav-actions .btn-primary { padding: 7px 9px !important; }
}
/* ==========================================================================
   Section: Meet Our Team
   Manually defines every utility class this section relies on, as a
   fallback in case Tailwind's classes aren't compiling/loading on the
   page. Append this block to the bottom of your main stylesheet so it
   wins the cascade over any earlier/partial Tailwind output.
   ========================================================================== */

/* --- Spacing / layout utilities used in this section only --- */
.py-20        { padding-top: 5rem !important;    padding-bottom: 5rem !important; }
.px-4         { padding-left: 1rem !important;    padding-right: 1rem !important; }
.px-6         { padding-left: 1.5rem !important;  padding-right: 1.5rem !important; }
.pt-3         { padding-top: 0.75rem !important; }
.pt-4         { padding-top: 1rem !important; }
.pb-6         { padding-bottom: 1.5rem !important; }
.mt-1         { margin-top: 0.25rem !important; }
.mt-3         { margin-top: 0.75rem !important; }
.mt-4         { margin-top: 1rem !important; }
.mt-8         { margin-top: 2rem !important; }
.mt-12        { margin-top: 3rem !important; }
.mb-2         { margin-bottom: 0.5rem !important; }
.gap-2        { gap: 0.5rem !important; }
.gap-8        { gap: 2rem !important; }
.space-y-3 > * + * { margin-top: 0.75rem !important; }

@media (min-width: 768px) {
    .md\:py-24     { padding-top: 6rem !important; padding-bottom: 6rem !important; }
    .md\:px-6      { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
    .md\:gap-10    { gap: 2.5rem !important; }
    .md\:mt-16     { margin-top: 4rem !important; }
    .md\:text-5xl  { font-size: 3rem !important; line-height: 1 !important; }
    .md\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
}
@media (min-width: 1024px) {
    .lg\:grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
}

/* --- Sizing --- */
.max-w-7xl    { max-width: 80rem !important; }
.max-w-2xl    { max-width: 42rem !important; }
.w-full       { width: 100% !important; }
.h-full       { height: 100% !important; }
.w-28         { width: 7rem !important; }   /* 112px */
.h-28         { height: 7rem !important; }  /* 112px */

/* --- Flexbox / Grid --- */
.flex         { display: flex !important; }
.flex-col     { flex-direction: column !important; }
.flex-1       { flex: 1 1 0% !important; }
.flex-wrap    { flex-wrap: wrap !important; }
.items-start  { align-items: flex-start !important; }
.grid         { display: grid !important; }
.grid-cols-1  { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }

/* --- Centering (mx-auto only centers within a block-level or
   constrained-width flex/grid item) --- */
.mx-auto      { margin-left: auto !important; margin-right: auto !important; }

/* --- Text alignment --- */
.text-center  { text-align: center !important; }
.text-left    { text-align: left !important; }

/* --- Typography --- */
.text-4xl     { font-size: 2.25rem !important; line-height: 2.5rem !important; }
.text-base    { font-size: 1rem !important; line-height: 1.5rem !important; }
.text-sm      { font-size: 0.875rem !important; line-height: 1.25rem !important; }
.text-xs      { font-size: 0.75rem !important; line-height: 1rem !important; }
.font-bold    { font-weight: 700 !important; }
.font-semibold{ font-weight: 600 !important; }
.font-medium  { font-weight: 500 !important; }
.uppercase    { text-transform: uppercase !important; }
.tracking-wide{ letter-spacing: 0.025em !important; }
.leading-relaxed { line-height: 1.625 !important; }

/* --- Colors --- */
.text-gray-900 { color: #111827 !important; }
.text-gray-800 { color: #1f2937 !important; }
.text-gray-600 { color: #4b5563 !important; }
.text-orange-600 { color: #ea580c !important; }
.text-orange-700 { color: #c2410c !important; }
.bg-orange-50  { background-color: #fff7ed !important; }

/* --- Borders / shape --- */
.rounded-full  { border-radius: 9999px !important; }
.rounded-2xl   { border-radius: 1rem !important; }
.overflow-hidden { overflow: hidden !important; }

/* Gold-tinted ring around avatars (renders even if Tailwind's ring-*
   utilities and CSS variables aren't present on the page) */
.ring-4.ring-orange-100 {
    box-shadow: 0 0 0 4px #ffedd5 !important;
}

/* --- Images --- */
.object-cover  { object-fit: cover !important; }
.object-center { object-position: center !important; }

/* ==========================================================================
   Component-specific rules (belt-and-suspenders on top of the utilities
   above — these target the section's own classes directly, so avatar
   shape/centering and name/role centering hold even if a utility class
   above gets overridden elsewhere on the site)
   ========================================================================== */
.team-avatar {
    display: block !important;
    flex-shrink: 0 !important;
}
.team-avatar img {
    display: block !important;
}
.team-header {
    text-align: center !important;
}
.team-header h3,
.team-header p {
    text-align: center !important;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

/* --- Heading (h2 "Meet Our Team") --- */
.team-heading {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* --- Skill badge spans (Core Expertise pills) ---
   Forces each pill onto one line in the order written, wrapping only
   between pills (never mid-pill), and centers the whole group. */
.skill-badges {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
}
.skill-badges span {
    display: inline-flex !important;
    align-items: center !important;
    white-space: nowrap !important;
    flex: 0 0 auto !important;
}

/* --- Bio paragraph text (bold) --- */
.team-bio p {
    font-weight: 700 !important;
}

/* --- Read More / Read Less toggle --- */
.read-more summary {
    display: inline-block !important;
    margin-top: 0.5rem !important;
    color: #ea580c !important;
    font-size: 0.8125rem !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    list-style: none !important;
    user-select: none !important;
}
.read-more summary::-webkit-details-marker {
    display: none !important;
}
.read-more summary::marker {
    content: "" !important;
}
.read-more summary::after {
    content: " \25BE" !important; /* ▾ */
}
.read-more[open] summary::after {
    content: " \25B4" !important; /* ▴ */
}
.read-more[open] summary {
    margin-bottom: 0.25rem !important;
}