:root {
    --PrimaryColor: #B98E31;
    --WhiteColor: #fff;
    --BlackColor: #000;
    --LightGrayColor: #ECECEC;
    --heading-text: #262626;

}

html {
    font-size: 16px;
}
html,
body {
    scroll-behavior: smooth; overflow-x: hidden;
}
@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-ExtraLight.eot");
    src: url("../fonts/Inter24pt-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-ExtraLight.woff2") format("woff2"), url("../fonts/Inter24pt-ExtraLight.woff") format("woff"),
        url("../fonts/Inter24pt-ExtraLight.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Bold.eot");
    src: url("../fonts/Inter24pt-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Bold.woff2") format("woff2"), url("../fonts/Inter24pt-Bold.woff") format("woff"), url("../fonts/Inter24pt-Bold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Regular.eot");
    src: url("../fonts/Inter24pt-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Regular.woff2") format("woff2"), url("../fonts/Inter24pt-Regular.woff") format("woff"),
        url("../fonts/Inter24pt-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Thin.eot");
    src: url("../fonts/Inter24pt-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Thin.woff2") format("woff2"), url("../fonts/Inter24pt-Thin.woff") format("woff"), url("../fonts/Inter24pt-Thin.ttf") format("truetype");
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Light.eot");
    src: url("../fonts/Inter24pt-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Light.woff2") format("woff2"), url("../fonts/Inter24pt-Light.woff") format("woff"),
        url("../fonts/Inter24pt-Light.ttf") format("truetype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Black.eot");
    src: url("../fonts/Inter24pt-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Black.woff2") format("woff2"), url("../fonts/Inter24pt-Black.woff") format("woff"),
        url("../fonts/Inter24pt-Black.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-ExtraBold.eot");
    src: url("../fonts/Inter24pt-ExtraBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-ExtraBold.woff2") format("woff2"), url("../fonts/Inter24pt-ExtraBold.woff") format("woff"),
        url("../fonts/Inter24pt-ExtraBold.ttf") format("truetype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-SemiBold.eot");
    src: url("../fonts/Inter24pt-SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-SemiBold.woff2") format("woff2"), url("../fonts/Inter24pt-SemiBold.woff") format("woff"),
        url("../fonts/Inter24pt-SemiBold.ttf") format("truetype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Inter 24pt";
    src: url("../fonts/Inter24pt-Medium.eot");
    src: url("../fonts/Inter24pt-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Inter24pt-Medium.woff2") format("woff2"), url("../fonts/Inter24pt-Medium.woff") format("woff"),
        url("../fonts/Inter24pt-Medium.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

body {
    color: #3a3a3a;
    font-family: "Inter 24pt";
    font-weight: 400;
}
a {
    text-decoration: none;
    transition: all 0.2s ease;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
.bg-soft {
    background: #F8F8F8;
}

.btn {
        font-size: 1rem;
        padding: 0.5rem 1.4rem;
        border-radius: 50px;
        line-height: 1.25rem;
        font-weight: 500;
        transition: all 0.2s ease; 
        display: inline-flex;
        align-items: center;
        gap: 0.5rem; text-align: center; justify-content: center;
}
.btn svg{
    width: 1.2rem;
}
.btn:hover,
.btn:focus,
.btn.active {
    outline: none !important;
    box-shadow: none !important;
}

.btn-primary {
    color: var(--WhiteColor);
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
}


.btn-primary:hover,
.btn-primary:focus,
.btn-primary.active {
   color: var(--PrimaryColor) !important;
    background: var(--WhiteColor)!important;
    border-color: var(--PrimaryColor) !important;

}


.btn-white {
    color:#3B3B3B;
    background: var(--WhiteColor);
    border-color: var(--WhiteColor);
}


.btn-white:hover,
.btn-white:focus,
.btn-white.active {
   color: var(--WhiteColor) !important;
    background: var(--PrimaryColor)!important;
    border-color: var(--PrimaryColor)!important;
 
}

.btn-outline-primary {
 border-color: var(--PrimaryColor);
    color: var(--PrimaryColor);
    background: var(--WhiteColor);
}


.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary.active {
   color: var(--WhiteColor) !important;
    background: var(--PrimaryColor)!important;
    border-color: var(--PrimaryColor) !important;
 
}





.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}
.same-heading {margin-bottom: 4rem;}
.same-heading h2 {
    color: var(--BlackColor);
    font-size: 1.8rem;
    font-weight: 600;
    line-height:115%; margin-bottom: 1rem;
}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4; margin-bottom: 0.6rem;
}

.same-heading p {
     color: #696969;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.7;
}
.view-all{color: var(--PrimaryColor); font-size: 1rem; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 400;}

.same-heading .primary-text {font-size: 1rem; font-weight: 600; ; line-height: 1.2; margin-bottom: 0.5rem;}

.bg-gray{background: #F4F4F4;}

.max-wid-50{width: 100%; max-width: 60%;}
.same-heading.text-center .max-wid-50{margin:0 auto;}
.same-heading.white-text :is( h2, p) {color: var(--WhiteColor);}

.same-section .section-bottom-btn{margin-top: 1.5rem;}
.section-bottom-btn{display: flex; gap: 1rem; align-items: center; }
.section-bottom-btn.text-center{justify-content: center;}


@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
.header  {padding: 1rem 0; background: transparent; position: relative;  transition: all 0.3s ease; z-index: 99; position: relative;}
.header .navbar{padding: 0; }
.header .navbar  .nav {gap: 1.5rem;}
.header .navbar  .nav-link{position: relative; color: var(--WhiteColor); font-size: 0.9rem; padding: 0.2rem 0.4rem; transform: all .2s ease; }

.header .navbar .nav-link::before{content: ""; position: absolute; left: 0;right: 0; bottom: -1px; width: 0%; margin: 0 auto; height: 2px; background-color: var(--PrimaryColor); transition: width 0.3s ease;}
.header .navbar-brand {padding: 0;}
.header .navbar  .nav-link:hover{color: var(--PrimaryColor);}
.header .navbar  .nav-link:hover:before{width: 100%;}
.header .navbar  .nav-link.active { color:var(--PrimaryColor)}
.header .navbar  .nav-link.active:before{width: 100%;}
.header.headerFix { position: fixed; background: var(--PrimaryColor); top: 0; left: 0; width: 100%;  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.08); z-index: 9999;animation:headerfixdown 0.7s; } 
.header.headerFix .navbar-brand img{    max-height: 3rem;}
.header.headerFix   .navbar-brand {filter: brightness(8.5);}
.header.headerFix   .btn-primary {background: var(--WhiteColor); color: var(--PrimaryColor); border-color: var(--WhiteColor);}
.header.headerFix .navbar .nav-link:hover{color: var(--WhiteColor);}


@keyframes headerfixdown {
    0% {
    opacity: 0;
    transform: translateY(-100%);
} 
100% {
    opacity: 0.9;
    transform: translateY(0);
    } 
}

.mobile-menu-toggle { background: var(--PrimaryColor); color: var(--WhiteColor); width: 2rem; height: 2rem; padding: 0.2rem; border-radius: 50%; line-height: 0; border: solid 1px var(--PrimaryColor); font-size: 1rem; cursor: pointer;  display: none;}
.mobile-menu-toggle svg{width: 1rem; color: var(--WhiteColor);}

/*  header css */
.body-overlay.active{display: block;}
.mobile-sidemenu{position: fixed; top: 0; right: -100%; width: 17rem; height: 100%; background: var(--WhiteColor); box-shadow: -2px 0 8px rgba(0, 0, 0, 0.2); transition: right 0.3s ease; padding: 1rem; z-index: 9999; gap: 1rem;}
.mobile-sidemenu .close-sidebarmenu{background: var(--PrimaryColor); color: var(--WhiteColor); width: 2rem; height: 2rem;display: flex; align-items: center; justify-content: center; margin-left: auto; padding: 0.2rem; border-radius: 50%; line-height: 0; border: solid 1px var(--PrimaryColor); font-size: 1rem; cursor: pointer;}
.mobile-sidemenu .close-sidebarmenu svg{width: 1rem; color: var(--WhiteColor);}
.mobile-sidemenu a:not(.btn-outline-primary){ color: var(--BlackColor); font-size: 1rem; font-weight: 400;}
.mobile-sidemenu.active {right: 0;}



.body-overlay{ position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.5); z-index: 1050; display: none;}
.primary-text{color: var(--PrimaryColor);}

