/* ============================================================
   REAL ESTATE â€” HOMEPAGE CSS
   Perfect-pixel clone based on cmprealestate.com.au
   Fonts: Konnect & Thomas
   ============================================================ */

@font-face {
    font-family: 'Konnect Light';
    font-style: normal;
    font-weight: 300;
    src: url('https://cmprealestate.com.au/wp-content/themes/yootheme-getmilk/fonts/Konnect-Light.otf');
}
@font-face {
    font-family: 'Konnect Regular';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/KonnectRegular.otf');
}
@font-face {
    font-family: 'Thomas';
    font-style: normal;
    font-weight: 200;
    src: url('../fonts/ThomasMagRegular.otf');
}

/* â”€â”€ RESET & ROOT â”€â”€ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --wf-black:     #000000;
  --wf-dark:      #111111;
  --wf-mid:       #333333;
  --wf-grey:      #777777;
  --wf-light:     #f4f4f4;
  --wf-white:     #ffffff;
  --wf-accent:    #999999;

  --wf-font-logo: 'Thomas', serif;
  --wf-font-heading: 'Thomas', serif;
  --wf-font-body: 'Konnect Regular', sans-serif;
  --wf-container: 1660px;
  --wf-pad:       clamp(30px, 5vw, 80px);

  --wf-trans-fast: 0.25s cubic-bezier(.4,0,.2,1);
  --wf-trans-med:  0.45s cubic-bezier(.4,0,.2,1);
  --wf-trans-slow: 0.7s  cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body.whitefox-home-page, body.cmp-home-page, body {
  font-family: var(--wf-font-body);
  font-size: 15px;
  color: var(--wf-dark);
  background: var(--wf-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* hide ALL Flatsome default header and wrappers on this template */
.header-wrapper,
#header,
.flatsome-header,
#top,
.top-area,
.nav-bar,
.header-bar,
#main-nav,
.flatsome-header-section { display: none !important; }

/* Also remove Flatsome top margin it adds to first element */
body.whitefox-home-page #main,
body.whitefox-home-page .main-content,
body.whitefox-home-page #content-wrapper { padding-top: 0 !important; margin-top: 0 !important; }

/* Remove Flatsome wrapper bottom whitespace before footer */
#main, .main-content, #content-wrapper, .page-wrapper, #content,
.page .entry-content, .type-page .entry-content,
#wrapper, .wrapper, #top, .row, .page-body,
.container, #content .row, .page-body .row {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}
.wf-footer { margin-top: 0 !important; }

/* Hide ALL Flatsome default footer elements */
.footer-wrapper,
#footer,
.flatsome-footer,
.absolute-footer,
.footer-1,
.footer-2,
.copyright-footer,
.flatsome-copyright,
.reveal-footer,
.has-reveal-footer .reveal-footer,
footer.footer,
.footer-wrapper + *,
body > div.footer-wrapper { display: none !important; height: 0 !important; overflow: hidden !important; padding: 0 !important; margin: 0 !important; min-height: 0 !important; }

/* Prevent body/html from adding trailing space */
body, html { margin-bottom: 0 !important; padding-bottom: 0 !important; }

/* Force the page-wrapper to shrink-wrap its content */
body > div[id]:last-of-type { padding-bottom: 0 !important; margin-bottom: 0 !important; }
body > .page-wrapper { min-height: unset !important; }

/* Hide Flatsome's mobile sidebar injected after our footer */
#main-menu.mobile-sidebar,
.mobile-sidebar.mfp-hide {
  display: none !important;
  height: 0 !important;
  overflow: hidden !important;
  position: absolute !important;
}



#wf-header { display: flex !important; }

/* â”€â”€ UTILITY â”€â”€ */
.wf-container {
  width: 100%;
  max-width: var(--wf-container);
  margin: 0 auto;
  padding-left: var(--wf-pad);
  padding-right: var(--wf-pad);
}

.wf-section {
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(64px, 8vw, 120px);
}

.wf-eyebrow {
  display: inline-block;
  font-family: var(--wf-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--wf-dark);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.wf-eyebrow-white { color: rgba(255,255,255,0.6); }

.wf-section-heading {
  font-family: var(--wf-font-heading);
  font-size: clamp(32px, 4vw, 60px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--wf-dark);
}

/* â”€â”€ BUTTONS â”€â”€ */
.wf-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--wf-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--wf-trans-fast);
  position: relative;
  overflow: hidden;
}

.wf-btn-dark {
  background: var(--wf-dark);
  color: var(--wf-white);
  border-color: var(--wf-dark);
}
.wf-btn-dark:hover {
  background: transparent;
  color: var(--wf-dark);
}

