/* =========================================================
   Vidu The Realtor — 2026 premium redesign layer
   Load AFTER vidu-custom.css. Visual polish only — no
   structural, content, or functional changes underneath.
   ========================================================= */

:root {
  --glass-bg: rgba(255,255,255,.68);
  --glass-bg-strong: rgba(255,255,255,.85);
  --glass-border: rgba(255,255,255,.45);
  --glass-shadow: 0 20px 60px -15px rgba(43,7,33,.22);
  --shadow-soft: 0 10px 34px rgba(43,7,33,.10);
  --shadow-lift: 0 24px 56px rgba(43,7,33,.20);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---- Typography: kept as Oakberry's original Nunito Sans throughout (no serif override) ---- */
.subheading {
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
}

/* ---- Motion base (respects reduced-motion) ---- */
a, button, .btn, .property-wrap, .services, .blog-entry, .testimony-wrap,
.region-icon-img, .whatsapp-fab, .navbar, input, select, .status-badge {
  transition: all .3s var(--ease);
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}

/* ---- Accessibility: visible focus rings everywhere ---- */
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, .nav-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Top contact bar: solid 1.4 plum background (no glass/blur), with 1.7's SVG icons ---- */
.top-wrap {
  background-color: var(--plum-dark) !important;
}
.topper .icon {
  width: 34px; height: 34px; border-radius: 50%;
}

/* ---- Navbar: transparent overlay (as in 1.4), improved legibility + active glow ---- */
.ftco-navbar-light .navbar-nav .nav-link {
  font-weight: 700;
  font-size: 14.5px;
  color: #fff !important;
  text-shadow: 0 1px 6px rgba(0,0,0,.45);
  padding-left: 18px !important;
  padding-right: 18px !important;
}
.ftco-navbar-light .navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}
.ftco-navbar-light .navbar-nav .nav-link.active {
  color: #fff !important;
  text-shadow: 0 0 14px rgba(198,161,91,.85), 0 1px 6px rgba(0,0,0,.4);
  position: relative;
}
.ftco-navbar-light .navbar-nav .nav-link.active:after {
  content: '';
  position: absolute;
  left: 18px; right: 18px; bottom: -2px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
  border-radius: 2px;
}
@media (max-width: 991.98px) {
  .ftco-navbar-light .navbar-nav .nav-link {
    color: #2B1F27 !important;
    text-shadow: none;
  }
  .ftco-navbar-light .navbar-nav .nav-link.active {
    color: var(--plum) !important;
    text-shadow: none;
  }
}
.navbar-toggler {
  border: 1px solid rgba(63,11,50,.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- Buttons: pill, soft glow, lift on hover ---- */
.btn {
  border-radius: var(--radius-pill) !important;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover, .btn.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(198,161,91,.35);
}

/* ---- Hero ---- */
.slider-hero .work .img {
  position: relative;
}
.slider-hero .work .img:after {
  background: linear-gradient(160deg, rgba(42,7,33,.65) 0%, rgba(42,7,33,.42) 55%, rgba(42,7,33,.72) 100%) !important;
  opacity: 1 !important;
}
.slider-hero .work .text h2 {
  font-size: 3.1rem;
  text-shadow: 0 4px 30px rgba(0,0,0,.25);
}
.slider-hero .work .text p {
  font-size: 1.15rem;
  opacity: .92;
}

/* ---- Inner-page breadcrumb hero (About, Properties, Contact, etc.) — plum brand overlay ---- */
.hero-wrap-2 {
  height: 420px;
}
.hero-wrap-2 .overlay {
  background: linear-gradient(160deg, rgba(42,7,33,.78) 0%, rgba(63,11,50,.6) 55%, rgba(42,7,33,.8) 100%) !important;
  opacity: 1 !important;
}
.hero-wrap-2 .breadcrumbs span,
.hero-wrap-2 .breadcrumbs span a {
  color: #f0e4ec;
}
.hero-wrap-2 .breadcrumbs span a:hover {
  color: var(--gold);
}
.hero-wrap-2 h1.bread {
  color: #fff;
  font-weight: 700;
}

/* ---- Search bar: flat divided card as in 1.4, with rounded corners + a rounded gold search-button cap ---- */
.ftco-search {
  background: transparent;
  border: none;
  box-shadow: none;
  margin-top: -56px;
  position: relative;
  z-index: 10;
  padding: 0;
}
@media (max-width: 767.98px) {
  .ftco-search { margin-top: -26px; }
}
/* Properties page: the search/filter bar sits below a short 420px
   breadcrumb hero, not a tall full-height slider like the homepage —
   the -56px pull-up used there would crowd the "Properties" heading,
   so this variant sits flush below the hero instead with its own
   top spacing. */
.ftco-search-flush {
  margin-top: 40px !important;
}
@media (max-width: 767.98px) {
  .ftco-search-flush { margin-top: 28px !important; }
}
/* Buy / Rent — separate floating pill buttons that pop out above the search card */
.nav-pills {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  gap: 14px;
  display: inline-flex;
  margin-bottom: 22px;
  position: relative;
  z-index: 11;
}
.nav-pills .nav-link {
  border: none;
  cursor: pointer;
  font-family: inherit;
  border-radius: var(--radius-pill) !important;
  font-weight: 700;
  font-size: 15px;
  padding: 12px 34px;
  color: var(--plum);
  background: var(--gold);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
  transition: transform .2s ease;
}
.nav-pills .nav-link:hover {
  transform: translateY(-2px);
}
.nav-pills .nav-link.active {
  box-shadow: 0 10px 26px rgba(63,11,50,.4);
}
/* Kill Oakberry's original solid white search bar background — we add our own rounded/shadowed card below */
.ftco-search .tab-content,
.tab-wrap .tab-content {
  background: #fff !important;
  box-shadow: 0 20px 45px rgba(42,7,33,.18) !important;
  margin-top: 0 !important;
  border-radius: 10px;
  overflow: hidden;
}
.search-property-1 .row.g-0 {
  display: flex;
  flex-wrap: wrap;
}
.search-property-1 .form-group {
  background: transparent;
  border: none !important;
  border-left: 1px solid rgba(0,0,0,.08);
  border-radius: 0;
  padding: 18px 24px !important;
  box-shadow: none;
  flex: 1 1 180px;
}
.search-property-1 .form-group:first-child {
  border-left: none;
}
.search-property-1 .form-group label {
  font-size: 12px;
  letter-spacing: .5px;
  color: #000;
  font-weight: 700;
  margin-bottom: 2px;
}
.search-property-1 .form-group.d-flex.w-100.border-0 {
  background: transparent;
  box-shadow: none;
  padding: 0 !important;
  flex: 0 0 auto;
  border-left: none;
}
.search-property-1 input.btn-primary,
.search-property-1 button.btn-primary {
  width: 100%;
  height: 100%;
  padding: 18px 46px !important;
  align-self: stretch;
  background: var(--gold) !important;
  border: none !important;
  border-radius: 0 10px 10px 0 !important;
  font-weight: 700;
  letter-spacing: .5px;
  color: var(--plum);
}
.search-property-1 .icon {
  display: none;
}
.search-property-1 input[type="text"].form-control,
.search-property-1 select.form-control {
  border-radius: 0 !important;
  padding-left: 0 !important;
}
.search-property-1 input[type="text"].form-control:focus,
.search-property-1 select.form-control:focus {
  box-shadow: none !important;
}

/* Quick region-shortcut pills under the filter bar (properties.html) */
.btn-region-quick {
  display: inline-flex;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(63,11,50,.15);
  color: var(--plum);
  font-weight: 700;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  margin: 6px;
  cursor: pointer;
  transition: all .2s ease;
}
.btn-region-quick:hover {
  border-color: var(--plum);
}
.btn-region-quick.active {
  background: var(--plum);
  border-color: var(--plum);
  color: #fff;
  box-shadow: var(--shadow-soft);
}


/* ---- Region "services" icon circles ---- */
.services {
  border-radius: var(--radius-lg);
  padding: 30px 16px;
  background: #fff;
  border: 1px solid rgba(63,11,50,.06);
  box-shadow: var(--shadow-soft);
}
.services:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.services .icon {
  width: 84px; height: 84px;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(198,161,91,.18), rgba(63,11,50,.06));
  border: 1px solid rgba(198,161,91,.25);
}
.region-icon-img { width: 40px; height: 40px; margin: 0; }
.places-list li a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 0;
}
.places-list li a:before {
  content: '';
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}

