* {
  margin: 0;
  padding: 0;
  font-family: var(--theme-font);
}

body {
  font-family: var(--theme-font);
  box-sizing: border-box;
}

:root {
  --theme-color: #397655;
  --theme-color2: #6d5133;
  --theme-font: "Poppins", sans-serif;
  --heading-font: "Poppins", sans-serif;
  --letter-spacing: -2px;
}

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

p {
  color: #212121;
  line-height: 2;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--theme-font);
}

.darkbg {
  background-color: #1d1f22;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 300;
}

.theme-color {
  color: var(--theme-color);
  font-family: inherit;
}

section {
  overflow: hidden;
}

.theme-color2 {
  color: var(--theme-color2);
  font-family: inherit;
}

.common-img {
  border: solid 1px #000;
  padding: 10px;
}

ul li {
  color: #212121;
  line-height: 1.8;
  font-size: 16px;
  font-weight: 400;
}

.common-heading {
  font-size: 35px;
  font-weight: 800;
  line-height: 1.1;
  color: #1d1f22;
  letter-spacing: -1.5px;
  margin-bottom: 3rem;
  position: relative;
  font-family: var(--theme-font);
}
.common-heading span {
  color: var(--theme-color);
  position: relative;
  display: inline-block;
}
.common-heading.with-line {
  padding-bottom: 20px;
}
.common-heading.with-line::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 70px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 2px;
}

.common-before img {
  max-width: 100px;
  margin-bottom: 1.2rem;
}

.common-bg {
  background-color: var(--theme-color);
}

.common-space {
  padding: 95px 0;
}

.common-btn {
  background-color: var(--theme-color);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-weight: 300;
  text-transform: uppercase;
  border: solid 1px #ddd;
  width: -moz-fit-content;
  width: fit-content;
  transition: all 0.3s;
  border: solid 1px var(--theme-color);
  border-radius: 0px;
}
.common-btn:hover {
  background-color: transparent;
  color: var(--theme-color);
}

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--theme-color);
}

/* Premium Header Styles - Nested Format */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  /* Sticky State */
}
.main-header.sticky {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #eee;
}
.main-header.sticky .navbar-brand .brand-name {
  color: #1d1f22; /* Darker on scroll */
}
.main-header.sticky .navbar-nav .nav-link {
  color: #333 !important;
}
.main-header .navbar {
  padding: 0;
}
.main-header .navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header {
  /* Brand / Logo Area */
}
.main-header .navbar-brand {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.main-header .navbar-brand img {
  max-width: 155px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}
.main-header .navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
}
.main-header .navbar-brand .brand-text .brand-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
  color: var(--theme-color);
  transition: 0.3s;
}
.main-header .navbar-brand .brand-text .brand-sub {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #666;
  margin-top: 4px;
  font-weight: 500;
}
.main-header {
  /* Navigation Menu */
}
.main-header .navbar-nav {
  gap: 5px;
}
.main-header .navbar-nav li {
  list-style: none;
  position: relative;
}
.main-header .navbar-nav li .nav-link {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #1a1a1a !important;
  letter-spacing: 0.5px;
  padding: 10px 15px !important;
  transition: 0.3s;
}
.main-header .navbar-nav li .nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 5px;
  left: 15px;
  background: var(--theme-color);
  transition: 0.3s ease;
}
.main-header .navbar-nav li .nav-link:hover {
  color: var(--theme-color) !important;
}
.main-header .navbar-nav li .nav-link:hover::after {
  width: calc(100% - 30px);
}
.main-header .navbar-nav li {
  /* Dropdown Premium Look */
}
.main-header .navbar-nav li .dropdown-menu {
  border: none;
  border-top: 3px solid var(--theme-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 8px 8px;
  padding: 15px 0;
  animation: fadeInUp 0.3s ease;
}
.main-header .navbar-nav li .dropdown-menu li .dropdown-item {
  font-size: 13px;
  font-weight: 500;
  padding: 8px 25px;
  transition: 0.3s;
}
.main-header .navbar-nav li .dropdown-menu li .dropdown-item:hover {
  background: rgba(57, 118, 85, 0.05); /* Light theme color bg */
  color: var(--theme-color);
  padding-left: 30px;
}
.main-header .navbar-nav li.dropdown:hover .dropdown-menu {
  display: block;
}
.main-header {
  /* Right Side Contact & CTA */
}
.main-header .header-contact {
  display: flex;
  align-items: center;
  gap: 25px;
}
.main-header .header-contact .call-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s;
}
.main-header .header-contact .call-link i {
  width: 35px;
  height: 35px;
  background: rgba(57, 118, 85, 0.1);
  color: var(--theme-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.main-header .header-contact .call-link span {
  font-size: 14px;
  font-weight: 700;
  color: #1d1f22;
}
.main-header .header-contact .call-link:hover {
  transform: translateY(-2px);
}
.main-header .header-contact .header-btn {
  margin: 0;
  border-radius: 0px;
  font-size: 12px;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(57, 118, 85, 0.3);
}
.main-header .header-contact .header-btn:hover {
  box-shadow: 0 6px 20px rgba(57, 118, 85, 0.4);
  transform: translateY(-2px);
}

/* Animation for dropdown */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Hero Premium Section Styling */
.hero-premium {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  /* Background Wrapper & Animation */
}
.hero-premium .hero-bg-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-premium .hero-bg-wrapper .hero-zoom-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  animation: slowZoom 20s infinite alternate;
}
.hero-premium .hero-bg-wrapper .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
}
.hero-premium .hero-inner-content {
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
  /* Legacy Badge */
}
.hero-premium .hero-inner-content .legacy-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}
.hero-premium .hero-inner-content .legacy-badge .line {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.6);
}
.hero-premium .hero-inner-content .legacy-badge .text {
  font-size: 12px;
  letter-spacing: 4px;
  font-weight: 500;
  text-transform: uppercase;
  color: #ddd;
}
.hero-premium .hero-inner-content h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 37px;
  letter-spacing: -2px;
}
.hero-premium .hero-inner-content h1 span {
  color: var(--theme-color);
  font-weight: 300;
  font-style: italic;
}
.hero-premium .hero-inner-content .hero-subtext {
  font-size: 18px;
  color: #eee;
  margin-bottom: 50px;
  max-width: 600px;
  margin-inline: auto;
}
.hero-premium {
  /* Premium Search Wrapper */
}
.hero-premium .search-wrapper {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  /* Tabs */
}
.hero-premium .search-wrapper .search-tabs {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
  padding-left: 10px;
}
.hero-premium .search-wrapper .search-tabs .tab-btn {
  background: transparent;
  border: none;
  color: #fff;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}
.hero-premium .search-wrapper .search-tabs .tab-btn.active, .hero-premium .search-wrapper .search-tabs .tab-btn:hover {
  background: var(--theme-color);
}
.hero-premium .search-wrapper {
  /* Form Fields */
}
.hero-premium .search-wrapper .search-fields {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 180px;
  background: #fff;
  border-radius: 0px;
  padding: 10px;
  gap: 10px;
}
.hero-premium .search-wrapper .search-fields .field-group {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 15px;
  border-right: 1px solid #eee;
}
.hero-premium .search-wrapper .search-fields .field-group i {
  color: var(--theme-color);
  font-size: 18px;
}
.hero-premium .search-wrapper .search-fields .field-group .input-stack {
  display: flex;
  flex-direction: column;
  text-align: left;
  width: 100%;
}
.hero-premium .search-wrapper .search-fields .field-group .input-stack label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 2px;
}
.hero-premium .search-wrapper .search-fields .field-group .input-stack select {
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  outline: none;
  background: transparent;
  cursor: pointer;
}
.hero-premium .search-wrapper .search-fields .field-group:last-child {
  border-right: none;
}
.hero-premium .search-wrapper .search-fields .hero-search-btn {
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  color: #fff;
  border: none;
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: 0.3s;
}
.hero-premium .search-wrapper .search-fields .hero-search-btn:hover {
  background: #2d5d43;
  transform: scale(1.02);
}
.hero-premium {
  /* Quick Stats */
}
.hero-premium .hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}
.hero-premium .hero-stats .stat-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-premium .hero-stats .stat-item strong {
  font-size: 24px;
  color: #fff;
}
.hero-premium .hero-stats .stat-item span {
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
}
.hero-premium .hero-stats .stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Animations */
@keyframes slowZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}
/* Responsive Search Bar */
@media (max-width: 991px) {
  .hero-premium .search-fields {
    grid-template-columns: 1fr;
  }
  .hero-premium .search-fields .field-group {
    border-right: none;
    border-bottom: 1px solid #eee;
  }
  .hero-premium .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
  .hero-premium .hero-stats .stat-divider {
    display: none;
  }
}
/* Trust Bar Styles */
.trust-bar {
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  z-index: 10;
}
.trust-bar .trust-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  /* Left Label */
}
.trust-bar .trust-content .trust-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  white-space: nowrap;
  position: relative;
  padding-right: 20px;
}
.trust-bar .trust-content .trust-label::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 1px;
  height: 20px;
  background: #ddd;
  transform: translateY(-50%);
}
.trust-bar .trust-content {
  /* Logo Grid */
}
.trust-bar .trust-content .logo-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}
.trust-bar .trust-content .logo-track .logo-item {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(240, 239, 239, 0.5490196078);
  transition: all 0.4s ease;
  border-right: solid 1px #ddd;
  height: 100%;
  height: 130px;
}
.trust-bar .trust-content .logo-track .logo-item img {
  max-width: 120px;
  height: auto;
  max-height: 45px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s ease;
}
.trust-bar .trust-content .logo-track .logo-item:hover {
  transform: translateY(-5px);
}
.trust-bar .trust-content .logo-track .logo-item:hover img {
  filter: grayscale(0%) opacity(1); /* Reveal color on hover */
}