.wf-btn-white {
  background: var(--wf-white);
  color: var(--wf-dark);
  border-color: var(--wf-white);
}
.wf-btn-white:hover {
  background: transparent;
  color: var(--wf-white);
}

.wf-btn-outline-white {
  background: transparent;
  color: var(--wf-white);
  border-color: rgba(255,255,255,0.6);
}
.wf-btn-outline-white:hover {
  background: var(--wf-white);
  color: var(--wf-dark);
  border-color: var(--wf-white);
}

.wf-btn-lg { padding: 20px 48px; font-size: 13px; }

/* Arrow link */
.wf-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wf-dark);
  text-decoration: none;
  transition: gap var(--wf-trans-fast);
}
.wf-link-arrow svg {
  width: 40px;
  height: 12px;
  transition: transform var(--wf-trans-fast);
}
.wf-link-arrow:hover { gap: 20px; }
.wf-link-arrow:hover svg { transform: translateX(6px); }
.wf-arrow-white { color: var(--wf-white); }


/* ============================================================
   HEADER (CMP STYLE)
============================================================ */
.cmp-header {
  position: absolute; /* CMP has transparent header on hero */
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 30px 0;
  transition: all var(--wf-trans-med);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cmp-header.is-scrolled {
  position: fixed;
  background: var(--wf-white);
  box-shadow: 0 1px 15px rgba(0,0,0,0.05);
  padding: 15px 0;
  border-bottom: none;
}

.cmp-header.is-scrolled .cmp-logo { color: var(--wf-dark); }
.cmp-header.is-scrolled .cmp-nav-link { color: var(--wf-dark); }
.cmp-header.is-scrolled .cmp-hamburger span { background: var(--wf-dark); }

.wf-header-inner {
  width: 100%;
  max-width: 100%;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.cmp-logo { 
  display: block; 
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--wf-white);
  text-decoration: none;
  transition: color var(--wf-trans-fast);
}
.cmp-logo img {
  max-width: 280px;
  max-height: 50px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: all var(--wf-trans-fast);
}
.cmp-header.is-scrolled .cmp-logo img {
  max-height: 40px;
}

/* Nav */
.cmp-nav-desktop { display: flex; align-items: center; gap: 40px; margin-left: auto; margin-right: 40px; }
.cmp-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  gap: 32px;
}
.cmp-nav-link {
  font-family: var(--wf-font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--wf-white);
  text-decoration: none;
  position: relative;
  transition: color var(--wf-trans-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cmp-nav-link:hover { color: rgba(255,255,255,0.7); }
.cmp-header.is-scrolled .cmp-nav-link:hover { color: var(--wf-grey); }

/* Dropdown Styles */
.cmp-has-dropdown { position: relative; }
.cmp-has-dropdown > a::after {
  content: '';
  display: none;
}
.cmp-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -25px;
  background: var(--wf-white);
  min-width: 280px;
  list-style: none;
  padding: 20px 0;
  margin: 0;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05); /* Soft, premium shadow */
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  border-radius: 4px;
}
.cmp-has-dropdown:hover .cmp-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.cmp-dropdown-menu li {
  border-bottom: none;
}
.cmp-dropdown-menu a {
  display: block;
  padding: 10px 30px;
  color: #555;
  font-family: 'Konnect Regular', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
  text-transform: none;
}
.cmp-dropdown-menu a:hover {
  color: #1a1a1a;
  background: transparent;
  padding-left: 35px; /* Subtle slide effect */
}

/* Hamburger */
.cmp-hamburger {
  background: none; border: none; cursor: pointer;
  display: flex; flex-direction: column; justify-content: center;
  gap: 6px; padding: 4px; width: 32px;
  z-index: 1001;
}
@media (min-width: 1000px) {
  .cmp-hamburger { display: none; }
}
@media (max-width: 999px) {
  .cmp-nav-desktop { display: none; }
}
.cmp-hamburger span {
  display: block; width: 100%; height: 1.5px;
  background: var(--wf-white);
  transition: all var(--wf-trans-med);
}
.cmp-hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.cmp-hamburger.is-open span:nth-child(2) { opacity: 0; }
.cmp-hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* â”€â”€ Mobile Menu â”€â”€ */
.wf-mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--wf-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--wf-pad);
  transform: translateX(100%);
  transition: transform var(--wf-trans-slow);
}
.wf-mobile-menu.is-open { transform: translateX(0); }
.wf-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.wf-mobile-close {
  background: none; border: none;
  color: var(--wf-white); font-size: 32px;
  cursor: pointer; line-height: 1; flex-shrink: 0;
}
.wf-mobile-nav-list {
  list-style: none;
  margin-bottom: 48px;
}
.wf-mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.wf-mobile-nav-list a {
  display: block; padding: 20px 0;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--wf-white);
  text-decoration: none;
  transition: opacity var(--wf-trans-fast);
}
.wf-mobile-nav-list a:hover { opacity: 0.5; color: var(--wf-white) !important; }
.wf-mobile-socials {
  display: flex; gap: 24px;
}
.wf-mobile-socials a { color: rgba(255,255,255,0.5); transition: color var(--wf-trans-fast); }
.wf-mobile-socials a:hover { color: var(--wf-white); }
.wf-mobile-socials svg { width: 22px; height: 22px; }


