.elementor-35 .elementor-element.elementor-element-6306262{--display:flex;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-35 .elementor-element.elementor-element-0dba5b4{width:var( --container-widget-width, 1440% );max-width:1440%;margin:12px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;padding:0px 60px 0px 60px;--container-widget-width:1440%;--container-widget-flex-grow:0;}.elementor-35 .elementor-element.elementor-element-0dba5b4.elementor-element{--align-self:center;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-35 .elementor-element.elementor-element-6306262{--content-width:1440px;}}/* Start custom CSS for html, class: .elementor-element-0dba5b4 *//* ===== FORSA NAVBAR ===== */
.forsa-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FFFFFF;
  border: 1.5px solid #00000024;
  border-radius: 100px;
  padding: 10px 12px 10px 35px;
  width: 100%;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.07);
  position: relative;
}

/* ===== LOGO ===== */
.forsa-nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.forsa-nav__logo img {
  height: 48px;
  width: auto;
  display: block;
}

/* ===== NAV MENU ===== */
.forsa-nav__menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.forsa-nav__menu li a {
  position: relative;
  font-family: 'Inter Display', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 100px;
  transition: color 0.25s ease, background 0.2s ease;
  white-space: nowrap;
}

.forsa-nav__menu li a:hover {
  background: rgba(0,0,0,0.06);
}

/* ===== ANIMATED UNDERLINE ===== */
.forsa-nav__menu li a::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 2px;
  height: 2px;
  background: #C9A84C;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.forsa-nav__menu li a:hover::after {
  transform: scaleX(1);
}

/* ===== ACTIVE MENU ITEM ===== */
.forsa-nav__menu li.active > a,
.forsa-nav__menu li.current-menu-item > a {
  color: #C9A84C;
  font-weight: 500;
}

.forsa-nav__menu li.active > a::after,
.forsa-nav__menu li.current-menu-item > a::after {
  transform: scaleX(1);
}

/* ===== DROPDOWN ===== */
.forsa-nav__menu li.has-dropdown {
  position: relative;
}

.forsa-nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: #FFFFFF;
  border: 1.5px solid #00000015;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.12);
  border-radius: 16px;
  list-style: none;
  margin: 8px 0 0 0;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  z-index: 9999;
}

.forsa-nav__menu li.has-dropdown:hover .forsa-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.forsa-nav__dropdown li a {
  display: block;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 14px;
  white-space: nowrap;
}

.forsa-nav__dropdown li a::after {
  display: none;
}

.forsa-nav__dropdown li a:hover {
  background: rgba(0,0,0,0.06);
}

/* ===== CTA BUTTON ===== */
/* (styled inline in HTML) */

/* ===== HAMBURGER (hidden on desktop) ===== */
.forsa-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  margin-right: 8px;
}

.forsa-nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== MOBILE MENU ===== */
.forsa-nav__mobile-menu {
  display: none;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 20px;
  padding: 16px;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  z-index: 9999;
  box-shadow: 0px 8px 24px rgba(0,0,0,0.12);
  border: 1.5px solid #00000015;
}

.forsa-nav__mobile-menu.open {
  display: flex;
}

.forsa-nav__mobile-menu a {
  font-family: 'Inter Display', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  text-decoration: none;
  padding: 12px 16px;
  border-radius: 10px;
  transition: background 0.2s ease, color 0.2s ease;
}

.forsa-nav__mobile-menu a:hover {
  background: rgba(0,0,0,0.05);
}

/* active link in mobile menu */
.forsa-nav__mobile-menu a.active {
  color: #C9A84C;
  font-weight: 600;
}

/* sub-items (dropdown children) in mobile menu */
.forsa-nav__mobile-menu .mobile-sub {
  padding-left: 32px;
  font-size: 14px;
  color: #555;
}

.forsa-nav__mobile-menu .mobile-cta {
  background: radial-gradient(ellipse at center, #4a4a4a 0%, #1a1a1a 50%, #000000 100%);
  color: #FFFFFF !important;
  text-align: center;
  border-radius: 100px;
  margin-top: 8px;
  padding: 14px 16px;
  font-weight: 600;
}

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .forsa-nav {
    padding: 10px 12px 10px 20px;
  }

  .forsa-nav__menu li a {
    font-size: 13px;
    padding: 8px 10px;
  }

  .forsa-nav__menu li a::after {
    left: 10px;
    right: 10px;
  }

  .forsa-nav__cta {
    font-size: 13px;
    padding: 12px 18px;
  }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  .forsa-nav {
    border-radius: 50px;
    padding: 8px 8px 8px 16px;
    flex-wrap: nowrap;
    position: relative;
  }

  .forsa-nav__menu,
  .forsa-nav__cta {
    display: none !important;
  }

  .forsa-nav__logo {
    margin-right: auto;
  }

  .forsa-nav__logo img {
    height: 38px;
  }

  .forsa-nav__hamburger {
    display: flex !important;
    margin-left: 0;
  }
}

/* ===== HERO SECTION ===== */
.forsa-hero {
  position: relative;
  background-color: #F8F8F8;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* ===== WATERMARK ===== */
.forsa-hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.forsa-hero__watermark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.5;
}

/* ===== PROPERTY IMAGE ===== */
.forsa-hero__image {
  position: absolute;
  right: 0;
  top: 0;
  width: 62%;
  height: 100%;
  z-index: 1;
}

.forsa-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

/* ===== LEFT CONTENT ===== */
.forsa-hero__content {
  position: relative;
  z-index: 2;
  max-width: 520px;
  padding: 80px 0 80px 60px;
}

/* ===== REVIEWER BADGE ===== */
.forsa-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 100px;
  padding: 6px 14px 6px 6px;
  margin-bottom: 24px;
}

.badge-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.badge-name {
  font-family: 'Inter Display', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #000;
}

.badge-star {
  color: #F5A623;
  font-size: 14px;
}

.badge-rating {
  font-family: 'Inter Display', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #000;
}

/* ===== HEADING ===== */
.forsa-hero__heading {
  font-family: 'Inter Display', sans-serif;
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 900;
  color: #000000;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}

/* ===== SUBTEXT ===== */
.forsa-hero__subtext {
  font-family: 'Inter Display', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #333333;
  line-height: 1.7;
  max-width: 400px;
  margin: 0 0 40px 0;
}

/* ===== BUTTONS ===== */
.forsa-hero__buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* Book a Meeting - Dark */
.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #1A1A1A;
  color: #FFFFFF !important;
  font-family: 'Inter Display', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 14px 14px 24px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-primary:hover {
  background-color: #C9A84C;
}

.hero-btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
  color: #000000;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.hero-btn-primary:hover .hero-btn-arrow {
  transform: rotate(-45deg);
}

/* Download Brochure - Outline */
.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #000000 !important;
  font-family: 'Inter Display', sans-serif;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 28px;
  border-radius: 100px;
  border: 1.5px solid #CCCCCC;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn-secondary:hover {
  background: #000000;
  color: #FFFFFF !important;
  border-color: #000000;
}/* End custom CSS */