.hero-banner{padding: 7rem 0 3rem; position: relative; background: url(../images/hero-banner.jpg)no-repeat center top/cover; min-height: 85vh; margin-top: -90px; display: flex; align-items: center; justify-content: center;}
.hero-banner h1{letter-spacing: -0.025em; font-weight: 600; font-size: 3rem; line-height: 1.1; color: var(--WhiteColor); }
.hero-banner .hero-sub{ font-weight: 400; font-size: 1rem;  color: var(--WhiteColor); width: 100%; max-width: 40%; margin: 1rem auto 1rem; }
.hero-banner .banner-content{text-align: center; }


.hero-banner  .hero-badges {display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem;}
.hero-banner  .hero-badges li{font-size: 0.9rem; color: var(--WhiteColor); position: relative; padding: 0.2rem 0.2rem 0.2rem 1rem;}
.hero-banner  .hero-badges li:before{position:absolute; left: 0; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: #10A7F9; border-radius: 50%; content: ''; }
.hero-banner  .hero-badges li:first-child:before{background: #31B93A;}
.hero-banner  .hero-badges li:last-child:before{background: #B98E31;}



/* SEARCH BAR */
.hero-banner  .hero-search-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  border-radius: 50px;
  padding:0.75rem;
  width: 100%;
  max-width: 80%;
  margin: 2rem auto;
  box-shadow: 0 0.25rem 1rem rgba(5,10,15,0.25);
  box-sizing: border-box;
  gap: 0.5rem;
}

/* INDIVIDUAL FIELD BLOCK */
.hero-banner  .search-field {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 0.2rem 1rem;
  flex: 1;
  min-width: 0;
  box-sizing: border-box;
}

.hero-banner  .field-icon {
  width: 1.45rem;
  height: 1.45rem;
  color: var(--PrimaryColor);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

/* FIELD TEXT BLOCK */
.hero-banner  .field-text {
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* SMALL LABEL ABOVE INPUT */
.hero-banner  .field-label {
  font-size: 0.9rem;
  color: #8E8E8E;
  font-weight: 400; text-align: left;
  margin-bottom: 0.2rem;
}

/* INPUT BELOW LABEL */
.hero-banner  .field-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 1.05rem;
  font-weight: 400; font-size: 0.9rem;
  color: #3B3B3B;
  padding: 0;
  margin: 0;
  width: 100%;
  line-height: 1.4;
}

.hero-banner  .field-input::placeholder {
  color: #222;
  opacity: 0.7;
}

/* VERTICAL DIVIDER */
.hero-banner  .divider {
  width: 1px;
  height: 2.6rem;
  background: rgba(34,34,34,0.12);
  flex-shrink: 0;
}

/* SEARCH BUTTON (CIRCLE) */
.hero-banner  .search-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--PrimaryColor);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
  margin-left: 0.25rem; color: var(--WhiteColor);
  box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.18);
}