/* ============================================================
   HERO SECTION
============================================================ */
.wf-hero {
  position: relative;
  width: 100vw;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--wf-black);
}

.wf-hero-media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.wf-hero-media.wf-hero-img,
.wf-hero-media.wf-hero-gradient {
  background-size: cover;
  background-position: center;
}
.wf-hero-gradient {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 40%, #16213e 100%);
}
video.wf-hero-media { object-fit: cover; }

.wf-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.4)  50%,
    rgba(0,0,0,0.6)  100%
  );
  z-index: 2;
}

.wf-hero-content {
  position: relative; z-index: 3;
  text-align: center;
  color: var(--wf-white);
  padding: 0 var(--wf-pad);
  max-width: 1000px;
  width: 100%;
}

.wf-hero-title {
  font-family: var(--wf-font-logo);
  font-size: clamp(32px, 10vw, 160px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: clamp(2px, 1vw, 8px);
  text-transform: uppercase;
  color: var(--wf-white);
  margin-bottom: 12px;
  opacity: 0;
  white-space: nowrap;
  transform: translateY(30px);
  animation: heroFadeUp 1s ease 0.3s forwards;
}
.wf-hero-subtitle {
  font-family: var(--wf-font-heading);
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 400;
  letter-spacing: 10px;
  text-transform: uppercase;
  color: var(--wf-white);
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1s ease 0.5s forwards;
}

.wf-hero-bottom-tagline {
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 50px;
  font-family: var(--wf-font-heading);
  font-size: clamp(16px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.5px;
  color: var(--wf-white);
  z-index: 3;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.7s forwards;
}
@media (max-width: 768px) {
  .wf-hero-bottom-tagline {
    bottom: 30px;
    left: 20px;
    right: 20px;
    line-height: 1.2;
  }
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollLinePulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.6); opacity: 0.4; }
}


/* ============================================================
   INTRO SECTION  (tcdi â€” pixel-perfect match)
============================================================ */
.wf-intro {
  background: var(--wf-white);
  position: relative;
  z-index: 1;
  padding: 80px 0 80px;
}
@media (min-width: 900px) {
  .wf-intro { padding: 80px 0 80px; }
}

.wf-intro-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 900px) {
  .wf-intro-inner { padding: 0 48px; }
}

/* Heading â€” spans full width, visually over left column */
.wf-intro-heading {
  font-family: var(--wf-font-heading);
  font-size: 22px;
  line-height: 29px;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: var(--wf-dark);
  width: 100%;
  margin: 0 0 0;
}
@media (min-width: 900px) {
  .wf-intro-heading {
    font-size: 32px;
    line-height: 42px;
    letter-spacing: 0.3px;
    max-width: 55%;
  }
}

/* Left Column (55%) */
.wf-intro-left {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 900px) {
  .wf-intro-left { width: 55%; }
}

/* THE DEAL + Since 2017 row */
.wf-intro-deal {
  display: flex !important;
  align-items: baseline !important;
  align-self: flex-start !important;
  justify-content: flex-start !important;
  gap: 80px !important;
  width: auto !important;
  max-width: fit-content !important;
  margin-top: 45px;
  margin-bottom: 0;
  white-space: nowrap;
}
.wf-intro-deal h4 {
  margin: 0;
  padding: 0;
}
.wf-intro-deal p {
  margin: 0;
  padding: 0;
}
.wf-eyebrow {
  font-size: 12px;
  letter-spacing: 1.2px;
  font-weight: 700;
  text-transform: uppercase;
}
.wf-intro-year {
  font-family: var(--wf-font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--wf-grey);
  letter-spacing: 0.2px;
}

/* Large house image */
.wf-intro-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.wf-intro-img-large {
  margin-top: 60px;
  aspect-ratio: 1/1;
}
@media (min-width: 900px) {
  .wf-intro-img-large { margin-top: 110px; }
}

/* Right Column (32%) */
.wf-intro-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 40px;
}
@media (min-width: 900px) {
  .wf-intro-right {
    width: 32%;
    margin-top: 45px;
  }
}