/* Responsive Handling */
@media (max-width: 991px) {
  .trust-bar {
    margin-top: 0;
    padding: 30px 0;
  }
  .trust-bar .trust-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .trust-bar .trust-content .trust-label {
    padding-right: 0;
  }
  .trust-bar .trust-content .trust-label::after {
    display: none;
  }
  .trust-bar .trust-content .logo-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .trust-bar .trust-content .logo-track .logo-item img {
    max-width: 100px;
  }
}
/* About Legacy Section */
.about-legacy {
  background: #fdfdfd;
}
.about-legacy .about-image-wrapper {
  position: relative;
  padding-right: 30px;
  padding-bottom: 30px;
}
.about-legacy .about-image-wrapper .main-img {
  border-radius: 5px;
}
.about-legacy .about-image-wrapper .main-img img {
  transition: transform 0.8s ease;
}
.about-legacy .about-image-wrapper .main-img img:hover {
  transform: scale(1.05);
}
.about-legacy .about-image-wrapper {
  /* Experience Badge */
}
.about-legacy .about-image-wrapper .experience-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--theme-color);
  color: #fff;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 10px 10px 30px rgba(57, 118, 85, 0.3);
  border-radius: 4px;
}
.about-legacy .about-image-wrapper .experience-badge .number {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}
.about-legacy .about-image-wrapper .experience-badge .text {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 10px;
  font-weight: 500;
}
.about-legacy .about-content .sub-title {
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 15px;
  display: block;
}
.about-legacy .about-content .common-heading {
  margin-bottom: 25px;
  text-align: left;
  line-height: 1.2;
}
.about-legacy .about-content .common-heading::after {
  left: 0;
}
.about-legacy .about-content .common-heading { /* Align underline to left */ }
.about-legacy .about-content {
  /* Values Grid */
}
.about-legacy .about-content .values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.about-legacy .about-content .values-grid .value-item {
  display: flex;
  gap: 15px;
}
.about-legacy .about-content .values-grid .value-item i {
  color: var(--theme-color);
  font-size: 24px;
  margin-top: 5px;
}
.about-legacy .about-content .values-grid .value-item .value-text h6 {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 5px;
  color: #1d1f22;
}
.about-legacy .about-content .values-grid .value-item .value-text p {
  font-size: 13px;
  line-height: 1.5;
  color: #777;
  margin: 0;
}
.about-legacy video {
  height: 510px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Responsive */
@media (max-width: 991px) {
  .about-legacy .about-image-wrapper {
    margin-bottom: 60px;
    padding-right: 15px;
  }
  .about-legacy .about-image-wrapper .experience-badge {
    padding: 20px;
  }
  .about-legacy .about-image-wrapper .experience-badge .number {
    font-size: 32px;
  }
  .about-legacy .values-grid {
    grid-template-columns: 1fr; /* Stack values on mobile */
  }
}
/* Portfolio Categories Style */
.portfolio-categories {
  background: #f7f7f7;
}
.portfolio-categories .sub-title {
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.portfolio-categories {
  /* The Grid Logic */
}
.portfolio-categories .portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 25px;
}
.portfolio-categories .portfolio-grid .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}
.portfolio-categories .portfolio-grid .portfolio-item.large {
  grid-row: span 2;
}
.portfolio-categories .portfolio-grid .portfolio-item { /* Residential takes 2 rows height */ }
.portfolio-categories .portfolio-grid .portfolio-item.wide {
  grid-column: span 2;
}
.portfolio-categories .portfolio-grid .portfolio-item { /* Investment takes 2 columns width */ }
.portfolio-categories .portfolio-grid .portfolio-item .category-card {
  height: 100%;
  width: 100%;
  position: relative;
  cursor: pointer;
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card .card-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1);
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 30%, rgb(0, 0, 0) 100%);
  transition: 0.5s;
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card .card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  color: #fff;
  z-index: 2;
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card .card-content .count {
  font-size: 14px;
  font-weight: 300;
  color: var(--theme-color);
  display: block;
  margin-bottom: 10px;
  font-family: serif; /* Elegant contrast */
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card .card-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card .card-content h3 span {
  display: block;
  font-size: 16px;
  font-weight: 300;
  opacity: 0.8;
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card .card-content .short-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  max-height: 0; /* Hidden by default */
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card .card-content .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-top: 20px;
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card .card-content .explore-link i {
  transition: 0.3s;
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card {
  /* Hover Interaction */
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card:hover .card-bg {
  transform: scale(1.1);
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card:hover .card-overlay {
  background: linear-gradient(to bottom, rgba(57, 118, 85, 0.4) 0%, rgba(0, 0, 0, 0.95) 100%);
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card:hover .card-content .short-desc {
  max-height: 100px;
  opacity: 1;
  margin-top: 10px;
}
.portfolio-categories .portfolio-grid .portfolio-item .category-card:hover .card-content .explore-link i {
  transform: translateX(8px);
  color: var(--theme-color);
}

/* Premium Badge for Investment */
.badge-premium {
  position: absolute;
  top: 40px;
  right: 40px;
  background: var(--theme-color);
  color: #fff;
  font-size: 10px;
  padding: 5px 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  font-weight: 700;
}

/* Responsive Grid */
@media (max-width: 991px) {
  .portfolio-categories .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 400px;
  }
  .portfolio-categories .portfolio-grid .portfolio-item.wide, .portfolio-categories .portfolio-grid .portfolio-item.large {
    grid-column: span 1;
    grid-row: span 1;
  }
}
/* Projects Module Style */
.projects-section {
  background: #ffffff;
}
.projects-section .sub-title {
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.projects-section {
  /* Custom Navigation Buttons */
}
.projects-section .custom-nav-wrapper {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.projects-section .custom-nav-wrapper .nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.projects-section .custom-nav-wrapper .nav-btn:hover {
  background: var(--theme-color);
  color: #fff;
  border-color: var(--theme-color);
}
.projects-section {
  /* Project Card Design */
}
.projects-section .project-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s ease;
  margin: 15px 5px;
}
.projects-section .project-card .project-img {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.projects-section .project-card .project-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.projects-section .project-card .project-img .project-status {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  padding: 5px 15px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  color: #1d1f22;
}
.projects-section .project-card .project-img .developer-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 40px;
  background: rgb(255, 255, 255);
  backdrop-filter: blur(5px);
  padding: 5px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.projects-section .project-card .project-img .developer-logo img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.projects-section .project-card .project-info {
  padding: 30px;
}
.projects-section .project-card .project-info .location {
  font-size: 12px;
  color: var(--theme-color);
  font-weight: 600;
  margin-bottom: 10px;
}
.projects-section .project-card .project-info .location i {
  margin-right: 5px;
}
.projects-section .project-card .project-info h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1d1f22;
  margin-bottom: 12px;
}
.projects-section .project-card .project-info .short-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
}
.projects-section .project-card .project-info .project-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid #eee;
}
.projects-section .project-card .project-info .project-footer .view-btn {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1d1f22;
  position: relative;
}
.projects-section .project-card .project-info .project-footer .view-btn::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--theme-color);
  transition: 0.3s;
}
.projects-section .project-card .project-info .project-footer .wa-trigger {
  width: 40px;
  height: 40px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: 0.3s;
}
.projects-section .project-card .project-info .project-footer .wa-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}
.projects-section .project-card {
  /* Hover State */
}
.projects-section .project-card:hover {
  transform: translateY(-10px);
}
.projects-section .project-card:hover .project-img img {
  transform: scale(1.1);
}
.projects-section .project-card:hover .view-btn::after {
  width: 100%;
}

/* Elite Circle Style */
.elite-circle {
  background: #ffffff;
  position: relative;
}
.elite-circle .trust-badge-small {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--theme-color);
  font-weight: 700;
  margin-bottom: 10px;
}
.elite-circle .lead-text {
  font-size: 18px;
  color: #555;
  max-width: 600px;
}
.elite-circle .stat-box {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: #f9f9f9;
  padding: 20px 30px;
  border-radius: 10px;
  text-align: left;
}
.elite-circle .stat-box .num {
  font-size: 40px;
  font-weight: 800;
  color: var(--theme-color);
  line-height: 1;
}
.elite-circle .stat-box .lab {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 600;
  color: #777;
  letter-spacing: 1px;
}
.elite-circle {
  /* Builder Grid */
}
.elite-circle .builder-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}
.elite-circle .builder-grid .builder-card {
  height: 180px;
  background: #ffffff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.elite-circle .builder-grid .builder-card .builder-logo-wrap img {
  max-width: 130px;
  max-height: 60px;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: 0.4s;
}
.elite-circle .builder-grid .builder-card .builder-hover-info {
  position: absolute;
  bottom: -100%; /* Hidden */
  left: 0;
  width: 100%;
  padding: 20px;
  background: var(--theme-color);
  color: #fff;
  transition: 0.4s;
  text-align: center;
}
.elite-circle .builder-grid .builder-card .builder-hover-info h6 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 14px;
}
.elite-circle .builder-grid .builder-card .builder-hover-info span {
  font-size: 12px;
  opacity: 0.8;
  display: block;
  margin-bottom: 10px;
}
.elite-circle .builder-grid .builder-card .builder-hover-info i {
  font-size: 18px;
}
.elite-circle .builder-grid .builder-card {
  /* Hover States */
}
.elite-circle .builder-grid .builder-card:hover {
  border-color: var(--theme-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.elite-circle .builder-grid .builder-card:hover .builder-logo-wrap img {
  filter: grayscale(0%);
  opacity: 1;
  transform: translateY(-20px);
}
.elite-circle .builder-grid .builder-card:hover .builder-hover-info {
  bottom: 0;
}
.elite-circle {
  /* Tier 2 List Styling */
}
.elite-circle .strategic-partners-list {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #eee;
  text-align: center;
}
.elite-circle .strategic-partners-list h5 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #999;
  margin-bottom: 30px;
}
.elite-circle .strategic-partners-list .partners-ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px 30px;
}
.elite-circle .strategic-partners-list .partners-ticker span {
  font-size: 16px;
  font-weight: 500;
  color: #444;
  transition: 0.3s;
}
.elite-circle .strategic-partners-list .partners-ticker span:hover {
  color: var(--theme-color);
}
.elite-circle .strategic-partners-list .partners-ticker .dot {
  width: 5px;
  height: 5px;
  background: var(--theme-color);
  border-radius: 50%;
  opacity: 0.3;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .elite-circle .builder-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .elite-circle .stat-box {
    margin-top: 20px;
    width: 100%;
  }
}
/* Property Journal Style */
.property-journal {
  background: rgba(247, 247, 247, 0.4784313725);
}
.property-journal .btn-text {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--theme-color);
  text-decoration: none;
  transition: 0.3s;
}
.property-journal .btn-text:hover {
  gap: 15px;
  letter-spacing: 2px;
}
.property-journal .journal-card {
  background: transparent;
  transition: 0.4s;
}
.property-journal .journal-card .journal-img {
  position: relative;
  height: 250px;
  overflow: hidden;
  border-radius: 11px 12px 0 0;
}
.property-journal .journal-card .journal-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.property-journal .journal-card .journal-img .category {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1d1f22;
}
.property-journal .journal-card .journal-body {
  padding: 23px 21px 35px;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 18px 29px -32px #001;
}
.property-journal .journal-card .journal-body .post-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #999;
  margin-bottom: 12px;
}
.property-journal .journal-card .journal-body h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  color: #1d1f22;
  margin-bottom: 15px;
  transition: 0.3s;
}
.property-journal .journal-card .journal-body p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  /* Limit to 3 lines */
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.property-journal .journal-card .journal-body .read-more {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #1d1f22;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--theme-color);
  transition: 0.3s;
}
.property-journal .journal-card .journal-body .read-more:hover {
  color: var(--theme-color);
  padding-right: 10px;
}
.property-journal .journal-card {
  /* Hover State */
}
.property-journal .journal-card:hover .journal-img img {
  transform: scale(1.1);
}
.property-journal .journal-card:hover h4 {
  color: var(--theme-color);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .property-journal .journal-card {
    margin-bottom: 40px;
  }
}
/* Pre-Footer CTA */
.pre-footer-cta {
  background: #ffffff;
  position: relative;
  z-index: 5;
}
.pre-footer-cta .cta-box {
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.768627451)), url(img/slider1.avif);
  padding: 60px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid var(--theme-color);
  background-position: center;
}
.pre-footer-cta .cta-box h2 {
  color: #fff;
  font-weight: 800;
  font-size: 32px;
  margin-bottom: 10px;
}
.pre-footer-cta .cta-box h2 span {
  color: var(--theme-color);
}
.pre-footer-cta .cta-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  margin: 0;
}
.pre-footer-cta .cta-box .cta-btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--theme-color);
  color: #fff;
  padding: 16px 32px;
  border-radius: 0px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s;
}
.pre-footer-cta .cta-box .cta-btn-premium:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(57, 118, 85, 0.4);
}

