:root {
  --vl-charcoal: #0f1216;
  --vl-charcoal-2: #151a1f;
  --vl-ink: #1f242a;
  --vl-ivory: #f6f2ea;
  --vl-ivory-soft: #ece5d9;
  --vl-gold: #c8a96d;
  --vl-gold-soft: #dec699;
  --vl-taupe: #a3937a;
  --vl-muted: #9ca0a6;
  --vl-line: rgba(200, 169, 109, 0.22);
  --vl-white: #ffffff;
  --vl-radius: 0.35rem;
  --vl-shadow: 0 20px 45px rgba(10, 13, 17, 0.28);
  --vl-transition: all 0.35s ease;
  --vl-max: 1320px;
  --vl-nav-h: 94px;
  --vl-space-section: clamp(4.5rem, 8vw, 7.5rem);
  --vl-space-tight: clamp(2.2rem, 5vw, 3.4rem);
}

html,
body {
  scroll-behavior: smooth;
}

body.vl-site {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--vl-ink);
  background: var(--vl-ivory);
  letter-spacing: 0.008em;
  line-height: 1.68;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 0.015em;
  line-height: 1.08;
  color: #15181d;
  margin-bottom: 0.55em;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

.vl-shell {
  max-width: var(--vl-max);
  margin-inline: auto;
  width: min(100%, calc(100% - 2rem));
}

.vl-section {
  padding: var(--vl-space-section) 0;
  position: relative;
}

.vl-section-tight {
  padding: var(--vl-space-tight) 0;
}

.vl-section-dark {
  background: linear-gradient(150deg, #10151b 0%, #1a1f26 100%);
  color: var(--vl-ivory);
}

.vl-section-dark h1,
.vl-section-dark h2,
.vl-section-dark h3,
.vl-section-dark h4,
.vl-section-dark h5,
.vl-section-dark h6,
.vl-section-dark p {
  color: var(--vl-ivory);
}

.vl-section-head {
  margin-bottom: clamp(1.8rem, 4vw, 3.3rem);
}

.vl-section-head p {
  max-width: 62ch;
}

.vl-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
  color: var(--vl-gold);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  font-weight: 600;
}

.vl-kicker::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--vl-gold);
  opacity: 0.7;
}

.vl-display {
  font-size: clamp(2.25rem, 5.6vw, 5.2rem);
  line-height: 0.98;
  max-width: 16ch;
  text-wrap: balance;
}

.vl-lead {
  color: #46505b;
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  max-width: 58ch;
}

.vl-text-muted {
  color: #626b75;
}

.vl-header-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  padding: 1rem 0;
  transition: var(--vl-transition);
}

.vl-header-wrap.is-scrolled {
  padding: 0.45rem 0;
  background: rgba(16, 21, 27, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vl-nav {
  background: rgba(16, 21, 27, 0.38);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--vl-radius);
  padding: 0.7rem 1.15rem;
  transition: var(--vl-transition);
}

.vl-header-wrap.is-scrolled .vl-nav {
  background: transparent;
  border-color: transparent;
}

.vl-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.vl-brand img {
  width: auto;
  height: 56px;
  object-fit: contain;
}

.vl-brand-title {
  color: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  letter-spacing: 0.09em;
}

.vl-nav .nav-link {
  color: rgba(246, 242, 234, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.8rem 0.85rem !important;
  position: relative;
}

.vl-nav .nav-link::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.35rem;
  height: 1px;
  background: var(--vl-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.vl-nav .nav-link:hover,
.vl-nav .nav-link:focus,
.vl-nav .nav-link.active {
  color: var(--vl-white);
}

.vl-nav .nav-link:hover::after,
.vl-nav .nav-link:focus::after,
.vl-nav .nav-link.active::after {
  transform: scaleX(1);
}

.vl-btn,
.vl-btn-outline,
.vl-btn-ghost {
  border-radius: 0;
  padding: 0.88rem 1.42rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.76rem;
  font-weight: 700;
  transition: var(--vl-transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.vl-btn {
  background: linear-gradient(92deg, #b9965b 0%, #dec699 100%);
  border: 1px solid transparent;
  color: #111;
}

.vl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(22, 26, 33, 0.22);
  color: #111;
}

.vl-btn-outline {
  border: 1px solid var(--vl-line);
  color: #1f2a36;
  background: transparent;
}

.vl-btn-outline:hover {
  background: rgba(200, 169, 109, 0.14);
  color: #111;
}

.vl-hero .vl-btn-outline,
.vl-section-dark .vl-btn-outline,
.vl-cta-band .vl-btn-outline,
.vl-offcanvas .vl-btn-outline {
  color: var(--vl-ivory);
  border-color: rgba(255, 255, 255, 0.24);
}

.vl-hero .vl-btn-outline:hover,
.vl-section-dark .vl-btn-outline:hover,
.vl-cta-band .vl-btn-outline:hover,
.vl-offcanvas .vl-btn-outline:hover {
  color: var(--vl-white);
}

.vl-btn-ghost {
  border: 1px solid rgba(23, 26, 32, 0.22);
  color: #202831;
}

.vl-btn-ghost:hover {
  border-color: var(--vl-gold);
  color: #111;
}

.vl-mobile-toggle {
  color: #f6f2ea;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(10, 12, 17, 0.55);
}

.vl-mobile-toggle .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(246,242,234,0.95)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='1.75' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.vl-offcanvas {
  background: #11161c;
  color: var(--vl-ivory);
}

.vl-offcanvas .nav-link {
  color: rgba(246, 242, 234, 0.9);
  font-size: 0.95rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0.75rem 0;
}

.vl-main {
  min-height: 100vh;
  overflow: clip;
}

.vl-hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  background:
    linear-gradient(116deg, rgba(10, 14, 19, 0.9) 7%, rgba(14, 19, 27, 0.52) 52%, rgba(13, 18, 25, 0.86) 100%),
    url('../img/hero/tbilisi-luxury-residence.jpg') center/cover;
}

.vl-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 78% 15%, rgba(200, 169, 109, 0.2), transparent 40%);
}

.vl-hero .vl-shell {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--vl-nav-h) + 3.8rem);
  padding-bottom: 3.8rem;
}