/* Text + arrow content block */
.wf-intro-content {
  margin-bottom: 40px;
}
.wf-intro-text {
  font-family: var(--wf-font-body);
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0.2px;
  font-weight: 400;
  color: #333;
  margin: 0 0 36px;
}
@media (min-width: 900px) {
  .wf-intro-text { margin: 0 0 40px; }
}

/* Small portrait image â€” full width of right col, aligned to bottom half */
.wf-intro-img-small {
  width: 100%;
  aspect-ratio: 414/506;
  object-position: top;
}
@media (max-width: 899px) {
  .wf-intro-img-small {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
}

/* ============================================================
   CTA COLUMNS SECTION (We pride ourselves)
============================================================ */
.cta-columns-section {
  background: var(--wf-white);
  padding: 0 0 80px;
}
@media (min-width: 900px) {
  .cta-columns-section {
    padding: 0 0 120px;
  }
}

.cta-columns-inner {
  width: 100%;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 900px) {
  .cta-columns-inner {
    padding: 0 48px;
  }
}

.cta-columns-header {
  margin-bottom: 40px;
}
@media (min-width: 900px) {
  .cta-columns-header {
    margin-bottom: 60px;
  }
}

.cta-columns-header__title {
  font-family: var(--wf-font-body);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.2px;
  color: var(--wf-dark);
  max-width: 900px;
  margin: 0;
}

.cta-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 600px) {
  .cta-columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .cta-columns {
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}

.cta-columns__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.cta-columns__item-image-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 20px;
}

.cta-columns__item-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cta-columns__item-link:hover .cta-columns__item-image {
  transform: scale(1.05);
}

.cta-columns__item-title {
  font-family: var(--wf-font-body);
  font-size: 11px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--wf-dark);
  text-transform: uppercase;
}


