/* ===================== DIDIM PROPERTY - CORPORATE DESIGN ===================== */
:root {
  --primary: #0d1b2a;
  --primary-dark: #050a10;
  --primary-light: #1b3a4b;
  --accent: #415a77;
  --gold: #d4a853;
  --gold-dark: #c4922d;
  --gold-light: #e8c97a;
  --copper: #b87333;
  --text: #1a1a2e;
  --text-light: #4a5568;
  --bg: #ffffff;
  --bg-alt: #fafbfc;
  --bg-warm: #fdfcfa;
  --border: #e2e8f0;
  --border-light: #edf2f7;
  --success: #2d6a4f;
  --shadow-xs: 0 1px 2px rgba(13,27,42,0.04);
  --shadow-sm: 0 2px 6px rgba(13,27,42,0.06);
  --shadow-md: 0 4px 16px rgba(13,27,42,0.08);
  --shadow-lg: 0 8px 32px rgba(13,27,42,0.10);
  --shadow-xl: 0 16px 48px rgba(13,27,42,0.14);
  --radius-sm: 4px;
  --radius: 6px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --transition: 0.2s ease;
  --font-sans: 'Manrope', sans-serif;
  --font-serif: 'Fraunces', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

h1 { font-size: 48px; }
h2 { font-size: 36px; margin-bottom: 16px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}

.center { text-align: center; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: var(--primary-dark);
  border: none;
  font-weight: 600;
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(212,168,83,0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-dark {
  background: var(--primary);
  color: #fff;
  border: 1px solid var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

/* ===================== TOPBAR ===================== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  padding: 10px 0;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.topbar-left span,
.topbar-left a {
  margin-right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.topbar-left i { color: var(--gold); font-size: 12px; }
.topbar-left a:hover { color: var(--gold); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar-right > a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  transition: all var(--transition);
  font-size: 13px;
}

.topbar-right > a:hover {
  background: var(--gold);
  color:#fff;
}

.lang {
  font-weight: 600;
  color: var(--gold);
  margin-left: 8px;
  font-size: 12px;
}

/* ===================== HEADER ===================== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: var(--radius);
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.1;
}

.logo-text small {
  display: block;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}

.logo-light .logo-text { color: #fff; }
.logo-light .logo-text small { color: var(--gold-light); }

.nav {
  display: flex;
  gap: 32px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 8px 0;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav a:hover,
.nav a.active { color: var(--primary); }

.header-cta {
  padding: 10px 20px;
  font-size: 13px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  background: var(--primary-dark);
  color: #fff;
  padding: 120px 0 160px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(5,10,16,0.97) 0%, rgba(13,27,42,0.85) 40%, rgba(27,58,75,0.7) 100%),
    url('bg.jpg') center/cover no-repeat;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 180px;
  background: linear-gradient(to top, var(--bg) 0%, transparent 100%);
  z-index: 1;
}

.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  text-align: left;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  max-width: 540px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stats > div,
.hero-stats > a {
  display: flex;
  flex-direction: column;
}

.hero-stats > a:hover strong {
  color: var(--gold-light);
}

.hero-stats strong {
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stats span {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===================== CATEGORIES ===================== */
.categories {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: -70px;
  position: relative;
  z-index: 5;
  margin-bottom: 80px;
}

.cat-card {
  background: var(--bg);
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
}

.cat-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--gold);
  transition: width var(--transition);
}

.cat-card:hover::before {
  width: 40px;
}

.cat-card:hover {
  border-color: var(--border);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.cat-card i {
  font-size: 32px;
  color: var(--primary);
  margin-bottom: 14px;
  opacity: 0.8;
  transition: all var(--transition);
}

.cat-card:hover i {
  color: var(--gold);
  opacity: 1;
}

.cat-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}

.cat-card span {
  font-size: 13px;
  color: var(--text-light);
}

/* ===================== LISTINGS ===================== */
.listings {
  padding: 0 24px 100px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}

.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  padding: 10px 18px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}

.chip:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.chip.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}

.card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img {
  transform: scale(1.05);
}

.card-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.badge {
  padding: 5px 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-radius: 4px;
  background: var(--primary);
  color: #fff;
}

.badge.for-sale { background: #27ae60; }
.badge.for-rent { background: #3498db; }
.badge.firsat { background: #c0392b; }

.card-ref {
  position: absolute;
  top: 12px;
  right: 12px;
  min-width: 44px;
  height: 32px;
  padding: 0 10px;
  background: rgba(255,255,255,0.95);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  z-index: 2;
}

.card-photos {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-body {
  padding: 20px;
}

.card-price {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--primary);
  margin-bottom: 10px;
}

.card-price span {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
}

.card:hover .card-price {
  color: #E0B343;
}

.card-title {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

.card-loc {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.card-loc i { color: var(--gold); font-size: 12px; }

.card-features {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
}

.card-features div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-features i {
  color:#333333;
  font-size: 12px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 48px;
}

.pagination a,
.pagination span {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}

.pagination a:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.pagination .active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

/* Empty State */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 24px;
  color: var(--text-light);
}

.empty-state i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}

.empty-state h3 {
  font-family: var(--font-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}

/* ===================== WHY SECTION ===================== */
.why {
  background: var(--bg-alt);
  padding: 100px 0;
}

.why h2 { margin-bottom: 16px; }

.seo-copy {
  max-width: 700px;
  margin: 0 auto 16px;
  color: var(--text-light);
  line-height: 1.7;
  text-align: center;
}

.seo-copy.sales-proof {
  color: var(--text);
  font-weight: 500;
  margin-bottom: 48px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.why-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.icon-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--gold);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-md);
}

.why-card h3 {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===================== VIDEOS ===================== */
.featured-video {
  margin: 60px auto 0;
  padding: 0;
}

.featured-video-frame {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.seo-featured-video {
  max-width: 1080px;
}

.home-gallery {
  max-width: 1080px;
  margin: 60px auto 0;
}

.home-gallery-head {
  margin-bottom: 32px;
  text-align: left;
}

.home-gallery-head h2 {
  color: var(--primary);
  font-size: 36px;
  line-height: 1.05;
}

.home-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px 30px;
}

.home-gallery-item {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--primary-dark);
  box-shadow: var(--shadow-xs);
}

.home-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}

.home-gallery-item:hover img {
  transform: scale(1.05);
  opacity: .86;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(6, 19, 32, .92);
}

.gallery-lightbox.is-open {
  display: flex;
}

.gallery-lightbox-image {
  display: block;
  max-width: min(1180px, 92vw);
  max-height: 84vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
}

.gallery-lightbox-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 18px;
  color: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.gallery-lightbox-button {
  position: absolute;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background .2s ease, transform .2s ease;
}

.gallery-lightbox-button:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: scale(1.05);
}

.gallery-lightbox-close {
  top: 22px;
  right: 22px;
}

.gallery-lightbox-prev {
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-next {
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
  transform: translateY(-50%) scale(1.05);
}

body.gallery-lightbox-open {
  overflow: hidden;
}

.home-videos {
  padding: 100px 24px;
}

.section-intro {
  max-width: 500px;
  color: var(--text-light);
  line-height: 1.7;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.video-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.video-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--primary-dark);
}

.video-frame-detail {
  border-radius: var(--radius);
  overflow: hidden;
}

.detail-section .video-frame-detail + .video-frame-detail {
  margin-top: 28px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube-placeholder {
  position: absolute;
  inset: 0;
  background: var(--primary-dark);
  cursor: pointer;
}

.youtube-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background var(--transition);
}

.youtube-placeholder:hover::after {
  background: rgba(0,0,0,0.2);
}

.youtube-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.youtube-placeholder:hover img {
  transform: scale(1.03);
}

.youtube-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 64px;
  height: 64px;
  background: var(--gold);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: all var(--transition);
}

.youtube-placeholder:hover .youtube-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-play i { margin-left: 3px; }

.video-body {
  padding: 20px;
}