/* Testimonials Premium Style */
.testimonials-premium {
  background: #fcfcfc; /* Very light pearl background */
  position: relative;
  overflow: hidden;
}
.testimonials-premium .sub-title {
  color: var(--theme-color);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}
.testimonials-premium .testimonial-carousel-premium .owl-stage-outer {
  padding: 30px 0 0;
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item {
  background: #ffffff;
  padding: 50px;
  border: 1px solid #f0f0f0;
  border-radius: 4px; /* Sharp, premium corners */
  position: relative;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item .quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 50px;
  color: rgba(57, 118, 85, 0.05);
  transition: 0.5s;
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item .testimonial-inner .feedback {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
  font-style: italic;
  margin-bottom: 35px;
  font-weight: 300;
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item .testimonial-inner .feedback strong {
  color: var(--theme-color);
  font-weight: 600;
  font-style: normal;
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item .testimonial-inner .client-profile {
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item .testimonial-inner .client-profile .client-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #eee;
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item .testimonial-inner .client-profile .client-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item .testimonial-inner .client-profile .client-details h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #1d1f22;
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item .testimonial-inner .client-profile .client-details span {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item {
  /* Hover Interaction */
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item:hover {
  transform: translateY(-10px);
  background: #ffffff;
  border-color: var(--theme-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}
.testimonials-premium .testimonial-carousel-premium .testimonial-item:hover .quote-icon {
  color: rgba(57, 118, 85, 0.15);
  transform: rotate(-10deg);
}
.testimonials-premium .testimonial-carousel-premium {
  /* Customizing Owl Dots */
}
.testimonials-premium .testimonial-carousel-premium .owl-dots {
  margin-top: 40px;
  text-align: center;
}
.testimonials-premium .testimonial-carousel-premium .owl-dots .owl-dot span {
  width: 8px;
  height: 8px;
  background: #ddd;
  transition: 0.3s;
  border-radius: 50%;
}
.testimonials-premium .testimonial-carousel-premium .owl-dots .owl-dot.active span {
  width: 30px;
  border-radius: 10px;
  background: var(--theme-color);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .testimonials-premium .testimonial-item {
    padding: 30px;
  }
  .testimonials-premium .testimonial-item .feedback {
    font-size: 16px;
  }
}
/* Main Footer Styling */
.main-footer {
  background: #121416;
  padding: 150px 0 40px; /* Top padding extra for the CTA overlap */
  color: #fff;
  background-image: linear-gradient(45deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.768627451)), url(img/invest.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.main-footer .footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}
.main-footer .footer-brand .footer-logo {
  max-width: 250px;
  filter: brightness(0) invert(1);
}
.main-footer .footer-brand h5 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0;
  color: #fff;
}
.main-footer .footer-brand h5 span {
  display: block;
  font-size: 10px;
  letter-spacing: 3px;
  color: #999;
  text-transform: uppercase;
}
.main-footer .footer-about {
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.main-footer .footer-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}
.main-footer .footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--theme-color);
}
.main-footer .footer-links {
  list-style: none;
  padding: 0;
}
.main-footer .footer-links li {
  margin-bottom: 12px;
}
.main-footer .footer-links li a {
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}
.main-footer .footer-links li a:hover {
  color: var(--theme-color);
  padding-left: 5px;
}
.main-footer .contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}
.main-footer .contact-item i {
  color: var(--theme-color);
  font-size: 18px;
  margin-top: 5px;
}
.main-footer .contact-item p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}
.main-footer .footer-socials {
  display: flex;
  gap: 15px;
}
.main-footer .footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.main-footer .footer-socials a:hover {
  background: var(--theme-color);
  transform: translateY(-3px);
}
.main-footer .footer-bottom {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.main-footer .footer-bottom p {
  color: #fff;
  font-size: 13px;
}
.main-footer .footer-bottom .legal-links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.main-footer .footer-bottom .legal-links li a {
  color: #fff;
  font-size: 13px;
  transition: 0.3s;
}
.main-footer .footer-bottom .legal-links li a:hover {
  color: #fff;
}

/* Floating WhatsApp Interaction */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
  padding: 10px 20px;
  border-radius: 50px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: 0.4s;
}
.floating-wa .wa-text {
  font-size: 14px;
  font-weight: 700;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: 0.4s;
}
.floating-wa i {
  font-size: 24px;
}
.floating-wa:hover {
  padding-right: 25px;
}
.floating-wa:hover .wa-text {
  max-width: 100px;
  margin-right: 5px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
  .pre-footer-cta {
    margin-bottom: 0;
  }
  .pre-footer-cta .cta-box {
    padding: 30px;
    text-align: center;
  }
  .pre-footer-cta .cta-box .cta-btn-premium {
    margin-top: 20px;
  }
  .main-footer {
    padding: 60px 0 40px;
  }
  .main-footer .footer-bottom .legal-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
}
.breadcrumb {
  padding: 166px 0 60px;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.768627451)), url(img/slider1.avif);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  border-bottom: 4px solid var(--theme-color);
  background-position: center;
  margin: 0;
}
.breadcrumb h1 {
  color: #fff;
  font-weight: 700;
}
.breadcrumb .breadlist {
  display: flex;
  padding-left: 0;
}
.breadcrumb .breadlist li {
  margin-right: 15px;
  list-style: none;
  padding-right: 25px;
  position: relative;
  color: #fff;
}
.breadcrumb .breadlist li:before {
  content: "\f105";
  position: absolute;
  right: 0;
  top: 0;
  font-family: "fontawesome";
}
.breadcrumb .breadlist li:last-child:before {
  display: none;
}

/* About Page Specific Premium Styles */
.about-page-intro .location-highlight-card {
  padding: 30px;
  background: #fff;
  border-left: 4px solid var(--theme-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}
.about-page-intro .about-image-frame {
  position: relative;
}
.about-page-intro .experience-floating-tag {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--theme-color);
  color: #fff;
  padding: 20px 35px;
  border-radius: 4px;
  text-align: center;
}
.about-page-intro .experience-floating-tag p {
  color: #fff;
}
.about-page-intro .experience-floating-tag span {
  font-size: 28px;
  font-weight: 800;
  display: block;
}

.core-values-section .value-premium-card {
  background: #fff;
  padding: 40px;
  height: 100%;
  transition: 0.4s;
  border-bottom: 2px solid transparent;
  text-align: center;
}
.core-values-section .value-premium-card .icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(57, 118, 85, 0.08);
  color: var(--theme-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin: 0 auto 25px;
  border-radius: 50%;
  transition: 0.4s;
}
.core-values-section .value-premium-card h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
}
.core-values-section .value-premium-card:hover {
  transform: translateY(-10px);
  border-bottom: 2px solid var(--theme-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}
.core-values-section .value-premium-card:hover .icon-wrap {
  background: var(--theme-color);
  color: #fff;
}

.luxury-timeline {
  background: #ffffff;
  padding-bottom: 150px;
}
.luxury-timeline .timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  /* Central Vertical Line */
}
.luxury-timeline .timeline-container::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #e0e0e0;
  transform: translateX(-50%);
}
.luxury-timeline .timeline-container .timeline-row {
  display: flex;
  align-items: center;
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
  /* Reverse Styling */
}
.luxury-timeline .timeline-container .timeline-row.row-reverse {
  flex-direction: row-reverse;
}
.luxury-timeline .timeline-container .timeline-row.row-reverse .content-column {
  flex-direction: row-reverse;
}
.luxury-timeline .timeline-container .timeline-row.row-reverse .content-column .text-box {
  text-align: right;
  padding-right: 40px;
  padding-left: 0;
}
.luxury-timeline .timeline-container .timeline-row .year-column {
  width: 150px;
  text-align: center;
  background: #ffffff;
  z-index: 3;
}
.luxury-timeline .timeline-container .timeline-row .year-column .year {
  font-size: 28px;
  font-weight: 700;
  color: #397655;
  font-family: serif; /* Luxury Serif Font */
  background: #ffffff;
  padding: 10px;
  border: 1px solid #397655;
  border-radius: 50px;
  min-width: 100px;
  display: inline-block;
}
.luxury-timeline .timeline-container .timeline-row .content-column {
  flex: 1;
  display: flex;
  align-items: center;
}
.luxury-timeline .timeline-container .timeline-row .content-column .image-box {
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.luxury-timeline .timeline-container .timeline-row .content-column .image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.6s;
}
.luxury-timeline .timeline-container .timeline-row .content-column .text-box {
  flex: 1;
  padding-left: 40px;
}
.luxury-timeline .timeline-container .timeline-row .content-column .text-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1d1f22;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.luxury-timeline .timeline-container .timeline-row .content-column .text-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.8;
  margin: 0;
}
.luxury-timeline .timeline-container .timeline-row {
  /* Hover Interaction */
}
.luxury-timeline .timeline-container .timeline-row:hover .image-box img {
  transform: scale(1.1);
}
.luxury-timeline .timeline-container .timeline-row:hover .year {
  background: #397655;
  color: #ffffff;
}