/* ============================================================
   PROPERTY SLIDER (Swiper)
============================================================ */
.wf-content-slider-section {
  width: 100vw;
  height: clamp(600px, 85vh, 900px);
  overflow: hidden;
  position: relative;
  background: var(--wf-white);
}
.wf-content-slider {
  width: 100%;
  height: 100%;
}
.wf-content-slider-item {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  overflow: hidden;
}
.wf-content-slider-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 3s ease-out;
}
.wf-content-slider-item:hover .wf-content-slider-img {
  transform: scale(1.03);
}
.wf-content-slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.2) 100%);
}
.wf-content-slider-counter {
  position: absolute;
  top: 50px;
  left: 50px;
  color: var(--wf-white);
  font-family: var(--wf-font-heading);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  z-index: 2;
}
.wf-content-slider-info {
  position: absolute;
  bottom: 50px;
  left: 50px;
  right: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 2;
  flex-wrap: wrap;
  gap: 20px;
}
.wf-content-slider-left {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.wf-content-slider-address {
  font-family: var(--wf-font-heading);
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 700;
  color: var(--wf-white);
  margin: 0;
}
.wf-content-slider-suburb {
  font-family: var(--wf-font-body);
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--wf-white);
  margin: 0;
  position: relative;
}
.wf-content-slider-suburb::before {
  content: '|';
  margin-right: 20px;
  color: rgba(255,255,255,0.5);
}
@media (max-width: 768px) {
  .wf-content-slider-suburb::before { display: none; }
  .wf-content-slider-left { flex-direction: column; align-items: flex-start; gap: 8px; }
}
.wf-content-slider-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.wf-content-badge {
  background: var(--wf-white);
  color: var(--wf-dark);
  font-family: var(--wf-font-heading);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 8px 16px;
}
.wf-content-badge-alt {
  color: var(--wf-white);
  font-family: var(--wf-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.wf-content-slider-nav {
  display: flex;
  gap: 30px;
  margin-left: 20px;
}
.wf-slider-prev-btn, .wf-slider-next-btn {
  background: none;
  border: none;
  color: var(--wf-white);
  font-family: var(--wf-font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity var(--wf-trans-fast);
}
.wf-slider-prev-btn:hover, .wf-slider-next-btn:hover {
  opacity: 0.6;
}


/* ============================================================
   BRAND SPLIT SECTION
============================================================ */
.wf-brand-split { padding: 0; overflow: hidden; }
.wf-brand-split-inner {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 700px;
}
.wf-brand-split-image {
  position: relative;
  overflow: hidden;
}
.wf-brand-image-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform var(--wf-trans-slow);
}
.wf-brand-split-image:hover .wf-brand-image-bg { transform: scale(1.02); }
.wf-brand-image-caption {
  position: absolute; bottom: 24px; left: 24px;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
  z-index: 2;
}
.wf-brand-split-content {
  background: var(--wf-white);
  display: flex;
  align-items: center;
  padding: clamp(48px, 6vw, 100px);
}
.wf-brand-content-inner { max-width: 480px; }
.wf-brand-heading {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -1px; color: var(--wf-dark);
  margin-bottom: 28px;
}
.wf-brand-text {
  font-size: 16px; font-weight: 400;
  line-height: 1.75; color: var(--wf-mid);
  margin-bottom: 20px;
}
.wf-brand-content-inner .wf-btn { margin-top: 12px; }


/* ============================================================
   STATS SECTION
============================================================ */
.wf-stats-section { padding: 0; }
.wf-stats-bg {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.wf-stats-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.85);
}
.wf-stats-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 100px);
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  align-items: center;
}
.wf-stats-heading {
  font-size: clamp(32px, 4.5vw, 60px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -1.5px; color: var(--wf-white);
  margin-bottom: 56px;
}
.wf-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 32px;
}
.wf-stat-item { display: flex; flex-direction: column; }
.wf-stat-num {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900; letter-spacing: -1.5px;
  color: var(--wf-white); line-height: 1;
  margin-bottom: 8px;
}
.wf-stat-label {
  font-size: 10px; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.wf-stats-story {
  font-size: 16px; font-weight: 400;
  line-height: 1.8; color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.wf-stats-right .wf-link-arrow { margin-top: 20px; }


/* ============================================================
   SELL WITH US CTA
============================================================ */
.wf-sell-cta { background: var(--wf-light); }
.wf-sell-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.wf-sell-heading {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900; line-height: 1.05;
  letter-spacing: -1.5px; color: var(--wf-dark);
  margin-top: 12px;
}
.wf-sell-cta-action {
  display: flex; flex-direction: column;
  gap: 20px; align-items: flex-start;
}


/* ============================================================
   OFFICES SECTION
============================================================ */
.wf-offices-section { background: var(--wf-white); }
.wf-offices-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  margin-bottom: 48px;
}
.wf-offices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.wf-office-card { overflow: hidden; }
.wf-office-img {
  position: relative;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.wf-office-img::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  transition: background var(--wf-trans-med);
}
.wf-office-card:hover .wf-office-img::before { background: rgba(0,0,0,0.2); }
.wf-office-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
}
.wf-office-city {
  position: relative; z-index: 1;
  padding: 24px;
  font-size: 13px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--wf-white);
}
.wf-office-details {
  padding: 24px;
  background: var(--wf-white);
  border-top: 1px solid rgba(0,0,0,0.05);
}
.wf-office-address {
  font-size: 13px; line-height: 1.6;
  color: var(--wf-mid); margin-bottom: 8px;
}
.wf-office-phone {
  font-size: 13px; font-weight: 600;
  color: var(--wf-dark); text-decoration: none;
  transition: color var(--wf-trans-fast);
}
.wf-office-phone:hover { color: var(--wf-accent); }


/* ============================================================
   NEWS / BLOG SECTION
============================================================ */
.wf-news-section { background: var(--wf-white); }
.wf-news-header {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}
.wf-news-header .wf-section-heading { flex: 1; }
.wf-news-all { flex-shrink: 0; }

.wf-news-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}
.wf-news-card { overflow: hidden; }
.wf-news-featured {
  grid-row: 1 / 3;
}
.wf-news-card-link { display: block; text-decoration: none; color: inherit; }

.wf-news-img {
  position: relative;
  background-size: cover;
  background-position: center;
  aspect-ratio: 16/10;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  padding: 20px;
}
.wf-news-featured .wf-news-img {
  aspect-ratio: unset;
  height: 100%;
  min-height: 500px;
}
.wf-news-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  transition: background var(--wf-trans-med);
}
.wf-news-card-link:hover .wf-news-overlay { background: rgba(0,0,0,0.5); }

.wf-news-cat {
  position: relative; z-index: 1;
  font-size: 9px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--wf-white);
  padding: 5px 10px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.2);
}

.wf-news-body {
  padding: 24px;
  background: var(--wf-white);
  border: 1px solid rgba(0,0,0,0.05);
  border-top: none;
}
.wf-news-featured .wf-news-body { position: relative; }
.wf-news-date {
  font-size: 11px; font-weight: 500;
  color: var(--wf-grey); letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.wf-news-title {
  font-size: clamp(16px, 1.8vw, 22px);
  font-weight: 700; line-height: 1.3;
  color: var(--wf-dark); margin-bottom: 20px;
  transition: color var(--wf-trans-fast);
}
.wf-news-featured .wf-news-title { font-size: clamp(20px, 2.5vw, 30px); }
.wf-news-card-link:hover .wf-news-title { color: var(--wf-grey); }
.wf-news-read { font-size: 10px; }


/* ============================================================
   FOOTER
============================================================ */
.wf-footer { margin-top: 0; }
.wf-footer-bg {
  position: relative;
  background-size: cover;
  background-position: center;
}
.wf-footer-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.9);
}
/* ============================================================
   FOOTER (CMP STYLE)
============================================================ */
.cmp-footer { 
  background: var(--wf-white);
  color: var(--wf-dark);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.cmp-footer-main {
  padding: 80px 0;
}

.cmp-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
  gap: 60px;
}