.video-body span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.video-body h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.video-body a {
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.video-body a:hover { color: var(--primary); }

/* ===================== AREAS ===================== */
.areas {
  padding: 100px 24px;
  background: var(--bg-alt);
}

.areas .section-head { align-items: flex-start; }
.areas-title-line { color: var(--gold); }

.site-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.site-overview > div {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition: .35s ease, transform .35s ease, box-shadow .35s ease !important;
}

.site-overview > div:hover {
  border-color: var(--gold);
}

.site-overview i {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 12px;
}

.site-overview strong {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 4px;
}

.site-overview span {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.5;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.area-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}

.area-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.area-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.area-card h3 {
  font-size: 22px;
}

.area-card-top span {
  flex-shrink: 0;
  background: var(--bg-dark);
  color: var(--gold-dark);
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

.area-card p {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
}

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.area-tags span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-dark);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text);
}

.area-tags i {
  color: var(--gold);
  font-size: 10px;
}

/* ===================== SEO CONTENT ===================== */
.seo-content {
  padding: 80px 24px;
}

.seo-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.seo-block h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.seo-block p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 12px;
}

/* ===================== DETAIL VIEW ===================== */
.site-breadcrumb-wrap {
  padding-top: 22px;
}

.is-content-page .site-breadcrumb-wrap {
  margin-bottom: 24px;
}

.site-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.site-breadcrumb a {
  color: var(--accent);
}

.site-breadcrumb a:hover {
  color: var(--gold-dark);
}

.site-breadcrumb-separator,
.site-breadcrumb-current {
  color: var(--text-light);
}

.detail-wrap {
  padding: 20px 24px 100px;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  padding: 10px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 24px;
  transition: all var(--transition);
}

.detail-back:hover {
  background: var(--primary);
  color: #fff;
}

.detail-header { margin-bottom: 28px; }

.detail-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.detail-badges {
  display: flex;
  gap: 8px;
  position: relative;
  z-index: 5;
}

.detail-badges a.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  pointer-events: auto;
}

.detail-listing-no {
  font-size: 13px;
  color: var(--text-light);
}

.detail-listing-no strong {
  color: var(--primary);
  font-weight: 600;
}

.detail-title-block {
  max-width:none;
  width:100%;
}

.detail-header h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.detail-loc-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
}

.detail-loc {
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.detail-loc i { color: var(--gold); }
.detail-loc a {
  color: inherit;
  text-decoration: none;
}
.detail-loc a:hover { color: var(--accent); }

.detail-price-wrap { margin-top: 16px; }

.detail-price {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: -0.02em;
}

.detail-price small {
  display: block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  margin-top: 2px;
}

.detail-share-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  gap: 24px;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
}

.detail-share-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #283238;
  font-size: 19px;
  line-height: 1;
  text-decoration: none;
  transition: color .2s ease, transform .2s ease;
}

.detail-share-list a:hover {
  color: var(--gold-dark);
  transform: translateY(-1px);
}

/* Gallery */
.gallery {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 16px;
}

.gallery img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,0.9);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--primary);
  transition: all var(--transition);
  z-index: 3;
}

.gallery-nav:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.gallery-nav-prev { left: 16px; }
.gallery-nav-next { right: 16px; }

.thumb-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.thumb-strip a {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  transition: all var(--transition);
}

.thumb-strip a:hover,
.thumb-strip a.active {
  border-color: var(--gold);
}

.thumb-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Detail Body */
.detail-body {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
}

.detail-section {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 20px;
}
.not-found-main {
  min-height: clamp(360px, 58vh, 680px);
  display: flex;
  align-items: center;
}
.not-found-wrap {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 80px;
}
.not-found-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.not-found-panel h1 {
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.12;
  margin-bottom: 12px;
  overflow-wrap: break-word;
}
.not-found-panel p {
  font-size: 16px;
  margin: 0;
}

.detail-section h3 {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 0;
  display: inline-block;
  position: relative;
}

.detail-section h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 108px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg,var(--gold),var(--accent));
}

.detail-section p {
  line-height: 1.8;
  color: var(--text);
}

.detail-related {
  margin-top: 36px;
  padding-top: 12px;
}

.detail-related .section-head {
  margin-bottom: 22px;
}

.property-description {
  white-space: normal;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 24px;
}

.specs > div {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 14px;
}

.specs > div span:first-child { color: var(--text-light); }
.specs > div span:last-child { font-weight: 500; color: var(--text); }
.specs a {
  color: inherit;
  text-decoration: none;
}
.specs a:hover { color: var(--accent); }

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.features-list > div {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.features-list i {
  color: var(--success);
  font-size: 14px;
}

/* Contact Card */
.contact-card {
  background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow-xl);
}

.contact-card h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 4px;
}

.agent {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}

.agent-avatar {
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--primary-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
}

.agent-logo {
  width:56px;
  height:56px;
  flex:0 0 56px;
  display:block;
  object-fit:cover;
  border-radius:var(--radius);
}

.agent-info strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

.agent-info span {
  font-size: 11px;
  opacity: 0.7;
  letter-spacing: 1px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input,
.contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: all var(--transition);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.12);
}

.contact-form textarea {
  resize: vertical;
  min-height: 90px;
}

.contact-form button {
  margin-top: 4px;
}