.hero-banner  .search-btn svg {
  width: 1.3rem;
  height: 1.3rem;

}


/* horizontal icon list */
.categories-section{padding: 3rem 0;}
.categories-section .categories-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;

}

/* each item */
.categories-section .category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 12rem;
  padding: 0.25rem;
  box-sizing: border-box;
  cursor: default;
  transition: transform 160ms ease, color 160ms ease;
}

/* icon box */
.categories-section .icon-box {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 0.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  box-sizing: border-box;
  margin-bottom: 0.6rem;
  transition: background 160ms ease, transform 160ms ease, border-color 160ms ease;
}

/* icon size - lucide icon */
.categories-section .icon-box i {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--BlackColor);
}

/* text label */
.categories-section .cat-label {
  font-size: 0.9rem;
  color: var(--BlackColor);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 9rem;
}

/* hover effects */
.categories-section .category-item:hover,
.categories-section .category-item:focus-within {
  transform: translateY(-0.25rem);
}




/* INDIVIDUAL CARD */
.property-card {
  background: #fff;

  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;

  transition: all 0.2s ease;
}

.property-card:hover {
  transform: translateY(-0.3rem);

}

/* MEDIA BLOCK (IMAGE) */
.property-card .media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.82;
  overflow: hidden;
  border-radius: 20px;
}

.property-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TOP BADGE */
.property-card .badge-top {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background:#2D6731;
  color: #fff;
  padding: 0.35rem 0.55rem;
  font-size: 0.75rem;
  font-weight: 400;
  border-radius: 50px;
}