.cmp-footer-col {
  display: flex;
  flex-direction: column;
}

.cmp-logo-dark {
  color: var(--wf-dark);
  margin-bottom: 24px;
}

.cmp-footer-text, .cmp-footer-col ul li a {
  font-family: var(--wf-font-body);
  font-size: 14px;
  color: rgba(0,0,0,0.7);
  line-height: 1.6;
  text-decoration: none;
  transition: color var(--wf-trans-fast);
}
.cmp-footer-col ul li a { display: block; padding: 6px 0; }
.cmp-footer-col ul li a:hover, .cmp-footer-text a:hover { color: var(--wf-dark); }
.cmp-footer-text a { color: inherit; text-decoration: none; }

.cmp-footer-heading {
  font-family: var(--wf-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--wf-dark);
  margin-bottom: 24px;
}

.cmp-footer-col ul { list-style: none; margin: 0; padding: 0; }

.cmp-footer-socials {
  display: flex; gap: 16px; margin-top: 16px;
}
.cmp-footer-socials a {
  color: rgba(0,0,0,0.6);
  transition: color var(--wf-trans-fast);
}
.cmp-footer-socials a:hover { color: var(--wf-dark); }

.cmp-footer-bottom {
  background: #111;
  padding: 24px 0;
}
.cmp-footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.cmp-footer-copy, .cmp-footer-legal a {
  font-family: var(--wf-font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--wf-trans-fast);
}
.cmp-footer-legal { display: flex; gap: 24px; }
.cmp-footer-legal a:hover { color: #fff; }

/* ============================================================
   SCROLL ANIMATION (SAL-like)
============================================================ */
[data-sal] {
  opacity: 0;
  transition-duration: 0.7s;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
}
[data-sal="fade"] { transition-property: opacity; }
[data-sal="slide-up"] {
  transition-property: opacity, transform;
  transform: translateY(40px);
}
[data-sal="slide-left"] {
  transition-property: opacity, transform;
  transform: translateX(40px);
}
[data-sal="slide-right"] {
  transition-property: opacity, transform;
  transform: translateX(-40px);
}
[data-sal].sal-animate {
  opacity: 1;
  transform: translate(0,0);
}
[data-sal-delay="100"] { transition-delay: 0.1s; }
[data-sal-delay="200"] { transition-delay: 0.2s; }
[data-sal-delay="300"] { transition-delay: 0.3s; }
[data-sal-delay="400"] { transition-delay: 0.4s; }


/* ============================================================
   A GLOBAL MINDSET (Offices Map)
============================================================ */
.offices-map {
  background-color: #f7f7f7; 
  padding: 120px 0 140px;
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.offices-map__container {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 var(--wf-pad);
  position: relative;
  display: flex;
  align-items: center;
  min-height: 600px;
}
.offices-map__content {
  position: relative;
  z-index: 10;
  max-width: 440px;
}
.offices-map__title {
  font-family: var(--wf-font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--wf-dark);
  margin-bottom: 30px;
}
.offices-map__description {
  font-family: var(--wf-font-body);
  font-size: 16px;
  line-height: 1.8;
  color: var(--wf-dark);
  margin-bottom: 40px;
}
.offices-map__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--wf-font-body);
  font-size: 12px;
  font-weight: 700;
  color: var(--wf-dark);
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.offices-map__svg-wrapper {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 65%;
  max-width: 1100px;
  z-index: 1;
  pointer-events: none;
}
.offices-map__svg-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
}
.offices-map__svg-wrapper svg path {
  fill: #FFFFFF !important;
}