/* Filter Bar Styles */
.filter-wrapper {
  background: #ffffff;
  padding: 30px 0;
  border-bottom: 1px solid #f0f0f0;
  margin-top: -50px; /* Overlap breadcrumb slightly */
  position: relative;
  z-index: 10;
}
.filter-wrapper .filter-bar {
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}
.filter-wrapper .filter-bar .filter-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #eee;
}
.filter-wrapper .filter-bar .filter-item label {
  font-size: 10px;
  text-transform: uppercase;
  color: #999;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.filter-wrapper .filter-bar .filter-item select {
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: #1d1f22;
  outline: none;
  cursor: pointer;
}
.filter-wrapper .filter-bar .filter-item:last-of-type {
  border-right: none;
}
.filter-wrapper .filter-bar .filter-btn {
  background: #397655;
  color: #fff;
  border: none;
  padding: 15px 35px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1px;
  transition: 0.3s;
}
.filter-wrapper .filter-bar .filter-btn:hover {
  background: #1d1f22;
}

/* Property Card Listing Styles */
.property-listing-section {
  background: #fdfdfd;
}
.property-listing-section .listing-card-premium {
  background: #ffffff;
  border: 1px solid #eee;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
}
.property-listing-section .listing-card-premium:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.07);
}
.property-listing-section .listing-card-premium:hover .image-area img {
  transform: scale(1.1);
}
.property-listing-section .listing-card-premium .image-area {
  height: 280px;
  overflow: hidden;
  position: relative;
}
.property-listing-section .listing-card-premium .image-area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s;
}
.property-listing-section .listing-card-premium .image-area .status-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #397655;
  color: #fff;
  font-size: 10px;
  padding: 5px 12px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.property-listing-section .listing-card-premium .image-area .price-tag {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(29, 31, 34, 0.9);
  color: #fff;
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(5px);
}
.property-listing-section .listing-card-premium .info-area {
  padding: 30px;
}
.property-listing-section .listing-card-premium .info-area .dev-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}
.property-listing-section .listing-card-premium .info-area .dev-info img {
  height: 20px;
  filter: grayscale(1);
}
.property-listing-section .listing-card-premium .info-area .dev-info i {
  color: #397655;
  font-size: 14px;
}
.property-listing-section .listing-card-premium .info-area .dev-info span {
  font-size: 11px;
  color: #999;
  text-transform: uppercase;
  font-weight: 600;
}
.property-listing-section .listing-card-premium .info-area h4 {
  font-size: 20px;
  font-weight: 800;
  color: #1d1f22;
  margin-bottom: 15px;
}
.property-listing-section .listing-card-premium .info-area p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  height: 45px;
  overflow: hidden;
  margin-bottom: 20px;
}
.property-listing-section .listing-card-premium .info-area .specs {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 20px;
  border-top: 1px solid #eee;
  padding-top: 15px;
  margin-bottom: 25px;
}
.property-listing-section .listing-card-premium .info-area .specs li {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  display: flex;
  align-items: center;
  gap: 8px;
}
.property-listing-section .listing-card-premium .info-area .specs li i {
  color: #397655;
  font-size: 14px;
}
.property-listing-section .listing-card-premium .info-area .card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.property-listing-section .listing-card-premium .info-area .card-footer .details-link {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1d1f22;
  border-bottom: 2px solid #397655;
  padding-bottom: 2px;
  transition: 0.3s;
}
.property-listing-section .listing-card-premium .info-area .card-footer .details-link:hover {
  color: #397655;
  letter-spacing: 1px;
}
.property-listing-section .listing-card-premium .info-area .card-footer .wa-btn {
  width: 40px;
  height: 40px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: 0.3s;
}
.property-listing-section .listing-card-premium .info-area .card-footer .wa-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