.vl-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.8fr);
  gap: clamp(1.5rem, 4vw, 5rem);
}

.vl-hero h1,
.vl-hero p {
  color: #fff;
}

.vl-hero p {
  font-size: clamp(1rem, 1.7vw, 1.14rem);
  max-width: 53ch;
  color: rgba(246, 242, 234, 0.9);
}

.vl-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 2.15rem 0 2.4rem;
}

.vl-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.vl-stat-box {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.05rem 1.1rem;
}

.vl-stat-box strong {
  display: block;
  color: var(--vl-gold-soft);
  font-size: 1.2rem;
  font-family: 'Cormorant Garamond', serif;
}

.vl-stat-box span {
  font-size: 0.82rem;
  color: rgba(246, 242, 234, 0.84);
}

.vl-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: linear-gradient(175deg, rgba(19, 23, 29, 0.9) 0%, rgba(17, 22, 28, 0.7) 100%);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  align-self: end;
}

.vl-hero-card h3 {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  color: #fff;
}

.vl-hero-card ul {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.vl-hero-card li {
  font-size: 0.92rem;
  color: rgba(246, 242, 234, 0.86);
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
}

.vl-hero-card i {
  margin-top: 0.36rem;
  color: var(--vl-gold);
  font-size: 0.68rem;
}

.vl-card {
  border: 1px solid rgba(24, 28, 34, 0.09);
  background: #fff;
  box-shadow: 0 10px 22px rgba(17, 21, 29, 0.06);
  padding: clamp(1.3rem, 2.5vw, 1.95rem);
  transition: var(--vl-transition);
}

.vl-card:hover {
  border-color: var(--vl-line);
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(10, 13, 17, 0.17);
}

.vl-card-icon {
  color: var(--vl-gold);
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.7rem;
}

.vl-card h3 {
  font-size: clamp(1.36rem, 2vw, 1.78rem);
  margin-bottom: 0.6rem;
}

.vl-card p {
  max-width: 50ch;
}

.vl-link {
  color: #1e2731;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  position: relative;
  padding-bottom: 0.12rem;
}

.vl-link i {
  color: var(--vl-gold);
  transition: transform 0.2s ease;
}

.vl-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.04rem;
  width: 100%;
  height: 1px;
  background: var(--vl-gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.vl-link:hover::after {
  transform: scaleX(1);
}

.vl-link:hover i {
  transform: translateX(2px);
}

.vl-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3.3rem);
  align-items: center;
}