.contact-direct {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.contact-direct a {
  flex: 1;
  text-align: center;
  padding: 12px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 500;
  transition: all var(--transition);
}

.contact-direct a:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.contact-direct i { margin-right: 6px; }

.similar-sidebar {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  padding: 20px;
  margin-bottom: 22px;
}
.similar-sidebar-eyebrow {
  margin: 0 0 6px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}
.similar-sidebar h2 {
  margin: 0 0 16px;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}
.similar-sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.similar-sidebar-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 10px;
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  color: inherit;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.similar-sidebar-card:hover {
  transform: translateY(-2px);
  border-color: rgba(212,168,83,0.5);
  box-shadow: var(--shadow-sm);
}
.similar-sidebar-img {
  display: block;
  align-self: center;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: 6px;
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
}
.similar-sidebar-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.similar-sidebar-card:hover .similar-sidebar-img img {
  transform: scale(1.06);
}
.similar-sidebar-content {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.similar-sidebar-price {
  display: block;
  margin-bottom: 4px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}
.similar-sidebar-title {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.similar-sidebar-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 9px;
  margin-top: 7px;
  color: var(--text-light);
  font-size: 12px;
  line-height: 1.3;
}
.similar-sidebar-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.similar-sidebar-meta i {
  color: var(--gold);
}
.similar-sidebar-all {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 11px 12px;
  background: var(--primary);
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}
.similar-sidebar-all:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.ds-region-side-stack {
  position: sticky;
  top: 98px;
  display: grid;
  gap: 20px;
  align-self: start;
}
.ds-region-side-stack .ds-region-side {
  position: static;
  top: auto;
}
.ds-region-side-stack .similar-sidebar {
  margin-bottom: 0;
}
.ds-region-side-stack .similar-sidebar-list {
  display: flex;
  flex-direction: column;
}

.form-note {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 10px;
}

/* ===================== FOOTER ===================== */
.footer {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: rgba(255,255,255,0.75);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer h3 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  position: relative;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.footer ul { list-style: none; }

.footer ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer ul li a:hover {
  color: var(--gold);
}

.footer-about {
  margin: 20px 0;
  font-size: 14px;
  line-height: 1.7;
}

.social {
  display: flex;
  gap: 8px;
}

.social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all var(--transition);
}

.social a:hover {
  background: var(--gold);
  color: var(--primary-dark);
}

.footer-language-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.footer-language-option {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: transform .55s ease, background .55s ease, border-color .55s ease, color .55s ease, box-shadow .55s ease !important;
  will-change: transform, background, color;
}

.footer-language-option:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.footer-language-option.is-active {
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.footer-language-option.is-active:hover {
  background: var(--gold);
  color: var(--primary-dark);
  transform: translateY(-3px);
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-list i {
  color: var(--gold);
  margin-top: 3px;
  font-size: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  font-size: 13px;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* ===================== WHATSAPP FAB ===================== */
.whatsapp-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: all var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .site-overview { grid-template-columns: repeat(2, 1fr); }
  .video-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .detail-body { grid-template-columns: 1fr; }
  .hero h1 { font-size: 42px; }
}

@media (max-width: 768px) {
  .topbar-left { display: none; }
  .nav { display: none; }
  h2 { font-size: 28px; }
  .hero { padding: 60px 0 100px; }
  .hero h1 { font-size: 32px; }
  .hero-stats { gap: 12px; }
  .hero-stats > div,
  .hero-stats > a { padding: 16px; }
  .hero-stats strong { font-size: 32px; }
  .grid { grid-template-columns: 1fr; }
  .categories { grid-template-columns: repeat(2, 1fr); margin-top: -50px; }
  .areas-grid { grid-template-columns: 1fr; }
  .site-overview { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .detail-header h1 { font-size: 26px; }
  .detail-price { font-size: 28px; }
  .gallery img { height: 280px; }
  .specs { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .section-intro { max-width: 100%; }
}

@media (max-width: 480px) {
  .categories { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .area-card { min-height: auto; }
}

/* Performance */
@supports (content-visibility: auto) {
  .listings, .why, .featured-video, .home-videos, .areas, .footer, .detail-wrap, .seo-content {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
  }
}

/* ===================== MODERN REFRESH 2026 ===================== */
:root {
  --primary:#0b1f33;
  --primary-dark:#061320;
  --primary-light:#173a56;
  --navy:#0b1f33;
  --accent:#0ea5a4;
  --accent-dark:#0b7473;
  --accent-soft:#d8f5f1;
  --gold:#f4b860;
  --gold-dark:#c77d25;
  --gold-light:#ffe0a3;
  --copper:#d46a3d;
  --success:#14805e;
  --text:#162230;
  --text-light:#5d6d7e;
  --muted:#6f7f8f;
  --bg:#fffdf8;
  --bg-alt:#f7f2e8;
  --bg-warm:#fbefe1;
  --bg-dark:#eef6f3;
  --light:#f6efe4;
  --border:rgba(17,39,61,.12);
  --border-light:rgba(17,39,61,.08);
  --line:rgba(17,39,61,.14);
  --shadow-xs:0 1px 2px rgba(6,19,32,.05);
  --shadow-sm:0 8px 24px rgba(6,19,32,.08);
  --shadow-md:0 18px 44px rgba(6,19,32,.11);
  --shadow-lg:0 28px 70px rgba(6,19,32,.16);
  --shadow-xl:0 36px 96px rgba(6,19,32,.22);
  --radius-sm:12px;
  --radius:16px;
  --radius-lg:24px;
  --radius-xl:34px;
  --transition:.24s cubic-bezier(.2,.8,.2,1);
  --font-sans:'Manrope',sans-serif;
  --font-serif:'Fraunces',serif;
}

body {
  min-height:100vh;
  background:
    radial-gradient(circle at 8% 5%, rgba(244,184,96,.22), transparent 28rem),
    radial-gradient(circle at 92% 20%, rgba(14,165,164,.16), transparent 24rem),
    linear-gradient(180deg,#fffaf1 0%,#fffdf8 42%,#f8f1e6 100%);
  color:var(--text);
  font-family:var(--font-sans);
  overflow-x:hidden;
}

body::before {
  content:'';
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background-image:linear-gradient(rgba(11,31,51,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(11,31,51,.035) 1px,transparent 1px);
  background-size:56px 56px;
  mask-image:linear-gradient(to bottom,rgba(0,0,0,.5),transparent 78%);
}

::selection { background:rgba(244,184,96,.45); color:var(--primary-dark); }
:focus-visible { outline:3px solid rgba(14,165,164,.34); outline-offset:3px; }

h1,h2,h3,h4,h5,h6 {
  font-family:var(--font-serif);
  font-weight:750;
  line-height:1.04;
  letter-spacing:-.045em;
}
h1 { font-size:clamp(42px,6vw,82px); }
h2 { font-size:clamp(32px,4.2vw,58px); }
h3 { font-size:clamp(22px,2.2vw,30px); }

.eyebrow,.hero-eyebrow,.cta-eyebrow {
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--accent-dark);
  font-size:11px;
  font-weight:800;
  letter-spacing:2.4px;
}
.eyebrow::before,.hero-eyebrow::before,.cta-eyebrow::before {
  content:'';
  width:28px;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--gold),var(--accent));
}

.btn {
  min-height:46px;
  padding:13px 22px;
  border-radius:999px;
  font-weight:800;
  letter-spacing:-.01em;
  transition:color var(--transition),background var(--transition),border-color var(--transition),transform var(--transition),box-shadow var(--transition);
}
.btn-primary {
  background:linear-gradient(135deg,var(--gold) 0%,#ffd58b 100%);
  color:var(--primary-dark);
  border:1px solid rgba(255,255,255,.55);
  box-shadow:0 14px 34px rgba(199,125,37,.28);
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 20px 42px rgba(199,125,37,.34); }
.btn-outline { background:rgba(255,255,255,.62); border:1px solid rgba(11,31,51,.16); backdrop-filter:blur(12px); }
.btn-outline:hover,.btn-dark:hover { transform:translateY(-2px); }

.topbar {
  background:linear-gradient(90deg,var(--primary-dark),#0e2b3e 58%,#0d4f52);
  border-bottom:1px solid rgba(255,255,255,.08);
  color:rgba(255,255,255,.82);
  font-size:12px;
  padding:9px 0;
}
.topbar-left { display:flex; align-items:center; flex-wrap:wrap; gap:18px; }
.topbar-left span,.topbar-left a { margin-right:0; }
.topbar-left i { color:var(--gold-light); }
.topbar-right > a,.lang {
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
}
.topbar-right > a:hover { transform:translateY(-2px); background:var(--gold); }
.lang { min-height:31px; padding:0 12px; display:inline-flex; align-items:center; color:var(--gold-light); }

.topbar-right .language-switch {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-left:4px;
}
.topbar-right .language-option {
  width:30px;
  height:30px;
  padding:0;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.08);
  box-shadow:none;
  min-height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:rgba(255,255,255,.82);
  font-size:12px;
  font-weight:800;
  line-height:1;
  transition:transform .55s ease, background .55s ease, border-color .55s ease, color .55s ease, box-shadow .55s ease !important;
  will-change:transform, background, color;
}
.topbar-right .language-option::before {
  content:none;
}
.topbar-right .language-option:hover {
  color:var(--primary-dark);
  background:var(--gold);
  transform:translateY(-3px);
}
.topbar-right .language-option.is-active {
  color:#fff;
  background:rgba(255,255,255,.12);
}
.topbar-right .language-option.is-active:hover {
  color:var(--primary-dark);
  background:var(--gold);
  transform:translateY(-3px);
}

@media (max-width:640px) {
  .topbar {
    padding:8px 0;
  }
  .topbar-inner {
    justify-content:center;
    gap:8px;
  }
  .topbar-left {
    width:100%;
    justify-content:center;
    gap:0;
  }
  .topbar-left a[href^="mailto"],
  .topbar-left span {
    display:none;
  }
  .topbar-right {
    width:100%;
    justify-content:center;
    gap:7px;
    flex-wrap:nowrap;
  }
  .topbar-right > a {
    width:28px;
    height:28px;
  }
  .topbar-right .language-switch {
    margin-left:2px;
    gap:7px;
  }
  .topbar-right .language-option {
    width:28px;
    height:28px;
    min-height:28px;
    font-size:12px;
  }
}

.header {
  border-bottom:1px solid rgba(11,31,51,.08);
  backdrop-filter:blur(22px);
  box-shadow:0 12px 38px rgba(6,19,32,.08);
}
.header-inner { padding:14px 24px; }
.logo-mark {
  width:52px;
  height:52px;
  color:var(--gold-light);
}
.logo-text {
  font-size:23px;
  font-weight:800;
  letter-spacing:-.035em;
}
.logo-text small { color:var(--accent-dark); font-weight:800; margin-top:5px; }
.logo-light .logo-text small { color:var(--gold-light); }
.logo-light .logo-mark { box-shadow:none; }
.nav {
  align-items:center;
  gap:4px;
  padding:5px;
}
.nav a {
  color:var(--text-light);
  padding:10px 16px;
  border-radius:999px;
  font-size:15px;
  font-weight:800;
}
.nav a::after { display:none; }
.nav a:hover,.nav a.active { color:var(--primary); background:#fff; box-shadow:var(--shadow-xs); }
.header-cta {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-height:auto;
  padding:12px 22px;
  border:0;
  border-radius:8px;
  background:#0C405C;
  color:#fff;
  box-shadow:none;
  text-shadow:0 1px 2px rgba(0,0,0,.20);
  font-size:14px;
  font-weight:600;
  letter-spacing:.3px;
  transition:background .35s ease, transform .35s ease, box-shadow .35s ease;
}
.header-cta i { color:currentColor; }
.header-cta:hover {
  background:#082f44;
  color:#fff;
  transform:translateY(-3px);
  box-shadow:0 10px 28px rgba(12,64,92,.22);
}

.hero {
  min-height:675px;
  padding:128px 0 172px;
  isolation:isolate;
}
.hero::before {
  background:linear-gradient(105deg,rgba(6,19,32,.95) 0%,rgba(6,19,32,.86) 42%,rgba(9,73,78,.52) 68%,rgba(244,184,96,.20) 100%),url('bg.jpg') center/cover no-repeat;
  z-index:-3;
}
.hero::after {
  top:112px;
  right:max(24px,calc((100vw - 1280px) / 2 + 24px));
  left:auto;
  bottom:auto;
  width:clamp(260px,30vw,430px);
  height:clamp(340px,42vw,530px);
  border:1px solid rgba(255,255,255,.22);
  border-radius:42px;
  background:linear-gradient(150deg,rgba(255,255,255,.22),rgba(255,255,255,.04)),radial-gradient(circle at 68% 18%,rgba(244,184,96,.32),transparent 150px),rgba(255,255,255,.08);
  box-shadow:0 36px 120px rgba(0,0,0,.34);
  backdrop-filter:blur(9px);
  z-index:-1;
  transform:rotate(4deg);
}
.hero-overlay {
  display:block;
  position:absolute;
  inset:auto 0 0;
  height:180px;
  background:linear-gradient(to top,var(--bg),transparent);
  pointer-events:none;
  z-index:1;
}
.hero-content { max-width:1060px; }
.hero-eyebrow { color:var(--gold-light); }
.hero h1 { color:#fff; margin-bottom:26px; text-wrap:balance; text-shadow:0 20px 60px rgba(0,0,0,.34); }
.hero h1 span { color:var(--gold-light); font-style:italic; }
.hero-sub { max-width:910px; color:rgba(255,255,255,.78); font-size:clamp(17px,1.65vw,21px); font-weight:500; }
.hero-stats { display:grid; grid-template-columns:repeat(2,minmax(180px,1fr)); gap:14px; max-width:520px; }
.hero-stats>div,.hero-stats>a {
  padding:18px 20px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:24px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(14px);
  box-shadow:0 18px 40px rgba(0,0,0,.14);
}
.hero-stats>a:hover { transform:none; background:rgba(255,255,255,.13); }
.hero-stats>a:hover strong {
  color:#ffffff;
  text-shadow:0 0 18px rgba(255,255,255,.34), 0 2px 12px rgba(0,0,0,.38);
}
.hero-stats strong {
  color:var(--gold);
  font-size:clamp(34px,4vw,52px);
  font-weight:800;
  transition:color .45s ease, text-shadow .45s ease;
}
.hero-stats span { color:rgba(255,255,255,.68); font-weight:800; }

.categories { gap:16px; margin-top:-82px; margin-bottom:88px; }
.cat-card {
  padding:28px 18px;
  border-radius:26px;
  background:linear-gradient(180deg,rgba(255,255,255,.94),rgba(255,255,255,.74)),radial-gradient(circle at 50% 0%,rgba(14,165,164,.14),transparent 82px);
  border:1px solid rgba(255,255,255,.72);
  box-shadow:var(--shadow-sm);
  overflow:hidden;
  backdrop-filter:blur(14px);
}
.cat-card::before {
  inset:auto 18px 14px;
  height:3px;
  border-radius:999px;
  background:linear-gradient(90deg,transparent,var(--gold),var(--accent),transparent);
  transform:scaleX(0);
  width:auto;
}
.cat-card:hover::before { transform:scaleX(1); }
.cat-card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); border-color:rgba(244,184,96,.42); }
.cat-card i {
  width:54px;
  height:54px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:var(--accent-soft);
  color:var(--accent-dark);
  font-size:24px;
}
.cat-card:hover i { color:var(--primary-dark); background:var(--gold-light); transform:rotate(-4deg) scale(1.06); }
.cat-card h3 { font-size:14px; font-weight:900; letter-spacing:-.02em; }
.cat-card span { font-weight:700; }

.listings { padding-bottom:108px; }
.section-head { margin-bottom:38px; }
.section-head h1,
.section-head h2 { font-size:clamp(30px,3vw,36px); text-wrap:balance; }
.compact-virtual-listings .section-head h1 {
  max-width:920px;
  font-size:46px;
  line-height:1.04;
}
.filter-chips { gap:10px; max-width:1060px; }
.chip {
  padding:10px 16px;
  background:rgba(255,255,255,.76);
  border:1px solid rgba(11,31,51,.12);
  border-radius:999px;
  color:var(--text-light);
  font-size:12px;
  font-weight:600;
  box-shadow:var(--shadow-xs);
  transition:transform .55s ease, background .55s ease, border-color .55s ease, color .55s ease, box-shadow .55s ease;
}
.chip:hover { transform:translateY(-3px); border-color:rgba(14,165,164,.36); color:var(--accent-dark); background:#fff; }
.chip.active { background:var(--primary); border-color:var(--primary); color:#fff; box-shadow:0 14px 34px rgba(6,19,32,.22); }
.filter-panel {
  display:flex;
  flex:0 0 100%;
  width:100%;
  max-width:none;
  flex-direction:column;
  align-items:stretch;
  gap:10px;
  margin-left:0;
}
.filter-row {
  display:flex;
  justify-content:flex-start;
  align-items:center;
  gap:10px;
  min-width:0;
}
.filter-label {
  flex:0 0 auto;
  min-width:74px;
  text-align:left;
  font-size:12px;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--accent-dark);
}
.filter-row .filter-chips {
  justify-content:flex-start;
  width:100%;
  min-width:0;
  max-width:none;
}
.location-chip {
  padding:9px 14px;
  font-size:12px;
}
.filter-row-sort {
  justify-content:flex-start;
}
.sort-chip {
  color:var(--primary);
}
.mobile-filter-panel {
  display:none;
}
.is-home-list-page .home-listings {
  padding-bottom:82px;
}
.is-home-list-page .home-listing-head {
  align-items:flex-end;
  gap:16px 22px;
  margin-bottom:34px;
}
.is-home-list-page .home-listing-head > div:first-child {
  flex:1 1 360px;
  min-width:0;
}
.is-home-list-page .home-listing-head .eyebrow {
  color:var(--accent-dark);
}
.is-home-list-page .home-listing-head h2 {
  margin-bottom:0;
  font-size:clamp(34px,3.2vw,40px);
  line-height:1.05;
}
.home-filter-panel,
.home-sort-panel {
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.home-sort-panel {
  flex:0 0 auto;
  justify-content:flex-end;
  flex-wrap:nowrap;
}
.home-filter-panel {
  flex:0 0 100%;
  width:100%;
  justify-content:flex-end;
  flex-wrap:wrap;
}
.home-filter-panel .chip,
.home-sort-panel .chip {
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 18px;
  white-space:nowrap;
  font-size:13px;
  font-weight:700;
}
.home-listing-actions {
  display:flex;
  justify-content:center;
  margin-top:42px;
}
.home-listing-more {
  min-height:40px;
  padding:9px 18px;
  border-radius:4px;
  background-color:var(--primary);
  color:#fff;
  font-size:14px;
  font-weight:500;
  box-shadow:none;
  transition:background .35s ease, transform .35s ease, box-shadow .35s ease !important;
}
.home-listing-more:hover {
  background-color:#fff;
  color:var(--primary);
  transform:none;
}
.grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:26px; }
.card {
  border-radius:28px;
  background:rgba(255,255,255,.88);
  border:1px solid #dadada;
  box-shadow:var(--shadow-sm);
  backdrop-filter:blur(10px);
  transition:.35s;
  cursor:pointer;
}
.card:hover { transform:translateY(-8px); box-shadow:var(--shadow-lg); }
.card-img { height:238px; background:var(--primary-dark); }
.card-img img { transition:.6s; }
.card-img::after { content:''; position:absolute; inset:0; background:linear-gradient(to top,rgba(6,19,32,.58),transparent 54%); pointer-events:none; }
.card:hover .card-img img { transform:scale(1.08); }
.card-badges { top:14px; left:14px; gap:7px; z-index:3; }
.badge { padding:7px 11px; border-radius:999px; font-weight:900; box-shadow:0 8px 22px rgba(0,0,0,.16); }
.badge.for-sale { background:linear-gradient(135deg,#15915f,#37b878); }
.badge.for-rent { background:linear-gradient(135deg,#0e7fb4,#3ea8d9); }
.badge.firsat { background:linear-gradient(135deg,#c0472d,#f0713d); }
.card-ref { border-radius:999px; font-weight:900; box-shadow:0 12px 28px rgba(6,19,32,.18); }
.card-photos { bottom:14px; right:14px; border-radius:999px; background:rgba(6,19,32,.74); font-weight:800; backdrop-filter:blur(10px); z-index:3; }
.card-body { padding:22px; }
.card-price { font-size:24px; font-weight:400; letter-spacing:-.05em; transition:color .6s ease; }
.card-title { font-size:16px; font-weight:400; min-height:46px; letter-spacing:-.02em; }
.card-loc { color:var(--text-light); font-weight:700; }
.card-loc i { color:var(--accent-dark); }
.card-features { gap:8px; border-top:1px solid var(--border-light); font-size:12px; font-weight:800; }
.card-features i { color:#333333; }
.pagination a,.pagination span { border-radius:999px; background:rgba(255,255,255,.74); font-weight:900; }
.pagination a:hover { transform:translateY(-2px); border-color:var(--accent); color:var(--accent-dark); }
.empty-state { background:rgba(255,255,255,.7); border:1px solid rgba(255,255,255,.78); border-radius:30px; }

.compact-virtual-title {
  padding-top:64px;
  padding-bottom:18px;
}

.compact-virtual-title .eyebrow {
  margin-bottom:14px;
}

.compact-virtual-title h1 {
  max-width:920px;
  color:var(--primary-dark);
  font-size:46px;
  line-height:1.04;
  text-wrap:balance;
}

.compact-virtual-listings {
  padding-top:18px;
  padding-bottom:64px;
}

.is-compact-virtual-page .footer {
  margin-top:0;
}

.why { background:linear-gradient(180deg,rgba(247,242,232,.92),rgba(255,253,248,.8)); }
.why-card,.video-card,.site-overview>div,.area-card,.seo-block,.detail-section {
  background:rgba(255,255,255,.82);
  border:1px solid #dadada;
  border-radius:28px;
  box-shadow:var(--shadow-sm);
}
.why-card:hover,.video-card:hover,.site-overview>div:hover,.area-card:hover { transform:translateY(-6px); box-shadow:var(--shadow-md); }
.video-card { transition:.3s; }
.video-card:hover { transform:translateY(-5px); border-color:#dadada; }
.icon-circle { border-radius:22px; background:linear-gradient(135deg,var(--primary),var(--accent-dark)); color:var(--gold-light); }

.home-videos { padding-top:102px; padding-bottom:102px; }
.section-intro { max-width:540px; font-weight:600; }
.video-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:26px; }
.video-card { overflow:hidden; }
.video-frame-detail { border-radius:22px; }
.detail-section .video-frame-detail + .video-frame-detail { margin-top:28px; }
.youtube-placeholder { width:100%; height:100%; overflow:hidden; color:#fff; }
.youtube-placeholder::after { background:linear-gradient(to top,rgba(6,19,32,.58),rgba(6,19,32,.08)); transition:.25s; }
.youtube-placeholder img { transition:.25s; }
.youtube-placeholder:hover img { transform:scale(1.04); }
.youtube-play { width:68px; height:68px; background:linear-gradient(135deg,var(--gold),var(--gold-light)); box-shadow:0 18px 42px rgba(0,0,0,.28); transition:.25s; }
.video-body { padding:22px; }
.video-body span { color:#ff0000; font-weight:900; }
.video-body h3 { font-size:22px; }
.video-body a { font-weight:900; }

.areas {
  padding-top:92px;
  padding-bottom:92px;
  background:radial-gradient(circle at 12% 0%,rgba(244,184,96,.22),transparent 280px),linear-gradient(135deg,rgba(15,72,79,.08),rgba(247,242,232,.82));
  border-radius:42px;
  margin-bottom:22px;
}
.areas-title-line { color:var(--accent-dark); font-style:italic; }
.site-overview>div { border-radius:24px; padding:22px; }
.site-overview i { width:44px; height:44px; display:inline-flex; align-items:center; justify-content:center; border-radius:15px; color:var(--primary-dark); background:var(--gold-light); }
.site-overview strong,.area-tags span { font-weight:900; }
.areas-grid { grid-template-columns:repeat(4,minmax(0,1fr)); gap:20px; }
.area-card { display:block; padding:24px; min-height:270px; color:inherit; text-decoration:none; cursor:pointer; transition:.35s ease, transform .35s ease, box-shadow .35s ease !important;}
.area-card:hover { color:inherit; text-decoration:none; }
.area-card h3 { font-size:25px; }
.area-card-top span { border-radius:999px; background:var(--accent-soft); color:var(--accent-dark); font-weight:900; }
.area-card p { font-weight:600; }
.area-tags span { border-radius:999px; background:rgba(244,184,96,.16); }

.seo-content { background:transparent; }
.seo-block { max-width:850px; padding:42px; border-radius:34px; }
.seo-block h2 { font-size:clamp(30px,3vw,44px); }
.seo-block p { font-weight:600; }

.content-page-hero {
  padding:72px 0 54px;
  background:
    radial-gradient(circle at 14% 0%,rgba(244,184,96,.28),transparent 280px),
    linear-gradient(135deg,rgba(247,242,232,.92),rgba(255,253,248,.76));
}
.content-page-hero-inner {
  max-width:980px;
}
.content-page-hero .detail-back {
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:34px;
}
.content-page-hero h1 {
  max-width:840px;
  margin-top:14px;
  color:var(--primary);
}
.content-page-hero p:not(.eyebrow) {
  max-width:760px;
  margin-top:18px;
  color:var(--text-light);
  font-size:18px;
  font-weight:650;
  line-height:1.7;
}
.content-page {
  padding-top:58px;
  padding-bottom:36px;
}
.content-page-images {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:18px;
  margin-bottom:34px;
}
.content-page-images img {
  width:100%;
  height:clamp(220px,30vw,390px);
  object-fit:cover;
  border-radius:28px;
  box-shadow:var(--shadow-md);
}
.content-copy {
  max-width:900px;
  margin:0 auto;
  padding:44px;
  border:1px solid rgba(17,39,61,.09);
  border-radius:34px;
  background:rgba(255,255,255,.82);
  box-shadow:var(--shadow-sm);
  color:var(--text);
  font-size:17px;
  font-weight:560;
  line-height:1.8;
}
.content-copy :is(h1,h2,h3) {
  margin:0 0 18px;
  color:var(--primary);
}
.content-copy p {
  margin:0 0 18px;
}
.content-copy a {
  color:var(--accent-dark);
  font-weight:850;
}
.content-copy iframe {
  width:100%;
  min-height:420px;
  margin:20px 0;
  border:0;
  border-radius:28px;
  box-shadow:var(--shadow-sm);
}
.content-section {
  padding-top:70px;
  padding-bottom:42px;
}
.page-gallery-grid {
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(170px,1fr));
  gap:16px;
}
.page-gallery-item {
  position:relative;
  display:block;
  min-height:170px;
  overflow:hidden;
  border-radius:24px;
  background:var(--primary-dark);
  box-shadow:var(--shadow-sm);
}
.page-gallery-item img {
  width:100%;
  height:100%;
  min-height:170px;
  object-fit:cover;
  transition:transform .45s ease, opacity .45s ease;
}
.page-gallery-item:hover img {
  transform:scale(1.06);
  opacity:.82;
}
.page-gallery-item span {
  position:absolute;
  left:14px;
  right:14px;
  bottom:12px;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(6,19,32,.72);
  color:#fff;
  font-size:12px;
  font-weight:850;
  backdrop-filter:blur(10px);
}
@media (max-width:700px) {
  .content-page-hero { padding:52px 0 38px; }
  .content-copy { padding:28px 22px; border-radius:24px; }
  .content-copy iframe { min-height:260px; border-radius:20px; }
  .content-section { padding-top:48px; }
}

.detail-back { border-radius:999px; background:rgba(255,255,255,.75); border:1px solid rgba(11,31,51,.1); font-weight:900; box-shadow:var(--shadow-xs); }
.detail-back:hover { transform:translateX(-3px); }
.is-detail-page {
  background:#fff;
}
.is-detail-page #view-detail {
  background:#fff;
}
.is-detail-page .detail-back {
  gap:8px;
  padding:10px 18px;
  border:0;
  border-radius:8px;
  color:var(--primary);
  font-size:15px;
  font-weight:600;
  box-shadow:none;
}
.is-detail-page .detail-badges .badge {
  padding:5px 12px;
  border-radius:4px;
  border:1px solid transparent;
  background:#12883f;
  color:#fff;
  box-shadow:0 6px 14px rgba(0,0,0,0.12);
  font-size:11px;
  font-weight:700;
  letter-spacing:1px;
  text-shadow:0 1px 2px rgba(0,0,0,0.20);
}
.is-detail-page .detail-back:hover {
  background:var(--primary);
  color:#fff;
  transform:none;
  box-shadow:none;
}
.detail-header {
  padding:32px;
  border-radius:34px;
  background:radial-gradient(circle at 90% 10%,rgba(14,165,164,.12),transparent 220px),rgba(255,255,255,.76);
  border:1px solid rgba(255,255,255,.78);
  box-shadow:var(--shadow-sm);
}
.is-detail-page .detail-header {
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
  box-shadow:none;
}
.is-detail-page .detail-section {
  background:#fff;
  border:1px solid var(--line);
  box-shadow:none;
}
.detail-header h1 {
  font-size:clamp(28px,3vw,44px);
  line-height:1.14;
  letter-spacing:-.035em;
  text-wrap:normal;
}
.detail-loc { font-weight:800; }
.detail-loc i { color:var(--accent-dark); }
.detail-price {
  font-size:clamp(30px,3.2vw,44px);
  font-weight:800;
  letter-spacing:-.04em;
  color:var(--primary);
}
.detail-price-value {
  display:inline-block;
  color:#0ea5a4;
  background:none;
  -webkit-text-fill-color:#0ea5a4;
}
.detail-price small {
  color:var(--text-light);
  background:none;
  -webkit-text-fill-color:var(--text-light);
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.gallery { border-radius:34px; box-shadow:var(--shadow-md); background:var(--primary-dark); }
.gallery img { height:540px; }
.gallery-nav { width:52px; height:52px; border-radius:50%; background:rgba(255,255,255,.88); box-shadow:var(--shadow-sm); backdrop-filter:blur(12px); }
.gallery-nav:hover { transform:translateY(-50%) scale(1.06); }
.thumb-strip a { width:88px; height:66px; border-radius:16px; box-shadow:var(--shadow-xs); }
.thumb-strip a:hover,.thumb-strip a.active { border-color:var(--accent); transform:translateY(-2px); }
.detail-body { grid-template-columns:minmax(0,1fr) 390px; align-items:start; }
.detail-section { padding:30px; }
.detail-section h3 { font-size:24px; border-bottom:0; }
.detail-section p { font-weight:600; }
.specs { gap:12px; }
.specs>div {
  padding:13px 14px;
  border-bottom:1px solid var(--border-light);
  border-radius:6px;
  border-right:1px dotted var(--border-light);
  border-left:1px dotted var(--border-light);
  border-top:1px dotted var(--border-light);
}
.specs>div span:first-child { font-weight:700; }
.specs>div span:last-child { font-weight:900; text-align:right; }
.features-list>div { border-radius:16px; background:var(--accent-soft); color:var(--primary); font-weight:900; }
.contact-card {
  border-radius:30px;
  background:radial-gradient(circle at 82% 0%,rgba(244,184,96,.24),transparent 160px),linear-gradient(145deg,var(--primary),var(--primary-dark));
  border:1px solid rgba(255,255,255,.12);
}
.agent-avatar { border-radius:20px; background:linear-gradient(135deg,var(--gold),var(--gold-light)); font-weight:850; }
.agent-logo { border-radius:20px; }
.agent-info span { font-weight:900; }
.contact-form input,.contact-form textarea { border-radius:16px; }
.contact-form input:focus,.contact-form textarea:focus { box-shadow:0 0 0 4px rgba(244,184,96,.13); }
.contact-form button { width:100%; }
.contact-direct a { border-radius:16px; font-weight:900; border:1px solid rgba(255,255,255,.1); }
.contact-direct a:hover { transform:translateY(-2px); }

.footer {
  background:radial-gradient(circle at 10% 12%,rgba(14,165,164,.22),transparent 320px),radial-gradient(circle at 90% 10%,rgba(244,184,96,.18),transparent 320px),linear-gradient(180deg,var(--primary),var(--primary-dark));
  margin-top:28px;
}
.footer h3 { font-weight:900; }
.footer h3::after { height:3px; border-radius:999px; background:linear-gradient(90deg,var(--gold),var(--accent)); }
.social a { border-radius:14px; border:1px solid rgba(255,255,255,.1); }
.social a:hover { transform:translateY(-3px); }
.footer-bottom { background:rgba(0,0,0,.12); }
.whatsapp-fab { width:58px; height:58px; border-radius:20px; background:linear-gradient(135deg,#25d366,#12a85a); box-shadow:0 18px 42px rgba(37,211,102,.34); }
.whatsapp-fab:hover { transform:translateY(-4px) scale(1.04); }

@media (max-width:1160px) {
  .grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .areas-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .home-gallery-grid { grid-template-columns:repeat(4,minmax(0,1fr)); }
  .video-grid { grid-template-columns:1fr; }
  .detail-body { grid-template-columns:1fr; }
  .contact-card { position:static; }
  .hero::after { opacity:.36; right:-120px; }
}

@media (max-width:860px) {
  .nav { display:none; }
  .topbar-inner { justify-content:space-between; gap:10px; }
  .topbar-left {
    display:flex;
    flex:1 1 auto;
    min-width:0;
    justify-content:flex-start;
  }
  .topbar-left a:first-child {
    display:inline-flex;
    margin-right:0;
    white-space:nowrap;
    font-weight:700;
  }
  .topbar-left a:not(:first-child),
  .topbar-left span { display:none; }
  .header-inner { padding:12px 18px; }
  .logo-mark { width:48px; height:48px; border-radius:16px; }
  .logo-text { font-size:20px; }
  .hero { min-height:auto; padding:78px 0 112px; }
  .hero::after { display:none; }
  .hero h1 { font-size:clamp(38px,11vw,60px); }
  .hero-sub { font-size:16px; }
  .hero-stats { grid-template-columns:1fr; max-width:390px; }
  .grid,.areas-grid,.site-overview,.why-grid,.footer-grid { grid-template-columns:1fr; }
  .categories { grid-template-columns:repeat(2,1fr); margin-top:-58px; margin-bottom:68px; }
  .site-breadcrumb-wrap { padding-top:18px; }
  .is-content-page .site-breadcrumb-wrap { margin-bottom:18px; }
  .listings,.featured-video,.home-videos,.areas,.seo-content,.detail-wrap { padding-left:18px; padding-right:18px; }
  .compact-virtual-listings .section-head h1 { font-size:clamp(30px,9vw,46px); }
  .is-home-list-page .home-listing-head {
    align-items:flex-start;
  }
  .is-home-list-page .home-listing-head h2 {
    font-size:clamp(30px,9vw,40px);
  }
  .home-filter-panel,
  .home-sort-panel {
    width:100%;
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:4px;
  }
  .home-filter-panel {
    flex:1 1 100%;
  }
  .home-sort-panel {
    flex:0 0 100%;
  }
  .home-filter-panel .chip,
  .home-sort-panel .chip {
    flex:0 0 auto;
  }
  .filter-panel { flex-basis:100%; width:100%; max-width:none; margin-left:0; }
  .filter-panel > .filter-row { display:none; }
  .mobile-filter-panel {
    display:flex;
    flex-direction:column;
    gap:16px;
    width:100%;
  }
  .mobile-filter-select {
    width:100%;
    min-height:38px;
    padding:0 12px;
    border:1px solid rgba(11,31,51,.22);
    border-radius:4px;
    background:rgba(255,255,255,.86);
    color:var(--text);
    font:inherit;
    font-size:14px;
    box-shadow:none;
  }
  .filter-chips { width:100%; }
  .chip { flex:0 0 auto; }
  .areas { border-radius:30px; }
  .detail-header { padding:24px; border-radius:28px; }
  .detail-meta-row { align-items:flex-start; flex-direction:column; }
  .detail-price { font-size:30px; }
  .gallery { border-radius:26px; }
  .gallery img { height:310px; }
  .specs,.features-list { grid-template-columns:1fr; }
  .section-intro { max-width:100%; }
  .contact-direct { flex-direction:column; }
  .seo-block { padding:30px 22px; border-radius:28px; }
  .home-gallery-head h2 { font-size:30px; }
  .home-gallery-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
  .gallery-lightbox { padding:18px; }
  .gallery-lightbox-image { max-width:94vw; max-height:78vh; }
  .gallery-lightbox-button { width:40px; height:40px; }
  .gallery-lightbox-close { top:14px; right:14px; }
  .gallery-lightbox-prev { left:12px; }
  .gallery-lightbox-next { right:12px; }
}

@media (max-width:520px) {
  .container { padding-left:18px; padding-right:18px; }
  .header-cta { min-height:auto; padding:12px 22px; }
  .header-cta i { display:inline-block; }
  .logo-text small { letter-spacing:2px; }
  .categories { grid-template-columns:1fr; }
  .cat-card { padding:22px 18px; }
  .card-img { height:220px; }
  .card-features { flex-wrap:wrap; justify-content:flex-start; }
  .area-card { min-height:auto; }
  .footer-bottom .container { flex-direction:column; }
  .detail-loc-row { gap:12px; }
  .detail-share-list { gap:18px; }
  .whatsapp-fab { width:54px; height:54px; right:18px; bottom:18px; border-radius:18px; }
}

@media (prefers-reduced-motion:reduce) {
  html { scroll-behavior:auto; }
  *,*::before,*::after { transition-duration:.001ms !important; animation-duration:.001ms !important; animation-iteration-count:1 !important; }
  .card { transition:.35s !important; }
  .card-price { transition:color .6s ease !important; }
  .cat-card { transition:.3s !important; }
  .chip { transition:transform .55s ease, background .55s ease, border-color .55s ease, color .55s ease, box-shadow .55s ease !important; }
  .topbar-right .language-option,
  .footer-language-option { transition:transform .55s ease, background .55s ease, border-color .55s ease, color .55s ease, box-shadow .55s ease !important; }
  .header-cta { transition:background .35s ease, transform .35s ease, box-shadow .35s ease !important; }
  .hero-stats strong { transition:color .45s ease, text-shadow .45s ease !important; }
  .card-img img { transition:.6s !important; }
  .video-card { transition:.3s !important; }
  .youtube-placeholder::after,
  .youtube-placeholder img,
  .youtube-play { transition:.25s !important; }
}

/* Hero background should stay clear: no frosted panels over bg.jpg. */
.hero::after,
.hero-overlay {
  display:none !important;
}

.hero-stats>div,
.hero-stats>a,
.hero-stats>a:hover {
  background:transparent;
  border:0;
  box-shadow:none;
  backdrop-filter:none;
  -webkit-backdrop-filter:none;
}

.hero-stats>div,
.hero-stats>a {
  padding:0 18px 0 0;
  transition:background .6s ease;
}

.hero-stats strong,
.hero-stats span {
  text-shadow:0 2px 12px rgba(0,0,0,.38);
}

/* Keep the main menu clean instead of using a pill container. */
.nav {
  gap:30px;
  padding:0;
  border:0;
  border-radius:0;
  background:transparent;
}

.nav a {
  padding:8px 0;
  border-radius:0;
  background:transparent !important;
  box-shadow:none !important;
  color:#24384f;
  font-weight:800;
}

.nav a::after {
  content:'';
  display:block;
  position:absolute;
  left:0;
  bottom:0;
  width:0;
  height:2px;
  border-radius:999px;
  background:var(--gold);
  transition:width var(--transition);
}

.nav a:hover,
.nav a.active {
  color:#071f2d;
}

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

.nav-item {
  position:relative;
  display:flex;
  align-items:center;
}

.nav-link {
  position:relative;
  display:inline-flex;
  align-items:center;
  gap:7px;
}

.nav-link i {
  font-size:10px;
  color:var(--gold-dark);
  transition:transform var(--transition);
}

.has-dropdown:hover .nav-link i,
.has-dropdown:focus-within .nav-link i {
  transform:rotate(180deg);
}

.nav-dropdown {
  position:absolute;
  top:calc(100% + 14px);
  left:50%;
  z-index:40;
  width:260px;
  max-height:70vh;
  overflow-y:auto;
  padding:10px;
  border:1px solid rgba(17,39,61,.1);
  border-radius:18px;
  background:rgba(255,255,255,.96);
  box-shadow:0 22px 54px rgba(6,19,32,.16);
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,8px);
  transition:opacity .22s ease, transform .22s ease;
  backdrop-filter:blur(18px);
}

.nav-dropdown::before {
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:-16px;
  height:16px;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.nav .nav-dropdown-item {
  position:relative;
  display:block;
  padding:10px 12px;
  border-radius:12px;
  color:#24384f;
  font-size:13px;
  line-height:1.25;
  white-space:normal;
}

.nav .nav-dropdown-item::after {
  display:none;
}

.nav .nav-dropdown-item:hover,
.nav .nav-dropdown-item.active {
  color:#071f2d;
  background:rgba(244,184,96,.18) !important;
}

.nav-layout-menu .navbar,
.nav-layout-menu .navbar-collapse,
.nav-layout-menu .navbar-nav {
  display:flex;
  align-items:center;
}

.nav-layout-menu .navbar-brand,
.nav-layout-menu .navbar-toggler {
  display:none;
}

.nav-layout-menu .navbar-nav {
  gap:30px;
  margin:0;
  padding:0;
  list-style:none;
}

.nav-layout-menu .dropdown {
  position:relative;
}

.nav-layout-menu .dropdown::after {
  content:'';
  position:absolute;
  top:100%;
  left:-24px;
  right:-24px;
  z-index:39;
  height:18px;
}

.nav-layout-menu .dropdown-menu {
  position:absolute;
  top:calc(100% + 14px);
  left:50%;
  z-index:40;
  width:260px;
  max-height:70vh;
  overflow-y:auto;
  padding:10px;
  border:1px solid rgba(17,39,61,.1);
  border-radius:8px;
  background:rgba(255,255,255,.96);
  box-shadow:0 22px 54px rgba(6,19,32,.16);
  opacity:0;
  pointer-events:none;
  transform:translate(-50%,8px);
  transition:opacity .22s ease, transform .22s ease;
  backdrop-filter:blur(18px);
}

.nav-layout-menu .dropdown-menu::before {
  content:'';
  position:absolute;
  left:0;
  right:0;
  top:-16px;
  height:16px;
}

.nav-layout-menu .dropdown:hover .dropdown-menu,
.nav-layout-menu .dropdown:focus-within .dropdown-menu {
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,0);
}

.nav-layout-menu .dropdown-item {
  position:relative;
  display:block;
  padding:10px 12px;
  border-radius:8px;
  color:#24384f;
  font-size:13px;
  line-height:1.25;
  white-space:normal;
}

.nav-layout-menu .dropdown-item::after {
  display:none;
}

.nav-layout-menu .dropdown-item:hover,
.nav-layout-menu .dropdown-item.active {
  color:#071f2d;
  background:rgba(244,184,96,.18) !important;
}

.d-none {
  display:none !important;
}

@media (min-width:768px) {
  .d-md-inline-flex {
    display:inline-flex !important;
  }
}

.mobile-menu-toggle,
.mobile-nav {
  display:none;
}

.mobile-menu-toggle {
  width:46px;
  height:46px;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(12,64,92,.18);
  border-radius:8px;
  background:#fff;
  color:#0C405C;
  box-shadow:0 10px 24px rgba(10,37,64,.08);
  font-size:20px;
  transition:background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle.is-open {
  background:#0C405C;
  border-color:#0C405C;
  color:#fff;
  box-shadow:0 12px 28px rgba(12,64,92,.22);
}

.mobile-nav[hidden] {
  display:none !important;
}

@media (max-width:860px) {
  .header-inner {
    display:grid;
    grid-template-columns:minmax(0,1fr) auto;
    align-items:center;
    gap:10px;
  }

  .header-inner .logo {
    justify-self:start;
    min-width:0;
  }

  .header-cta {
    display:none !important;
  }

  .mobile-menu-toggle {
    display:inline-flex;
    justify-self:end;
  }

  .mobile-nav:not([hidden]) {
    display:block;
  }

  .mobile-nav {
    position:absolute;
    top:100%;
    left:0;
    right:0;
    z-index:90;
    padding:10px 0 16px;
    border-top:1px solid rgba(12,64,92,.08);
    border-bottom:1px solid rgba(12,64,92,.1);
    background:#fff;
    box-shadow:0 22px 44px rgba(6,19,32,.16);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
  }

  .mobile-nav-inner {
    display:flex;
    max-height:calc(100vh - 86px);
    flex-direction:column;
    gap:6px;
    overflow-y:auto;
    padding-top:4px;
    padding-bottom:4px;
  }

  .mobile-nav-group {
    display:block;
  }

  .mobile-nav-link,
  .mobile-nav-sublink {
    display:flex;
    align-items:center;
    border-radius:8px;
    color:#24384f;
    line-height:1.25;
  }

  .mobile-nav-link {
    min-height:48px;
    padding:13px 16px;
    font-size:15px;
    font-weight:800;
  }

  .mobile-nav-link:hover,
  .mobile-nav-link.active,
  .mobile-nav-sublink:hover,
  .mobile-nav-sublink.active {
    color:#071f2d;
    background:rgba(244,184,96,.18);
  }

  .mobile-nav-sub {
    display:flex;
    flex-direction:column;
    gap:2px;
    margin:0 0 6px 14px;
    padding:4px 0 4px 12px;
    border-left:2px solid rgba(12,64,92,.12);
  }

  .mobile-nav-sublink {
    min-height:38px;
    padding:9px 12px;
    font-size:13px;
    font-weight:700;
  }

  .mobile-layout-menu .navbar,
  .mobile-layout-menu .navbar-collapse,
  .mobile-layout-menu .navbar-nav {
    display:block;
  }

  .mobile-layout-menu .navbar-brand,
  .mobile-layout-menu .navbar-toggler {
    display:none;
  }

  .mobile-layout-menu .navbar-nav {
    margin:0;
    padding:0;
    list-style:none;
  }

  .mobile-layout-menu .nav-item {
    display:block;
  }

  .mobile-layout-menu .nav-link,
  .mobile-layout-menu .dropdown-item {
    display:flex;
    min-height:48px;
    align-items:center;
    padding:13px 16px;
    border-radius:8px;
    color:#24384f;
    font-size:15px;
    font-weight:800;
    line-height:1.25;
  }

  .mobile-layout-menu .nav-link:hover,
  .mobile-layout-menu .dropdown-item:hover,
  .mobile-layout-menu .nav-link.active,
  .mobile-layout-menu .dropdown-item.active {
    color:#071f2d;
    background:rgba(244,184,96,.18);
  }

  .mobile-layout-menu .dropdown-menu {
    position:static;
    display:flex;
    flex-direction:column;
    gap:2px;
    margin:0 0 6px 14px;
    padding:4px 0 4px 12px;
    border:0;
    border-left:2px solid rgba(12,64,92,.12);
    background:transparent;
    box-shadow:none;
    opacity:1;
    pointer-events:auto;
    transform:none;
  }

  .mobile-layout-menu .dropdown-item {
    min-height:38px;
    padding:9px 12px;
    font-size:13px;
    font-weight:700;
  }
}

/* Match the compact category card layout. */
.categories {
  grid-template-columns:repeat(6, 1fr);
  gap:18px;
  max-width:1280px;
  margin:-70px auto 90px;
  padding:0 24px;
}

.cat-card {
  min-height:148px;
  padding:28px 18px 26px;
  background:#fff;
  border:1px solid #dde4ee;
  border-radius:9px;
  box-shadow:0 10px 28px rgba(10,37,64,.08);
  backdrop-filter:none;
  transition:.3s;
}

.cat-card::before {
  display:none;
}

.cat-card:hover {
  transform:translateY(-6px);
  border-color:#bd8f3b;
  box-shadow:0 8px 28px rgba(10,37,64,.10);
}

.cat-card i,
.cat-card:hover i {
  width:auto;
  height:auto;
  margin-bottom:12px;
  background:transparent;
  color:#0C405C;
  opacity:1;
  font-size:33px;
  transform:none;
}

.cat-card h3 {
  font-family:var(--font-sans);
  font-size:15px;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--primary);
  margin-bottom:5px;
}

.cat-card span {
  color:#657388;
  font-size:12px;
  font-weight:500;
}

@media (max-width:760px) {
  .categories {
    grid-template-columns:repeat(2, minmax(0, 1fr));
    max-width:1280px;
    margin-top:-50px;
    padding:0 24px;
  }
}

@media (max-width:520px) {
  .categories {
    grid-template-columns:1fr;
    max-width:1280px;
  }
}

/* Simpler brand mark: flat color, less shine, tighter shape. */
.logo-mark {
  width:44px;
  height:44px;
  flex:0 0 44px;
  color:var(--gold-light);
  border:0;
  box-shadow:none;
  font-size:24px;
}

.logo-light .logo-mark {
  color:var(--gold-light);
  border:0;
}

@media (max-width:520px) {
  .logo-mark {
    width:42px;
    height:42px;
    flex-basis:42px;
    border-radius:11px;
    font-size:23px;
  }
}

/* SEO text block should match the clean live-site presentation. */
.seo-content {
  padding:84px 24px 92px;
}

.seo-block {
  max-width:820px;
  padding:0;
  background:transparent;
  border:0;
  border-radius:0;
  box-shadow:none;
}

.seo-block h2 {
  margin-bottom:24px;
  color:#172435;
  font-size:30px;
  line-height:1.2;
  letter-spacing:0;
}

.seo-block p {
  color:#506075;
  font-size:15px;
  line-height:1.72;
  font-weight:500;
  margin:0 auto 14px;
}

@media (max-width:760px) {
  .seo-content {
    padding:64px 20px 72px;
  }

  .seo-block h2 {
    font-size:26px;
  }
}

@media (max-width:1160px) {
  .similar-sidebar-list {
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

@media (max-width:980px) {
  .ds-region-side-stack {
    position: static;
  }
}

@media (max-width:700px) {
  .similar-sidebar {
    padding:16px;
  }

  .similar-sidebar-list {
    grid-template-columns:1fr;
  }

  .similar-sidebar-card {
    grid-template-columns:88px minmax(0, 1fr);
  }
}