/* ============================================================
   FEATURED PROPERTIES
============================================================ */
.featured {
  background-color: #F8F8F8;
  padding: 100px 0 80px;
  width: 100vw;
  overflow: hidden;
}
.featured__inner {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 40px;
}
.featured__title h2 {
  font-family: var(--wf-font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--wf-dark);
  margin-bottom: 50px;
}
.property-archive {
  background: transparent;
}
.search {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 40px 60px;
}
.search__nav {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.search__button {
  background: transparent;
  border: none;
  padding: 12px 24px;
  border-radius: 4px;
  font-family: var(--wf-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
  cursor: pointer;
  background: #EAEAEA;
  transition: all 0.3s ease;
}
.search__button.active, .search__button:hover {
  background: var(--wf-dark);
  color: var(--wf-white);
}
.search__form {
  background: transparent;
}
.search__row--dropdowns {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}
.search__row--dropdowns > div {
  flex: 1;
  min-width: 160px;
  border-bottom: 1px solid #CCC;
  padding-bottom: 12px;
  font-family: var(--wf-font-body);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: var(--wf-dark);
}
.btn--search, .btn--search-mobile {
  background: var(--wf-dark);
  color: var(--wf-white);
  padding: 16px 32px;
  border: none;
  font-family: var(--wf-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 20px;
  border-radius: 2px;
}
.featured__items {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  padding: 20px 40px 60px;
  scroll-snap-type: x mandatory;
  width: 100vw;
  margin-left: -40px;
}
.featured__items::-webkit-scrollbar {
  display: none;
}
.featured__item {
  min-width: 400px;
  flex: 0 0 calc(50% - 20px);
  scroll-snap-align: start;
}
@media (min-width: 1200px) {
  .featured__item {
    flex: 0 0 calc(33.333% - 26px);
  }
}
@media (min-width: 1600px) {
  .featured__item {
    flex: 0 0 500px; /* Fixed width on large screens to fit a few */
  }
}
.card--property__gallery {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.card--property__gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.card--property:hover .card--property__gallery img {
  transform: scale(1.05);
}
.card--property__title {
  margin-top: 24px;
}
.card--property__title span {
  font-family: var(--wf-font-heading);
  font-size: 18px;
  font-weight: 400;
  color: var(--wf-dark);
  line-height: 1.4;
  display: block;
}
.card--property__stats {
  font-family: var(--wf-font-body);
  font-size: 12px;
  font-weight: 600;
  color: #777;
  margin-top: 12px;
}
.card--property__stats ul {
  display: flex;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.card--property__stats ul li {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.card--property__title, .card--property__content {
  text-decoration: none;
}
/* Hide unused tools in forms or reset styles */
.search__row--nav, .search__row--search, .form__mobile-toggles, .form__autocomplete, .form__clear { display: none !important; }
.featured__feature-title {
  border-top: 1px solid #DDD;
  padding-top: 32px;
  margin-bottom: 40px;
  max-width: 1660px;
  margin-left: auto;
  margin-right: auto;
}
.featured__feature-title h4 {
  font-family: var(--wf-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wf-dark);
  margin: 0;
}
.property-archive__inner {
  display: flex;
  justify-content: flex-end;
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 40px;
}
.property-archive__sort-option {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--wf-font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
}
.property-archive__sort-option .react-select__control {
  min-width: 120px;
}
.featured__view-all {
  margin-top: 20px;
  text-align: left;
}
.featured__view-all .btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--wf-font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  text-decoration: none;
  color: var(--wf-dark);
}
.react-select__control {
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
}
.react-select__value-container { padding: 0 !important; cursor: pointer; }
.card--property__prev, .card--property__next, .card--property__prev *, .card--property__next * { display: none !important; }

/* ============================================================
   THE WHITEFOX ADVANTAGE
============================================================ */
.advantage {
  background-color: #FFFFFF;
  padding: 120px 0 100px;
  width: 100vw;
  overflow: hidden;
}
.advantage__inner {
  max-width: 1660px;
  margin: 0 auto;
  padding: 0 40px;
}
.advantage__title h2 {
  font-family: var(--wf-font-heading);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--wf-dark);
  margin-bottom: 80px;
  line-height: 1.1;
}
.advantage__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 120px;
}
.advantage__stats ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 40px;
}
.advantage__stats li {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.advantage__stats .label {
  font-family: var(--wf-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #666;
}
.advantage__stats .value {
  font-family: var(--wf-font-heading);
  font-size: 42px;
  font-weight: 300;
  color: var(--wf-dark);
}
.advantage__text p {
  font-family: var(--wf-font-body);
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin: 0;
  max-width: 600px;
}
.advantage__press h4 {
  font-family: var(--wf-font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--wf-dark);
  margin-bottom: 40px;
}
.advantage__logos {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.advantage__logos .logo-wrapper {
  color: var(--wf-dark);
  font-family: var(--wf-font-heading);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}
.advantage__logos img {
  height: 30px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(100%);
  transition: opacity 0.3s;
}
.advantage__logos img:hover {
  opacity: 1;
}

/* ============================================================
   SECTION 4: OFFICES MAP (A Global Mindset)
============================================================ */
.offices-map {
  background-color: #f5f5f5;
  padding: 120px 0;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

.offices-map__container {
  width: 100%;
  max-width: var(--wf-container, 1660px);
  margin: 0 auto;
  padding: 0 var(--wf-pad, 48px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
@media (min-width: 900px) {
  .offices-map__container {
    flex-direction: row;
    gap: 40px;
  }
}

.offices-map__content {
  width: 100%;
}
@media (min-width: 900px) {
  .offices-map__content {
    width: 40%;
    padding-right: 40px;
  }
}

.offices-map__title {
  font-family: var(--wf-font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--wf-dark, #111);
  margin-bottom: 24px;
}

.offices-map__description {
  font-family: var(--wf-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--wf-mid, #333);
  margin-bottom: 40px;
  max-width: 500px;
}

.offices-map__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--wf-font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--wf-dark, #111);
  text-decoration: none;
  transition: gap var(--wf-trans-fast, 0.25s);
}

.offices-map__link svg {
  width: 26px;
  height: 12px;
  transition: transform var(--wf-trans-fast, 0.25s);
}

.offices-map__link:hover {
  gap: 20px;
}
.offices-map__link:hover svg {
  transform: translateX(6px);
}

.offices-map__svg-wrapper {
  width: 100%;
  position: relative;
}
@media (min-width: 900px) {
  .offices-map__svg-wrapper {
    width: 55%;
  }
}

.offices-map__svg-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
}

.offices-map__svg-wrapper svg path:not([fill="none"]) {
  fill: #ffffff; /* Main map silhouette */
}

.offices-map__svg-wrapper svg circle,
.offices-map__svg-wrapper svg .pin {
  fill: #111111; /* Map Pins */
  transition: transform 0.3s ease;
  transform-origin: center;
}

.offices-map__svg-wrapper svg circle:hover,
.offices-map__svg-wrapper svg .pin:hover {
  transform: scale(1.5);
  cursor: pointer;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .wf-brand-split-inner { grid-template-columns: 1fr 1fr; }
  .wf-stats-inner { grid-template-columns: 1fr; gap: 60px; }
  .wf-offices-grid { grid-template-columns: 1fr; gap: 2px; }
  .wf-office-img { aspect-ratio: 16/7; }
}

@media (max-width: 768px) {
  .wf-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .wf-brand-split-inner { grid-template-columns: 1fr; }
  .wf-brand-split-image { aspect-ratio: 4/3; }
  .wf-brand-split-content { padding: 48px var(--wf-pad); }
  .wf-nav-list { display: none; }
  .wf-stats-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .wf-sell-cta-inner { flex-direction: column; align-items: flex-start; }
  .wf-news-grid { grid-template-columns: 1fr; }
  .wf-news-featured { grid-row: auto; }
  .wf-news-featured .wf-news-img { min-height: 280px; }
  .wf-footer-columns { grid-template-columns: 1fr 1fr; }
  .wf-footer-bottom { flex-direction: column; align-items: flex-start; }
  .wf-listings-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wf-hero-cta-group { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .wf-stats-grid { grid-template-columns: 1fr; }
  .wf-footer-columns { grid-template-columns: 1fr; }
  .wf-offices-grid { grid-template-columns: 1fr; }
}

/* Force Dropdown visibility fix */
.cmp-has-dropdown .cmp-dropdown-menu {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    background: #FFF !important;
    min-width: 250px !important;
    list-style: none !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.3s ease !important;
    border: none !important;
    display: block !important;
}

.cmp-has-dropdown:hover .cmp-dropdown-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateY(0) !important;
}

/* Removed invisible bridge as it overlaps main menu links */

.cmp-dropdown-menu li {
    display: block !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

.cmp-dropdown-menu li:before {
    display: none !important; /* Remove Flatsome bullet point pseudo-elements */
}

.cmp-dropdown-menu li a {
    display: block !important;
    padding: 12px 25px !important;
    color: #333 !important;
    font-size: 14px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    border: none !important;
}

.cmp-dropdown-menu li a:after {
    display: none !important;
}

.cmp-dropdown-menu li a:hover {
    background: #f5f5f5 !important;
    color: #000 !important;
    padding-left: 30px !important; /* Slide effect */
}



/* Fix Vertical Alignment */
.cmp-nav-list li {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    padding: 0 !important;
}
.cmp-nav-desktop {
    margin-bottom: 0 !important;
    padding: 0 !important;
}
.cmp-logo {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 0 !important;
}
.cmp-logo img {
    margin-bottom: 0 !important;
}


.cmp-nav-desktop div { margin: 0 !important; padding: 0 !important; display: flex; align-items: center; }