.vl-media-block {
  min-height: 480px;
  background:
    linear-gradient(140deg, rgba(18, 23, 30, 0.56), rgba(18, 23, 30, 0.2)),
    url('../img/exteriors/modern-residential-development.jpg') center/cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.vl-surface-dark {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.02);
  padding: clamp(1.2rem, 2.8vw, 1.9rem);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.vl-surface-dark:hover {
  border-color: rgba(200, 169, 109, 0.5);
  transform: translateY(-2px);
}

.vl-surface-dark .vl-link {
  color: rgba(246, 242, 234, 0.92);
}

.vl-surface-dark .vl-link:hover {
  color: #fff;
}

.vl-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.vl-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.vl-chip {
  border: 1px solid var(--vl-line);
  padding: 0.35rem 0.64rem;
  font-size: 0.73rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #415061;
}

.vl-opportunity {
  background: #121821;
  border: 1px solid rgba(200, 169, 109, 0.24);
  color: var(--vl-ivory);
}

.vl-opportunity h3,
.vl-opportunity p {
  color: var(--vl-ivory);
}

.vl-opportunity p {
  color: rgba(246, 242, 234, 0.8);
}

.vl-opportunity .vl-chip {
  color: var(--vl-gold-soft);
}

.vl-stat-strip {
  background: linear-gradient(90deg, #141922 0%, #191f29 100%);
  border: 1px solid rgba(200, 169, 109, 0.2);
  padding: 1.6rem;
}

.vl-stat {
  text-align: center;
}

.vl-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 2.6rem);
  color: var(--vl-gold-soft);
  font-family: 'Cormorant Garamond', serif;
  line-height: 1;
}

.vl-stat span {
  color: rgba(246, 242, 234, 0.86);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vl-quote {
  border-left: 1px solid var(--vl-gold);
  padding-left: 1rem;
  font-style: italic;
}

.vl-cta-band {
  background: linear-gradient(125deg, #131820 0%, #1e2630 100%);
  border: 1px solid rgba(200, 169, 109, 0.28);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.vl-cta-band h2,
.vl-cta-band p {
  color: #fff;
}

.vl-trust-strip {
  border: 1px solid rgba(200, 169, 109, 0.22);
  background: #fff;
  padding: clamp(1.3rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 1rem 1.5rem;
  align-items: center;
}

.vl-trust-strip h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: 0;
}

.vl-trust-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.vl-trust-pillars span {
  border: 1px solid rgba(18, 24, 32, 0.12);
  padding: 0.55rem 0.65rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #2b3340;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.icon {
  width: 18px;
  text-align: center;
  opacity: 0.85;
  line-height: 1;
}

.icon-service {
  font-size: 1.05rem;
}

.icon-contact {
  font-size: 1rem;
}

.icon-breadcrumb {
  font-size: 0.75rem;
}

.icon-cta {
  width: 14px;
  font-size: 0.875rem;
  opacity: 1;
}

.service-card i {
  transition: transform 0.2s ease;
}

.service-card:hover i {
  transform: translateY(-2px);
}

.vl-page-hero {
  background:
    linear-gradient(145deg, rgba(13, 16, 22, 0.9), rgba(13, 16, 22, 0.6)),
    url('../img/general/tbilisi-architectural-cityscape.jpg') center/cover;
  padding: calc(var(--vl-nav-h) + 3rem) 0 3.5rem;
  color: var(--vl-ivory);
}

.vl-page-hero h1,
.vl-page-hero p {
  color: var(--vl-ivory);
}

.vl-breadcrumb {
  margin-bottom: 1.1rem;
}

.vl-breadcrumb .breadcrumb {
  margin: 0;
}

.vl-breadcrumb .breadcrumb-item,
.vl-breadcrumb .breadcrumb-item a {
  color: rgba(246, 242, 234, 0.8);
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vl-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(246, 242, 234, 0.52);
}

.vl-page-content {
  padding: clamp(2.2rem, 4vw, 3rem);
  border: 1px solid rgba(28, 32, 39, 0.11);
  background: #fff;
}

.vl-page-content h2,
.vl-page-content h3,
.vl-page-content h4 {
  margin-top: 1.5rem;
}

.vl-page-content p,
.vl-page-content li,
.vl-page-content table {
  color: #2e353e;
}

.vl-page-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.2rem 0;
}

.vl-page-content th,
.vl-page-content td {
  padding: 0.7rem 0.6rem;
  border-bottom: 1px solid rgba(17, 22, 27, 0.1);
}

.vl-accordion .accordion-item {
  border: 1px solid rgba(21, 27, 33, 0.16);
  margin-bottom: 0.65rem;
}

.vl-accordion .accordion-button {
  border-radius: 0;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: none;
  padding: 1rem 1.1rem;
}

.vl-accordion .accordion-button:not(.collapsed) {
  background: rgba(200, 169, 109, 0.13);
  color: #10151b;
}

.vl-form-control,
.vl-form-select,
.vl-form-textarea {
  border-radius: 0;
  border: 1px solid rgba(21, 26, 33, 0.23);
  padding: 0.8rem 0.9rem;
}

.vl-form-control:focus,
.vl-form-select:focus,
.vl-form-textarea:focus {
  border-color: var(--vl-gold);
  box-shadow: 0 0 0 0.15rem rgba(200, 169, 109, 0.2);
}

.vl-table-wrap {
  border: 1px solid rgba(19, 24, 31, 0.14);
  overflow: auto;
}

.vl-table {
  width: 100%;
  margin: 0;
  min-width: 660px;
}

.vl-table th {
  background: #151b23;
  color: #f6f2ea;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  padding: 0.75rem;
}

.vl-table td {
  padding: 0.8rem 0.75rem;
  border-bottom: 1px solid rgba(19, 24, 31, 0.08);
}

.vl-badge {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--vl-line);
  color: var(--vl-gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.66rem;
}

.vl-footer {
  background: #10151b;
  color: rgba(246, 242, 234, 0.84);
  padding-top: clamp(3.3rem, 6vw, 4.8rem);
  border-top: 1px solid rgba(200, 169, 109, 0.35);
}

.vl-footer h3,
.vl-footer h4 {
  color: var(--vl-ivory);
  font-size: 1.2rem;
}

.vl-footer p,
.vl-footer a,
.vl-footer li,
.vl-footer span {
  color: rgba(246, 242, 234, 0.76);
  font-size: 0.9rem;
}

.vl-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.44rem;
}

.vl-footer a:hover {
  color: var(--vl-gold-soft);
}

.vl-footer-bottom {
  margin-top: 2.4rem;
  padding: 1.15rem 0 1.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.vl-socials {
  display: inline-flex;
  gap: 0.6rem;
}

.vl-socials a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--vl-transition);
}