.property-card .badge-top.orange { background: #B98E31; }
.property-card .badge-top.blue   { background: #4A3C1E; }
.property-card .badge-top.green  { background: #B98E31; }

/* BADGE PILLS BOTTOM OF IMAGE */
.property-card .media-badges {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex; flex-wrap: wrap;
  gap: 0.4rem;
}

.property-card .pill {
  background: rgba(255,255,255,0.9);
  padding: 0.1rem 0.5rem;
  border-radius:50px;
  font-size: 0.7rem; line-height: normal;
  font-weight: 400;
  color: #705F5F; display: inline-flex; align-items: center; gap: 0.2rem;
}
.property-card .pill svg{width: 1rem; color:var(--PrimaryColor);}
/* CARD BODY CONTENT */
.property-card .card-body {
  padding: 0.9rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* LOCATION + TITLE */
.property-card  .location {
  font-size: 0.85rem;
  color:#7B7B7B;
  font-weight: 400; margin-bottom: 0.2rem;
}

.property-card  .prop-title {
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
  color: var(--BlackColor);
}

/* PROPERTY INFO ROW (Sleeps + Rating) */
.property-card  .props {
  display: flex;
  gap: 1.2rem;
}

.property-card  .prop-info {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #7B7B7B;
}

/* LUCIDE ICON STYLE */
.property-card  .prop-info svg {
  width: 1rem;
  height: 1rem;
  stroke-width: 2;
  color: #7B7B7B;
  flex-shrink: 0;
}

.property-card  .prop-info .primary-color {color: var(--PrimaryColor);}


/* PRICE ROW */
.property-card  .price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.property-card  .amount {
  font-size: 1.05rem;
  font-weight: 600;
  color: #2C2C2C;
}
.property-card .per{  font-size: 0.8rem;
  font-weight: 600 ; color: #2C2C2C;}
.property-card .per sup {
  font-size: 1.1rem;
  top: 0;
  color: #7B7B7B;   font-weight: 400 ; left: 1px;
}



.token-access-wrap .token-access-bg{background: url(../images/token-bg.jpg)no-repeat center top/cover; min-height: 500px; padding: 3rem; border-radius: 30px;}
.token-access-wrap .levels-row{    background: linear-gradient(45deg, #ffffff00, #ffffff, #ffffff00); padding: 1rem; width: 100%; max-width: 80%; margin: auto;}
.token-access-wrap .level-item h3{font-size: 1.1rem; color: var(--PrimaryColor); font-weight: 600; margin-bottom: 0.5rem; }
.token-access-wrap .level-item p{font-size: 1rem; color:#737373; margin-bottom: 0;}
.token-access-wrap .level-item #level-1-title{color: #2D6731;}
.token-access-wrap .level-item #level-3-title{color: #4A3C1E;}





/* CARD */
.havens-section .haven-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  width: 100%;
  box-sizing: border-box;
}

/* MEDIA (IMAGE BOX) */
.havens-section .haven-card .card-media {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  background: #eee;
  aspect-ratio: 4 / 3;
  box-shadow: 0 0.18rem 0.6rem rgba(8,10,15,0.06);
}

.havens-section .haven-card .card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* OVERLAY (gradient + title + pill) */
.havens-section .haven-card .media-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.9rem 0.85rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  color: #fff;

  box-sizing: border-box;
}

.havens-section .haven-card .media-title {
  font-size: 1.4rem;
  font-weight: 600;
 color: var(--WhiteColor);
}

/* Pill (property count) */
.havens-section .haven-card .media-pill {
  background:#fff;
  color: #705F5F;
  font-size: 0.75rem;
  font-weight: 400;
  padding: 0.35rem 0.6rem;
  border-radius: 50px;
  white-space: nowrap;

}

.havens-section .haven-card .btn-outline-primary{ color:#6B6B6B;
    background: #FDFDFD;
    border-color: #E2E2E2;}
/* BODY TEXT */
.havens-section .haven-card .card-body {
padding: 1rem 0;
}

.havens-section .haven-card h3 {
    font-size: 1.1rem;
  margin-bottom: 1rem; line-height: 1.4;
  font-weight: 500;
  color: var(--PrimaryColor);   width: 100%; max-width: 80%;
}

.havens-section .haven-card p {
  font-size: 0.92rem;
  color: #7A7A7A;
  line-height: 1.45;
}

/* CTA BUTTON */
.havens-section .haven-card .btn-outline-primary {width: 100%; max-width: 200px;

}



.intl-pathways-section .intl-pathways{background: url(../images/internation-bg.jpg)no-repeat center top/cover;     min-height: 500px;padding: 3rem; border-radius: 30px;  display: flex; align-items: center; overflow: hidden;}


/* FEATURE ITEM CARD */


/* Icons */
.features-section .feature-item .icon-bx {
width: 100%; max-width: max-content; margin-bottom: 1.5rem;
}

/* Titles */
.features-section .feature-item h3 {
  font-size: 1.2rem; line-height: normal;

  color: var(--BlackColor);
  font-weight: 500;
}

/* List */
.features-section .feature-item .feature-list li{position: relative;  color: var(--BlackColor); font-size: 1rem;  padding: 0.2rem 0 0.2rem 1rem;}
.features-section .feature-item .feature-list li:before{
   position: absolute;
    left: 0;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--PrimaryColor);
    border-radius: 50%;
    content: '';

}
.features-section .feature-item .feature-list li.muted:before{ background: #D9D9D9;}
.features-section .feature-item .feature-list .muted {
  color: #b5b5b5;

}


/* Bottom Note */
.features-section .features-note {
  margin-top: 2rem;
width: 100%; max-width: max-content; margin: 4rem auto 0;
  background:#FFF8E9;
  color: var(--PrimaryColor);
  padding: 0.55rem 3rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
}



/* horizontal list */
.process-section .process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.25rem;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

/* each item */
.process-section .process-item {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  padding: 0 0.5rem;
  text-align: center;
  box-sizing: border-box;
}



/* small arrowhead at the end of dashed line */
.process-section .process-item:not(:last-child)::before {
content: "";
    background: url(../images/right-arrow-line.png) no-repeat;
    position: absolute;
    right: -50%;
    top: 1.35rem;
    width: 60%;
    height: 8px;
    background-size: 90px;
}

/* icon container (rounded square) */
.process-section .icon-wrap {
  width: 3rem;
  height: 3rem;
  border-radius: 10px;
  background: #F6F6F6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem ;
  box-shadow: 0 0.06rem 0.18rem rgba(8,10,15,0.04);
}

/* lucide icons inside */
.process-section .icon-wrap img {
  width:100%; max-width: 40%;

}

/* title & description */
.process-section .process-title {
  font-size: 1rem;
  margin: 0 0 0.35rem 0;
  font-weight: 500;
  color: var(--BlackColor);
}


.process-section .process-desc {
 font-size: 0.9rem;
  color:#626262;

}

.convert-assets-section .owner-features {
  display: flex;
  flex-direction: column;
  gap: 1rem; margin-top: 2rem;
}

.convert-assets-section .feature-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.5rem 1rem 1.5rem 5rem;
}

.convert-assets-section .feature-card h4{
 font-size: 1rem;
    margin: 0 0 0.35rem 0;
    font-weight: 500;
    color: var(--BlackColor);
}

.convert-assets-section .feature-card p {
  margin: 0;
  font-size: 0.92rem;
  color:#696969;
  line-height: 1.5;
}
.convert-assets-section  .img-bx{position: relative;}

.convert-assets-section  .img-bx .yield-pill {
  position: absolute;
  left: -2rem;
  bottom: -2rem;
  background: #fff;
  padding: 0.6rem 0.9rem;
  border-radius: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem; text-align: center;
}

.convert-assets-section  .img-bx  .yp-line {
  font-size: 0.72rem;
  color: #828282;
  font-weight: 400;
}

.convert-assets-section  .img-bx  .yp-value {
  font-size: 1.1rem;
  color: var(--PrimaryColor);
  font-weight: 700;
}

.convert-assets-section  .img-bx  .yp-sub {
  font-size: 0.75rem;
  color: rgba(11,16,19,0.6);
}


.property-detail-card .property-inner {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.25rem;
  border: 1px solid #DBDBDB;
}

.property-detail-card .prop-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;

}

.property-detail-card .prop-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.property-detail-card .prop-badge {
  position: absolute;
  left: 0.9rem;
  top: 0.9rem;
  background: #10A7F9;
  color: #fff;
  font-weight: 400;
  font-size: 0.7rem;
  padding: 0.35rem 0.6rem;
  border-radius: 50px;
}



.property-detail-card .prop-address {
  font-size: 0.82rem;
  color: var(--PrimaryColor);
  font-weight: 400; margin-bottom: 0.5rem;
}

.property-detail-card .prop-desc {
  color:#696969;
  font-size: 0.95rem;
  line-height: 1.5; width: 100%; max-width: 80%;
}

.property-detail-card .feat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.25rem;
}

.property-detail-card .feat-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  font-weight: 400;
  color:var(--BlackColor);
}

.property-detail-card .feat-icon {
  width: 1rem;
  height: 1rem;
  color: #caa33a;
  stroke-width: 2;
}

/* info card */
.property-detail-card .prop-info-card {
  background: #F8F8F8;
  border-radius: 20px;
  padding: 1rem;margin: 2rem 0;
  display: flex;

  align-items: center;

}

.property-detail-card .info-row {
  display: flex;
  gap: 1.5rem;
}

.property-detail-card .info-item {
  display: flex;
flex-direction: column;
  gap: 0.45rem;
  font-weight: 400;
  font-size: 0.9rem;
  color: #4F4F4F;
}
.property-detail-card .info-item .info-text{  color: #4F4F4F;}

.property-detail-card .info-icon {
  width: 1.1rem;
  height: 1.1rem;
  stroke-width: 1.8;
  color: #666;
}

.property-detail-card .price-block {
  text-align: left; border-left: solid 1px #D8D8D8; padding-left: 1.5rem; margin-left: 2rem;
}

.property-detail-card .price-label {
    font-weight: 400;
    font-size: 0.9rem;
    color: #4F4F4F;

}

.property-detail-card .price-value {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--BlackColor);
}
.property-detail-card .price-value .price-currency{font-size: 0.8rem;}


.property-detail-card .section-bottom-btn{ display: flex; gap: 1rem;}
.property-detail-card .section-bottom-btn .btn{ font-weight: 500;}
/* .property-detail-card .btn-outline-primary{border-color: var(--PrimaryColor); color: var(--PrimaryColor); background: var(--WhiteColor);} */


.property-detail-card .listings-list{margin-top: 2rem;}
/* card */
.listings-list .listing-card {
  background: #fff;
  border-radius: 0.6rem;


  height: 100%;
}

/* image area */
.listings-list .listing-card .listing-media {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;

}

.listings-list .listing-card .listing-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}


/* body */
.listings-list .listing-card .listing-body {
  padding: 0.9rem 0;

}

/* address (small, muted) */
.listings-list .listing-card .listing-address {
  font-size: 0.9rem;
  color:var(--PrimaryColor);
  font-weight: 400;
}

.listings-list .listing-card h3{
    font-size: 1rem;
    font-weight: 600;
    color: var(--BlackColor);
    margin: 0px;
}


/* title/price */
.listings-list .listing-card .listing-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--BlackColor);
  /* margin: 0.5rem 0; */
}