/* ---- Property cards ---- */
.property-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(63,11,50,.06);
}
.property-wrap:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.property-wrap .img.img-property {
  height: 220px;
  position: relative;
  transition: transform .5s var(--ease);
}
.property-wrap:hover .img.img-property {
  transform: scale(1.04);
}
.property-wrap .img p.price {
  position: absolute;
  bottom: 14px; left: 14px;
  margin: 0;
}
.property-wrap .img p.price .orig-price {
  background: rgba(63,11,50,.85) !important;
  backdrop-filter: blur(6px);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 13px;
}
.status-badge {
  border-radius: var(--radius-pill);
  backdrop-filter: blur(4px);
}
.property-wrap .text {
  padding: 20px;
}
.property-wrap .text h3 a {
  font-weight: 700;
}
.property-wrap .text .location {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--body-text);
  font-size: 13.5px;
}
.property-wrap .text .location svg {
  color: var(--gold);
  flex-shrink: 0;
}
.property-wrap .text .location .sale,
.property-wrap .text .location .rent {
  border-radius: var(--radius-pill);
  padding: 3px 12px;
  font-size: 11px;
  font-weight: 700;
  margin-left: auto;
}
.property_list {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 16px;
  border-top: 1px solid rgba(63,11,50,.08);
  padding-top: 14px;
}
.property_list li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--body-text);
  font-weight: 600;
}
.property_list li svg { color: var(--plum); }