.vl-socials i {
  font-size: 1rem;
}

.vl-socials a:hover {
  border-color: var(--vl-gold);
  color: var(--vl-gold-soft);
  transform: translateY(-2px);
}

.vl-whatsapp-float {
  position: fixed;
  right: clamp(0.75rem, 2vw, 1.6rem);
  bottom: clamp(0.9rem, 2.1vw, 1.7rem);
  z-index: 1055;
  display: inline-flex;
  align-items: center;
  color: var(--vl-ivory);
}

.vl-whatsapp-float:hover {
  color: var(--vl-white);
}

.vl-whatsapp-orb {
  position: relative;
  width: 58px;
  height: 58px;
}

.vl-whatsapp-icon,
.vl-whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.vl-whatsapp-icon {
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.78rem;
  color: #fff;
  background: linear-gradient(145deg, #20bb5a 0%, #29d166 52%, #43df8a 100%);
  border: 1px solid rgba(246, 242, 234, 0.28);
  box-shadow:
    0 16px 34px rgba(14, 20, 28, 0.34),
    0 0 0 1px rgba(20, 26, 34, 0.12) inset;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.vl-whatsapp-float:hover .vl-whatsapp-icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    0 20px 38px rgba(14, 20, 28, 0.4),
    0 0 0 1px rgba(20, 26, 34, 0.08) inset;
}

.vl-whatsapp-pulse {
  z-index: 1;
  background: rgba(41, 209, 102, 0.44);
  animation: vl-whatsapp-pulse 2.15s ease-out infinite;
}

@keyframes vl-whatsapp-pulse {
  0% {
    transform: scale(1);
    opacity: 0.68;
  }
  70% {
    transform: scale(1.45);
    opacity: 0;
  }
  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

.vl-reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.vl-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1199px) {
  .vl-hero-grid,
  .vl-split,
  .vl-grid-4 {
    grid-template-columns: 1fr;
  }

  .vl-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vl-trust-strip {
    grid-template-columns: 1fr;
  }

  .vl-brand img {
    height: 48px;
  }
}

@media (max-width: 767px) {
  .vl-shell {
    width: min(100%, calc(100% - 1.2rem));
  }

  .vl-hero .vl-shell {
    padding-top: calc(var(--vl-nav-h) + 1.4rem);
  }

  .vl-display {
    font-size: clamp(2rem, 8.4vw, 3rem);
  }

  .vl-grid-3,
  .vl-hero-stats {
    grid-template-columns: 1fr;
  }

  .vl-hero-actions .btn,
  .vl-cta-band .btn {
    width: 100%;
  }

  .vl-hero-card {
    margin-top: 0.5rem;
  }

  .vl-header-wrap {
    padding: 0.6rem 0;
  }

  .vl-page-hero {
    padding-top: calc(var(--vl-nav-h) + 2.2rem);
  }

  .vl-whatsapp-float {
    right: 0.65rem;
    bottom: 0.85rem;
  }

  .vl-whatsapp-orb {
    width: 52px;
    height: 52px;
  }

  .vl-whatsapp-icon {
    font-size: 1.62rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vl-whatsapp-icon {
    transition: none;
  }

  .vl-whatsapp-pulse {
    animation: none;
  }
}

/* Native property catalogue */
.vl-property-filter {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: end;
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border: 1px solid rgba(21, 27, 33, 0.14);
  background: #fff;
  box-shadow: 0 20px 55px rgba(14, 19, 25, 0.07);
}

.vl-property-filter label {
  display: block;
  margin-bottom: 0.38rem;
  color: #414851;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vl-property-filter-actions {
  display: flex;
  gap: 0.5rem;
}

.vl-property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.vl-property-card {
  overflow: hidden;
  border: 1px solid rgba(20, 26, 33, 0.12);
  background: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vl-property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 55px rgba(15, 21, 28, 0.12);
}

.vl-property-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #151b23;
}

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

.vl-property-card:hover .vl-property-card-image img { transform: scale(1.035); }

.vl-property-featured {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.28rem 0.58rem;
  color: #11161c;
  background: var(--vl-gold-soft);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vl-property-card-body { padding: 1.25rem; }
.vl-property-card h3 { margin: 0.45rem 0 0.55rem; font-size: 1.5rem; }
.vl-property-card h3 a { color: #141a21; }
.vl-property-ref { color: #737a83; font-size: 0.72rem; letter-spacing: 0.08em; }
.vl-property-card-location { color: #59616b; font-size: 0.86rem; }
.vl-property-card-location i { margin-right: 0.4rem; color: var(--vl-gold); }

.vl-property-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding: 0.75rem 0;
  border-top: 1px solid rgba(20, 26, 33, 0.09);
  border-bottom: 1px solid rgba(20, 26, 33, 0.09);
  color: #4d5560;
  font-size: 0.82rem;
}

.vl-property-card-meta i { margin-right: 0.3rem; color: var(--vl-gold); }
.vl-property-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 0.8rem; padding-top: 1rem; }
.vl-property-card-footer strong, .vl-property-price { color: #11161c; font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; }

.vl-property-pagination { display: flex; justify-content: center; gap: 0.4rem; margin-top: 2.5rem; }
.vl-property-pagination a { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; border: 1px solid rgba(20,26,33,.16); color: #252c34; }
.vl-property-pagination a.active, .vl-property-pagination a:hover { color: #fff; border-color: #151b23; background: #151b23; }

.vl-property-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(180px, 270px));
  gap: 0.65rem;
}

.vl-property-gallery-item { display: block; overflow: hidden; background: #151b23; }
.vl-property-gallery-item.is-primary { grid-row: 1 / 3; }
.vl-property-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.vl-property-gallery-item:hover img { transform: scale(1.025); }
.vl-property-gallery.is-single { display: block; }
.vl-property-gallery.is-single .vl-property-gallery-item { height: min(68vh, 720px); }
.vl-property-content { padding: clamp(1.5rem, 3.5vw, 2.8rem); }

.vl-property-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
}

.vl-property-facts span { display: grid; gap: 0.2rem; padding: 0.8rem; border: 1px solid rgba(20,26,33,.1); color: #626a73; font-size: 0.75rem; }
.vl-property-facts i { color: var(--vl-gold); font-size: 1.1rem; }
.vl-property-facts strong { color: #151b23; font-size: 1rem; }
.vl-property-amenities { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0.6rem 1rem; padding: 0; list-style: none; }
.vl-property-amenities li { padding: 0.65rem 0; border-bottom: 1px solid rgba(20,26,33,.08); }
.vl-property-amenities i { margin-right: 0.55rem; color: var(--vl-gold); }
.vl-property-contact { position: sticky; top: calc(var(--vl-nav-h) + 1.5rem); }
.vl-property-location div { padding: 0.7rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.vl-property-location dt { color: var(--vl-gold-soft); font-size: 0.65rem; letter-spacing: .12em; text-transform: uppercase; }
.vl-property-location dd { margin: 0.15rem 0 0; }

@media (max-width: 1199px) {
  .vl-property-filter { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .vl-property-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 767px) {
  .vl-property-filter, .vl-property-grid { grid-template-columns: 1fr; }
  .vl-property-filter-actions .btn { flex: 1; }
  .vl-property-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 150px; }
  .vl-property-gallery-item.is-primary { grid-column: 1 / 3; grid-row: auto; }
  .vl-property-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .vl-property-amenities { grid-template-columns: 1fr; }
}