.listings-list .listing-card .listing-currency {
  font-size: 0.8rem;
}
.listings-list .listing-card .shift-title{    color: #7B7B7B; font-weight: 400;}

/* meta row (bed / bath) */
.listings-list .listing-card .listing-meta {
  display: flex;
  gap: 1.1rem;
  align-items: center;
 margin: 0.5rem 0; 
}

.listings-list .listing-card .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: #7B7B7B;
  font-weight: 400;
}

/* lucide icons */
.listings-list .listing-card .meta-icon {
  width: 1rem;
  height: 1rem;
  color: rgba(17,17,17,0.65);
  stroke-width: 1.6;
  flex-shrink: 0;
}



/* .join-network-wrap .btn-outline-primary{border-color: var(--PrimaryColor); color: var(--PrimaryColor); background: var(--WhiteColor);} */


/* container inner spacing */

.site-footer .footer-top {
  align-items: start; padding: 3rem 0;
}

/* BRAND / LEFT */
.site-footer .footer-logo{
width: 100%; max-width: max-content;
  margin-bottom: 1rem;
}

.site-footer .brand-desc {
  margin: 0 0 0.9rem 0;
  color:#656565;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* contact list */
.site-footer .contact-list {

  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.95rem;
  color:#3F3F3F;
}

.site-footer .contact-list a {
  color: #3F3F3F;
  text-decoration: none;
}

.site-footer .contact-list .icon {
  width: 1rem;
  height: 1rem;
  margin-right: 0.5rem;
  color: #3F3F3F;
  vertical-align: middle;
  display: inline-block;
}

/* NAV COLUMNS */
.site-footer h4{
  font-size: 1rem;
  margin: 0 0 0.8rem 0;
  font-weight: 500;
  color: #000000;
}

.site-footer .col-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.site-footer .col-list a {
  color: #3F3F3F;
  font-size: 0.9rem;
}
.site-footer .col-list a:hover{color: var(--PrimaryColor);}

/* bottom text */
.site-footer .footer-bottom {
  padding: 1rem 0; border-top: solid 1px  #dee2e6;  text-align: center; color: #565656;
}

.site-footer .footer-bottom  p { 
  margin: 0;
  font-size: 0.9rem;
 color: #565656;
}