/* ---- About / stats ---- */
.ftco-about-section .img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  position: relative;
}
.ftco-about-section .img:after {
  content: '';
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(198,161,91,.4);
  border-radius: calc(var(--radius-lg) + 8px);
  z-index: -1;
}
.counter-wrap {
  padding: 14px 10px;
  border-radius: var(--radius-md);
  background: rgba(63,11,50,.03);
}
.counter-wrap .number {
  font-size: 2.1rem;
  font-weight: 700;
}
.counter-wrap p {
  margin: 0;
  font-size: 13px;
  color: var(--body-text);
  font-weight: 600;
}

/* ---- CTA banner: glass panel over the background image ---- */
.ftco-intro .container-xl > .row > div {
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}

/* ---- Testimonials ---- */
.testimony-wrap {
  background: #fff;
  border: 1px solid rgba(63,11,50,.06);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimony-wrap:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
}
.testimony-wrap .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(198,161,91,.15);
  color: var(--gold);
  margin-bottom: 14px;
}
.testimony-wrap .msg {
  font-size: 16px;
  line-height: 1.6;
  font-style: italic;
}
.testimony-wrap .user-img {
  width: 46px; height: 46px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
}
.testimony-wrap .name {
  font-weight: 700;
  margin: 0;
}
.testimony-wrap .position {
  font-size: 12px;
  color: var(--body-text);
}

/* ---- Blog cards ---- */
.blog-entry {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: #fff;
}
.blog-entry:hover {
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.blog-entry .block-20 {
  height: 190px;
  transition: transform .5s var(--ease);
}
.blog-entry:hover .block-20 {
  transform: scale(1.05);
}
.blog-entry .text {
  padding: 18px;
}

/* ---- Footer ---- */
.ftco-footer {
  position: relative;
}
.ftco-footer:before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), rgba(198,161,91,0));
}
.ftco-footer-social li a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  float: none;
}
.ftco-footer-social li a:hover {
  background: var(--gold);
  color: var(--ink) !important;
  transform: translateY(-3px);
}
.ftco-footer .block-23 ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ftco-footer .block-23 ul li .icon {
  width: 32px; height: 32px;
  border-radius: 50% !important;
  background: rgba(255,255,255,.08);
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-top: 0 !important;
  color: var(--gold) !important;
}
.ftco-footer .block-23 ul li .text {
  color: rgba(255,255,255,.85) !important;
}

/* ---- WhatsApp glass FAB ---- */
.whatsapp-fab {
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
}
.whatsapp-fab:hover {
  transform: translateY(-3px);
}
.whatsapp-fab-menu a {
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.92);
}

/* ---- Small inline icon sizing helper ---- */
.icn {
  width: 1em;
  height: 1em;
  display: inline-block;
  vertical-align: -0.14em;
}

/* ---- Missing Bootstrap flex utilities ----
   This build's css/style.css is a stripped-down Bootstrap subset and
   never included these — without them, e.g. .d-flex.flex-column
   silently falls back to the browser's default row direction. Adding
   the common ones here fixes every page that already uses them
   (contact.html, properties.html) without needing to touch style.css
   itself. */
.flex-row      { flex-direction: row !important; }
.flex-column   { flex-direction: column !important; }
.flex-wrap     { flex-wrap: wrap !important; }
.flex-nowrap   { flex-wrap: nowrap !important; }
.justify-content-start { justify-content: flex-start !important; }
.align-self-center     { align-self: center !important; }
.align-self-start      { align-self: flex-start !important; }
.align-self-end        { align-self: flex-end !important; }

/* ---- Circular social icon buttons (contact page "talk directly" panel) ---- */
.vidu-social-circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.22);
  transition: all .2s ease;
}
.vidu-social-circle:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--plum-dark);
  transform: translateY(-2px);
}