/* Pagination Styles */
.premium-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.premium-pagination .page-link {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
  color: #1d1f22;
  font-weight: 700;
  font-size: 14px;
  transition: 0.3s;
}
.premium-pagination .page-link.active, .premium-pagination .page-link:hover {
  background: #397655;
  color: #fff;
  border-color: #397655;
}
.premium-pagination .next-btn {
  padding: 0 25px;
  height: 45px;
  background: #1d1f22;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}
.premium-pagination .next-btn:hover {
  background: #397655;
}

/* Editorial Gallery */
.prop-editorial-gallery {
  padding: 120px 0;
  background: #fff;
}
.prop-editorial-gallery .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  height: 75vh;
  min-height: 600px;
}
.prop-editorial-gallery .gallery-grid .main-frame {
  height: 100%;
  overflow: hidden;
}
.prop-editorial-gallery .gallery-grid .main-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prop-editorial-gallery .gallery-grid .side-frames {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
}
.prop-editorial-gallery .gallery-grid .side-frames .top-frame, .prop-editorial-gallery .gallery-grid .side-frames .bottom-frame {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.prop-editorial-gallery .gallery-grid .side-frames .top-frame img, .prop-editorial-gallery .gallery-grid .side-frames .bottom-frame img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.prop-editorial-gallery .gallery-grid .side-frames .view-all-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}
.prop-editorial-gallery .gallery-grid .side-frames .view-all-overlay span {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  border: 1px solid #fff;
  padding: 10px 20px;
}

/* Identity Section */
.prop-identity {
  background-color: rgba(245, 245, 245, 0.5607843137);
  padding: 58px 0px;
}
.prop-identity .prop-category {
  color: #397655;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 11px;
  margin-bottom: 15px;
}
.prop-identity .prop-main-title {
  font-size: 56px;
  font-weight: 800;
  color: #1d1f22;
}
.prop-identity .prop-main-title span {
  font-weight: 300;
  font-style: italic;
}
.prop-identity .prop-location {
  font-size: 16px;
  color: #888;
}
.prop-identity .prop-location i {
  color: #397655;
}
.prop-identity .price-block .label {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  display: block;
}
.prop-identity .price-block .price {
  font-size: 32px;
  font-weight: 700;
  color: #1d1f22;
}

/* Minimalist Spec Grid */
.prop-specs-minimal {
  padding-top: 0;
}
.prop-specs-minimal .specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #eee;
  padding: 40px 0;
}
.prop-specs-minimal .specs-grid .spec-item {
  padding: 0 30px;
  border-right: 1px solid #f0f0f0;
}
.prop-specs-minimal .specs-grid .spec-item:last-child {
  border-right: none;
}
.prop-specs-minimal .specs-grid .spec-item .s-label {
  display: block;
  font-size: 12px;
  color: #397655;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-weight: 600;
}
.prop-specs-minimal .specs-grid .spec-item .s-value {
  font-size: 16px;
  font-weight: 700;
  color: #1d1f22;
  display: block;
}
.prop-specs-minimal .narrative-content h3 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 25px;
}
.prop-specs-minimal .narrative-content h3 span {
  color: #397655;
}
.prop-specs-minimal .narrative-content p {
  font-size: 16px;
  line-height: 1.9;
  color: #555;
}
.prop-specs-minimal .highlights-list .h-item {
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 20px;
}
.prop-specs-minimal .highlights-list .h-item span {
  font-size: 10px;
  color: #397655;
  border: 1px solid #397655;
  width: 25px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Concierge Card */
.concierge-card {
  background: #fff;
  padding: 60px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 10;
}
.concierge-card .advisor-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
.concierge-card .advisor-profile img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.concierge-card .advisor-profile h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.concierge-card .advisor-profile span {
  font-size: 12px;
  color: #397655;
}
.concierge-card h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 30px;
}
.concierge-card h3 span {
  color: #397655;
}
.concierge-card .concierge-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #eee;
  padding: 15px 0;
  margin-bottom: 20px;
  outline: none;
  transition: 0.3s;
}
.concierge-card .concierge-form input:focus {
  border-color: #397655;
}
.concierge-card .concierge-form button {
  width: 100%;
  background: #1d1f22;
  color: #fff;
  border: none;
  padding: 18px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
  margin-top: 20px;
  transition: 0.3s;
}
.concierge-card .concierge-form button:hover {
  background: #397655;
}
.concierge-card .form-note {
  font-size: 11px;
  color: #bbb;
  margin-top: 15px;
  text-align: center;
}

.lifestyle-images {
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}
.lifestyle-images .lifestyle-slider .item {
  height: 600px;
}
.lifestyle-images .lifestyle-slider .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.lifestyle-images .slider-controls {
  position: absolute;
  bottom: 10px;
  right: 10px;
  display: flex;
  z-index: 10;
}
.lifestyle-images .slider-controls button {
  width: 70px;
  height: 70px;
  background: #1d1f22;
  color: #ffffff;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.lifestyle-images .slider-controls button:hover {
  background: #397655;
  width: 90px; /* Slight expansion on hover for premium feel */
}
.lifestyle-images .slider-controls button.l-prev {
  background: #2a2d30; /* Slightly lighter for distinction */
}
.lifestyle-images .slider-controls button.l-prev:hover {
  background: #397655;
}

/* Contact Identity Block */
.contact-identity-block .info-grid {
  margin-top: 40px;
}
.contact-identity-block .info-grid .info-item {
  margin-bottom: 35px;
}
.contact-identity-block .info-grid .info-item label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #397655;
  font-weight: 700;
  display: block;
  margin-bottom: 10px;
}
.contact-identity-block .info-grid .info-item h4 {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1d1f22;
}
.contact-identity-block .info-grid .info-item h4 a {
  transition: 0.3s;
}
.contact-identity-block .info-grid .info-item h4 a:hover {
  color: #397655;
}
.contact-identity-block .contact-social-wrap {
  margin-top: 50px;
}
.contact-identity-block .contact-social-wrap label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #397655;
  display: block;
  margin-bottom: 20px;
  font-weight: 700;
}
.contact-identity-block .contact-social-wrap .social-links {
  display: flex;
  gap: 20px;
}
.contact-identity-block .contact-social-wrap .social-links a {
  width: 50px;
  height: 50px;
  background: #f8fbf9;
  color: #1d1f22;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  transition: 0.4s;
  border: 1px solid transparent;
}
.contact-identity-block .contact-social-wrap .social-links a:hover {
  background: #397655;
  color: #fff;
  transform: translateY(-5px);
  border-color: #397655;
}

/* Bespoke Form Card */
.bespoke-form-card {
  padding: 40px;
  border-radius: 4px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.15);
}
.bespoke-form-card .form-header {
  margin-bottom: 35px;
}
.bespoke-form-card .form-header h3 {
  font-size: 32px;
  font-weight: 800;
}
.bespoke-form-card .form-header h3 span {
  font-weight: 300;
  font-style: italic;
  color: #397655;
}
.bespoke-form-card .form-header p {
  color: #999;
  font-size: 15px;
  margin-top: 10px;
}
.bespoke-form-card .premium-form .floating-input input, .bespoke-form-card .premium-form .floating-input select, .bespoke-form-card .premium-form .floating-input textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: solid 1px rgba(4, 4, 4, 0.15);
  padding: 15px 0;
  color: #000;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}
.bespoke-form-card .premium-form .floating-input input:focus, .bespoke-form-card .premium-form .floating-input select:focus, .bespoke-form-card .premium-form .floating-input textarea:focus {
  border-color: #397655;
}
.bespoke-form-card .premium-form .floating-input input::-moz-placeholder, .bespoke-form-card .premium-form .floating-input select::-moz-placeholder, .bespoke-form-card .premium-form .floating-input textarea::-moz-placeholder {
  color: #000;
}
.bespoke-form-card .premium-form .floating-input input::placeholder, .bespoke-form-card .premium-form .floating-input select::placeholder, .bespoke-form-card .premium-form .floating-input textarea::placeholder {
  color: #000;
}
.bespoke-form-card .premium-form .floating-input select {
  color: rgb(0, 0, 0);
}
.bespoke-form-card .premium-form .submit-btn {
  background: #397655;
  border: none;
  padding: 18px 45px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  width: 100%;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: solid 1px transparent;
  transition: 0.4s;
}
.bespoke-form-card .premium-form .submit-btn:hover {
  background: #fff;
  color: #1d1f22;
  gap: 25px;
  border-color: var(--theme-color);
}

/* Monochrome Map Styling */
.map-section {
  line-height: 0;
}
/* Leadership Profile Section Styles */
.leadership-profile-section {
  background: #ffffff;
}
.leadership-profile-section .leader-image-wrapper {
  position: relative;
  padding-right: 30px;
}
.leadership-profile-section .leader-image-wrapper .main-portrait {
  width: 100%;
  height: 650px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  filter: contrast(1.05); /* Professional crisp look */
  box-shadow: 30px 30px 0px #f8fbf9; /* Offset background box */
}
.leadership-profile-section .leader-image-wrapper .experience-badge-vertical {
  position: absolute;
  top: 50%;
  right: 0;
  background: #1d1f22;
  color: #fff;
  padding: 30px 15px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.leadership-profile-section .leader-image-wrapper .experience-badge-vertical .since {
  font-size: 10px;
  letter-spacing: 4px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin-bottom: 15px;
  opacity: 0.6;
}
.leadership-profile-section .leader-image-wrapper .experience-badge-vertical .year {
  font-size: 20px;
  font-weight: 800;
  color: #397655;
}
.leadership-profile-section .leader-bio-content .role-tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #397655;
  font-weight: 700;
  margin-bottom: 15px;
}
.leadership-profile-section .leader-bio-content .leader-name {
  font-size: 60px;
  font-weight: 800;
  color: #1d1f22;
  line-height: 1;
  margin-bottom: 40px;
}
.leadership-profile-section .leader-bio-content .leader-name span {
  font-weight: 300;
  font-style: italic;
}
.leadership-profile-section .leader-bio-content .bio-intro {
  font-size: 20px;
  color: #1d1f22;
  line-height: 1.6;
  font-weight: 500;
  margin-bottom: 30px;
  padding-left: 20px;
  border-left: 3px solid #397655;
}
.leadership-profile-section .leader-bio-content .bio-full p {
  font-size: 16px;
  color: #666;
  line-height: 1.9;
  margin-bottom: 25px;
}
.leadership-profile-section .leader-bio-content .signature-area {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.leadership-profile-section .leader-bio-content .signature-area .firm-logo-sign {
  max-width: 120px;
  filter: grayscale(1);
  opacity: 0.5;
}
.leadership-profile-section .leader-bio-content .signature-area .sign-text h5 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  font-family: serif;
}
.leadership-profile-section .leader-bio-content .signature-area .sign-text span {
  font-size: 12px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Philosophy Quote Section Styles */
.philosophy-quote-section .quote-wrap i {
  font-size: 40px;
  color: #397655;
  margin-bottom: 30px;
  opacity: 0.5;
}
.philosophy-quote-section .quote-wrap h3 {
  font-size: 38px;
  color: #fff;
  font-weight: 300;
  line-height: 1.4;
}
.philosophy-quote-section .quote-wrap h3 span {
  color: #397655;
  font-weight: 700;
}
.philosophy-quote-section .quote-wrap .divider {
  width: 60px;
  height: 2px;
  background: #397655;
  margin: 40px auto 20px;
}
.philosophy-quote-section .quote-wrap p {
  letter-spacing: 5px;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

/* Leadership Stats Grid Styles */
.leadership-stats {
  background: #fcfcfc;
}
.leadership-stats .stats-row {
  display: flex;
  justify-content: space-between;
}
.leadership-stats .stats-row .stat-box {
  text-align: center;
  flex: 1;
  padding: 0 30px;
  border-right: 1px solid #eee;
}
.leadership-stats .stats-row .stat-box:last-child {
  border-right: none;
}
.leadership-stats .stats-row .stat-box h4 {
  font-size: 45px;
  font-weight: 800;
  color: #1d1f22;
  margin-bottom: 10px;
}
.leadership-stats .stats-row .stat-box p {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #397655;
  font-weight: 700;
}

#popup {
  /* Overlay */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
  /* Popup Box */
}
#popup .popup-box {
  background: #fff;
  padding: 25px;
  max-width: 400px;
  width: 90%;
  border-radius: 8px;
  position: relative;
}
#popup {
  /* Close Button */
}
#popup .close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 30px;
}
#popup {
  /* Form */
}
#popup .popup-box input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
}
#popup .popup-box button {
  width: 100%;
  padding: 10px;
  background: black;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* Responsive Logic */
@media (max-width: 991px) {
  .leader-image-wrapper {
    margin-bottom: 60px;
    padding-right: 0 !important;
  }
  .leader-image-wrapper .main-portrait {
    height: auto !important;
  }
  .leader-name {
    font-size: 45px !important;
  }
  .philosophy-quote-section h3 {
    font-size: 26px !important;
  }
  .stats-row {
    flex-wrap: wrap;
  }
  .stats-row .stat-box {
    flex: 0 0 50%;
    margin-bottom: 40px;
    border: none !important;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .contact-identity-block {
    padding-right: 0;
    margin-bottom: 60px;
    text-align: center;
  }
  .contact-identity-block .social-links {
    justify-content: center;
  }
  .bespoke-form-card {
    padding: 40px 30px;
  }
}
/* Responsive */
@media (max-width: 991px) {
  .prop-main-title {
    font-size: 36px !important;
  }
  .specs-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
  }
  .concierge-card {
    margin-top: 50px !important;
    padding: 30px !important;
  }
  .floating-quote {
    position: static !important;
    width: 100% !important;
    margin-top: 20px;
  }
}
/* Mobile Adjustments */
@media (max-width: 991px) {
  .quick-stats-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px;
    margin-top: 20px !important;
  }
  .quick-stats-grid .stat-card {
    border-right: none !important;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  .amenities-flex {
    grid-template-columns: 1fr !important;
  }
  .sticky-sidebar {
    position: static;
    margin-top: 50px;
  }
  .main-header {
    background: #ffffff;
  }
  .main-header .navbar-toggler {
    border: none;
    padding: 0;
    color: var(--theme-color);
    font-size: 24px;
  }
  .main-header .navbar-toggler:focus {
    box-shadow: none;
  }
  .main-header .navbar-collapse {
    background: #fff;
    padding: 20px;
    margin-top: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  .main-header .header-contact {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
  .main-header .header-contact .call-link {
    margin-bottom: 15px;
  }
  .main-header .header-contact .header-btn {
    width: 100%;
    text-align: center;
  }
  .filter-wrapper {
    margin-top: 0;
  }
  .filter-wrapper .filter-bar {
    flex-direction: column;
    gap: 20px;
  }
  .filter-wrapper .filter-bar .filter-item {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }
  .filter-wrapper .filter-bar .filter-btn {
    width: 100%;
  }
  .luxury-timeline .timeline-container::before {
    left: 20px;
    transform: none;
  }
  .luxury-timeline .timeline-container .timeline-row {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 50px;
    margin-bottom: 60px;
  }
  .luxury-timeline .timeline-container .timeline-row .year-column {
    width: auto;
    margin-bottom: 20px;
    text-align: left;
  }
  .luxury-timeline .timeline-container .timeline-row .content-column {
    flex-direction: column !important;
    width: 100%;
  }
  .luxury-timeline .timeline-container .timeline-row .content-column .image-box {
    width: 100%;
    height: 250px;
    margin-bottom: 20px;
  }
  .luxury-timeline .timeline-container .timeline-row .content-column .text-box {
    padding: 0 !important;
    text-align: left !important;
  }
}
/* Responsive adjustment */
@media (max-width: 767px) {
  .lifestyle-images .lifestyle-slider .item {
    height: 400px;
  }
  .lifestyle-images .slider-controls button {
    width: 50px;
    height: 50px;
  }
  .lifestyle-images .slider-controls button:hover {
    width: 50px;
  }
}/*# sourceMappingURL=style.css.map */