

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Montserrat",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #323b3b; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #163535; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #2c7a7b; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #323b3b;  /* The default color of the main navmenu links */
  --nav-hover-color: #2c7a7b; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #323b3b; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #2c7a7b; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #282425;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #081b12;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #1f3028;
  --contrast-color: #ffffff;
}

.accent-background {
  --background-color: #077f46;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --accent-color: #ffffff;
  --surface-color: #2a8f5f;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #b08135;
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 103px 0;
    transition: all 0.5s;
    z-index: 997;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030;
    margin-top: -85px;
}

@media (min-width: 1200px) {
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px 0;
}

.hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero .hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero .hero-background .overlay {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, #00091666 5%, #0009 50%, #000916b3);
}

.hero .container {
    position: relative;
    z-index: 2;
    padding: 40px 15px;
}

.hero .hero-badge {
    display: inline-block;
    padding: 9px 23px;
    /* background: 
 color-mix(in srgb, var(--accent-color), transparent 20%); */
    color: var(--contrast-color);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* border-radius: 50px; */
    margin-bottom: 9px;
    /* backdrop-filter: blur(10px); */
    border: 1px solid white;
    margin-top: 37px;
}



.header .logo {
  line-height: 1;
}

.hero h1 {
    font-size: 45px;
    font-weight: inherit;
    line-height: 1.1;
    margin-bottom: 22px;
    font-family: optima sans-serif;
}

.hero p {
    font-size: 21px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: white;
   /* min-width: 340px; */
    font-style: normal;
    font-weight: 300;
}

.hero .hero-actions {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero .hero-actions .btn-primary {
    /* background: var(--accent-color); */
    color: var(--contrast-color);
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px 
 color-mix(in srgb, var(--accent-color), transparent 60%);
}

.hero .hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.header .logo img {
    height: 100px;
    /* margin-right: 8px; */
    width: 100px;
}

.header .logo h1 {
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 20px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}



/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

@media (min-width: 1200px) {
    @media (min-width: 1200px) {
        .navmenu a, .navmenu a:focus {
            color: #ffffff;
                padding: 11px 20px;
                font-size: 15px;
                font-family: optima sans-serif;
                font-weight: 500;
                display: flex;
                align-items: center;
                text-transform: uppercase;
                gap: 4px;
                letter-spacing: 1.2px;
        }
    }
}

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #ffffff;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }


.navbar .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}

.navbar {
    position: absolute;
    width: 100%;
    background-color: transparent;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .4), transparent);
    transition: background-color .3s ease, box-shadow .3s ease;
    z-index: 99;
}

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.fi-mail:before {
    content: "\f1c9";
}


.fi-phone-call:before {
    content: "\f1f6";
}
.ratio:before {
    content: "";
    display: block;
    padding-top: var(--fn-aspect-ratio);
}
.ratio>* {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}
.fi-apple:before {
    content: "\f10d";
}

.text-body {
    --fn-text-opacity: 1;
    color: rgba(var(--fn-body-color-rgb), var(--fn-text-opacity)) !important;
}

input[type=text],
input[type=email],
textarea {
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 14px;
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
  border-color: var(--accent-color);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: #b78b31;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
    background-color: #b58a3c;
    color: #000000;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: #ffffff;
    background-color: #03334f;
    position: relative;
    padding-top: 80px;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 700;
  color: #d4a956;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

.page-title nav ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title nav ol li+li {
  padding-left: 10px;
}

.page-title nav ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section, .section {
    color: #c8a44e;
    background-color: #231f20;
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Home About Section
--------------------------------------------------------------*/
.home-about .image-section {
  position: relative;
}

.home-about .image-section .main-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.home-about .image-section .main-image-wrapper .main-image {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .main-image {
    height: 350px;
  }
}

.home-about .image-section .main-image-wrapper .floating-card {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  background: var(--surface-color);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .floating-card {
    bottom: 1rem;
    right: 1rem;
    padding: 1rem;
  }
}

.home-about .image-section .main-image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 10%));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .icon i {
  color: var(--contrast-color);
  font-size: 1.3rem;
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .text .number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

@media (max-width: 768px) {
  .home-about .image-section .main-image-wrapper .floating-card .card-content .text .number {
    font-size: 1.5rem;
  }
}

.home-about .image-section .main-image-wrapper .floating-card .card-content .text .label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.home-about .image-section .secondary-images {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

@media (max-width: 576px) {
  .home-about .image-section .secondary-images {
    flex-direction: column;
  }
}

.home-about .image-section .secondary-images .small-image {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.home-about .image-section .secondary-images .small-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-about .image-section .secondary-images .small-image img:hover {
  transform: scale(1.05);
}

.home-about .content-wrapper {
  padding-right: 2rem;
}

@media (max-width: 992px) {
  .home-about .content-wrapper {
    padding-right: 0;
    margin-top: 3rem;
  }
}

.home-about .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.home-about .content-wrapper .section-badge i {
  font-size: 1rem;
}

.home-about .content-wrapper h2 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper h2 {
    font-size: 2rem;
  }
}

.home-about .content-wrapper p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 2.5rem;
}

.home-about .content-wrapper .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 576px) {
  .home-about .content-wrapper .stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.home-about .content-wrapper .stats-grid .stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--surface-color);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.home-about .content-wrapper .stats-grid .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.home-about .content-wrapper .stats-grid .stat-item .stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper .stats-grid .stat-item .stat-number {
    font-size: 1.7rem;
  }
}

.home-about .content-wrapper .stats-grid .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-weight: 500;
}

.home-about .content-wrapper .features-list {
  margin-bottom: 2.5rem;
}

.home-about .content-wrapper .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--default-color);
}

.home-about .content-wrapper .features-list .feature-item:last-child {
  margin-bottom: 0;
}

.home-about .content-wrapper .features-list .feature-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.home-about .content-wrapper .cta-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 768px) {
  .home-about .content-wrapper .cta-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.home-about .content-wrapper .cta-wrapper .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.home-about .content-wrapper .cta-wrapper .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 60%);
  color: var(--contrast-color);
}

.home-about .content-wrapper .cta-wrapper .btn-primary:hover i {
  transform: translateX(3px);
}

.home-about .content-wrapper .cta-wrapper .btn-primary i {
  transition: transform 0.3s ease;
  font-size: 1.1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick i {
  width: 45px;
  height: 45px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text {
  display: flex;
  flex-direction: column;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text span {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0.1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a {
  font-weight: 600;
  color: var(--heading-color);
  text-decoration: none;
  font-size: 1rem;
}

.home-about .content-wrapper .cta-wrapper .contact-quick .contact-text a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Featured Properties Section
--------------------------------------------------------------*/
.featured-properties .grid-featured {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

@media (max-width: 992px) {
  .featured-properties .grid-featured {
    grid-template-columns: 1fr;
  }
}

.featured-properties .highlight-card {
  background-color: var(--surface-color);
  border-radius: 18px;
  box-shadow: 0 6px 28px color-mix(in srgb, var(--default-color), transparent 90%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-properties .highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 36px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-properties .highlight-card .media {
  position: relative;
  height: 360px;
  overflow: hidden;
}

.featured-properties .highlight-card .media .image-link {
  display: block;
  height: 100%;
}

.featured-properties .highlight-card .media .image-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.6s ease;
}

.featured-properties .highlight-card .media:hover img {
  transform: scale(1.08);
}

.featured-properties .highlight-card .media .badge-set {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.featured-properties .highlight-card .media .badge-set .flag {
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 800;
  color: var(--contrast-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.featured-properties .highlight-card .media .badge-set .flag.featured {
  background: color-mix(in srgb, var(--accent-color), black 10%);
}

.featured-properties .highlight-card .media .badge-set .flag.premium {
  background: color-mix(in srgb, var(--accent-color), blue 25%);
}

.featured-properties .highlight-card .media .quick-specs {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.featured-properties .highlight-card .media .quick-specs span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 16px;
  backdrop-filter: blur(8px);
  color: var(--contrast-color);
  background: color-mix(in srgb, #000, transparent 65%);
  font-size: 12px;
}

.featured-properties .highlight-card .media .quick-specs span i {
  font-size: 14px;
  color: var(--contrast-color);
}

.featured-properties .highlight-card .content {
  padding: 22px;
}

.featured-properties .highlight-card .content .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.featured-properties .highlight-card .content .top h3 {
  margin: 0 0 6px 0;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.25;
}

.featured-properties .highlight-card .content .top h3 a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.featured-properties .highlight-card .content .top h3 a:hover {
  color: var(--accent-color);
}

.featured-properties .highlight-card .content .top .loc {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.featured-properties .highlight-card .content .top .loc i {
  color: var(--accent-color);
}

.featured-properties .highlight-card .content .top .price {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  padding: 10px 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 20px;
  white-space: nowrap;
}

.featured-properties .highlight-card .content .excerpt {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  margin: 0 0 18px 0;
  line-height: 1.7;
  font-size: 15px;
}

.featured-properties .highlight-card .content .cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-properties .highlight-card .content .cta .btn-main {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 22px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  transition: 0.3s;
}

.featured-properties .highlight-card .content .cta .btn-main:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.featured-properties .highlight-card .content .cta .btn-soft {
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  color: var(--accent-color);
  padding: 10px 20px;
  border-radius: 28px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  transition: 0.3s;
}

.featured-properties .highlight-card .content .cta .btn-soft:hover {
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.featured-properties .highlight-card .content .cta .meta {
  margin-left: auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.featured-properties .highlight-card .content .cta .meta .status {
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-properties .highlight-card .content .cta .meta .status.for-sale {
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
}

.featured-properties .highlight-card .content .cta .meta .listed {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 576px) {
  .featured-properties .highlight-card .media {
    height: 280px;
  }

  .featured-properties .highlight-card .content .top {
    flex-direction: column;
  }

  .featured-properties .highlight-card .content .top .price {
    align-self: flex-start;
  }

  .featured-properties .highlight-card .content .cta {
    flex-direction: column;
    align-items: stretch;
  }

  .featured-properties .highlight-card .content .cta .meta {
    margin-left: 0;
    justify-content: space-between;
    width: 100%;
  }
}

.featured-properties .mini-list {
    display: grid;
    gap: 2px;
    /* grid-template-rows: repeat(3, 1fr); */
}

.grid-featured {
  display: flex;
  gap: 15px;
  align-items: stretch;
}

/* Mini-list on left side */
.mini-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* Big Image on right side */
.media {
  flex: 2;
}

.mini-list .thumb img,
.media img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  display: block;
}


/* Hover Text Styles */
.thumb, .image-link {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.hover-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 16px;
  text-align: center;
  padding: 10px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.thumb:hover .hover-text,
.image-link:hover .hover-text {
  opacity: 1;
}


.image-hover {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.image-hover img {
  display: block;
  transition: transform 0.4s ease;
}

.image-hover:hover img {
  transform: scale(1.1); /* Zoom effect */
}

.hover-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    text-align: center;
    padding: 27px;
    font-size: 65px;
    opacity: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
    transform: translateY(100%);
    font-family: emoji;
}

.image-hover:hover .hover-text {
  opacity: 1;
  transform: translateY(0);
}


.featured-properties .mini-list .mini-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  background: var(--surface-color);
  border-radius: 14px;
  box-shadow: 0 4px 18px color-mix(in srgb, var(--default-color), transparent 92%);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-properties .mini-list .mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 88%);
}

.featured-properties .mini-list .mini-card .thumb {
  position: relative;
  display: block;
  height: 100%;
}

.featured-properties .mini-list .mini-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-properties .mini-list .mini-card .thumb .label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 800;
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-properties .mini-list .mini-card .thumb .label.hot {
  background: color-mix(in srgb, var(--accent-color), red 25%);
}

.featured-properties .mini-list .mini-card .thumb .label.new {
  background: color-mix(in srgb, var(--accent-color), green 20%);
}

.featured-properties .mini-list .mini-card .thumb .label.featured {
  background: color-mix(in srgb, var(--accent-color), blue 20%);
}

.featured-properties .mini-list .mini-card .mini-body {
  padding: 14px 14px 12px 0;
}

.featured-properties .mini-list .mini-card .mini-body h4 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 6px 0;
}

.featured-properties .mini-list .mini-card .mini-body h4 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.featured-properties .mini-list .mini-card .mini-body h4 a:hover {
  color: var(--accent-color);
}

.featured-properties .mini-list .mini-card .mini-body .mini-loc {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 8px;
}

.featured-properties .mini-list .mini-card .mini-body .mini-loc i {
  color: var(--accent-color);
}

.featured-properties .mini-list .mini-card .mini-body .mini-specs {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 10px;
}

.featured-properties .mini-list .mini-card .mini-body .mini-specs span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.featured-properties .mini-list .mini-card .mini-body .mini-specs span i {
  color: var(--accent-color);
  font-size: 12px;
}

.featured-properties .mini-list .mini-card .mini-body .mini-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-properties .mini-list .mini-card .mini-body .mini-foot .mini-price {
  font-size: 18px;
  font-weight: 800;
  color: var(--heading-color);
}

.featured-properties .mini-list .mini-card .mini-body .mini-foot .mini-btn {
  padding: 8px 14px;
  border-radius: 18px;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
}

.featured-properties .mini-list .mini-card .mini-body .mini-foot .mini-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .featured-properties .mini-list {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .featured-properties .mini-list {
    grid-template-columns: 1fr;
  }

  .featured-properties .mini-list .mini-card {
    grid-template-columns: 100px 1fr;
  }
}

.featured-properties .stack-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 4px 22px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-properties .stack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px color-mix(in srgb, var(--default-color), transparent 86%);
}

.featured-properties .stack-card .stack-media {
  position: relative;
  height: 200px;
  margin: 0;
}

.featured-properties .stack-card .stack-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-properties .stack-card .stack-media figcaption {
  position: absolute;
  top: 12px;
  left: 12px;
}

.featured-properties .stack-card .stack-media figcaption .chip {
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 800;
  color: var(--contrast-color);
}

.featured-properties .stack-card .stack-media figcaption .chip.exclusive {
  background: color-mix(in srgb, var(--accent-color), blue 25%);
}

.featured-properties .stack-card .stack-media figcaption .chip.hot {
  background: color-mix(in srgb, var(--accent-color), red 22%);
}

.featured-properties .stack-card .stack-media figcaption .chip.new {
  background: color-mix(in srgb, var(--accent-color), green 20%);
}

.featured-properties .stack-card .stack-body {
  padding: 18px;
}

.featured-properties .stack-card .stack-body h5 {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 6px;
}

.featured-properties .stack-card .stack-body h5 a {
  color: var(--heading-color);
  transition: 0.3s;
}

.featured-properties .stack-card .stack-body h5 a:hover {
  color: var(--accent-color);
}

.featured-properties .stack-card .stack-body .stack-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 13px;
  margin-bottom: 10px;
}

.featured-properties .stack-card .stack-body .stack-loc i {
  color: var(--accent-color);
}

.featured-properties .stack-card .stack-body .stack-specs {
  display: flex;
  gap: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 12px;
  margin: 0 0 14px 0;
  padding: 0;
  list-style: none;
}

.featured-properties .stack-card .stack-body .stack-specs li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.featured-properties .stack-card .stack-body .stack-specs li i {
  color: var(--accent-color);
  font-size: 12px;
}

.featured-properties .stack-card .stack-body .stack-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.featured-properties .stack-card .stack-body .stack-foot .stack-price {
  font-weight: 800;
  font-size: 20px;
  color: var(--heading-color);
}

.featured-properties .stack-card .stack-body .stack-foot .stack-link {
  padding: 8px 14px;
  border-radius: 18px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 40%);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  transition: 0.3s;
}

.featured-properties .stack-card .stack-body .stack-foot .stack-link:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services .service-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 24px 32px;
  height: 100%;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
  text-align: center;
  overflow: hidden;
}

.featured-services .service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent-color);
  transition: width 0.4s ease;
  border-radius: 0 0 3px 3px;
}

.featured-services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px color-mix(in srgb, var(--default-color), transparent 88%);
}

.featured-services .service-card:hover::before {
  width: 60px;
}

.featured-services .service-card:hover .service-icon {
  background: var(--accent-color);
  transform: rotateY(360deg);
}

.featured-services .service-card:hover .service-icon i {
  color: var(--contrast-color);
}

.featured-services .service-card:hover .service-number {
  color: var(--accent-color);
  transform: scale(1.1);
}

.featured-services .service-card.featured {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), black 15%));
  color: var(--contrast-color);
}

.featured-services .service-card.featured::before {
  background: var(--contrast-color);
}

.featured-services .service-card.featured .service-header .service-icon {
  background: var(--contrast-color);
}

.featured-services .service-card.featured .service-header .service-icon i {
  color: var(--accent-color);
}

.featured-services .service-card.featured .service-header .service-number {
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-content h3 a {
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-content h3 a:hover {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.featured-services .service-card.featured .service-content p {
  color: color-mix(in srgb, var(--contrast-color), transparent 15%);
}

.featured-services .service-card.featured .service-content .service-features li {
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-content .service-features li i {
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-btn {
  background: color-mix(in srgb, var(--contrast-color), transparent 80%);
  color: var(--contrast-color);
}

.featured-services .service-card.featured .service-btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  color: var(--accent-color);
}

.featured-services .service-card.featured:hover .service-icon {
  background: var(--contrast-color);
}

.featured-services .service-card.featured:hover .service-icon i {
  color: var(--accent-color);
}

.featured-services .service-card .service-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.featured-services .service-card .service-header .service-icon {
  width: 70px;
  height: 70px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.featured-services .service-card .service-header .service-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.featured-services .service-card .service-header .service-number {
  font-size: 24px;
  font-weight: 800;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-family: var(--heading-font);
  transition: all 0.3s ease;
}

.featured-services .service-card .service-content {
  margin-bottom: 32px;
}

.featured-services .service-card .service-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.featured-services .service-card .service-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.featured-services .service-card .service-content h3 a:hover {
  color: var(--accent-color);
}

.featured-services .service-card .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.featured-services .service-card .service-content .service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.featured-services .service-card .service-content .service-features li {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 8px 0;
  font-size: 14px;
  color: var(--default-color);
}

.featured-services .service-card .service-content .service-features li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
  font-weight: 600;
}

.featured-services .service-card .service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.featured-services .service-card .service-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.05);
}

.featured-services .service-card .service-btn:hover i {
  transform: translateX(3px);
}

.featured-services .service-card .service-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.featured-services .btn-all-services {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  background: transparent;
  color: var(--accent-color);
  text-decoration: none;
  border: 2px solid var(--accent-color);
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.4s ease;
  margin-top: 50px;
  position: relative;
  overflow: hidden;
}

.featured-services .btn-all-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: left 0.4s ease;
  z-index: -1;
}

.featured-services .btn-all-services:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.featured-services .btn-all-services:hover::before {
  left: 0;
}

.featured-services .btn-all-services:hover i {
  transform: rotate(45deg);
}

.featured-services .btn-all-services i {
  font-size: 20px;
  transition: transform 0.4s ease;
}

@media (max-width: 992px) {
  .featured-services .service-card {
    margin-bottom: 30px;
    padding: 36px 20px 28px;
  }

  .featured-services .service-card .service-header {
    margin-bottom: 24px;
  }

  .featured-services .service-card .service-header .service-icon {
    width: 60px;
    height: 60px;
  }

  .featured-services .service-card .service-header .service-icon i {
    font-size: 28px;
  }

  .featured-services .service-card .service-header .service-number {
    font-size: 22px;
  }

  .featured-services .service-card .service-content {
    margin-bottom: 28px;
  }

  .featured-services .service-card .service-content h3 {
    font-size: 19px;
  }

  .featured-services .service-card .service-content p {
    font-size: 14px;
  }

  .featured-services .service-card .service-content .service-features li {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .featured-services .service-card {
    padding: 32px 16px 24px;
  }

  .featured-services .service-card .service-header {
    flex-direction: column;
    gap: 16px;
  }

  .featured-services .service-card .service-header .service-number {
    font-size: 20px;
  }

  .featured-services .service-card .service-content h3 {
    font-size: 18px;
  }

  .featured-services .service-card .service-content .service-features {
    text-align: left;
  }

  .featured-services .btn-all-services {
    padding: 16px 32px;
    font-size: 15px;
    margin-top: 40px;
  }
}

/*--------------------------------------------------------------
# Featured Agents Section
--------------------------------------------------------------*/
.featured-agents .agent-card {
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 94%);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.featured-agents .agent-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px color-mix(in srgb, var(--default-color), transparent 88%);
}

.featured-agents .agent-card:hover .agent-image img {
  transform: scale(1.05);
}

.featured-agents .agent-card:hover .agent-image .agent-overlay {
  opacity: 1;
  visibility: visible;
}

.featured-agents .agent-card:hover .status-badge {
  transform: scale(1.05);
}

.featured-agents .agent-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.featured-agents .agent-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.featured-agents .agent-image .agent-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 85%) 0%, color-mix(in srgb, var(--heading-color), transparent 85%) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.featured-agents .agent-image .agent-overlay .contact-buttons {
  display: flex;
  gap: 12px;
}

.featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact {
  width: 48px;
  height: 48px;
  background: var(--contrast-color);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px) scale(1.1);
}

.featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact:nth-child(2):hover {
  background: #dc3545;
}

.featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact:nth-child(3):hover {
  background: #25d366;
}

.featured-agents .agent-image .status-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease;
}

.featured-agents .agent-image .status-badge.top-agent {
  background: linear-gradient(135deg, #ffd700, #ffb000);
  color: #333;
}

.featured-agents .agent-image .status-badge.certified {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #0056b3 30%));
  color: var(--contrast-color);
}

.featured-agents .agent-image .status-badge.new-star {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: var(--contrast-color);
}

.featured-agents .agent-info {
  padding: 24px 20px;
}

.featured-agents .agent-meta {
  text-align: center;
  margin-bottom: 20px;
}

.featured-agents .agent-meta .agent-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
  line-height: 1.2;
}

.featured-agents .agent-meta .agent-title {
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-agents .agent-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 18px;
  padding: 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 88%);
}

.featured-agents .agent-stats .stat-item {
  text-align: center;
  flex: 1;
}

.featured-agents .agent-stats .stat-item .stat-number {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.featured-agents .agent-stats .stat-item .stat-label {
  font-size: 11px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-agents .agent-stats .stat-divider {
  width: 1px;
  height: 30px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.featured-agents .location-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  font-weight: 500;
}

.featured-agents .location-tag i {
  color: var(--accent-color);
  font-size: 14px;
}

.featured-agents .specialties {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.featured-agents .specialties .specialty-tag {
  background: var(--surface-color);
  color: var(--accent-color);
  padding: 5px 12px;
  border-radius: 16px;
  font-size: 11px;
  font-weight: 600;
  border: 1.5px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.featured-agents .profile-link {
  display: block;
  text-align: center;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.featured-agents .profile-link:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
  color: var(--contrast-color);
  transform: translateY(-1px);
}

.featured-agents .explore-agents-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface-color);
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.featured-agents .explore-agents-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.featured-agents .explore-agents-btn i {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.featured-agents .explore-agents-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.featured-agents .explore-agents-btn:hover::before {
  left: 0;
}

.featured-agents .explore-agents-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 1199px) {
  .featured-agents .col-xl-4 {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 992px) {
  .featured-agents .agent-image {
    height: 240px;
  }

  .featured-agents .agent-info {
    padding: 20px 18px;
  }

  .featured-agents .agent-meta .agent-name {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .featured-agents .agent-image {
    height: 220px;
  }

  .featured-agents .agent-image .agent-overlay {
    opacity: 1;
    visibility: visible;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 90%) 0%, color-mix(in srgb, var(--heading-color), transparent 90%) 100%);
  }

  .featured-agents .agent-image .agent-overlay .contact-buttons .btn-contact {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .featured-agents .agent-stats {
    gap: 15px;
    padding: 14px;
  }

  .featured-agents .agent-stats .stat-item .stat-number {
    font-size: 16px;
  }

  .featured-agents .explore-agents-btn {
    padding: 12px 28px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-home .testimonial-item p {
    font-style: italic;
    margin: 0 15px 15px 15px;
    padding: 20px;
    background: #eeeeee;
    position: relative;
    margin-bottom: 35px;
    border-radius: 6px;
}
.testimonials-home .testimonial-item {
    box-sizing: content-box;
    text-align: center;
    min-height: 320px;
}
.testimonials-home .testimonial-item .quote-icon-left {
    display: inline-block;
    left: -5px;
    position: relative;
}
.testimonials-home .testimonial-item .testimonial-img {
    width: 90px;
    border-radius: 50%;
    margin: 0 auto;
	height: 90px;
}
.testimonials-home .testimonial-item h3 {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0 5px 0;
}
.testimonials-home .testimonial-item h4 {
    font-size: 15px;
    color: #ffffff;
    margin: 0;
}
.testimonials-home .swiper-pagination {
    margin-top: 40px;
    position: relative;
}
.testimonials-home .testimonial-item .quote-icon-left, .testimonials-home .testimonial-item .quote-icon-right {
    color: 
 color-mix(in srgb, var(--accent-color), transparent 40%);
    font-size: 26px;
    line-height: 0;
}
.testimonials-home .testimonial-item p::after {
    content: "";
    width: 0;
    height: 0;
    border-top: 20px solid color-mix(in srgb, #000000, #00000005 97%);
    border-right: 20px solid transparent;
    border-left: 20px solid transparent;
    position: absolute;
    bottom: -20px;
    left: calc(50% - 20px);
}
.testimonials-home .testimonial-item .quote-icon-left, .testimonials-home .testimonial-item .quote-icon-right {
    color: color-mix(in srgb, var(--accent-color), transparent 40%);
    font-size: 26px;
    /* line-height: 0; */
}
.testimonials-home .testimonial-item .quote-icon-right {
    display: inline-block;
    right: -5px;
    position: relative;
    top: 10px;
    transform: scale(-1, -1);
}
/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us {
  padding: 100px 0;
  background: #282425;
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("../img/bg/abstract-bg-3.webp") no-repeat center center;
  background-size: cover;
  opacity: 0.03;
  z-index: 0;
}

.why-us .container {
  position: relative;
  z-index: 1;
}

.why-us .image-showcase {
  position: relative;
}

.why-us .image-showcase .main-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.why-us .image-showcase .main-image-wrapper .main-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0, 0, 0, 0.3), transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content {
  text-align: center;
  color: var(--contrast-color);
  display: flex;
  align-items: center;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  cursor: pointer;
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content .play-icon:hover {
  transform: scale(1.1);
}

.why-us .image-showcase .main-image-wrapper .image-overlay .overlay-content span {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0 0 15px 10px;
}

.why-us .image-showcase .main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.why-us .image-showcase .floating-stats {
  position: absolute;
  top: -30px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.why-us .image-showcase .floating-stats .stat-badge {
  background: #ae803e;
  color: var(--contrast-color);
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  min-width: 120px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transform: rotate(5deg);
}

.why-us .image-showcase .floating-stats .stat-badge:nth-child(2) {
  transform: rotate(-3deg);
  background: var(--surface-color);
  color: var(--default-color);
}

.why-us .image-showcase .floating-stats .stat-badge .stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.why-us .image-showcase .floating-stats .stat-badge .stat-text {
  font-size: 0.9rem;
  opacity: 0.9;
}

.why-us .image-showcase .experience-card {
  position: absolute;
  bottom: -25px;
  left: -25px;
  background: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 280px;
}

.why-us .image-showcase .experience-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #a27949, color-mix(in srgb, #a4794a, transparent 30%));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .image-showcase .experience-card .card-icon i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.why-us .image-showcase .experience-card .card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.why-us .image-showcase .experience-card .card-content p {
  font-size: 0.9rem;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.why-us .content-wrapper {
  padding-left: 2rem;
}

.why-us .content-wrapper .section-badge {
  display: inline-flex;
  align-items: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: #ac7f45;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.why-us .content-wrapper .section-badge i {
  color: #ac7f45;
}

.why-us .content-wrapper h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #b08135;
}

.why-us .content-wrapper .lead-text {
  font-size: 1.2rem;
  line-height: 1.7;
  color: white;
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #ac7f45, color-mix(in srgb, #ac7f45, transparent 20%));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-icon i {
  font-size: 1.2rem;
  color: var(--contrast-color);
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #ac7f45;
}

.why-us .content-wrapper .benefits-grid .benefit-item .benefit-content p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: white;
}

.why-us .content-wrapper .achievement-highlights {
  display: flex;
  align-items: center;
  gap: 5rem;
  padding: 2rem 0;
  margin-bottom: 2.5rem;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 15px;
  background: #231f20;
  justify-content: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item {
  text-align: center;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: #ae803e;
  margin-bottom: 5px;
}

.why-us .content-wrapper .achievement-highlights .highlight-item .highlight-label {
  font-size: 0.9rem;
  color: white;
  font-weight: 500;
}

.why-us .content-wrapper .achievement-highlights .highlight-divider {
  width: 1px;
  height: 40px;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .content-wrapper .action-buttons {
  display: flex;
  gap: 1.5rem;
}

.why-us .content-wrapper .action-buttons .btn {
  padding: 15px 35px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.why-us .content-wrapper .action-buttons .btn.btn-primary {
  background: #b08135;
  border: none;
  color: var(--contrast-color);
}

.why-us .content-wrapper .action-buttons .btn.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.why-us .content-wrapper .action-buttons .btn.btn-outline {
  border: 2px solid #ae803e;
  color: #ffffff;
  background: transparent;
}

.why-us .content-wrapper .action-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 992px) {
  .why-us {
    padding: 80px 0;
  }

  .why-us .content-wrapper {
    padding-left: 0;
    margin-top: 3rem;
  }

  .why-us .content-wrapper h2 {
    font-size: 2.3rem;
  }

  .why-us .content-wrapper .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights {
    flex-direction: column;
    gap: 1.5rem;
  }

  .why-us .content-wrapper .achievement-highlights .highlight-divider {
    width: 40px;
    height: 1px;
  }

  .why-us .content-wrapper .action-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why-us .image-showcase .main-image-wrapper .main-image {
    height: 400px;
  }

  .why-us .image-showcase .floating-stats {
    position: relative;
    top: 20px;
    right: 0;
    flex-direction: row;
    justify-content: center;
  }

  .why-us .image-showcase .experience-card {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 2rem;
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .why-us {
    padding: 60px 0;
  }

  .why-us .content-wrapper h2 {
    font-size: 2rem;
  }

  .why-us .content-wrapper .lead-text {
    font-size: 1.1rem;
  }

  .why-us .image-showcase .floating-stats {
    flex-direction: column;
    gap: 10px;
  }

  .why-us .image-showcase .floating-stats .stat-badge {
    min-width: 100px;
    padding: 15px;
  }

  .why-us .image-showcase .floating-stats .stat-badge .stat-number {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
    /* background: var(--surface-color); */
    box-shadow: 0px 0px 3px 0px rgb(181 138 60);
    transition: 0.3s;
    border-radius: 5px;
    overflow: hidden;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  background-color: #231f20;
  color: var(--contrast-color);
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 600;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  color: #b58a3c;
  font-size: 20px;
  font-weight: 600;
  transition: 0.3s;
  margin-bottom: 20px;
}

.recent-blog-posts .post-item .readmore {
  color: #ffffff;
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s;
  text-decoration: underline;
  padding-bottom: 5px;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: #ffffff;
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
  padding: 100px 0;
  background: #2e2b2b;
}

.call-to-action .section-badge {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

.call-to-action .cta-content h2 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

@media (max-width: 992px) {
  .call-to-action .cta-content h2 {
    font-size: 2.25rem;
  }
}

@media (max-width: 768px) {
  .call-to-action .cta-content h2 {
    font-size: 1.875rem;
    text-align: center;
  }
}

.call-to-action .cta-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  color: white;
  margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .call-to-action .cta-content p {
    text-align: center;
    font-size: 1.05rem;
  }
}

.call-to-action .benefits-list {
  margin-bottom: 2.5rem;
}

.call-to-action .benefits-list .benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .call-to-action .benefits-list .benefit-item {
    justify-content: flex-start;
  }
}

.call-to-action .benefits-list .benefit-item i {
  color: #ae803e;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.call-to-action .benefits-list .benefit-item span {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}

.call-to-action .cta-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .call-to-action .cta-actions {
    justify-content: center;
  }
}

.call-to-action .cta-actions .btn {
  padding: 14px 28px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.call-to-action .cta-actions .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.call-to-action .cta-actions .btn:hover::before {
  transform: translateX(100%);
}

.call-to-action .cta-actions .btn.btn-primary {
  background-color: #ae803e;
  color: var(--contrast-color);
  border-color: #ffffff;
}

.call-to-action .cta-actions .btn.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.call-to-action .cta-actions .btn.btn-secondary {
  background-color: var(--surface-color);
  color: #ac7f45;
  border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}

.call-to-action .cta-actions .btn.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 75%);
}

@media (max-width: 576px) {
  .call-to-action .cta-actions .btn {
    width: 100%;
    justify-content: center;
    max-width: 280px;
  }
}

.call-to-action .cta-visual {
  position: relative;
}

@media (max-width: 992px) {
  .call-to-action .cta-visual {
    margin-bottom: 3rem;
  }
}

.call-to-action .cta-visual .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .cta-visual .main-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .call-to-action .cta-visual .main-image img {
    height: 300px;
  }
}

.call-to-action .cta-visual .main-image:hover img {
  transform: scale(1.05);
}

.call-to-action .cta-visual .main-image .overlay-badge {
  position: absolute;
  top: 25px;
  left: 25px;
  background: var(--surface-color);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 85%);
}

.call-to-action .cta-visual .main-image .overlay-badge i {
  color: #FFD700;
  font-size: 1.1rem;
}

.call-to-action .cta-visual .main-image .overlay-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--default-color);
}

.call-to-action .cta-visual .floating-stats {
  position: absolute;
  bottom: -30px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media (max-width: 992px) {
  .call-to-action .cta-visual .floating-stats {
    position: relative;
    bottom: auto;
    right: auto;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
}

@media (max-width: 576px) {
  .call-to-action .cta-visual .floating-stats {
    flex-direction: column;
    align-items: center;
  }
}

.call-to-action .cta-visual .floating-stats .stat-card {
  background: var(--surface-color);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 88%);
  transition: transform 0.3s ease;
  min-width: 200px;
}

.call-to-action .cta-visual .floating-stats .stat-card:hover {
  transform: translateY(-5px);
}

.call-to-action .cta-visual .floating-stats .stat-card .stat-icon {
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.call-to-action .cta-visual .floating-stats .stat-card .stat-icon i {
  color: var(--accent-color);
  font-size: 1.5rem;
}

.call-to-action .cta-visual .floating-stats .stat-card .stat-info {
  display: flex;
  flex-direction: column;
}

.call-to-action .cta-visual .floating-stats .stat-card .stat-info .stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
}

.call-to-action .cta-visual .floating-stats .stat-card .stat-info .stat-label {
  font-size: 0.85rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-weight: 500;
}

@media (max-width: 768px) {
  .call-to-action {
    padding: 80px 0;
  }

  .call-to-action .cta-content {
    text-align: center;
  }

  .call-to-action .cta-content .benefits-list {
    text-align: left;
    max-width: 400px;
    margin: 0 auto 2.5rem auto;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .intro-content .section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  color: var(--accent-color);
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.about .intro-content .section-badge i {
  font-size: 1rem;
}

.about .intro-content h2 {
  font-size: 3.2rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .about .intro-content h2 {
    font-size: 2.4rem;
  }
}

.about .intro-content .lead-text {
  font-size: 1.25rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.about .intro-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.about .founder-highlight {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  border-left: 4px solid var(--accent-color);
  margin-top: 2rem;
}

.about .founder-highlight .founder-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  float: left;
  margin-right: 1rem;
  margin-bottom: 1rem;
  border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.about .founder-highlight .founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .founder-highlight .founder-info {
  overflow: hidden;
}

.about .founder-highlight .founder-info blockquote {
  font-style: italic;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about .founder-highlight .founder-info .founder-details h5 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.about .founder-highlight .founder-info .founder-details span {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 500;
}

.about .visual-section {
  position: relative;
}

.about .visual-section .main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about .visual-section .main-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.about .visual-section .main-image img:hover {
  transform: scale(1.02);
}

@media (max-width: 768px) {
  .about .visual-section .main-image img {
    height: 350px;
  }
}

.about .visual-section .experience-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  background: var(--surface-color);
  padding: 1.2rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 2px solid var(--accent-color);
}

.about .visual-section .experience-badge .badge-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about .visual-section .experience-badge .badge-text {
  font-size: 0.8rem;
  color: var(--heading-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .visual-section .overlay-image {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 4px solid var(--surface-color);
}

@media (max-width: 992px) {
  .about .visual-section .overlay-image {
    display: none;
  }
}

.about .visual-section .overlay-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about .achievements-grid {
  background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--surface-color), var(--accent-color) 5%));
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 5rem 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
}

.about .achievements-grid .achievement-item {
  padding: 1.5rem;
}

.about .achievements-grid .achievement-item .achievement-icon {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.about .achievements-grid .achievement-item .achievement-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.about .achievements-grid .achievement-item .achievement-icon:hover {
  background: var(--accent-color);
  transform: translateY(-5px);
}

.about .achievements-grid .achievement-item .achievement-icon:hover i {
  color: var(--contrast-color);
}

.about .achievements-grid .achievement-item .achievement-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .about .achievements-grid .achievement-item .achievement-number {
    font-size: 2.5rem;
  }
}

.about .achievements-grid .achievement-item .achievement-label {
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about .timeline-section {
  margin: 5rem 0;
}

.about .timeline-section .section-header h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.about .timeline-section .section-header p {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  max-width: 600px;
  margin: 0 auto;
}

.about .timeline-section .timeline {
  position: relative;
  padding: 2rem 0;
}

.about .timeline-section .timeline .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
  position: relative;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item {
    padding-left: 60px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item:nth-child(even) {
    flex-direction: column;
    align-items: flex-start;
  }
}

.about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
  text-align: right;
  padding-right: 2rem;
  padding-left: 0;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-right: 0;
  }
}

.about .timeline-section .timeline .timeline-item .timeline-year {
  width: 120px;
  height: 120px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item .timeline-year {
    position: absolute;
    left: -40px;
    width: 80px;
    height: 80px;
    font-size: 1rem;
  }
}

.about .timeline-section .timeline .timeline-item .timeline-content {
  flex: 1;
  padding-left: 2rem;
}

@media (max-width: 768px) {
  .about .timeline-section .timeline .timeline-item .timeline-content {
    padding-left: 0;
    margin-top: 1rem;
  }
}

.about .timeline-section .timeline .timeline-item .timeline-content h4 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 0.8rem;
}

.about .timeline-section .timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  line-height: 1.6;
  margin: 0;
}

.about .team-preview {
  text-align: center;
  margin: 5rem 0;
}

.about .team-preview h3 {
  font-size: 2.5rem;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.about .team-preview .team-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.about .team-preview .team-member {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 15px;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}

.about .team-preview .team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about .team-preview .team-member .member-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 4px solid var(--accent-color);
}

.about .team-preview .team-member .member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about .team-preview .team-member .member-info h5 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.about .team-preview .team-member .member-info span {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.about .team-preview .view-team-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 1rem 2.5rem;
  background: var(--accent-color);
  color: var(--contrast-color);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.about .team-preview .view-team-btn:hover {
  background: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Properties Section
--------------------------------------------------------------*/
.properties .properties-header .view-toggle .view-btn {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.properties .properties-header .view-toggle .view-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.properties .properties-header .view-toggle .view-btn:hover:not(.active) {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.properties .properties-header .sort-dropdown .form-select {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
  font-size: 14px;
  background-color: transparent;
}

.properties .properties-header .sort-dropdown .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.properties .properties-grid {
  display: none;
}

.properties .properties-grid.active {
  display: block;
}

.properties .properties-list {
  display: none;
}

.properties .properties-list.active {
  display: block;
}

.properties .property-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
}

.properties .property-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 80%);
}

.properties .property-card .property-image {
  position: relative;
  overflow: hidden;
}

.properties .property-card .property-image img {
  transition: transform 0.3s ease;
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.properties .property-card .property-image:hover img {
  transform: scale(1.05);
}

.properties .property-card .property-image .property-badges {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 2;
}

.properties .property-card .property-image .property-badges .badge {
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
}

.properties .property-card .property-image .property-badges .badge.featured {
  background-color: #ff6b35;
  color: white;
}

.properties .property-card .property-image .property-badges .badge.new {
  background-color: #10b981;
  color: white;
}

.properties .property-card .property-image .property-badges .badge.for-sale {
  background-color: var(--accent-color);
  color: white;
}

.properties .property-card .property-image .property-badges .badge.for-rent {
  background-color: #8b5cf6;
  color: white;
}

.properties .property-card .property-image .property-badges .badge.open-house {
  background-color: #f59e0b;
  color: white;
}

.properties .property-card .property-image .property-overlay {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.properties .property-card .property-image .property-overlay button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: none;
  background-color: white;
  color: var(--default-color);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px color-mix(in srgb, var(--default-color), transparent 85%);
  transition: all 0.3s ease;
}

.properties .property-card .property-image .property-overlay button:hover {
  background-color: var(--accent-color);
  color: white;
}

.properties .property-card .property-image .property-overlay button.favorite-btn:hover {
  background-color: #ef4444;
  color: white;
}

.properties .property-card .property-image:hover .property-overlay {
  opacity: 1;
}

.properties .property-card .property-content {
  padding: 20px;
}

.properties .property-card .property-content .property-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 8px;
}

.properties .property-card .property-content .property-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--default-color);
}

.properties .property-card .property-content .property-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.properties .property-card .property-content .property-location {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  margin-bottom: 15px;
}

.properties .property-card .property-content .property-location i {
  margin-right: 5px;
  color: var(--accent-color);
}

.properties .property-card .property-content .property-features {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.properties .property-card .property-content .property-features span {
  font-size: 13px;
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.properties .property-card .property-content .property-features span i {
  color: var(--accent-color);
  font-size: 14px;
}

.properties .property-card .property-content .property-agent {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 12px 15px;
  background-color: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border-radius: 8px;
}

.properties .property-card .property-content .property-agent .agent-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.properties .property-card .property-content .property-agent .agent-info {
  flex: 1;
}

.properties .property-card .property-content .property-agent .agent-info strong {
  font-size: 14px;
  color: var(--heading-color);
  display: block;
}

.properties .property-card .property-content .property-agent .agent-info .agent-contact small {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 12px;
}

.properties .property-card .property-content .property-agent .agent-info .agent-contact small i {
  margin-right: 3px;
}

.properties .property-card .property-content .btn {
  font-size: 14px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  transition: all 0.3s ease;
}

.properties .property-list-item {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.properties .property-list-item:hover {
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 80%);
}

.properties .property-list-item .property-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.properties .property-list-item .property-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.properties .property-list-item .property-image:hover img {
  transform: scale(1.05);
}

.properties .property-list-item .property-image .property-badges {
  position: absolute;
  top: 10px;
  left: 10px;
}

.properties .property-list-item .property-image .property-badges .badge {
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 15px;
}

.properties .property-list-item .property-image .property-badges .badge.featured {
  background-color: #ff6b35;
  color: white;
}

.properties .property-list-item .property-image .property-badges .badge.new {
  background-color: #10b981;
  color: white;
}

.properties .property-list-item .property-image .property-badges .badge.for-rent {
  background-color: #8b5cf6;
  color: white;
}

.properties .property-list-item .property-image .property-badges .badge.open-house {
  background-color: #f59e0b;
  color: white;
}

.properties .property-list-item .property-content .property-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent-color);
}

.properties .property-list-item .property-content .property-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
}

.properties .property-list-item .property-content .property-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  line-height: 1.3;
}

.properties .property-list-item .property-content .property-location {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.properties .property-list-item .property-content .property-location i {
  margin-right: 5px;
  color: var(--accent-color);
}

.properties .property-list-item .property-content .property-features {
  display: flex;
  gap: 15px;
}

.properties .property-list-item .property-content .property-features span {
  font-size: 13px;
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 5px;
}

.properties .property-list-item .property-content .property-features span i {
  color: var(--accent-color);
  font-size: 14px;
}

.properties .property-list-item .property-content .property-agent {
  display: flex;
  align-items: center;
  gap: 8px;
}

.properties .property-list-item .property-content .property-agent .agent-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.properties .property-list-item .property-content .property-agent span {
  font-size: 14px;
  color: var(--heading-color);
  font-weight: 500;
}

.properties .property-list-item .property-content .property-actions {
  display: flex;
  gap: 10px;
}

.properties .property-list-item .property-content .property-actions .btn-sm {
  padding: 6px 12px;
  font-size: 13px;
}

.properties .property-list-item .property-content .property-actions .btn-outline-secondary {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
}

.properties .property-list-item .property-content .property-actions .btn-outline-secondary:hover {
  background-color: #ef4444;
  border-color: #ef4444;
  color: white;
}

.properties .properties-sidebar .filter-widget {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.properties .properties-sidebar .filter-widget .filter-title {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.properties .properties-sidebar .filter-widget .filter-section {
  margin-bottom: 20px;
}

.properties .properties-sidebar .filter-widget .filter-section .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.properties .properties-sidebar .filter-widget .filter-section .form-select,
.properties .properties-sidebar .filter-widget .filter-section .form-control {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  font-size: 14px;
  background-color: transparent;
  color: var(--default-color);
}

.properties .properties-sidebar .filter-widget .filter-section .form-select:focus,
.properties .properties-sidebar .filter-widget .filter-section .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.properties .properties-sidebar .filter-widget .filter-section .form-select::placeholder,
.properties .properties-sidebar .filter-widget .filter-section .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.properties .properties-sidebar .filter-widget .filter-section .bedroom-filter,
.properties .properties-sidebar .filter-widget .filter-section .bathroom-filter {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.properties .properties-sidebar .filter-widget .filter-section .bedroom-filter .filter-btn,
.properties .properties-sidebar .filter-widget .filter-section .bathroom-filter .filter-btn {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  color: var(--default-color);
  font-size: 13px;
  padding: 5px 12px;
}

.properties .properties-sidebar .filter-widget .filter-section .bedroom-filter .filter-btn.active,
.properties .properties-sidebar .filter-widget .filter-section .bathroom-filter .filter-btn.active {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.properties .properties-sidebar .filter-widget .filter-section .bedroom-filter .filter-btn:hover:not(.active),
.properties .properties-sidebar .filter-widget .filter-section .bathroom-filter .filter-btn:hover:not(.active) {
  border-color: var(--accent-color);
  color: var(--accent-color);
}

.properties .properties-sidebar .filter-widget .filter-section .features-filter .form-check {
  margin-bottom: 8px;
}

.properties .properties-sidebar .filter-widget .filter-section .features-filter .form-check .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.properties .properties-sidebar .filter-widget .filter-section .features-filter .form-check .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.properties .properties-sidebar .filter-widget .filter-section .features-filter .form-check .form-check-label {
  font-size: 14px;
  color: var(--default-color);
}

.properties .properties-sidebar .filter-widget .btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  padding: 12px 20px;
  font-weight: 600;
}

.properties .properties-sidebar .filter-widget .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.properties .properties-sidebar .featured-properties {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
}

.properties .properties-sidebar .featured-properties h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 20px;
}

.properties .properties-sidebar .featured-properties .featured-item {
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.properties .properties-sidebar .featured-properties .featured-item:last-child {
  border-bottom: none;
}

.properties .properties-sidebar .featured-properties .featured-item img {
  border-radius: 6px;
  height: 60px;
  object-fit: cover;
}

.properties .properties-sidebar .featured-properties .featured-item h6 {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
}

.properties .properties-sidebar .featured-properties .featured-item .text-muted {
  color: color-mix(in srgb, var(--default-color), transparent 50%) !important;
}

.properties .properties-sidebar .featured-properties .featured-item .text-primary {
  color: var(--accent-color) !important;
  font-weight: 600;
  font-size: 14px;
}

.properties .pagination .page-link {
  color: var(--default-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
  padding: 10px 15px;
  background-color: transparent;
}

.properties .pagination .page-link:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.properties .pagination .page-item.active .page-link {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
}

.properties .pagination .page-item.disabled .page-link {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

@media (max-width: 992px) {
  .properties .properties-sidebar {
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .properties .properties-header .d-flex {
    flex-direction: column;
    gap: 15px;
    align-items: stretch !important;
  }

  .properties .properties-header .view-toggle {
    justify-content: center;
  }

  .properties .property-card .property-content {
    padding: 15px;
  }

  .properties .property-card .property-content .property-features {
    gap: 10px;
    flex-wrap: wrap;
  }

  .properties .property-list-item .row {
    flex-direction: column;
  }

  .properties .property-list-item .property-content {
    margin-top: 15px;
  }

  .properties .property-list-item .property-content .d-flex:first-child {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 10px;
  }

  .properties .property-list-item .property-content .property-actions {
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# Property Details Section
--------------------------------------------------------------*/
.property-details .property-gallery .main-image-container {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.property-details .property-gallery .main-image-container .main-property-image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  cursor: zoom-in;
}

.property-details .property-gallery .main-image-container .image-zoom-container {
  position: absolute;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  z-index: 10;
}

@media (max-width: 768px) {
  .property-details .property-gallery .main-image-container .image-zoom-container {
    display: none;
  }
}

.property-details .property-gallery .main-image-container .image-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 10%);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
  backdrop-filter: blur(10px);
}

.property-details .property-gallery .main-image-container .image-nav-btn:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.property-details .property-gallery .main-image-container .image-nav-btn.prev-image {
  left: 15px;
}

.property-details .property-gallery .main-image-container .image-nav-btn.next-image {
  right: 15px;
}

.property-details .property-gallery .thumbnail-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item {
  flex: 1;
  min-width: 100px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item.active {
  border-color: var(--accent-color);
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item:hover {
  border-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.property-details .property-gallery .thumbnail-gallery .thumbnail-item img {
  width: 100%;
  height: 80px;
  object-fit: cover;
}

.property-details .property-description {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-description h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.property-details .property-description p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-details .property-amenities {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-amenities h3 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.property-details .property-amenities h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 500;
  color: var(--heading-color);
}

.property-details .property-amenities .features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.property-details .property-amenities .features-list li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.property-details .property-amenities .features-list li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.property-details .property-map {
  margin-top: 40px;
  padding: 30px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-map h3 {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 600;
}

.property-details .property-map .map-container {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
}

.property-details .property-map .map-container iframe {
  border-radius: 12px;
}

.property-details .property-map .location-details h4 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 500;
}

.property-details .property-map .location-details p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.6;
}

.property-details .property-overview {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  top: 100px;
}

.property-details .property-overview .price-tag {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.property-details .property-overview .property-status {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.property-details .property-overview .property-address {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.property-details .property-overview .property-address h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
}

.property-details .property-overview .property-address p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.property-details .property-overview .property-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.property-details .property-overview .property-stats .stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.property-details .property-overview .property-stats .stat-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 24px;
}

.property-details .property-overview .property-stats .stat-item .value {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  display: block;
}

.property-details .property-overview .property-stats .stat-item .label {
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.property-details .property-overview .agent-info {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  padding: 20px;
  background: color-mix(in srgb, var(--surface-color), var(--default-color) 3%);
  border-radius: 12px;
  border-top: 3px solid var(--accent-color);
}

.property-details .property-overview .agent-info .agent-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.property-details .property-overview .agent-info .agent-details h4 {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 600;
}

.property-details .property-overview .agent-info .agent-details p {
  margin-bottom: 3px;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.property-details .property-overview .agent-info .agent-details p i {
  margin-right: 5px;
  color: var(--accent-color);
}

.property-details .property-overview .agent-info .agent-details .agent-title {
  font-style: italic;
}

.property-details .property-overview .contact-form {
  margin-bottom: 30px;
}

.property-details .property-overview .contact-form h4 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.property-details .property-overview .contact-form .form-control {
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 14px;
  color: var(--default-color);
  background-color: var(--surface-color);
}

.property-details .property-overview .contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

.property-details .property-overview .contact-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.property-details .property-overview .contact-form .btn-primary {
  background: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 12px 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  transition: all 0.3s ease;
}

.property-details .property-overview .contact-form .btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.property-details .property-overview .social-share h5 {
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
}

.property-details .property-overview .social-share .share-buttons {
  display: flex;
  gap: 10px;
}

.property-details .property-overview .social-share .share-buttons .share-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.property-details .property-overview .social-share .share-buttons .share-btn.facebook {
  background: #3b5998;
}

.property-details .property-overview .social-share .share-buttons .share-btn.twitter {
  background: #1da1f2;
}

.property-details .property-overview .social-share .share-buttons .share-btn.whatsapp {
  background: #25d366;
}

.property-details .property-overview .social-share .share-buttons .share-btn.email {
  background: #ea4335;
}

.property-details .property-overview .social-share .share-buttons .share-btn.print {
  background: var(--heading-color);
}

.property-details .property-overview .social-share .share-buttons .share-btn:hover {
  transform: translateY(-2px);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .property-details .property-overview {
    position: static !important;
    top: auto !important;
    margin-top: 30px;
  }

  .property-details .property-overview .property-stats {
    grid-template-columns: 1fr;
  }

  .property-details .property-gallery .main-image-container .main-property-image {
    height: 300px;
  }

  .property-details .property-gallery .thumbnail-gallery .thumbnail-item {
    min-width: 80px;
  }

  .property-details .property-gallery .thumbnail-gallery .thumbnail-item img {
    height: 60px;
  }
}

/*--------------------------------------------------------------
# Agents Section
--------------------------------------------------------------*/
.agents .featured-agent .agent-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.agents .featured-agent .agent-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.agents .featured-agent .agent-image .agent-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .agents .featured-agent .agent-image img {
    height: 400px;
  }
}

.agents .featured-content {
  padding-left: 40px;
}

.agents .featured-content h3 {
  font-size: 2.5rem;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.agents .featured-content .position {
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
}

.agents .featured-content .specialties {
  margin-bottom: 25px;
}

.agents .featured-content .specialties .badge {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 13px;
  margin-right: 8px;
  margin-bottom: 8px;
  display: inline-block;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

.agents .featured-content blockquote {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 25px 0;
  padding: 0;
  border: none;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.agents .featured-content .stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
}

.agents .featured-content .stats .stat-item {
  text-align: center;
}

.agents .featured-content .stats .stat-item .number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
}

.agents .featured-content .stats .stat-item .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.agents .featured-content .contact-info {
  margin: 30px 0;
}

.agents .featured-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.agents .featured-content .contact-info .contact-item i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
}

.agents .featured-content .contact-info .contact-item span {
  color: var(--default-color);
}

.agents .featured-content .social-links {
  display: flex;
  gap: 10px;
  margin: 20px 0;
}

.agents .featured-content .social-links .social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  transition: all 0.3s ease;
}

.agents .featured-content .social-links .social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.agents .featured-content .cta-buttons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.agents .featured-content .cta-buttons .btn {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.agents .featured-content .cta-buttons .btn.btn-primary {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
}

.agents .featured-content .cta-buttons .btn.btn-primary:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-2px);
}

.agents .featured-content .cta-buttons .btn.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.agents .featured-content .cta-buttons .btn.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 992px) {
  .agents .featured-content {
    padding-left: 0;
    margin-top: 40px;
  }

  .agents .featured-content .stats {
    justify-content: center;
  }

  .agents .featured-content .cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .agents .featured-content .stats {
    gap: 15px;
  }

  .agents .featured-content .stats .stat-item .number {
    font-size: 1.5rem;
  }

  .agents .featured-content .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .agents .featured-content .cta-buttons .btn {
    width: 250px;
    text-align: center;
  }
}

.agents .section-subtitle {
  color: var(--heading-color);
  font-size: 1.8rem;
  margin-bottom: 15px;
  text-align: center;
}

.agents .section-description {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.agents .agent-card {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.agents .agent-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.agents .agent-card .agent-photo {
  position: relative;
  overflow: hidden;
}

.agents .agent-card .agent-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.agents .agent-card .agent-photo .agent-status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
}

.agents .agent-card .agent-photo .agent-status.verified {
  background: #28a745;
  color: white;
}

.agents .agent-card .agent-photo .agent-status.new {
  background: #fd7e14;
  color: white;
}

.agents .agent-card .agent-photo .hover-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agents .agent-card .agent-photo .hover-overlay .contact-actions {
  display: flex;
  gap: 15px;
}

.agents .agent-card .agent-photo .hover-overlay .contact-actions .action-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--contrast-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.agents .agent-card .agent-photo .hover-overlay .contact-actions .action-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: scale(1.1);
}

.agents .agent-card:hover .agent-photo img {
  transform: scale(1.05);
}

.agents .agent-card:hover .agent-photo .hover-overlay {
  opacity: 1;
}

.agents .agent-card .agent-info {
  padding: 25px;
  text-align: center;
}

.agents .agent-card .agent-info h5 {
  color: var(--heading-color);
  font-size: 1.3rem;
  margin-bottom: 5px;
}

.agents .agent-card .agent-info .role {
  color: var(--accent-color);
  font-size: 14px;
  margin-bottom: 15px;
  display: block;
}

.agents .agent-card .agent-info .location {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
}

.agents .agent-card .agent-info .location i {
  margin-right: 5px;
  color: var(--accent-color);
}

.agents .agent-card .agent-info .languages {
  margin-bottom: 20px;
}

.agents .agent-card .agent-info .languages .lang-tag {
  display: inline-block;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 4px 8px;
  border-radius: 10px;
  font-size: 12px;
  margin-right: 5px;
}

.agents .agent-card .agent-info .view-listings {
  display: inline-block;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  transition: all 0.3s ease;
}

.agents .agent-card .agent-info .view-listings:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

@media (max-width: 768px) {
  .agents .agent-card .agent-info h5 {
    font-size: 1.1rem;
  }
}

/*--------------------------------------------------------------
# Agent Profile Section
--------------------------------------------------------------*/
.agent-profile .agent-profile-card {
  position: relative;
  background: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 90%);
}

.agent-profile .agent-profile-card .profile-background {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.agent-profile .agent-profile-card .profile-background .profile-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.agent-profile .agent-profile-card .profile-content {
  position: relative;
  padding: 2rem;
  margin-top: -80px;
}

.agent-profile .agent-profile-card .profile-content .agent-avatar {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.agent-profile .agent-profile-card .profile-content .agent-avatar .avatar-image {
  width: 120px;
  height: 120px;
  border-radius: 20px;
  border: 4px solid var(--surface-color);
  object-fit: cover;
  box-shadow: 0 10px 25px color-mix(in srgb, var(--default-color), transparent 80%);
}

.agent-profile .agent-profile-card .profile-content .agent-avatar .status-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--surface-color);
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
}

.agent-profile .agent-profile-card .profile-content .agent-avatar .status-indicator i {
  color: #22c55e;
  font-size: 10px;
}

.agent-profile .agent-profile-card .profile-content .agent-avatar .status-indicator span {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-name {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .agent-profile .agent-profile-card .profile-content .agent-header .agent-name {
    font-size: 2rem;
  }
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials .title {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.1rem;
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials .verification-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 14px;
  font-weight: 600;
}

.agent-profile .agent-profile-card .profile-content .agent-header .agent-credentials .verification-badge i {
  font-size: 16px;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats {
  display: flex;
  gap: 2rem;
}

@media (max-width: 576px) {
  .agent-profile .agent-profile-card .profile-content .agent-header .quick-stats {
    flex-direction: column;
    gap: 1rem;
  }
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0.25rem;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .star-rating {
  display: flex;
  gap: 2px;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .star-rating i {
  color: #fbbf24;
  font-size: 14px;
}

.agent-profile .agent-profile-card .profile-content .agent-header .quick-stats .quick-stat .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-weight: 500;
}

.agent-profile .main-content-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 3rem;
}

@media (max-width: 1200px) {
  .agent-profile .main-content-grid {
    grid-template-columns: 1fr 300px;
    gap: 2rem;
  }
}

@media (max-width: 992px) {
  .agent-profile .main-content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.agent-profile .content-main .about-section,
.agent-profile .content-main .experience-section,
.agent-profile .content-main .service-areas {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 93%);
}

.agent-profile .content-main .about-section h3,
.agent-profile .content-main .experience-section h3,
.agent-profile .content-main .service-areas h3 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

.agent-profile .content-main .about-section h3::after,
.agent-profile .content-main .experience-section h3::after,
.agent-profile .content-main .service-areas h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.agent-profile .content-main .about-section p,
.agent-profile .content-main .experience-section p,
.agent-profile .content-main .service-areas p {
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 1.5rem;
}

.agent-profile .content-main .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-left: 4px solid var(--accent-color);
  padding: 1.5rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.agent-profile .content-main .highlight-box h4 {
  color: var(--heading-color);
  font-style: italic;
  font-weight: 500;
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.agent-profile .content-main .timeline .timeline-item {
  position: relative;
  padding-left: 3rem;
  margin-bottom: 2rem;
}

.agent-profile .content-main .timeline .timeline-item:last-child {
  margin-bottom: 0;
}

.agent-profile .content-main .timeline .timeline-item:last-child::before {
  display: none;
}

.agent-profile .content-main .timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 30px;
  bottom: -2rem;
  width: 2px;
  background: color-mix(in srgb, var(--accent-color), transparent 70%);
}

.agent-profile .content-main .timeline .timeline-item .timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent-color);
  border: 4px solid var(--surface-color);
  box-shadow: 0 0 0 2px var(--accent-color);
}

.agent-profile .content-main .timeline .timeline-item .timeline-content .timeline-year {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agent-profile .content-main .timeline .timeline-item .timeline-content h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agent-profile .content-main .timeline .timeline-item .timeline-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  font-size: 0.95rem;
}

.agent-profile .content-main .areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.agent-profile .content-main .areas-grid .area-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.agent-profile .content-main .areas-grid .area-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.agent-profile .content-main .areas-grid .area-item i {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-top: 0.25rem;
}

.agent-profile .content-main .areas-grid .area-item h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.agent-profile .content-main .areas-grid .area-item p {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  margin: 0;
  font-size: 0.9rem;
}

.agent-profile .content-sidebar .contact-widget,
.agent-profile .content-sidebar .quick-contact-form,
.agent-profile .content-sidebar .achievements-widget,
.agent-profile .content-sidebar .office-info {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 93%);
}

.agent-profile .content-sidebar .contact-widget h4,
.agent-profile .content-sidebar .contact-widget h5,
.agent-profile .content-sidebar .quick-contact-form h4,
.agent-profile .content-sidebar .quick-contact-form h5,
.agent-profile .content-sidebar .achievements-widget h4,
.agent-profile .content-sidebar .achievements-widget h5,
.agent-profile .content-sidebar .office-info h4,
.agent-profile .content-sidebar .office-info h5 {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.agent-profile .content-sidebar .contact-methods .contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.agent-profile .content-sidebar .contact-methods .contact-method.primary {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.agent-profile .content-sidebar .contact-methods .contact-method.primary:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.agent-profile .content-sidebar .contact-methods .contact-method:not(.primary) {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
}

.agent-profile .content-sidebar .contact-methods .contact-method:not(.primary):hover {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.agent-profile .content-sidebar .contact-methods .contact-method i {
  font-size: 1.2rem;
  width: 20px;
}

.agent-profile .content-sidebar .contact-methods .contact-method .method-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.agent-profile .content-sidebar .contact-methods .contact-method .method-value {
  display: block;
  font-size: 0.9rem;
}

.agent-profile .content-sidebar .social-links {
  display: flex;
  gap: 8px;
  margin-top: 1rem;
}

.agent-profile .content-sidebar .social-links a {
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.agent-profile .content-sidebar .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.agent-profile .content-sidebar .php-email-form input[type=text],
.agent-profile .content-sidebar .php-email-form input[type=email],
.agent-profile .content-sidebar .php-email-form select,
.agent-profile .content-sidebar .php-email-form textarea {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
}

.agent-profile .content-sidebar .php-email-form input[type=text]:focus,
.agent-profile .content-sidebar .php-email-form input[type=email]:focus,
.agent-profile .content-sidebar .php-email-form select:focus,
.agent-profile .content-sidebar .php-email-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 85%);
}

.agent-profile .content-sidebar .php-email-form input[type=text]::placeholder,
.agent-profile .content-sidebar .php-email-form input[type=email]::placeholder,
.agent-profile .content-sidebar .php-email-form select::placeholder,
.agent-profile .content-sidebar .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.agent-profile .content-sidebar .php-email-form .btn-submit {
  width: 100%;
  background: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 20px;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.agent-profile .content-sidebar .php-email-form .btn-submit:hover {
  background: color-mix(in srgb, var(--accent-color), black 10%);
  transform: translateY(-2px);
}

.agent-profile .content-sidebar .achievement-list .achievement-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 12px;
  margin-bottom: 0.75rem;
}

.agent-profile .content-sidebar .achievement-list .achievement-item:last-child {
  margin-bottom: 0;
}

.agent-profile .content-sidebar .achievement-list .achievement-item .achievement-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-profile .content-sidebar .achievement-list .achievement-item .achievement-icon i {
  font-size: 1.1rem;
}

.agent-profile .content-sidebar .achievement-list .achievement-item .achievement-text h6 {
  color: var(--heading-color);
  font-weight: 600;
  margin: 0 0 3px 0;
  font-size: 0.9rem;
}

.agent-profile .content-sidebar .achievement-list .achievement-item .achievement-text span {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.8rem;
}

.agent-profile .content-sidebar .office-details .office-address,
.agent-profile .content-sidebar .office-details .office-hours {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.agent-profile .content-sidebar .office-details .office-address:last-child,
.agent-profile .content-sidebar .office-details .office-hours:last-child {
  margin-bottom: 0;
}

.agent-profile .content-sidebar .office-details .office-address i,
.agent-profile .content-sidebar .office-details .office-hours i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 3px;
}

.agent-profile .content-sidebar .office-details .office-address span,
.agent-profile .content-sidebar .office-details .office-hours span {
  display: block;
}

.agent-profile .content-sidebar .office-details .office-address span:first-child,
.agent-profile .content-sidebar .office-details .office-hours span:first-child {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 3px;
}

.agent-profile .content-sidebar .office-details .office-address span:last-child,
.agent-profile .content-sidebar .office-details .office-hours span:last-child {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.9rem;
  line-height: 1.4;
}

.agent-profile .performance-metrics {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 93%);
}

.agent-profile .performance-metrics .metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.agent-profile .performance-metrics .metrics-grid .metric-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.agent-profile .performance-metrics .metrics-grid .metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.agent-profile .performance-metrics .metrics-grid .metric-card .metric-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.agent-profile .performance-metrics .metrics-grid .metric-card .metric-icon i {
  font-size: 1.5rem;
}

.agent-profile .performance-metrics .metrics-grid .metric-card .metric-data .metric-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1;
  margin-bottom: 5px;
}

.agent-profile .performance-metrics .metrics-grid .metric-card .metric-data .metric-label {
  display: block;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  font-size: 0.9rem;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-block {
  background: var(--surface-color);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.services .service-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
}

.services .service-block .service-content {
  padding: 40px 30px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.services .service-block .service-content .icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(45deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.services .service-block .service-content .icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.services .service-block .service-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services .service-block .service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 25px;
  flex: 1;
}

.services .service-block .service-content .stats {
  display: flex;
  gap: 30px;
  margin-bottom: 25px;
}

.services .service-block .service-content .stats .stat-item .number {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.services .service-block .service-content .stats .stat-item .label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.services .service-block .service-content .btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.services .service-block .service-content .btn-service:hover {
  color: var(--heading-color);
  gap: 12px;
}

.services .service-block .service-content .btn-service i {
  transition: all 0.3s ease;
}

.services .service-block .service-image {
  height: 250px;
  overflow: hidden;
}

.services .service-block .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.services .service-block:hover .service-image img {
  transform: scale(1.05);
}

.services .service-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 35px 25px;
  text-align: center;
  height: 100%;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 92%);
  transition: all 0.3s ease;
}

.services .service-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.services .service-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.services .service-card .card-icon i {
  font-size: 36px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.services .service-card:hover .card-icon {
  background: var(--accent-color);
}

.services .service-card:hover .card-icon i {
  color: var(--contrast-color);
}

.services .service-card h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.services .service-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 25px;
}

.services .service-card .feature-list {
  margin-bottom: 25px;
}

.services .service-card .feature-list .feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  justify-content: center;
  font-size: 14px;
}

.services .service-card .feature-list .feature-item i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

.services .service-card .feature-list .feature-item span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.services .service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services .service-card .service-link:hover {
  color: var(--heading-color);
  gap: 12px;
}

.services .cta-section {
  margin-top: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 20%));
  border-radius: 15px;
  padding: 40px;
}

.services .cta-section h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.services .cta-section p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6;
}

.services .cta-section .btn-cta {
  background: var(--contrast-color);
  color: var(--accent-color);
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.services .cta-section .btn-cta:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 70%);
}

@media (max-width: 768px) {
  .services .service-block .service-content {
    padding: 30px 20px 20px;
  }

  .services .service-block .service-content .stats {
    gap: 20px;
  }

  .services .service-block .service-image {
    height: 200px;
  }

  .services .service-card {
    padding: 25px 20px;
  }

  .services .cta-section {
    padding: 30px 20px;
    text-align: center;
  }

  .services .cta-section .btn-cta {
    margin-top: 20px;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-sidebar .service-hero {
  position: relative;
  margin-bottom: 2.5rem;
  border-radius: 20px;
  overflow: hidden;
}

.service-details .service-sidebar .service-hero img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-details .service-sidebar .service-hero .service-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.1));
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.service-details .service-sidebar .service-hero .service-badge {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: var(--heading-color);
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-sidebar .service-hero .service-badge i {
  color: var(--accent-color);
  font-size: 16px;
}

.service-details .service-sidebar .service-hero:hover img {
  transform: scale(1.05);
}

.service-details .service-sidebar .quick-contact-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-sidebar .quick-contact-card .contact-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.service-details .service-sidebar .quick-contact-card .contact-header h4 {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-details .service-sidebar .quick-contact-card .contact-header p {
  color: var(--default-color);
  font-size: 14px;
  margin: 0;
}

.service-details .service-sidebar .quick-contact-card .form-group {
  margin-bottom: 1rem;
}

.service-details .service-sidebar .quick-contact-card .form-control,
.service-details .service-sidebar .quick-contact-card select {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  background-color: var(--surface-color);
  color: var(--default-color);
  transition: border-color 0.3s ease;
}

.service-details .service-sidebar .quick-contact-card .form-control:focus,
.service-details .service-sidebar .quick-contact-card select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  outline: 0;
}

.service-details .service-sidebar .quick-contact-card .form-control::placeholder,
.service-details .service-sidebar .quick-contact-card select::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

.service-details .service-sidebar .quick-contact-card .btn-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  border: none;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.service-details .service-sidebar .quick-contact-card .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.service-details .service-sidebar .quick-contact-card .btn-submit i {
  transition: transform 0.3s ease;
}

.service-details .service-sidebar .quick-contact-card .btn-submit:hover i {
  transform: translateX(3px);
}

.service-details .service-sidebar .expertise-highlights {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.service-details .service-sidebar .expertise-highlights h5 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details .service-sidebar .expertise-highlights .highlight-list .highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
}

.service-details .service-sidebar .expertise-highlights .highlight-list .highlight-item i {
  color: var(--accent-color);
  font-size: 16px;
  width: 20px;
}

.service-details .service-sidebar .expertise-highlights .highlight-list .highlight-item span {
  color: var(--default-color);
  font-size: 13px;
  font-weight: 500;
}

.service-details .service-main-content {
  padding-right: 2rem;
}

.service-details .service-main-content .content-header {
  margin-bottom: 3rem;
}

.service-details .service-main-content .content-header .service-category {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.service-details .service-main-content .content-header h1 {
  color: var(--heading-color);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.service-details .service-main-content .content-header .service-intro {
  font-size: 1.1rem;
  color: var(--default-color);
  line-height: 1.7;
  margin: 0;
}

.service-details .service-main-content .investment-types {
  margin-bottom: 3.5rem;
}

.service-details .service-main-content .investment-types h3 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.service-details .service-main-content .investment-types .types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-details .service-main-content .investment-types .types-grid .type-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.service-details .service-main-content .investment-types .types-grid .type-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-details .service-main-content .investment-types .types-grid .type-card .type-icon {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000 15%));
  color: var(--contrast-color);
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-details .service-main-content .investment-types .types-grid .type-card .type-icon i {
  font-size: 24px;
}

.service-details .service-main-content .investment-types .types-grid .type-card h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-details .service-main-content .investment-types .types-grid .type-card p {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-details .service-main-content .investment-types .types-grid .type-card .roi-indicator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 8px;
}

.service-details .service-main-content .investment-types .types-grid .type-card .roi-indicator .roi-label {
  color: var(--default-color);
  font-size: 12px;
  font-weight: 500;
}

.service-details .service-main-content .investment-types .types-grid .type-card .roi-indicator .roi-value {
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 700;
}

.service-details .service-main-content .service-methodology {
  margin-bottom: 3.5rem;
}

.service-details .service-main-content .service-methodology h3 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.service-details .service-main-content .service-methodology .methodology-timeline {
  position: relative;
  padding-left: 2rem;
}

.service-details .service-main-content .service-methodology .methodology-timeline::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 20px;
  bottom: 20px;
  width: 3px;
  background: linear-gradient(to bottom, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 50%));
  border-radius: 3px;
}

.service-details .service-main-content .service-methodology .methodology-timeline .timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
}

.service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-marker {
  position: absolute;
  left: -2rem;
  top: 1rem;
  width: 45px;
  height: 45px;
  background: var(--surface-color);
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-marker .step-num {
  color: var(--accent-color);
  font-weight: 700;
  font-size: 14px;
}

.service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-content {
  background: var(--surface-color);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-content h5 {
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-details .service-main-content .service-methodology .methodology-timeline .timeline-item .timeline-content p {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.service-details .service-main-content .performance-metrics {
  margin-bottom: 3.5rem;
}

.service-details .service-main-content .performance-metrics h3 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.service-details .service-main-content .performance-metrics .metrics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.service-details .service-main-content .performance-metrics .metrics-container .metric-box {
  text-align: center;
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

.service-details .service-main-content .performance-metrics .metrics-container .metric-box .metric-value {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  display: block;
  margin-bottom: 0.5rem;
}

.service-details .service-main-content .performance-metrics .metrics-container .metric-box .metric-label {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.service-details .service-main-content .performance-metrics .metrics-container .metric-box .metric-description {
  color: var(--default-color);
  font-size: 12px;
  opacity: 0.8;
}

.service-details .service-main-content .testimonial-section h3 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.service-details .service-main-content .testimonial-section .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  border-left: 4px solid var(--accent-color);
}

.service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .quote-content {
  margin-bottom: 1.5rem;
}

.service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .quote-content p {
  color: var(--default-color);
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  position: relative;
}

.service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .quote-content p::before {
  content: '"';
  font-size: 3rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  position: absolute;
  left: -1rem;
  top: -0.5rem;
  font-family: Georgia, serif;
}

.service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .client-info .client-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 70%);
}

.service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .client-info .client-details h6 {
  color: var(--heading-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card .client-info .client-details span {
  color: var(--accent-color);
  font-size: 12px;
  font-weight: 500;
}

@media (max-width: 992px) {
  .service-details .service-main-content {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .service-details .service-main-content .content-header h1 {
    font-size: 2.2rem;
  }

  .service-details .service-main-content .investment-types .types-grid {
    grid-template-columns: 1fr;
  }

  .service-details .service-main-content .methodology-timeline {
    padding-left: 1.5rem;
  }

  .service-details .service-main-content .methodology-timeline::before {
    left: 17px;
  }

  .service-details .service-main-content .methodology-timeline .timeline-item .timeline-marker {
    left: -1.5rem;
    width: 35px;
    height: 35px;
  }

  .service-details .service-main-content .methodology-timeline .timeline-item .timeline-marker .step-num {
    font-size: 12px;
  }

  .service-details .service-sidebar .service-hero {
    margin-bottom: 2rem;
  }

  .service-details .service-sidebar .service-hero img {
    height: 220px;
  }

  .service-details .service-sidebar .quick-contact-card {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .service-details .service-main-content .content-header h1 {
    font-size: 1.8rem;
  }

  .service-details .service-main-content .content-header .service-intro {
    font-size: 1rem;
  }

  .service-details .service-main-content .performance-metrics .metrics-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-details .service-main-content .performance-metrics .metrics-container .metric-box {
    padding: 1.5rem;
  }

  .service-details .service-main-content .performance-metrics .metrics-container .metric-box .metric-value {
    font-size: 2.5rem;
  }

  .service-details .service-main-content .testimonial-section .testimonial-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-details .service-main-content .testimonial-section .testimonial-grid .testimonial-card {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Blog Hero Section
--------------------------------------------------------------*/
.blog-hero .post-item {
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.blog-hero .post-item:hover .post-img img {
  transform: scale(1.1);
}

.blog-hero .post-item:hover .post-title a {
  color: var(--accent-color);
}

.blog-hero .post-item .post-img {
  position: relative;
  overflow: hidden;
  margin-bottom: 16px;
}

.blog-hero .post-item .post-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-hero .post-item .post-img .category {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 5px 15px;
  font-size: 14px;
  color: var(--contrast-color);
  border-radius: 4px;
  z-index: 1;
}

.blog-hero .post-item .post-img .category.entertainment {
  background-color: #e74c3c;
}

.blog-hero .post-item .post-img .category.business {
  background-color: #3498db;
}

.blog-hero .post-item .post-img .category.technology {
  background-color: #2ecc71;
}

.blog-hero .post-item .post-img .category.lifestyle {
  background-color: #9b59b6;
}

.blog-hero .post-item .post-content .post-title {
  margin: 0 0 12px;
  font-family: var(--heading-font);
}

.blog-hero .post-item .post-content .post-title a {
  color: var(--heading-color);
  transition: color 0.3s ease;
}

.blog-hero .post-item .post-content .post-title a:hover {
  color: var(--accent-color);
}

.blog-hero .post-item .post-content .post-meta {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-hero .post-item .post-content .post-meta .dot {
  margin: 0 8px;
}

.blog-hero .main-post {
  margin-bottom: 0;
}

.blog-hero .main-post .post-img {
  margin-bottom: 20px;
}

.blog-hero .main-post .post-title {
  font-size: 28px;
  line-height: 1.3;
}

@media (max-width: 991.98px) {
  .blog-hero .main-post .post-title {
    font-size: 24px;
  }
}

.blog-hero .side-posts .side-post {
  margin-bottom: 30px;
}

.blog-hero .side-posts .side-post:last-child {
  margin-bottom: 0;
}

.blog-hero .side-posts .side-post .post-title {
  font-size: 16px;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .blog-hero .side-posts {
    margin-top: 0;
  }
}

/*--------------------------------------------------------------
# Blog Posts Section
--------------------------------------------------------------*/
.blog-posts article {
  background-color: var(--surface-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 30px;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-posts .post-img {
  max-height: 240px;
  margin: -30px -30px 15px -30px;
  overflow: hidden;
}

.blog-posts .post-category {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 10px;
}

.blog-posts .title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog-posts .title a {
  color: var(--heading-color);
  transition: 0.3s;
}

.blog-posts .title a:hover {
  color: var(--accent-color);
}

.blog-posts .post-author-img {
  width: 50px;
  border-radius: 50%;
  margin-right: 15px;
}

.blog-posts .post-author {
  font-weight: 600;
  margin-bottom: 5px;
}

.blog-posts .post-date {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pagination 2 Section
--------------------------------------------------------------*/
.pagination-2 {
  padding-top: 0;
}

.pagination-2 nav {
  position: relative;
}

.pagination-2 ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pagination-2 li {
  margin: 0;
  transition: all 0.3s ease-in-out;
}

.pagination-2 li.ellipsis {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 8px 16px;
  user-select: none;
}

.pagination-2 li a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 16px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--default-color), transparent 90%);
}

.pagination-2 li a.active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.pagination-2 li a:hover:not(.active) {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-1px);
  box-shadow: 0 3px 6px color-mix(in srgb, var(--default-color), transparent 85%);
}

.pagination-2 li a i {
  font-size: 14px;
}

.pagination-2 li a span {
  margin: 0 4px;
}

@media (max-width: 575px) {
  .pagination-2 ul {
    gap: 4px;
  }

  .pagination-2 li a {
    min-width: 36px;
    height: 36px;
    padding: 8px 12px;
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Blog Details Section
--------------------------------------------------------------*/
.blog-details {
  max-width: 1000px;
  margin: 0 auto;
}

.blog-details .hero-img {
  position: relative;
  width: 100%;
  height: 500px;
  margin: -60px auto 3rem;
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-details .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-details .hero-img .meta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.blog-details .hero-img .meta-overlay .meta-categories .category {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  padding: 0.4rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .hero-img .meta-overlay .meta-categories .category:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.blog-details .hero-img .meta-overlay .meta-categories .divider {
  color: var(--contrast-color);
  margin: 0 0.75rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

.blog-details .hero-img .meta-overlay .meta-categories .reading-time i {
  margin-right: 0.3rem;
}

@media (max-width: 768px) {
  .blog-details .hero-img {
    height: 350px;
    margin-top: -30px;
    margin-bottom: 2rem;
  }
}

.blog-details .article-content {
  padding: 0 1rem;
}

.blog-details .article-content .content-header {
  margin-bottom: 3rem;
}

.blog-details .article-content .content-header .title {
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 768px) {
  .blog-details .article-content .content-header .title {
    font-size: 2rem;
  }
}

.blog-details .article-content .content-header .author-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.blog-details .article-content .content-header .author-info .author-details {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-details .article-content .content-header .author-info .author-details .author-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-details .article-content .content-header .author-info .author-details .info h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--heading-color);
}

.blog-details .article-content .content-header .author-info .author-details .info .role {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.blog-details .article-content .content-header .author-info .post-meta {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
}

.blog-details .article-content .content-header .author-info .post-meta i {
  margin-right: 0.3rem;
}

.blog-details .article-content .content-header .author-info .post-meta .divider {
  margin: 0 0.75rem;
}

.blog-details .article-content .content {
  font-size: 1.15rem;
  line-height: 1.8;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.blog-details .article-content .content .lead {
  font-size: 1.3rem;
  color: var(--heading-color);
  margin-bottom: 2rem;
  font-weight: 500;
}

.blog-details .article-content .content h2 {
  font-size: 2rem;
  color: var(--heading-color);
  margin: 3rem 0 1.5rem;
}

.blog-details .article-content .content p {
  margin-bottom: 1.5rem;
}

.blog-details .article-content .content ul {
  margin-bottom: 2rem;
  padding-left: 1.2rem;
}

.blog-details .article-content .content ul li {
  margin-bottom: 0.75rem;
  position: relative;
}

.blog-details .article-content .content .content-image {
  margin: 2.5rem 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-details .article-content .content .content-image.right-aligned {
  float: right;
  max-width: 450px;
  margin: 1rem 0 2rem 2rem;
}

@media (max-width: 768px) {
  .blog-details .article-content .content .content-image.right-aligned {
    float: none;
    max-width: 100%;
    margin: 2rem 0;
  }
}

.blog-details .article-content .content .content-image img {
  width: 100%;
  height: auto;
}

.blog-details .article-content .content .content-image figcaption {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  background-color: color-mix(in srgb, var(--surface-color), transparent 50%);
}

.blog-details .article-content .content .highlight-box {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 12px;
  padding: 2rem;
  margin: 2.5rem 0;
}

.blog-details .article-content .content .highlight-box h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.blog-details .article-content .content .highlight-box .trend-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.blog-details .article-content .content .highlight-box .trend-list li {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.5rem 0;
}

.blog-details .article-content .content .highlight-box .trend-list li i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 1rem;
}

.blog-details .article-content .content .highlight-box .trend-list li span {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-details .article-content .content .content-grid {
  margin: 3rem 0;
}

.blog-details .article-content .content .content-grid .info-card {
  background: var(--surface-color);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.blog-details .article-content .content .content-grid .info-card:hover {
  transform: translateY(-5px);
}

.blog-details .article-content .content .content-grid .info-card i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.blog-details .article-content .content .content-grid .info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.blog-details .article-content .content .content-grid .info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

.blog-details .article-content .content blockquote {
  position: relative;
  margin: 3rem 0;
  padding: 2rem 3rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.blog-details .article-content .content blockquote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 8rem;
  color: color-mix(in srgb, var(--accent-color), transparent 85%);
  font-family: serif;
  line-height: 1;
}

.blog-details .article-content .content blockquote p {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--heading-color);
  margin: 0 0 1rem;
  position: relative;
}

.blog-details .article-content .content blockquote cite {
  font-style: normal;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.95rem;
  display: block;
}

.blog-details .article-content .meta-bottom {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  display: grid;
  gap: 2rem;
}

.blog-details .article-content .meta-bottom h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.blog-details .article-content .meta-bottom .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.blog-details .article-content .meta-bottom .tags .tag {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .tags .tag:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.blog-details .article-content .meta-bottom .social-links {
  display: flex;
  gap: 1rem;
}

.blog-details .article-content .meta-bottom .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.blog-details .article-content .meta-bottom .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.blog-details .article-content .meta-bottom .social-links a i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Blog Comments Section
--------------------------------------------------------------*/
.blog-comments .comments-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}

.blog-comments .comments-header .title {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin: 0;
}

.blog-comments .comments-header .comments-stats {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  padding: 8px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-comments .comments-header .comments-stats .count {
  font-size: 18px;
  font-weight: 700;
}

.blog-comments .comments-header .comments-stats .label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-comments .comments-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.blog-comments .comment-thread {
  position: relative;
}

.blog-comments .comment-thread:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, color-mix(in srgb, var(--accent-color), transparent 40%), color-mix(in srgb, var(--accent-color), transparent 90%));
  z-index: 0;
}

@media (min-width: 768px) {
  .blog-comments .comment-thread:not(:last-child)::after {
    left: 35px;
  }
}

.blog-comments .comment-box {
  position: relative;
  transition: all 0.3s ease;
}

.blog-comments .comment-box.reply {
  margin-left: 50px;
  margin-top: 25px;
}

@media (min-width: 768px) {
  .blog-comments .comment-box.reply {
    margin-left: 70px;
  }
}

.blog-comments .comment-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.blog-comments .avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.blog-comments .avatar-wrapper img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  object-fit: cover;
  border: 3px solid var(--surface-color);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

@media (min-width: 768px) {
  .blog-comments .avatar-wrapper img {
    width: 70px;
    height: 70px;
  }
}

.blog-comments .avatar-wrapper img:hover {
  transform: scale(1.05);
}

.blog-comments .avatar-wrapper .status-indicator {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #4CAF50;
  border: 2px solid var(--surface-color);
  z-index: 1;
}

.blog-comments .comment-content {
  flex: 1;
  background-color: var(--surface-color);
  border-radius: 20px;
  padding: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.blog-comments .comment-content:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.blog-comments .comment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 15px;
}

.blog-comments .comment-header .user-info h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 5px;
}

.blog-comments .comment-header .user-info .time-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.blog-comments .comment-header .user-info .time-badge i {
  font-size: 13px;
}

.blog-comments .comment-header .engagement .likes {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 12px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
  border-radius: 20px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 500;
}

.blog-comments .comment-header .engagement .likes i {
  font-size: 13px;
}

.blog-comments .comment-body p {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-comments .comment-actions {
  display: flex;
  gap: 15px;
}

.blog-comments .comment-actions .action-btn {
  background: none;
  border: none;
  padding: 8px 15px;
  border-radius: 20px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn i {
  font-size: 15px;
  transition: all 0.3s ease;
}

.blog-comments .comment-actions .action-btn:hover {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.blog-comments .comment-actions .action-btn:hover.like-btn i {
  transform: scale(1.2);
  color: #ff4b6e;
}

.blog-comments .comment-actions .action-btn:hover.reply-btn i {
  transform: translateX(-3px);
}

.blog-comments .comment-actions .action-btn:hover.share-btn i {
  transform: translateY(-2px);
}

.blog-comments .comment-actions .action-btn.like-btn.active {
  color: #ff4b6e;
}

.blog-comments .replies-container {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (max-width: 768px) {
  .blog-comments .comments-header {
    margin-bottom: 30px;
  }

  .blog-comments .comments-header .title {
    font-size: 24px;
  }

  .blog-comments .comments-header .comments-stats {
    padding: 6px 15px;
  }

  .blog-comments .comments-header .comments-stats .count {
    font-size: 20px;
  }

  .blog-comments .comments-header .comments-stats .label {
    font-size: 12px;
  }

  .blog-comments .comment-content {
    padding: 20px;
  }

  .blog-comments .comment-header .user-info h4 {
    font-size: 16px;
  }

  .blog-comments .comment-header .user-info .time-badge {
    font-size: 13px;
  }

  .blog-comments .comment-body p {
    font-size: 14px;
  }

  .blog-comments .comment-actions .action-btn {
    padding: 6px 12px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Blog Comment Form Section
--------------------------------------------------------------*/
.blog-comment-form {
  max-width: 900px;
  margin: 30px auto 0 auto;
}

.blog-comment-form form {
  padding: 2rem;
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog-comment-form .form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.blog-comment-form .form-header h3 {
  color: var(--heading-color);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.blog-comment-form .form-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 0.9375rem;
}

.blog-comment-form .input-group {
  margin-bottom: 1rem;
  position: relative;
}

.blog-comment-form .input-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--heading-color);
  font-weight: 500;
  font-size: 0.875rem;
}

.blog-comment-form .input-group input,
.blog-comment-form .input-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 8px;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}

.blog-comment-form .input-group input::placeholder,
.blog-comment-form .input-group textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.blog-comment-form .input-group input:hover,
.blog-comment-form .input-group textarea:hover {
  border-color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.blog-comment-form .input-group input:focus,
.blog-comment-form .input-group textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent-color), transparent 90%);
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown),
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

.blog-comment-form .input-group input:invalid:not(:placeholder-shown)+.error-text,
.blog-comment-form .input-group textarea:invalid:not(:placeholder-shown)+.error-text {
  opacity: 1;
  transform: translateY(0);
}

.blog-comment-form .input-group textarea {
  min-height: 120px;
  resize: vertical;
}

.blog-comment-form .input-group .error-text {
  position: absolute;
  bottom: -20px;
  left: 0;
  color: #dc3545;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.2s ease;
}

.blog-comment-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.blog-comment-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

.blog-comment-form button[type=submit]:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .blog-comment-form {
    padding: 1.5rem;
  }

  .blog-comment-form .form-header h3 {
    font-size: 1.5rem;
  }

  .blog-comment-form button[type=submit] {
    width: 100%;
    padding: 0.875rem 1rem;
  }
}

/*--------------------------------------------------------------
# Contact 2 Section
--------------------------------------------------------------*/
.contact-2 .contact-info-box {
  background-color: var(--surface-color);
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 25px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-2 .contact-info-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-2 .contact-info-box .icon-box {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-2 .contact-info-box .icon-box i {
  font-size: 24px;
}

.contact-2 .contact-info-box .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.contact-2 .contact-info-box .info-content p {
  margin-bottom: 5px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 15px;
  line-height: 1.5;
}

.contact-2 .contact-info-box .info-content p:last-child {
  margin-bottom: 0;
}

.contact-2 .map-section {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.contact-2 .map-section iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-2 .form-container-overlap {
  position: relative;
  margin-top: -150px;
  margin-bottom: 60px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper {
  background-color: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-2 .contact-form-wrapper h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  position: relative;
}

.contact-2 .contact-form-wrapper h2:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--accent-color);
}

.contact-2 .contact-form-wrapper .form-group {
  margin-bottom: 20px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon {
  position: relative;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  font-size: 18px;
  z-index: 10;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon i.message-icon {
  top: 28px;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea+i {
  top: 25px;
  transform: none;
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control {
  border-radius: 8px;
  padding: 12px 15px 12px 45px;
  height: 3.5rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  font-size: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.contact-2 .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
  height: 180px;
  resize: none;
  padding-top: 15px;
}

.contact-2 .contact-form-wrapper .btn-submit {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .btn-submit:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.contact-2 .contact-form-wrapper .btn-submit:active {
  transform: translateY(0);
  box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.contact-2 .contact-form-wrapper .loading,
.contact-2 .contact-form-wrapper .error-message,
.contact-2 .contact-form-wrapper .sent-message {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 992px) {
  .contact-2 .form-container-overlap {
    margin-top: -120px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 30px;
  }
}

@media (max-width: 768px) {
  .contact-2 .contact-info-box {
    margin-bottom: 20px;
  }

  .contact-2 .form-container-overlap {
    margin-top: -100px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 25px;
  }

  .contact-2 .contact-form-wrapper h2 {
    font-size: 24px;
  }

  .contact-2 .map-section {
    height: 450px;
  }
}

@media (max-width: 576px) {
  .contact-2 .form-container-overlap {
    margin-top: -80px;
  }

  .contact-2 .contact-form-wrapper {
    padding: 20px;
  }

  .contact-2 .btn-submit {
    width: 100%;
  }

  .contact-2 .map-section {
    height: 400px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy .privacy-content {
  font-size: 16px;
  line-height: 1.7;
}

.privacy .privacy-content .last-updated {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 40px;
  border-left: 4px solid var(--accent-color);
}

.privacy .privacy-content .last-updated p {
  margin: 0;
  color: var(--heading-color);
}

.privacy .privacy-content .privacy-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .privacy-section h3 {
  font-size: 28px;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 15px;
}

.privacy .privacy-content .privacy-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

.privacy .privacy-content .privacy-section h4 {
  color: var(--heading-color);
  font-size: 22px;
  margin: 30px 0 15px 0;
}

.privacy .privacy-content .privacy-section h5 {
  color: var(--heading-color);
  font-size: 18px;
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section p {
  margin-bottom: 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section ul,
.privacy .privacy-content .privacy-section ol {
  margin: 20px 0;
  padding-left: 30px;
}

.privacy .privacy-content .privacy-section ul li,
.privacy .privacy-content .privacy-section ol li {
  margin-bottom: 10px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .info-box {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin: 30px 0;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .info-box h4 {
  color: var(--heading-color);
  margin-top: 0;
}

.privacy .privacy-content .privacy-section .highlight-box {
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
  padding: 40px;
  border-radius: 15px;
  text-align: center;
  color: var(--contrast-color);
  margin: 40px 0;
}

.privacy .privacy-content .privacy-section .highlight-box i {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .highlight-box h4 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .highlight-box p {
  color: var(--contrast-color);
  margin: 0;
  opacity: 0.9;
}

.privacy .privacy-content .privacy-section .security-measures {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 10px;
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.privacy .privacy-content .privacy-section .security-measures .measure-item i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 20px;
  display: block;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item h5 {
  margin-bottom: 15px;
}

.privacy .privacy-content .privacy-section .security-measures .measure-item p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .rights-list {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .rights-list .right-item {
  display: flex;
  align-items: flex-start;
  padding: 25px;
  margin-bottom: 20px;
  background: var(--surface-color);
  border-radius: 10px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.privacy .privacy-content .privacy-section .rights-list .right-item:hover {
  border-color: var(--accent-color);
  transform: translateX(5px);
}

.privacy .privacy-content .privacy-section .rights-list .right-item i {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 20px;
  margin-top: 5px;
  min-width: 24px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div {
  flex: 1;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div h5 {
  margin-bottom: 10px;
}

.privacy .privacy-content .privacy-section .rights-list .right-item div p {
  margin: 0;
  font-size: 14px;
}

.privacy .privacy-content .privacy-section .cookie-types {
  margin: 30px 0;
}

.privacy .privacy-content .privacy-section .cookie-types h4 {
  margin-bottom: 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table {
  margin: 0;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table thead th {
  border: none;
  color: var(--heading-color);
  font-weight: 600;
  padding: 15px 20px;
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody td {
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 15px 20px;
  color: var(--default-color);
}

.privacy .privacy-content .privacy-section .cookie-types .table-responsive .table tbody tr:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 97%);
}

.privacy .privacy-content .contact-section {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.privacy .privacy-content .contact-section h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
}

.privacy .privacy-content .contact-section h3:after {
  background: var(--accent-color);
}

.privacy .privacy-content .contact-section .contact-info {
  margin-top: 30px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item i {
  font-size: 18px;
  color: var(--accent-color);
  margin-right: 15px;
  min-width: 18px;
}

.privacy .privacy-content .contact-section .contact-info .contact-item span {
  color: var(--default-color);
}

@media (max-width: 768px) {
  .privacy .privacy-content {
    font-size: 15px;
  }

  .privacy .privacy-content .privacy-section h3 {
    font-size: 24px;
  }

  .privacy .privacy-content .privacy-section h4 {
    font-size: 20px;
  }

  .privacy .privacy-content .privacy-section .security-measures .row>div {
    margin-bottom: 20px;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item {
    flex-direction: column;
    text-align: center;
  }

  .privacy .privacy-content .privacy-section .rights-list .right-item i {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 100px 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 0%), color-mix(in srgb, var(--background-color), var(--accent-color) 4%));
}

.error-404 .error-wrapper {
  position: relative;
  overflow: hidden;
}

.error-404 .error-illustration {
  position: relative;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-404 .error-illustration i {
  font-size: 9rem;
  color: color-mix(in srgb, var(--accent-color), transparent 10%);
  position: relative;
  z-index: 2;
  animation: pulse 2s infinite;
}

.error-404 .error-illustration .circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.6;
}

.error-404 .error-illustration .circle.circle-1 {
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  animation: float 6s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-2 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--heading-color), transparent 85%);
  top: 30%;
  left: 25%;
  animation: float 8s ease-in-out infinite;
}

.error-404 .error-illustration .circle.circle-3 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--accent-color), transparent 75%);
  bottom: 20%;
  right: 30%;
  animation: float 7s ease-in-out infinite reverse;
}

.error-404 .error-content {
  padding: 30px 0;
}

.error-404 .error-badge {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.error-404 .error-code {
  font-size: clamp(5rem, 10vw, 8rem);
  font-weight: 900;
  margin: 0;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  letter-spacing: -2px;
}

.error-404 .error-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.error-404 .error-description {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.error-404 .error-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.error-404 .error-actions .btn-home,
.error-404 .error-actions .btn-help {
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.error-404 .error-actions .btn-home i,
.error-404 .error-actions .btn-help i {
  font-size: 1.2rem;
}

.error-404 .error-actions .btn-home {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
}

.error-404 .error-actions .btn-home:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
}

.error-404 .error-actions .btn-help {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 75%);
}

.error-404 .error-actions .btn-help:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  transform: translateY(-3px);
}

.error-404 .error-suggestions {
  padding: 1.5rem;
  background-color: color-mix(in srgb, var(--background-color), var(--accent-color) 5%);
  border-radius: 12px;
}

.error-404 .error-suggestions h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.error-404 .error-suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.error-404 .error-suggestions ul li {
  margin-bottom: 0.8rem;
}

.error-404 .error-suggestions ul li:last-child {
  margin-bottom: 0;
}

.error-404 .error-suggestions ul li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 1.05rem;
  transition: all 0.3s;
}

.error-404 .error-suggestions ul li a i {
  color: var(--accent-color);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.error-404 .error-suggestions ul li a:hover {
  color: var(--accent-color);
}

.error-404 .error-suggestions ul li a:hover i {
  transform: translateX(3px);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 992px) {
  .error-404 .error-illustration {
    height: 300px;
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .error-404 {
    padding: 70px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 6rem);
  }

  .error-404 .error-title {
    font-size: 1.8rem;
  }

  .error-404 .error-actions {
    flex-direction: column;
  }

  .error-404 .error-actions .btn-home,
  .error-404 .error-actions .btn-help {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}
.chef .team-grid .chef-card .image-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}


.chef .team-grid .chef-card {
    background: var(--surface-color);
    border: 1px solid var(--soft-border);
    border-radius: 10px;
    box-shadow: 0 4px 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.chef .team-grid .chef-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px 
 color-mix(in srgb, var(--default-color), transparent 88%);
}
.chef .team-grid .chef-card:hover .image-wrapper img {
    transform: scale(1.06);
}
h4.name.mb-1 {
    text-align: center;
    font-size: 25px;
    font-family: optima sans-serif;
}
.section-title {
    padding-bottom: 8px;
    position: relative;
}
.section-title h2 {
    font-size: 12px;
    color: #c09940;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    font-family: optima sans-serif;
}
.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: #ffffff;
    margin: 4px 10px;
}


  :root{
    --bg: #0b1020;
    --panel: #0f1530;
    --muted: #8ea0b8;
    --text: #eaf2ff;
    --accent: #6aa6ff;
    --ring: rgba(106,166,255,.35);
    --border: #1b2240;
    --shadow: 0 10px 30px rgba(6,10,30,.35);
    --radius: 18px;
  }

.faq-wrap {
    color: #ffffff;
    background: #282425;
}

.faq {
    max-width: 1345px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: clamp(20px, 3vw, 36px);
    /* background: linear-gradient(180deg, rgba(255, 255, 255, .02), rgba(255, 255, 255, .01)); */
    /* border: 1px solid var(--border); */
    /* border-radius: var(--radius); */
    padding: clamp(20px, 3vw, 32px);
    /* box-shadow: var(--shadow); */
    /* backdrop-filter: blur(6px); */
}

  /* Left side */

.faq-aside {
    position: sticky;
    top: 16px;
    align-self: start;
}

  .faq-aside .pill{
    display: inline-block;
    font-size: 12px;
    letter-spacing: .4px;
    color: var(--accent);
    border: 1px solid var(--ring);
    background: rgba(106,166,255,.08);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 10px;
  }

  .faq-aside h2 {
    line-height: 1.15;
    text-transform: uppercase;
    font-size: 46px;
    font-family: optima sans-serif;
}

  .faq-aside p {
    font-weight: 300;
    letter-spacing: 0.75px;
    font-size: 17px;
}

  .highlights{
    list-style: none;
    padding: 0;
    margin: 14px 0 18px;
    display: grid;
    gap: 10px;
  }
  .highlights li{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border: 1px dashed var(--border);
    border-radius: 12px;
    color: #cfe0ff;
  }
  .highlights svg{ width: 18px; height: 18px; }

  .cta{
    display: inline-block;
    text-decoration: none;
    background: linear-gradient(90deg, var(--accent), #8a5cf6);
    color: #0b1020;
    font-weight: 600;
    padding: 10px 14px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(106,166,255,.28);
  }
  .cta:hover{ transform: translateY(-1px); }

  /* Right side (accordion) */
  .faq-accordion{
    display: grid;
    gap: 12px;
  }

  .faq-accordion details {
    border: 1px solid #827452;
}

  .faq-accordion summary {
    /* list-style: none; */
    /* cursor: pointer; */
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 16px;
    position: relative;
    outline: none;
    font-size: 20px;
    padding: 16px 20px;
}

  /* remove default marker */
  .faq-accordion summary::-webkit-details-marker { display:none; }
  .faq-accordion summary:focus-visible{
    box-shadow: 0 0 0 3px var(--ring) inset;
    border-radius: 14px;
  }

  .faq-accordion .chev{
    width: 20px; height: 20px;
    transition: transform .25s ease;
    opacity: .9;
  }

  .faq-accordion details[open] .chev{
    transform: rotate(180deg);
  }

  .faq-accordion .content {
    border-top: 1px solid #e0e0e0;
    margin-top: 1px;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    letter-spacing: 0.75px;
    padding: 16px 20px;
}

  @keyframes slide{
    from{ opacity:.4; transform: translateY(-4px); }
    to{ opacity:1; transform: translateY(0); }
  }

  /* Responsive */
  @media (max-width: 900px){
    .faq{ grid-template-columns: 1fr; }
    .faq-aside{ position: static; }
  }

.clients .clients-slider {
    overflow: hidden;
    background-color: #282425;
}
.swiper {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    display: block;
}
.clients .swiper-wrapper {
    height: auto !important;
    align-items: center;
    transition-timing-function: linear;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
    box-sizing: content-box;
}
.clients .client-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    padding: 20px;
    height: 100%;
}
.clients .client-logo img:hover {
    filter: none;
    opacity: 1;
}
.clients .client-logo img {
    max-width: 90%;
    transition: 0.3s;
    opacity: 0.5;
    filter: grayscale(100);
}
.property-search-filter .search-item {
    position: relative;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
}
.property-search-filter .search-item.right-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 75%;
    background-color: #d8d8d8;
}
.property-search-filter {
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    display: flex;
}
.property-search-filter .search-item.property-category .button-input {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border: 1px solid #d8d8d8;
}
.property-search-filter .search-item.property-category .button-input input {
    display: none;
}
.property-search-filter .search-item.property-category .button-input input:checked+label {
    color: #fff;
    background-color: #03334f;
}
.property-search-filter .search-item.property-category .button-input input+label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 2px;
    border-radius: 2px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #000000;
    height: 100%;
    min-height: 48px;
    padding: 4px 12px;
    margin: 0;
    line-height: 25.6px;
    white-space: nowrap;
    vertical-align: baseline;
    transition: background-color .2s ease;
}
.button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
.property-search-filter .search-item.property-category .button-input input {
    display: none;
}
.secondary-nav .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-base {
    font-family: Lato, Open Sans, sans-serif;
    font-weight: 600 !important;
    font-size: 12px;
    padding: 11px 20px;
    border-radius: 2px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 2px !important;
    position: relative;
    transition: background-color .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.btn-gray {
    color: #fff !important;
    background: #9d9d9c !important;
	border: 0;
}
.secondary-nav .nav-list li .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    color: #232323;
    font-weight: 400;
    letter-spacing: 1.2px;
    font-size: 12px;
    line-height: 24px;
    padding: 11px 20px;
    text-transform: uppercase;
}
.btn-white {
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #9d9d9c;
}
.range-dropdown-wrapper button, .checkbox-dropdown-wrapper button {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: transparent;
    border: 0;
}
.range-dropdown-wrapper .dropdown-label, .checkbox-dropdown-wrapper .dropdown-label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 24px;
    color: #333;
    margin-bottom: 0;
}
.range-dropdown-wrapper h6, .checkbox-dropdown-wrapper h6 {
    color: #200c0c;
}
.range-dropdown-wrapper .dropdown-icon, .checkbox-dropdown-wrapper .dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: #434343;
}
.footer .footer-about .logo img {
    width: 262px;
    height: 79px;
    margin-bottom: 16px;
    margin-top: -18px;
}
.item {
    color: #e0e5eb;
    font-size: 17px;
}
.accordion-header {
    font-size: 23px;
    color: #ffffff;
    font-weight: bolder;
}
@media (min-width: 1400px) {
    .me-xxl-5 {
        margin-right: 3rem !important;
    }
}
h3.text-white.mb-2 {
    font-size: 34px;
    font-weight: bold;
}
a.foot {
    color: #ffffff;
    font-weight: bold;
}
p.apple {
    /* display: flex
; */
    font-size: 16px;
    margin: 5px;
    margin-right: 1px;
    /* padding-right: 2px; */
}
img.icon {
    height: 30px;
}
a.btn.btn-market.btn-lg {
    border: 1px solid;
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgb(3 51 79) !important;
}
.body-tertiary {
    background: #264455;
}
.btn:hover {
    background-color: #be983b;
    /* border-color: var(--fn-btn-hover-border-color); */
    color: white;
}
h6.sign {
    color: #ffffff;
    font-size: 23px;
	font-weight: bold;
}
.primary-subtle {
    background: #c2c2c2;
}
.hover-effect-scale {
    --fn-transition-duration: .35s;
    --fn-transform-scale: 1.06;
}
.hover-effect-scale:focus-visible .hover-effect-target, .hover-effect-scale:focus-within .hover-effect-target, .hover-effect-scale:hover .hover-effect-target {
    transform: scale(var(--fn-transform-scale));
}
.navbar-wrapper.navbar-dark .navbar-nav .nav-list li .nav-link {
    color: #fff;
    border-bottom: 2px solid transparent;
}
.navbar .navbar-nav .nav-list li .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    /* color: #232323; */
    font-weight: 400;
    letter-spacing: 1.2px;
    font-size: 12px;
    line-height: 24px;
    padding: 11px 20px;
    text-transform: uppercase;
}
.navbar .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1;
}
.navbar .navbar-nav .nav-list li .nav-link-underline:hover:before {
    width: 40%;
}
.navbar-wrapper.navbar-dark .navbar-nav .nav-list li .nav-link-underline:before {
    background-color: #fff;
}
.navbar .navbar-nav .nav-list li .nav-link-underline:before {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translate(50%);
    background-color: #232323;
    transition: width .15s cubic-bezier(.7,1,.32,1.2);
}
h2.sub {
    font-size: 12px;
    color: #9d9d9c;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}
h1.clt-hd {
    line-height: 1.15;
    text-transform: uppercase;
    font-size: 46px;
    font-family: optima sans-serif;
    color: #b28229;
}
h2.subtitle
 {
    text-align: center;
    font-size: 21px;
    margin: 15px;
}
.checkbox-dropdown-content .checkbox-list {
    padding: 20px;
    transition: padding .5s ease;
    color: #232323;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 16px;
}
.newsletter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 37px;
    background: #282425;
    border-bottom: 1px solid #fff;
    /* margin-bottom: 46px; */
    padding: 41px;
}
.newsletter-wrapper {
    display: flex;
    align-items: center;
    padding: 49px;
    height: 101px;
}
.footer-logo {
    padding-right: 54px;
    border-right: 1px solid #cacaca;
    padding: 0px;
    height: 145px;
}
.footer-logo {
    border-right: 1px solid #cacaca;
    height: 92px;
    padding: 0;
}
img.logo {
    max-width: 285px;
    padding: 50px;
    height: 233px;
    margin-top: -73px;
}
ul.footer-socials {
    padding-left: 54px;
    display: flex;
    align-items: center;
    gap: 12px;
    list-style: none;
    color: #b08135;
}
.newsletter-form {
    display: flex;
    flex-grow: 1;
}
input#newsletter {
    font-family: Open Sans sans-serif;
    font-weight: 300;
    line-height: 24px;
    padding: 10px 15px;
    margin-top: 0;
    letter-spacing: normal;
    height: 49px;
    max-width: 414px;
    margin-left: 280px;
    flex-grow: 1;
    border-width: 0;
    font-size: 18px;
    border-radius: 0;
}
button.btn-gray {
    height: 50px;
    background-color: #9d9d9c;
    border-color: #9d9d9c;
    border-radius: 0 !important;
    color: #fff;
    font-size: 12px !important;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    margin-right: 0;
    padding: 0 32px;
    display: inline-block;
}
button.btn-base.search-btn {
    height: 48px;
    font-size: 11px !important;
}
h5.footer-heading {
    color: white;
    font-family: Lato, Open Sans, sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 36px;
    color: #ffffff;
}
p.footer-text {
    color: #ffffff;
}
.footer-item .footer-text {
    color: #ffffff;
    line-height: 2;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .75px;
    width: 406px;
}
.accordion.row {
    justify-content: space-between;
}
section.copyright {
    background: #282425;
    padding: 5px;
}
p.text-body-secondary.fs-sm.mb-0 {
    font-weight: 300;
    font-size: 16px;
    font-family: 'Roboto';
}
.footer-items {
    padding-left: 112px;
}
ul.footer-links {
    list-style: none;
    color: #ffffff;
    font-weight: 300;
    padding: 0;
    letter-spacing: 2px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'Roboto';
    font-size: 12px;
    line-height: 30px;
}
li.footer-link a {
    color: #ffffff;
}
ul.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    font-size: 14px;
    font-family: 'Roboto';
	padding: 0;
}
li.contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #ffffff;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .75px;
}	

li.contact-item a {
    color: #ffffff;
}
footer.footer.border-top.pt-5 {
    background: #231f20;
}
/* Animate numbers when updated */
.num {
  font-size: 1.2rem;
  font-weight: 600;
  color: #2575fc;
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
  opacity: 1;
}

.num.update {
  animation: pop 0.5s ease forwards;
}

@keyframes pop {
  0% {
    transform: translateY(-10px);
    opacity: 0;
  }
  50% {
    transform: translateY(5px);
    opacity: 0.7;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.dropdown-menu li {
    padding: 8px 12px;
    cursor: pointer;
  }
  .dropdown-menu li:hover {
    background: #f6f6f6;
  }
  
  
  *,:before,:after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb
}

:before,:after {
    --tw-content: ""
}

html,:host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    -moz-tab-size: 4;
    -o-tab-size: 4;
    tab-size: 4;
    font-family: Figtree,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent
}

body {
    margin: 0;
    line-height: inherit
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px
}

abbr:where([title]) {
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

h1,h2,h3,h4,h5,h6 {
    font-size: inherit;
    font-weight: inherit
}

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

b,strong {
    font-weight: bolder
}

code,kbd,samp,pre {
    font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;
    font-feature-settings: normal;
    font-variation-settings: normal;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

table {
    text-indent: 0;
    border-color: inherit;
    border-collapse: collapse
}

button,input,optgroup,select,textarea {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: #000000;
    margin: 0;
    padding: 0
}

button,select {
    text-transform: none
}

button,input:where([type=button]),input:where([type=reset]),input:where([type=submit]) {
    -webkit-appearance: button;
    background-color: transparent;
    background-image: none
}

:-moz-focusring {
    outline: auto
}

:-moz-ui-invalid {
    box-shadow: none
}

progress {
    vertical-align: baseline
}

::-webkit-inner-spin-button,::-webkit-outer-spin-button {
    height: auto
}

[type=search] {
    -webkit-appearance: textfield;
    outline-offset: -2px
}

::-webkit-search-decoration {
    -webkit-appearance: none
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit
}

summary {
    display: list-item
}

blockquote,dl,dd,h1,h2,h3,h4,h5,h6,hr,figure,p,pre {
    margin: 0
}

fieldset {
    margin: 0;
    padding: 0
}

legend {
    padding: 0
}

ol,ul,menu {
    list-style: none;
    margin: 0;
    padding: 0
}

dialog {
    padding: 0
}

textarea {
    resize: vertical
}

input::-moz-placeholder,textarea::-moz-placeholder {
    opacity: 1;
    color: #9ca3af
}

input::placeholder,textarea::placeholder {
    opacity: 1;
    color: #9ca3af
}

button,[role=button] {
    cursor: pointer
}

:disabled {
    cursor: default
}

img,svg,video,canvas,audio,iframe,embed,object {
    display: block;
    vertical-align: middle
}

img,video {
    max-width: 100%;
    height: auto
}

[hidden] {
    display: none
}

*,:before,:after {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

::backdrop {
    --tw-border-spacing-x: 0;
    --tw-border-spacing-y: 0;
    --tw-translate-x: 0;
    --tw-translate-y: 0;
    --tw-rotate: 0;
    --tw-skew-x: 0;
    --tw-skew-y: 0;
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    --tw-pan-x: ;
    --tw-pan-y: ;
    --tw-pinch-zoom: ;
    --tw-scroll-snap-strictness: proximity;
    --tw-gradient-from-position: ;
    --tw-gradient-via-position: ;
    --tw-gradient-to-position: ;
    --tw-ordinal: ;
    --tw-slashed-zero: ;
    --tw-numeric-figure: ;
    --tw-numeric-spacing: ;
    --tw-numeric-fraction: ;
    --tw-ring-inset: ;
    --tw-ring-offset-width: 0px;
    --tw-ring-offset-color: #fff;
    --tw-ring-color: rgb(59 130 246 / .5);
    --tw-ring-offset-shadow: 0 0 #0000;
    --tw-ring-shadow: 0 0 #0000;
    --tw-shadow: 0 0 #0000;
    --tw-shadow-colored: 0 0 #0000;
    --tw-blur: ;
    --tw-brightness: ;
    --tw-contrast: ;
    --tw-grayscale: ;
    --tw-hue-rotate: ;
    --tw-invert: ;
    --tw-saturate: ;
    --tw-sepia: ;
    --tw-drop-shadow: ;
    --tw-backdrop-blur: ;
    --tw-backdrop-brightness: ;
    --tw-backdrop-contrast: ;
    --tw-backdrop-grayscale: ;
    --tw-backdrop-hue-rotate: ;
    --tw-backdrop-invert: ;
    --tw-backdrop-opacity: ;
    --tw-backdrop-saturate: ;
    --tw-backdrop-sepia: ;
    --tw-contain-size: ;
    --tw-contain-layout: ;
    --tw-contain-paint: ;
    --tw-contain-style:
}

.container {
    width: 100%
}

@media (min-width: 640px) {
    .container {
        max-width:640px
    }
}

@media (min-width: 768px) {
    .container {
        max-width:768px
    }
}

@media (min-width: 1024px) {
    .container {
        max-width:1024px
    }
}

@media (min-width: 1280px) {
    .container {
        max-width:1280px
    }
}

@media (min-width: 1536px) {
    .container {
        max-width:1536px
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border-width: 0
}

.visible {
    visibility: visible
}

.collapse {
    visibility: collapse
}

.static {
    position: static
}

.fixed {
    position: fixed
}

.absolute {
    position: absolute
}

.relative {
    position: relative
}

.sticky {
    position: sticky
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0
}

.left-\[250px\] {
    left: 250px
}

.left-\[50px\] {
    left: 50px
}

.right-0 {
    right: 0
}

.top-0 {
    top: 0
}

.z-0 {
    z-index: 0
}

.col-span-1 {
    grid-column: span 1 / span 1
}

.col-span-2 {
    grid-column: span 2 / span 2
}

.col-span-4 {
    grid-column: span 4 / span 4
}

.\!my-5 {
    margin-top: 1.25rem!important;
    margin-bottom: 1.25rem!important
}

.-mx-1 {
    margin-left: -.25rem;
    margin-right: -.25rem
}

.mx-auto {
    margin-left: auto;
    margin-right: auto
}

.-ml-px {
    margin-left: -1px
}

.-mt-px {
    margin-top: -1px
}

.mb-0 {
    margin-bottom: 0
}

.mb-1 {
    margin-bottom: .25rem
}

.mb-10 {
    margin-bottom: 2.5rem
}

.mb-12 {
    margin-bottom: 3rem
}

.mb-2 {
    margin-bottom: .5rem
}

.mb-20 {
    margin-bottom: 5rem
}

.mb-24 {
    margin-bottom: 6rem
}

.mb-3 {
    margin-bottom: .75rem
}

.mb-36 {
    margin-bottom: 9rem
}

.mb-4 {
    margin-bottom: 1rem
}

.mb-5 {
    margin-bottom: 1.25rem
}

.mb-6 {
    margin-bottom: 1.5rem
}

.mb-7 {
    margin-bottom: 1.75rem
}

.mb-8 {
    margin-bottom: 2rem
}

.ml-1 {
    margin-left: .25rem
}

.ml-12 {
    margin-left: 3rem
}

.ml-2 {
    margin-left: .5rem
}

.ml-3 {
    margin-left: .75rem
}

.ml-4 {
    margin-left: 1rem
}

.ml-auto {
    margin-left: auto
}

.mr-2 {
    margin-right: .5rem
}

.ms-4 {
    margin-inline-start:1rem}

.mt-10 {
    margin-top: 2.5rem
}

.mt-12 {
    margin-top: 3rem
}

.mt-2 {
    margin-top: .5rem
}

.mt-24 {
    margin-top: 6rem
}

.mt-3 {
    margin-top: .75rem
}

.mt-4 {
    margin-top: 1rem
}

.mt-5 {
    margin-top: 1.25rem
}

.mt-8 {
    margin-top: 2rem
}

.mt-\[55px\] {
    margin-top: 55px
}

.block {
    display: block
}

.inline-block {
    display: inline-block
}

.flex {
    display: flex
}

.inline-flex {
    display: inline-flex
}

.table {
    display: table
}

.grid {
    display: grid
}

.hidden {
    display: none
}

.h-16 {
    height: 4rem
}

.h-4 {
    height: 1rem
}

.h-5 {
    height: 1.25rem
}

.h-8 {
    height: 2rem
}

.h-px {
    height: 1px
}

.min-h-full {
    min-height: 100%
}

.min-h-screen {
    min-height: 100vh
}

.w-4 {
    width: 1rem
}

.w-5 {
    width: 1.25rem
}

.w-6\/12 {
    width: 50%
}

.w-8 {
    width: 2rem
}

.w-\[200px\] {
    width: 200px
}

.w-\[350px\] {
    width: 350px
}

.w-\[400px\] {
    width: 400px
}

.w-\[calc\(100\%-250px\)\] {
    width: calc(100% - 250px)
}

.w-\[calc\(100\%-50px\)\] {
    width: calc(100% - 50px)
}

.w-auto {
    width: auto
}

.w-full {
    width: 100%
}

.max-w-6xl {
    max-width: 72rem
}

.max-w-\[400px\] {
    max-width: 400px
}

.max-w-\[460px\] {
    max-width: 460px
}

.max-w-\[950px\] {
    max-width: 950px
}

.max-w-xl {
    max-width: 36rem
}

.flex-1 {
    flex: 1 1 0%
}

.flex-shrink,.shrink {
    flex-shrink: 1
}

.shrink-0 {
    flex-shrink: 0
}

.flex-grow,.grow {
    flex-grow: 1
}

.border-collapse {
    border-collapse: collapse
}

.scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.scale-95 {
    --tw-scale-x: .95;
    --tw-scale-y: .95;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.transform {
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}

.cursor-default {
    cursor: default
}

.cursor-pointer {
    cursor: pointer
}

.resize {
    resize: both
}

.grid-cols-1 {
    grid-template-columns: repeat(1,minmax(0,1fr))
}

.grid-cols-2 {
    grid-template-columns: repeat(2,minmax(0,1fr))
}

.grid-cols-4 {
    grid-template-columns: repeat(4,minmax(0,1fr))
}

.flex-col {
    flex-direction: column
}

.flex-wrap {
    flex-wrap: wrap
}

.items-start {
    align-items: flex-start
}

.items-center {
    align-items: center
}

.justify-center {
    justify-content: center
}

.justify-between {
    justify-content: space-between
}

.justify-items-center {
    justify-items: center
}

.gap-10 {
    gap: 2.5rem
}

.gap-12 {
    gap: 3rem
}

.gap-14 {
    gap: 3.5rem
}

.gap-24 {
    gap: 6rem
}

.gap-3 {
    gap: .75rem
}

.gap-4 {
    gap: 1rem
}

.gap-6 {
    gap: 1.5rem
}

.gap-x-12 {
    -moz-column-gap: 3rem;
    column-gap: 3rem
}

.gap-x-7 {
    -moz-column-gap: 1.75rem;
    column-gap: 1.75rem
}

.gap-x-8 {
    -moz-column-gap: 2rem;
    column-gap: 2rem
}

.gap-y-2 {
    row-gap: .5rem
}

.gap-y-8 {
    row-gap: 2rem
}

.overflow-hidden {
    overflow: hidden
}

.overflow-y-auto {
    overflow-y: auto
}

.break-all {
    word-break: break-all
}

.rounded {
    border-radius: .25rem
}

.rounded-lg {
    border-radius: .5rem
}

.rounded-md {
    border-radius: .375rem
}

.rounded-l-md {
    border-top-left-radius: .375rem;
    border-bottom-left-radius: .375rem
}

.rounded-r-md {
    border-top-right-radius: .375rem;
    border-bottom-right-radius: .375rem
}

.border {
    border-width: 1px
}

.border-r {
    border-right-width: 1px
}

.border-t {
    border-top-width: 1px
}

.border-gray-200 {
    --tw-border-opacity: 1;
    border-color: rgb(229 231 235 / var(--tw-border-opacity))
}

.border-gray-300 {
    --tw-border-opacity: 1;
    border-color: rgb(209 213 219 / var(--tw-border-opacity))
}

.border-gray-400 {
    --tw-border-opacity: 1;
    border-color: rgb(156 163 175 / var(--tw-border-opacity))
}

.bg-black\/25 {
    background-color: #00000040
}

.bg-gray-100 {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity))
}

.bg-white {
    --tw-bg-opacity: 1;
    background-color: rgb(255 255 255 / var(--tw-bg-opacity))
}

.p-0 {
    padding: 0
}

.p-4 {
    padding: 1rem
}

.p-6 {
    padding: 1.5rem
}

.px-2 {
    padding-left: .5rem;
    padding-right: .5rem
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem
}

.py-2 {
    padding-top: .5rem;
    padding-bottom: .5rem
}

.py-3 {
    padding-top: .75rem;
    padding-bottom: .75rem
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem
}

.pb-0 {
    padding-bottom: 0
}

.pt-20 {
    padding-top: 5rem
}

.pt-8 {
    padding-top: 2rem
}

.text-center {
    text-align: center
}

.text-end {
    text-align: end
}

.text-\[13px\] {
    font-size: 13px
}

.text-\[15px\] {
    font-size: 15px
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem
}

.text-xs {
    font-size: .75rem;
    line-height: 1rem
}

.font-bold {
    font-weight: 700
}

.font-light {
    font-weight: 300
}

.font-medium {
    font-weight: 500
}

.font-semibold {
    font-weight: 600
}

.uppercase {
    text-transform: uppercase
}

.lowercase {
    text-transform: lowercase
}

.capitalize {
    text-transform: capitalize
}

.italic {
    font-style: italic
}

.leading-5 {
    line-height: 1.25rem
}

.leading-6 {
    line-height: 1.5rem
}

.leading-7 {
    line-height: 1.75rem
}

.leading-8 {
    line-height: 2rem
}

.leading-relaxed {
    line-height: 1.625
}

.tracking-wider {
    letter-spacing: .05em
}

.tracking-widest {
    letter-spacing: .1em
}

.text-blue-600 {
    --tw-text-opacity: 1;
    color: rgb(37 99 235 / var(--tw-text-opacity))
}

.text-gray-200 {
    --tw-text-opacity: 1;
    color: rgb(229 231 235 / var(--tw-text-opacity))
}

.text-gray-300 {
    --tw-text-opacity: 1;
    color: rgb(209 213 219 / var(--tw-text-opacity))
}

.text-gray-400 {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity))
}

.text-gray-500 {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity))
}

.text-gray-600 {
    --tw-text-opacity: 1;
    color: rgb(75 85 99 / var(--tw-text-opacity))
}

.text-gray-700 {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity))
}

.text-gray-900 {
    --tw-text-opacity: 1;
    color: rgb(17 24 39 / var(--tw-text-opacity))
}

.text-red-500 {
    --tw-text-opacity: 1;
    color: rgb(239 68 68 / var(--tw-text-opacity))
}

.text-white {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity))
}

.underline {
    text-decoration-line: underline
}

.antialiased {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.opacity-0 {
    opacity: 0
}

.opacity-100 {
    opacity: 1
}

.shadow {
    --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / .1), 0 1px 2px -1px rgb(0 0 0 / .1);
    --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.shadow-sm {
    --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / .05);
    --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000),var(--tw-ring-shadow, 0 0 #0000),var(--tw-shadow)
}

.outline {
    outline-style: solid
}

.ring-gray-300 {
    --tw-ring-opacity: 1;
    --tw-ring-color: rgb(209 213 219 / var(--tw-ring-opacity))
}

.blur {
    --tw-blur: blur(8px);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.grayscale {
    --tw-grayscale: grayscale(100%);
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.filter {
    filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)
}

.transition {
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;
    transition-property: color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s
}

.duration-150 {
    transition-duration: .15s
}

.duration-200 {
    transition-duration: .2s
}

.duration-500 {
    transition-duration: .5s
}

.ease-in {
    transition-timing-function: cubic-bezier(.4,0,1,1)
}

.ease-in-out {
    transition-timing-function: cubic-bezier(.4,0,.2,1)
}

.ease-out {
    transition-timing-function: cubic-bezier(0,0,.2,1)
}

.hover\:text-gray-400:hover {
    --tw-text-opacity: 1;
    color: rgb(156 163 175 / var(--tw-text-opacity))
}

.hover\:text-gray-500:hover {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity))
}

.focus\:z-10:focus {
    z-index: 10
}

.focus\:border-blue-300:focus {
    --tw-border-opacity: 1;
    border-color: rgb(147 197 253 / var(--tw-border-opacity))
}

.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px
}

.focus\:ring:focus {
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 #0000)
}

.active\:bg-gray-100:active {
    --tw-bg-opacity: 1;
    background-color: rgb(243 244 246 / var(--tw-bg-opacity))
}

.active\:text-gray-500:active {
    --tw-text-opacity: 1;
    color: rgb(107 114 128 / var(--tw-text-opacity))
}

.active\:text-gray-700:active {
    --tw-text-opacity: 1;
    color: rgb(55 65 81 / var(--tw-text-opacity))
}

@media (min-width: 640px) {
    .sm\:flex {
        display:flex
    }

    .sm\:hidden {
        display: none
    }

    .sm\:flex-1 {
        flex: 1 1 0%
    }

    .sm\:items-center {
        align-items: center
    }

    .sm\:justify-start {
        justify-content: flex-start
    }

    .sm\:justify-between {
        justify-content: space-between
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem
    }

    .sm\:pt-0 {
        padding-top: 0
    }
}

@media (min-width: 768px) {
    .md\:col-span-12 {
        grid-column:span 12 / span 12
    }

    .md\:col-span-3 {
        grid-column: span 3 / span 3
    }

    .md\:col-span-5 {
        grid-column: span 5 / span 5
    }

    .md\:col-span-6 {
        grid-column: span 6 / span 6
    }

    .md\:col-span-7 {
        grid-column: span 7 / span 7
    }

    .md\:mb-2 {
        margin-bottom: .5rem
    }

    .md\:mt-12 {
        margin-top: 3rem
    }

    .md\:grid-cols-12 {
        grid-template-columns: repeat(12,minmax(0,1fr))
    }

    .md\:flex-row {
        flex-direction: row
    }

    .md\:gap-20 {
        gap: 5rem
    }

    .md\:gap-24 {
        gap: 6rem
    }

    .md\:px-10 {
        padding-left: 2.5rem;
        padding-right: 2.5rem
    }

    .md\:leading-7 {
        line-height: 1.75rem
    }
}

@media (min-width: 1024px) {
    .lg\:px-8 {
        padding-left:2rem;
        padding-right: 2rem
    }
}

.rtl\:flex-row-reverse:where([dir=rtl],[dir=rtl] *) {
    flex-direction: row-reverse
}

@media (prefers-color-scheme: dark) {
    .dark\:border-gray-600 {
        --tw-border-opacity: 1;
        border-color: rgb(75 85 99 / var(--tw-border-opacity))
    }

    .dark\:bg-gray-800 {
        --tw-bg-opacity: 1;
        background-color: rgb(31 41 55 / var(--tw-bg-opacity))
    }

    .dark\:bg-gray-900 {
        --tw-bg-opacity: 1;
        background-color: rgb(17 24 39 / var(--tw-bg-opacity))
    }

    .dark\:text-gray-300 {
        --tw-text-opacity: 1;
        color: rgb(209 213 219 / var(--tw-text-opacity))
    }

    .dark\:text-gray-400 {
        --tw-text-opacity: 1;
        color: rgb(156 163 175 / var(--tw-text-opacity))
    }

    .dark\:text-gray-600 {
        --tw-text-opacity: 1;
        color: rgb(75 85 99 / var(--tw-text-opacity))
    }

    .dark\:hover\:text-gray-300:hover {
        --tw-text-opacity: 1;
        color: rgb(209 213 219 / var(--tw-text-opacity))
    }

    .dark\:focus\:border-blue-700:focus {
        --tw-border-opacity: 1;
        border-color: rgb(29 78 216 / var(--tw-border-opacity))
    }

    .dark\:focus\:border-blue-800:focus {
        --tw-border-opacity: 1;
        border-color: rgb(30 64 175 / var(--tw-border-opacity))
    }

    .dark\:active\:bg-gray-700:active {
        --tw-bg-opacity: 1;
        background-color: rgb(55 65 81 / var(--tw-bg-opacity))
    }

    .dark\:active\:text-gray-300:active {
        --tw-text-opacity: 1;
        color: rgb(209 213 219 / var(--tw-text-opacity))
    }
}

.\[\&\[data-state\=open\]\>svg\]\:rotate-180[data-state=open]>svg {
    --tw-rotate: 180deg;
    transform: translate(var(--tw-translate-x),var(--tw-translate-y)) rotate(var(--tw-rotate)) skew(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))
}


.property-result-wrap {
    margin-bottom: 30px
}

.property-result-wrap .search-result-title {
    font-size: 32px;
    text-transform: uppercase;
    font-family: optima sans-serif;
}

.property-result-wrap .search-result {
    font-weight: 300;
    letter-spacing: 1px
}

.property-card-wrap {
    display: flex;
    flex-direction: column;
    gap: 50px
}

.property-card-wrap .property-card {
    display: flex;
    background-color: #fff;
    border: 1px solid #e0e3e2;
    border-radius: 8px;
    overflow: hidden;
    min-height: 420px
}

.property-card-wrap .property-card .img-wrap {
    width: 50%;
    display: flex;
    gap: 2px
}

.property-card-wrap .property-card .img-wrap .property-img {
    width: 75%
}

.property-card-wrap .property-card .img-wrap .property-img img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.property-card-wrap .property-card .img-wrap .grid-images {
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(2,1fr);
    width: 100%
}

.property-card-wrap .property-card .img-wrap .grid-images img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.property-card-wrap .property-card .img-wrap .grid-images img:first-child {
    grid-column: 1/5;
    grid-row: span 3
}

.property-card-wrap .property-card .property-text-wrap {
    width: 50%;
    gap: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    background: #231f20;
    justify-content: space-between
    
}

.property-card-wrap .property-card .property-text-wrap .title {
    font-size: 24px;
    text-transform: uppercase;
    transition: all .1s ease;
    font-family: optima sans-serif;
}

.property-card-wrap .property-card .property-text-wrap .title:hover {
    color: #cdb154
}

.property-card-wrap .property-card .property-text-wrap .property-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 24px 0
}

.property-card-wrap .property-card .property-text-wrap .property-info .info-title {
    font-family: Lato,sans-serif;
    font-weight: 300
}

.property-card-wrap .property-card .property-text-wrap .property-info .info-text {
    font-weight: 600;
    color: #565e59
}

.property-card-wrap .property-card .property-text-wrap .description {
    font-weight: 300
}

.property-card-wrap .property-card .property-text-wrap .description a {
    color: #646464;
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px
}

.property-card-wrap .property-card .property-text-wrap .btn-base {
    margin-top: auto
}

.properties-section {
    padding: 80px 0 45px;
}
section.srch {
    padding: 140px 0 1px;
}
header#headers {
    background: #000000;
    height: 110px;
}

header#headers img {
    height: 100px;
    width: 100px;
}

.pagination-container {
    display: flex;
    margin-top: 20px;
    -moz-column-gap: 10px;
    column-gap: 10px
}

.paginate-buttons {
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-color: #f2f2f2;
    border: 1px solid rgb(217,217,217);
    color: #000
}

.paginate-buttons:hover {
    background-color: #d8d8d8
}

.active-page {
    background-color: rgb(var(--color-primary));
    border: 1px solid rgb(var(--color-primary));
    color: #fff
}

.active-page:hover {
    background-color: rgb(var(--color-primary))
}

@media only screen and (min-width: 800px) {
    .property-card {
        max-height:450px
    }
}

@media only screen and (max-width: 500px) {
    .property-card {
        flex-direction:column
    }

    .property-card .img-wrap {
        width: 100%!important
    }

    .property-card .property-text-wrap {
        width: 100%!important;
        padding: 24px!important
    }

    .property-card .property-text-wrap .top {
        margin-bottom: 50px
    }

    .property-result-wrap .search-result-title {
        font-size: 28px
    }
}

@media screen and (max-width: 1400px) {
    .container[data-v-393db8e6] {
        width:1200px
    }
}

@media screen and (max-width: 1200px) {
    .container[data-v-393db8e6] {
        width:1000px
    }
}

.btn-base {
    font-family: Lato,Open Sans,sans-serif;
    font-weight: 600!important;
    font-size: 12px;
    padding: 11px 20px;
    border-radius: 2px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 2px!important;
    position: relative;
    transition: background-color .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.btn-rounded {
    border-radius: 25px
}

.btn-gold {
    color: #fff !important;
    background: rgb(var(--color-primary));
}

.btn-gray {
    color: #fff!important;
    background: #9d9d9c!important
}

.btn-white {
    color: #000!important;
    background: #fff!important;
    border: 1px solid #9d9d9c
}

.navbar-wrapper {
    position: relative;
}

.navbar-wrapper .navbar-empty-height {
    height: 80px
}

.navbar-wrapper .sticky .navbar-empty-height {
    display: block
}

.navbar-wrapper.sticky.navbar-dark .navbar,.navbar-wrapper.navbar-light .navbar {
    background-image: none
}

.navbar {
    position: absolute;
    width: 100%;
    background-color: transparent;
    background-image: linear-gradient(to bottom,rgba(0,0,0,.4),transparent);
    transition: background-color .3s ease,box-shadow .3s ease;
    z-index: 99
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px
}

.navbar .navbar-brand .logo {
    max-height: 80px
}

.navbar .navbar-brand .hamburger-icon,.navbar-light .navbar-brand .logo.logo-light {
    display: none
}

.navbar-light .navbar-brand .logo.logo-dark {
    display: block
}

.navbar .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1
}

.navbar .navbar-nav .nav-list {
    display: flex;
    align-items: center;
    justify-content: center
}

.navbar .navbar-nav .nav-list li .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    color: #232323;
    font-weight: 400;
    letter-spacing: 1.2px;
    font-size: 12px;
    line-height: 24px;
    padding: 11px 20px;
    text-transform: uppercase
}

.navbar .navbar-nav .nav-list li .nav-link-underline:before {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translate(50%);
    background-color: #232323;
    transition: width .15s cubic-bezier(.7,1,.32,1.2)
}

.navbar .navbar-nav .nav-list li .nav-link-underline:hover:before {
    width: 40%
}

.navbar .navbar-nav .nav-list li .nav-link svg {
    font-size: 15px
}

.sticky .navbar {
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(-100%);
    transition: background-color .5s ease,transform .5s ease-in-out
}

.sticky .navbar.show-sticky {
    box-shadow: 0 0 3px #e0e0e0;
    transform: translateY(0);
    padding: 0
}

.navbar-wrapper.navbar-dark .navbar {
    padding: 10px 0
}

.navbar-wrapper.navbar-dark .logo.logo-dark,.navbar-wrapper.navbar-dark .navbar-empty-height {
    display: none
}

.navbar-wrapper.navbar-dark .navbar-nav .nav-list li .nav-link {
    color: #fff;
    border-bottom: 2px solid transparent
}

.navbar-wrapper.navbar-dark .navbar-nav .nav-list li .nav-link-underline:before {
    background-color: #fff
}

.navbar-wrapper.navbar-dark.sticky .logo.logo-light {
    display: none
}

.navbar-wrapper.navbar-dark.sticky .logo.logo-dark {
    display: block
}

.navbar-wrapper.navbar-dark.sticky .navbar-nav .nav-list li .nav-link {
    color: #fff;
    color: #232323
}

@media screen and (max-width: 768px) {
    .navbar-wrapper .navbar {
        padding:0
    }

    .navbar-wrapper .navbar .navbar-brand {
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px
    }

    .navbar-wrapper .navbar .navbar-nav {
        display: none!important;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
        width: 80%;
        height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 64px;
        box-shadow: 3px 0 25px -10px #0000001a;
        visibility: hidden;
        transform: translate(-100%);
        transition: all .3s ease
    }

    .navbar-wrapper .navbar .navbar-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
        text-align: start
    }

    .navbar-wrapper .navbar .navbar-nav .nav-list li .nav-link {
        color: #000
    }
}

@media screen and (max-width: 1200px) {
    .navbar-light .navbar-empty-height {
        height:114px
    }

    .navbar-brand {
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px
    }

    .navbar-brand .hamburger-icon {
        display: block!important;
        padding: 12px;
        margin: -12px
    }

    .navbar-brand .hamburger-icon svg {
        font-size: 24px;
        color: rgb(var(--color-primary))
    }

    .navbar-nav {
        display: none!important
    }

    .navbar .navbar-nav .primary-nav .nav-link:last-child {
        padding-right: 0
    }
}

@media screen and (max-width: 1400px) {
    .navbar .container {
        gap:24px
    }
}

.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0px;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 64px;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: #fff;
    box-shadow: 3px 0 25px -10px #0000001a;
    z-index: 100;
    visibility: hidden;
    overflow: hidden;
    white-space: nowrap;
    transition: all .3s ease;
    transform: translate(-200px)
}

.mobile-navbar .close-nav-btn {
    font-size: 26px
}

.mobile-navbar .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    text-align: start
}

.mobile-navbar .nav-list li .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    color: #232323;
    font-weight: 400;
    letter-spacing: 1.2px;
    font-size: 12px;
    line-height: 24px;
    padding: 11px 0;
    text-transform: uppercase
}

.mobile-navbar .nav-list li .nav-link-underline:before {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #232323;
    transition: width .15s cubic-bezier(.7,1,.32,1.2)
}

.mobile-navbar .nav-list li .nav-link-underline:hover:before {
    width: 40%
}

.mobile-navbar .nav-list li .nav-link.nav-btn {
    padding: 12px 20px
}

.mobile-navbar .nav-list li .nav-link svg {
    font-size: 15px
}

.mob-nav-active .mobile-navbar {
    padding-right: 24px;
    padding-left: 24px;
    visibility: visible;
    width: 80vw;
    transform: translate(0)
}


.property-card[data-v-19691853] {
    min-height: 420px;
    background-color: #fff;
    border: 1px solid #e0e3e2;
    border-radius: 8px;
    display: flex;
    overflow: hidden
}

.property-card[data-v-19691853]:not(:first-child) {
    margin-top: 32px
}

.property-card .img-wrap[data-v-19691853] {
    width: 50%;
    display: flex;
    gap: 2px;
    aspect-ratio: 4/3
}

.property-card .img-wrap .property-img[data-v-19691853] {
    width: 75%
}

.property-card .img-wrap .property-img img[data-v-19691853] {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.property-card .img-wrap .grid-images[data-v-19691853] {
    width: 100%;
    display: grid;
    gap: 5px;
    grid-template-columns: repeat(4,1fr);
    grid-template-rows: repeat(2,1fr)
}

.property-card .img-wrap .grid-images img[data-v-19691853] {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.property-card .img-wrap .grid-images img[data-v-19691853]:first-child {
    grid-column: 1/5;
    grid-row: span 3
}

.property-card .property-text-wrap[data-v-19691853] {
    width: 50%;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.property-card .property-text-wrap .top .sub-heading[data-v-19691853] {
    color: #232323;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .1s ease
}

.property-card .property-text-wrap .top .sub-heading svg[data-v-19691853] {
    font-size: 20px
}

.property-card .property-text-wrap .top .sub-heading[data-v-19691853]:hover {
    color: #cdb154
}

.property-card .property-text-wrap .top .price[data-v-19691853] {
    color: #000;
    font-size: 24px;
    margin-bottom: 8px;
    transition: all .1s ease
}

.property-card .property-text-wrap .top .price[data-v-19691853]:hover {
    color: #cdb154
}

.property-card .property-text-wrap .top .info[data-v-19691853] {
    font-weight: 300
}

.property-card .property-text-wrap .top .property-spaces[data-v-19691853] {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 24px
}

.property-card .property-text-wrap .top .property-spaces .item[data-v-19691853] {
    display: flex;
    align-items: center;
    gap: 12px
}

.property-card .property-text-wrap .top .property-spaces .item .icon[data-v-19691853] {
    font-size: 24px
}

.property-card .property-text-wrap .top .property-spaces .item .text[data-v-19691853] {
    color: #000;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase
}

.property-card .property-text-wrap .top .property-spaces .item .text .label[data-v-19691853] {
    width: 180px;
    display: inline-block
}

.property-card .property-text-wrap .top .property-spaces .item .text .value[data-v-19691853] {
    font-weight: 600
}

.property-card .property-text-wrap .top .description[data-v-19691853] {
    font-weight: 300;
    margin-bottom: 24px
}

.property-card .property-text-wrap .contact-items[data-v-19691853] {
    display: flex;
    justify-content: space-between
}

.property-card .property-text-wrap .contact-items .person-img-data[data-v-19691853] {
    display: flex;
    align-items: center
}

.property-card .property-text-wrap .contact-items .person-img-data .person-img[data-v-19691853] {
    margin-right: 16px
}

.property-card .property-text-wrap .contact-items .person-img-data .person-img img[data-v-19691853] {
    max-width: 48px;
    width: 48px;
    height: 48px;
    -o-object-fit: cover;
    object-fit: cover
}

.property-card .property-text-wrap .contact-items .person-img-data .name[data-v-19691853] {
    font-size: 16px;
    font-weight: 700
}

.property-card .property-text-wrap .contact-items .person-contact[data-v-19691853] {
    display: flex;
    gap: 10px
}

.property-card .property-text-wrap .contact-items .person-contact .btn-base[data-v-19691853] {
    display: flex;
    align-items: center;
    gap: 8px
}

.property-card .property-text-wrap .contact-items .person-contact .btn-base svg[data-v-19691853] {
    font-size: 16px
}

@media only screen and (min-width: 800px) {
    .property-card[data-v-19691853] {
        max-height:450px
    }
}

@media only screen and (max-width: 500px) {
    .property-card[data-v-19691853] {
        flex-direction:column
    }

    .property-card .img-wrap[data-v-19691853] {
        width: 100%!important
    }

    .property-card .property-text-wrap[data-v-19691853] {
        width: 100%!important;
        padding: 24px!important
    }

    .property-card .property-text-wrap .top[data-v-19691853] {
        margin-bottom: 50px
    }
}

.checkbox-label[data-v-5c40a7d2] {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    cursor: pointer;
    font-size: 16px;
    color: #000;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.checkbox-label input[data-v-5c40a7d2] {
    position: absolute;
    opacity: 0;
    cursor: pointer
}

.checkbox[data-v-5c40a7d2] {
    position: relative;
    height: 24px;
    width: 24px;
    background-color: transparent;
    border: 1px solid #232323;
    border-radius: 2px;
    transition: all .15s
}

.checkbox-label input:focus-visible~.checkbox[data-v-5c40a7d2] {
    border: 1px solid #24e1ce
}

.checkbox[data-v-5c40a7d2]:after {
    content: "";
    position: absolute;
    top: 11px;
    left: 4px;
    width: 0px;
    height: 0px;
    border: solid rgb(var(--color-primary));
    border-width: 2px 2px 0 0;
    opacity: 0;
    transform-origin: left top;
    transform: scaleX(-1) rotate(135deg);
    transition: width .08s ease .1s,height .1s ease,border-color .3s ease,opacity .1s ease .2s,border-width .1s ease
}

.checkbox-label input:checked~.checkbox[data-v-5c40a7d2] {
    background-color: rgb(var(--color-primary));
    border-color: rgb(var(--color-primary))
}

.checkbox-label input:checked~.checkbox[data-v-5c40a7d2]:after {
    opacity: 1;
    width: 7px;
    height: 13px;
    border-color: #fff;
    transition: width .1s ease,height .08s ease .1s,border-color .3s ease,border-width .1s ease
}

.checkbox-dropdown-wrapper {
    width: 100%
}

.checkbox-dropdown-wrapper button {
    display: flex;
    flex-direction: column;
    width: 100%
}

.checkbox-dropdown-wrapper .dropdown-label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 24px
}

.checkbox-dropdown-wrapper .dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: #434343
}

.checkbox-dropdown-content {
    transform-origin: left top;
    box-shadow: 0 6px 12px #0000001a,0 -6px 12px #0000001a;
    transition: all 1s ease;
    background-color: #fff;
    z-index: 1;
    animation: scaleIn .3s ease-out
}

.checkbox-dropdown-content .checkbox-list {
    padding: 20px;
    transition: padding .5s ease;
    color: #232323;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    -moz-column-gap: 24px;
    column-gap: 24px;
    row-gap: 16px
}

.checkbox-dropdown-content .clear-selection {
    padding: 20px 10px;
    border-top: 1px solid #cacaca;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    align-items: flex-start
}

.checkbox-dropdown-content .clear-selection button {
    color: #071c35;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1
}

.checkbox-dropdown-content .clear-selection button:disabled {
    color: #cacaca
}

[data-radix-popper-content-wrapper] {
    z-index: 9999!important
}

.range-dropdown-wrapper {
    width: 100%
}

.range-dropdown-wrapper button {
    display: flex;
    flex-direction: column;
    width: 100%
}

.range-dropdown-wrapper .dropdown-label {
    display: block;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    line-height: 24px
}

.range-dropdown-wrapper .dropdown-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 8px;
    color: #434343
}

.range-dropdown-content {
    transform-origin: left top;
    box-shadow: 0 6px 12px #0000001a,0 -6px 12px #0000001a;
    transition: all 1s ease;
    background-color: #fff;
    z-index: 1;
    animation: scaleIn .3s ease-out
}

.range-dropdown-content .select-dropdown-container {
    display: flex;
    gap: 20px 0px;
    flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center
}

.range-dropdown-content .select-dropdown-container .select-dropdown-wrap {
    padding-right: 20px;
    padding-left: 20px;
    transition: padding .5s ease;
    color: #232323
}

.range-dropdown-content .select-dropdown-container .select-dropdown {
    width: 100%;
    padding: 15px 7px;
    border: 1px solid #232323;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: #fff url(../../../public/assets/icon/angle-down-light.svg) no-repeat 92% 18px;
    background-size: 9px auto;
    color: #232323
}

.range-dropdown-content .select-dropdown-container .pricerange-to {
    padding-top: 20px
}

.range-dropdown-content .clear-selection {
    padding: 20px 10px;
    border-top: 1px solid #cacaca;
    margin-left: 10px;
    margin-right: 10px;
    display: flex;
    align-items: flex-start
}

.range-dropdown-content .clear-selection button {
    color: #071c35;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1
}

.range-dropdown-content .clear-selection button:disabled {
    color: #cacaca
}

@keyframes scaleIn {
    0% {
        opacity: 0;
        transform: scaleY(0)
    }

    to {
        opacity: 1;
        transform: scaleY(1)
    }
}

.property-search-toggler {
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px
}

.property-search-toggler button {
    width: 100%;
    font-size: 14px
}

.property-search-toggler button svg {
    font-size: 17px
}

.property-search-filter.is-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 0px;
    height: 100vh;
    flex-direction: column;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: #fff;
    box-shadow: 3px 0 25px -10px #0000001a;
    z-index: 9999;
    visibility: hidden;
    overflow: hidden;
    white-space: nowrap;
    transition: all .3s ease;
    transform: translate(-200px)
}

.property-search-filter.is-mobile .search-action {
    padding: 0 18px
}

.property-search-filter.is-mobile .search-action .close-filter-btn {
    font-size: 26px;
    padding: 12px;
    margin: -12px
}

.property-search-filter.is-mobile .search-item {
    flex-grow: 0;
    border-bottom: 1px solid #ddd
}

.property-search-filter.is-mobile .search-item.right-divider:before {
    content: none
}

.property-search-filter.is-mobile.active {
    visibility: visible;
    width: 100%;
    transform: translate(0)
}

.property-search-filter {
    width: 100%;
    background-color: #fff;
    border-radius: 2px;
    display: flex
}

.property-search-filter .search-item {
    position: relative;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0
}

.property-search-filter .search-item.property-search {
    min-width: 300px
}

.property-search-filter .search-item.search-btn-item {
    min-width: 230px
}

.property-search-filter .search-item.right-divider:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 75%;
    background-color: #d8d8d8
}

.property-search-filter .search-item .search-box {
    width: 100%
}

.property-search-filter .search-item .search-box .search-location {
    width: 100%;
    border: 1px solid #d8d8d8;
    padding: 12px 12px 12px 42px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 512 512'%3E%3Cpath fill='none' stroke='%23000' stroke-miterlimit='10' stroke-width='32' d='M221.09 64a157.09 157.09 0 1 0 157.09 157.09A157.1 157.1 0 0 0 221.09 64Z'/%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='32' d='M338.29 338.29L448 448'/%3E%3C/svg%3E") no-repeat 12px 50%;
    background-size: 20px auto
}

.property-search-filter .search-item .search-box .search-location:focus {
    outline: none;
    border-color: rgb(var(--color-primary))
}

.property-search-filter .search-item.property-category .button-input {
    display: flex;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    border: 1px solid #d8d8d8
}

.property-search-filter .search-item.property-category .button-input input {
    display: none
}

.property-search-filter .search-item.property-category .button-input input+label {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
    gap: 2px;
    border-radius: 2px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    color: #333;
    height: 100%;
    min-height: 48px;
    padding: 4px 12px;
    margin: 0;
    line-height: 25.6px;
    white-space: nowrap;
    vertical-align: baseline;
    transition: background-color .2s ease
}

.property-search-filter .search-item.property-category .button-input input:checked+label {
    color: #fff;
    background-color: rgb(181 138 60);
}

.property-search-filter .search-item .search-result.active {
    color: rgb(var(--color-primary))
}

.property-search-filter .search-item .search-btn {
    width: 100%;
    white-space: nowrap
}
@import"https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap";.container[data-v-393db8e6] {
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-right: 15px;
    padding-left: 15px;
    width: 1400px;
    max-width: 100%
}

@media screen and (max-width: 1400px) {
    .container[data-v-393db8e6] {
        width:1200px
    }
}

@media screen and (max-width: 1200px) {
    .container[data-v-393db8e6] {
        width:1000px
    }
}

.btn-base {
    font-family: Lato,Open Sans,sans-serif;
    font-weight: 600!important;
    font-size: 12px;
    padding: 11px 20px;
    border-radius: 2px;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 2px!important;
    position: relative;
    transition: background-color .3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px
}

.btn-rounded {
    border-radius: 25px
}

.btn-gold {
    color: #fff!important;
    background: rgb(var(--color-primary))
}

.btn-gray {
    color: #fff!important;
    background: #9d9d9c!important
}

.btn-white {
    color: #000!important;
    background: #fff!important;
    border: 1px solid #9d9d9c
}

.navbar-wrapper {
    position: relative;
}

.navbar-wrapper .navbar-empty-height {
    height: 80px
}

.navbar-wrapper .sticky .navbar-empty-height {
    display: block
}

.navbar-wrapper.sticky.navbar-dark .navbar,.navbar-wrapper.navbar-light .navbar {
    background-image: none;
}

.navbar {
    position: absolute;
    width: 100%;
    background-color: transparent;
    background-image: linear-gradient(to bottom,rgba(0,0,0,.4),transparent);
    transition: background-color .3s ease,box-shadow .3s ease;
    z-index: 99
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 64px
}

.navbar .navbar-brand .logo {
    max-height: 80px
}

.navbar .navbar-brand .hamburger-icon,.navbar-light .navbar-brand .logo.logo-light {
    display: none
}

.navbar-light .navbar-brand .logo.logo-dark {
    display: block
}

.navbar .navbar-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-grow: 1
}

.navbar .navbar-nav .nav-list {
    display: flex;
    align-items: center;
    justify-content: center
}

.navbar .navbar-nav .nav-list li .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    color: #232323;
    font-weight: 400;
    letter-spacing: 1.2px;
    font-size: 12px;
    line-height: 24px;
    padding: 11px 20px;
    text-transform: uppercase
}

.navbar .navbar-nav .nav-list li .nav-link-underline:before {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    right: 50%;
    bottom: 0;
    transform: translate(50%);
    background-color: #232323;
    transition: width .15s cubic-bezier(.7,1,.32,1.2)
}

.navbar .navbar-nav .nav-list li .nav-link-underline:hover:before {
    width: 40%
}

.navbar .navbar-nav .nav-list li .nav-link svg {
    font-size: 15px
}

.sticky .navbar {
    background-color: #fff;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transform: translateY(-100%);
    transition: background-color .5s ease,transform .5s ease-in-out
}

.sticky .navbar.show-sticky {
    box-shadow: 0 0 3px #e0e0e0;
    transform: translateY(0);
    padding: 0
}

.navbar-wrapper.navbar-dark .navbar {
    padding: 10px 0
}

.navbar-wrapper.navbar-dark .logo.logo-dark,.navbar-wrapper.navbar-dark .navbar-empty-height {
    display: none
}

.navbar-wrapper.navbar-dark .navbar-nav .nav-list li .nav-link {
    color: #fff;
    border-bottom: 2px solid transparent
}

.navbar-wrapper.navbar-dark .navbar-nav .nav-list li .nav-link-underline:before {
    background-color: #fff
}

.navbar-wrapper.navbar-dark.sticky .logo.logo-light {
    display: none
}

.navbar-wrapper.navbar-dark.sticky .logo.logo-dark {
    display: block
}

.navbar-wrapper.navbar-dark.sticky .navbar-nav .nav-list li .nav-link {
    color: #fff;
    color: #232323
}

@media screen and (max-width: 768px) {
    .navbar-wrapper .navbar {
        padding:0
    }

    .navbar-wrapper .navbar .navbar-brand {
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px
    }

    .navbar-wrapper .navbar .navbar-nav {
        display: none!important;
        position: absolute;
        top: 0;
        left: 0;
        background-color: #fff;
        width: 80%;
        height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        gap: 64px;
        box-shadow: 3px 0 25px -10px #0000001a;
        visibility: hidden;
        transform: translate(-100%);
        transition: all .3s ease
    }

    .navbar-wrapper .navbar .navbar-nav .nav-list {
        flex-direction: column;
        align-items: flex-start;
        text-align: start
    }

    .navbar-wrapper .navbar .navbar-nav .nav-list li .nav-link {
        color: #000
    }
}

@media screen and (max-width: 1200px) {
    .navbar-light .navbar-empty-height {
        height:114px
    }

    .navbar-brand {
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 12px
    }

    .navbar-brand .hamburger-icon {
        display: block!important;
        padding: 12px;
        margin: -12px
    }

    .navbar-brand .hamburger-icon svg {
        font-size: 24px;
        color: rgb(var(--color-primary))
    }

    .navbar-nav {
        display: none!important
    }

    .navbar .navbar-nav .primary-nav .nav-link:last-child {
        padding-right: 0
    }
}

@media screen and (max-width: 1400px) {
    .navbar .container {
        gap:24px
    }
}

.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0px;
    height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 64px;
    padding-top: 24px;
    padding-bottom: 24px;
    background-color: #fff;
    box-shadow: 3px 0 25px -10px #0000001a;
    z-index: 100;
    visibility: hidden;
    overflow: hidden;
    white-space: nowrap;
    transition: all .3s ease;
    transform: translate(-200px)
}

.mobile-navbar .close-nav-btn {
    font-size: 26px
}

.mobile-navbar .nav-list {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    text-align: start
}

.mobile-navbar .nav-list li .nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    color: #232323;
    font-weight: 400;
    letter-spacing: 1.2px;
    font-size: 12px;
    line-height: 24px;
    padding: 11px 0;
    text-transform: uppercase
}

.mobile-navbar .nav-list li .nav-link-underline:before {
    content: "";
    width: 0;
    height: 1px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #232323;
    transition: width .15s cubic-bezier(.7,1,.32,1.2)
}

.mobile-navbar .nav-list li .nav-link-underline:hover:before {
    width: 40%
}

.mobile-navbar .nav-list li .nav-link.nav-btn {
    padding: 12px 20px
}

.mobile-navbar .nav-list li .nav-link svg {
    font-size: 15px
}

.mob-nav-active .mobile-navbar {
    padding-right: 24px;
    padding-left: 24px;
    visibility: visible;
    width: 80vw;
    transform: translate(0)
}

footer {
    color: #99979c;
    background-color: #f8f9fb;
    box-shadow: 0 -.2px 3px #e0e0e0;
    text-align: left
}

footer .footer-wrapper {
    padding: 50px 0
}

footer .newsletter-wrapper {
    display: flex;
    align-items: center
}

footer .footer-logo {
    padding-right: 54px;
    border-right: 1px solid #cacaca
}

footer .footer-logo .logo {
    max-width: 130px
}

footer .footer-socials {
    padding-left: 54px;
    display: flex;
    align-items: center;
    gap: 8px
}

footer .footer-socials li a {
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center
}

footer .newsletter-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px
}

footer .newsletter-form {
    display: flex;
    flex-grow: 1
}

footer .newsletter-form input {
    font-family: Lato,Open Sans,sans-serif;
    font-weight: 300;
    line-height: 24px;
    padding: 10px 15px;
    border: 1px solid #232323;
    margin-top: 0;
    letter-spacing: normal;
    height: 52px;
    max-width: 420px;
    margin-left: auto;
    flex-grow: 1;
    border-width: 0;
    font-size: 18px;
    border-radius: 0
}

footer .newsletter-form .btn-gray {
    height: 50px;
    background-color: #9d9d9c;
    border-color: #9d9d9c;
    border-radius: 0!important;
    color: #fff;
    font-size: 12px!important;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 24px;
    text-align: center;
    text-transform: uppercase;
    margin-right: 0;
    padding: 0 32px;
    display: inline-block
}

footer hr {
    border: 0;
    border-top: 1px solid rgba(0,0,0,.1);
    margin-top: 48px;
    margin-bottom: 48px
}

footer .main-footer {
    display: flex;
    justify-content: space-between;
    row-gap: 64px;
    -moz-column-gap: 32px;
    column-gap: 32px
}

footer .main-footer .footer-item .footer-heading {
    font-family: Lato,Open Sans,sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 36px;
    color: #000
}

footer .main-footer .footer-item .footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px
}

footer .main-footer .footer-item .footer-links .footer-link {
    color: #232323;
    font-weight: 300;
    padding: 0;
    letter-spacing: 2px;
    text-decoration: none;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 12px
}

footer .main-footer .footer-item .footer-text {
    color: #232323;
    line-height: 2;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .75px
}

footer .main-footer .footer-item .footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px
}

footer .main-footer .footer-item .footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #232323;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .75px
}

:root {
    --color-primary: 33, 79, 179;
    --color-primary-dark: 23, 55, 125;
    --color-primary-black: 13, 32, 72
}


.section-about {
    position: relative;
    padding-bottom: 150px;
}

.section-about .about-content {
    width: 66%;
    background: #231f20;
    padding: 40px 45px 80px 65px;
    position: absolute;
    bottom: 0;
}

.section-about .about-content .heading {
    font-size: 46px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: optima sans-serif;
}

.section-ceo-msg {
    position: relative
}

.section-ceo-msg .ceo-msg-content-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 34px
}

.section-ceo-msg .ceo-msg-content-wrap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0006
}

.section-ceo-msg .ceo-msg-content {
    background-color: #fff;
    width: 40%;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 999;
    position: relative
}

.section-ceo-msg .ceo-msg-content .ceo-img {
    width: 200px;
    margin: 0 auto 50px;
    border-radius: 5px
}

.section-ceo-msg .ceo-msg-content .message {
    font-size: 22px;
    line-height: 39px;
    color: #000000;
}

.section-faq {
    padding-top: 150px;
    padding-bottom: 120px;
    background-position: bottom;
    background-repeat: no-repeat;
    background: #231f20;
}

.section-story {
    padding: 120px 0;
    background: #282425;
    /* margin-top: 120px; */
}

@media only screen and (max-width: 500px) {
    .section-about {
        padding-bottom:0
    }

    .section-about .about-content {
        position: relative;
        width: 100%;
        padding: 40px 20px 80px!important
    }

    .section-ceo-msg .ceo-bg {
        display: none
    }

    .section-ceo-msg .ceo-msg-content-wrap {
        padding: 34px 0;
        position: relative
    }

    .section-ceo-msg .ceo-msg-content-wrap:after {
        display: none
    }

    .section-ceo-msg .ceo-msg-content {
        background: #fefefe;
        position: relative;
        width: 100%;
        padding: 0;
        flex-direction: column!important
    }

    .section-ceo-msg .ceo-msg-content .message {
        font-size: 22px;
        line-height: 39px
    }

    .section-story {
        padding: 80px 0;
        margin-top: 60px
    }

    .section-faq {
        background-position: left
    }
}

@media only screen and (max-width: 800px) {
    .section-ceo-msg .ceo-bg {
        display:none
    }

    .section-ceo-msg .ceo-msg-content-wrap {
        position: relative
    }

    .section-ceo-msg .ceo-msg-content-wrap .ceo-msg-content {
        flex-direction: column!important
    }
}

@media only screen and (max-width: 900px) {
    .faq-grid-item {
        grid-column:span 12
    }

    .section-ceo-msg .ceo-msg-content {
        width: 100%;
        flex-direction: row;
        align-items: center;
        gap: 40px
    }
}

@media only screen and (max-width: 1024px) {
    .section-about {
        padding-bottom:0
    }

    .section-about .about-content {
        width: 100%;
        position: relative;
        padding: 40px 45px 80px
    }
}

@media only screen and (max-width: 1200px) {
    .section-ceo-msg .ceo-msg-content {
        width:100%
    }

    .section-ceo-msg .ceo-msg-content .message {
        font-size: 20px
    }
}



.section-testimonial {
    padding-top: 200px;
    padding-bottom: 120px
}

.section-testimonial .testimonial-slider .testimonial-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    padding: 0 52px
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info {
    border: 1px solid #dbdbdb;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    transition: all .6s linear;
    white-space: nowrap
}

@media screen and (min-width: 1400px) {
    .section-testimonial .testimonial-slider .testimonial-item .testimonial-info {
        width:350px
    }
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info img {
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info .testi-inner-info {
    padding-left: 28px
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info .testi-inner-info .name {
    font-size: 18px
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info .testi-inner-info .location {
    color: rgb(var(--color-primary))
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap {
    width: 695px;
    padding: 60px 70px 60px 80px;
    position: relative
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    background-image: url(assets/img/about/testimonial-pattern.webp);
    width: 75%;
    z-index: -1;
    background-size: cover;
    background-position: center
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap .testi-quote-text {
    text-align: center;
    line-height: 1.7;
    position: relative
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap .testi-quote-text .quote-icon {
    color: rgb(var(--color-primary));
    font-size: 42px;
    position: absolute
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap .testi-quote-text .quote-icon.left {
    left: -70px;
    top: -15px
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap .testi-quote-text .quote-icon.right {
    right: -60px;
    bottom: -17.6px
}

.section-testimonial .testimonial-slider .swiper-button-prev,.section-testimonial .testimonial-slider .swiper-button-next {
    width: auto;
    height: auto;
    transition: transform .2s ease
}

.section-testimonial .testimonial-slider .swiper-button-prev:after,.section-testimonial .testimonial-slider .swiper-button-next:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 40 40'%3E%3Cpath fill='%23000' d='M24.73 28.146a.498.498 0 0 0 .36-.153l7.359-7.631a.498.498 0 0 0 0-.693l-7.391-7.662a.5.5 0 1 0-.72.693l7.056 7.315l-7.024 7.284a.5.5 0 0 0 .36.847'/%3E%3Cpath fill='%23000' d='M7.91 20.515h24.18a.5.5 0 0 0 0-1H7.91a.5.5 0 0 0 0 1'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    transform: rotate(180deg)
}

.section-testimonial .testimonial-slider .swiper-button-next:after {
    transform: rotate(0);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 40 40'%3E%3Cpath fill='%23000' d='M24.73 28.146a.498.498 0 0 0 .36-.153l7.359-7.631a.498.498 0 0 0 0-.693l-7.391-7.662a.5.5 0 1 0-.72.693l7.056 7.315l-7.024 7.284a.5.5 0 0 0 .36.847'/%3E%3Cpath fill='%23000' d='M7.91 20.515h24.18a.5.5 0 0 0 0-1H7.91a.5.5 0 0 0 0 1'/%3E%3C/svg%3E")
}

.section-testimonial .testimonial-slider .swiper-button-prev:hover {
    transform: translate(-5px)
}

.section-testimonial .testimonial-slider .swiper-button-next:hover {
    transform: translate(5px)
}

@media only screen and (max-width: 500px) {
    .section-testimonial .tagline-wrap {
        justify-content:center
    }

    .section-testimonial .text-animation-wrapper .heading {
        text-align: center
    }

    .section-testimonial .testimonial-slider .testimonial-item {
        flex-direction: column;
        gap: 45px;
        padding: 0
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-info {
        width: 100%
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-cap {
        width: 100%;
        padding: 32px 24px
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-cap p svg {
        font-size: 28px!important
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-cap p .quote-icon.left {
        left: -20px!important;
        top: -40px!important
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-cap p .quote-icon.right {
        right: -10px!important;
        bottom: -17.6px!important
    }

    .section-testimonial .testimonial-slider .swiper-button-prev,.section-testimonial .testimonial-slider .swiper-button-next {
        display: none
    }
}

@media only screen and (max-width: 1200px) {
    .section-testimonial {
        padding-top:120px
    }

    .section-testimonial .tagline-wrap {
        justify-content: center
    }

    .section-testimonial .heading {
        text-align: center
    }

    .section-testimonial .testimonial-slider .testimonial-item {
        flex-direction: column;
        gap: 45px;
        padding: 0
    }
}

.section-search-by-type {
    background-color: #fff;
    padding-top: 120px;
    padding-bottom: 120px
}

.search-property-image {
    height: 320px;
    overflow: hidden
}

.search-property-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.search-property-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 12px
}

.search-property-content .divider {
    display: block;
    height: .1px;
    width: 100%;
    background-color: #9d9d9c
}

.search-property-content .property-listings {
    font-size: 12px;
    color: #9d9d9c;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    white-space: nowrap
}

@media screen and (max-width: 1200px) {
    .property-by-type-item {
        grid-column:span 6
    }
}

.section-property-category {
    background-color: #f9f9f9;
    padding-top: 120px;
    padding-bottom: 120px
}

.category-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 48px
}

.category-list .category-item .category-img {
    width: auto;
    height: 400px
}

.category-list .category-item .category-img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.category-list .category-item .category-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 24px;
    gap: 6px
}

.category-list .category-item .category-content p.tagline {
    color: #232323;
    font-weight: 300;
    padding: 0 24px;
    letter-spacing: 2px;
    line-height: 1.8;
    text-decoration: none;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 12px
}

.category-list .category-item .category-content p.desc-text {
    font-size: 14px;
    color: #232323;
    font-weight: 300;
    padding: 0;
    line-height: 1.8;
    text-decoration: none;
    background-color: transparent
}

@media screen and (max-width: 500px) {
    .category-list {
        display:grid;
        grid-template-columns: 1fr;
        gap: 48px
    }
}

@media screen and (max-width: 1200px) {
    .category-list .category-item {
        grid-column:span 2
    }

    .category-list .category-item .category-img {
        height: 300px!important
    }
}

.clients-section {
    background-color: #f9f9f9;
    padding-top: 120px;
    padding-bottom: 120px
}

.clients-section .clients-row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.clients-section .clients-row .clients-item {
    height: 100%;
    flex: 0 0 12vw;
    margin: 0 24px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.clients-section .clients-row .clients-item:first-child {
    margin-left: 0
}

.clients-section .clients-row .clients-item img {
    max-height: 11vw;
    max-width: 11vw;
    padding: 30px;
    transition: all .3s ease
}

.clients-section .clients-row .clients-item img:hover img {
    filter: grayscale(.3);
    transform: translateY(-6px)
}

.clients-section .marquee {
    overflow: hidden
}

.clients-section .marquee .marquee-content {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    animation: marquee 25s linear infinite
}

@keyframes marquee {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

@media screen and (max-width: 1200px) {
    .clients-section .clients-row {
        flex-wrap:wrap;
        justify-content: center
    }

    .clients-section .clients-row .clients-item img {
        max-height: 14vw;
        max-width: 14vw
    }
}

@media screen and (max-width: 880px) {
    .clients-section .clients-row .clients-item img {
        max-height:18vw;
        max-width: 18vw
    }
}

@media screen and (max-width: 800px) {
    .clients-section .clients-row .clients-item img {
        max-height:18vw;
        max-width: 18vw
    }
}

@media screen and (max-width: 768px) {
    .clients-section .clients-row .clients-item img {
        max-height:25vw;
        max-width: 25vw
    }
}

@media screen and (max-width: 500px) {
    .clients-section {
        padding-top:80px;
        padding-bottom: 80px
    }

    .clients-section .clients-row {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 40px
    }

    .clients-section .clients-row .clients-item {
        flex: 0 0 55vw;
        margin: 0;
        aspect-ratio: auto
    }

    .clients-section .clients-row .clients-item img {
        max-height: 40vw;
        max-width: 40vw;
        padding: 30px
    }
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 12px
}


.accordion-item .accordion-title {
    font-size: 20px
}

.accordion-item .icon {
    font-size: 20px;
    width: 20px;
    height: 20px;
    opacity: .5
}


@media screen and (max-width: 500px) {
    .accordion-item .accordion-title {
        text-align:start;
        font-size: 18px
    }

    .accordion-item .accordion-content {
        font-size: 18px
    }
}



.section-testimonial {
    padding-top: 200px;
    padding-bottom: 120px
}

.section-testimonial .testimonial-slider .testimonial-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 120px;
    padding: 0 52px
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info {
    border: 1px solid #dbdbdb;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    transition: all .6s linear;
    white-space: nowrap
}

@media screen and (min-width: 1400px) {
    .section-testimonial .testimonial-slider .testimonial-item .testimonial-info {
        width:350px
    }
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info img {
    width: 70px;
    height: 70px;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 50%
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info .testi-inner-info {
    padding-left: 28px
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info .testi-inner-info .name {
    font-size: 18px
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-info .testi-inner-info .location {
    color: rgb(var(--color-primary))
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap {
    width: 695px;
    padding: 60px 70px 60px 80px;
    position: relative
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap:before {
    content: "";
    position: absolute;
    left: -10px;
    top: 0;
    bottom: 0;
    background-image: url(assets/img/about/testimonial-pattern.webp);
    width: 75%;
    z-index: -1;
    background-size: cover;
    background-position: center
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap .testi-quote-text {
    text-align: center;
    line-height: 1.7;
    position: relative
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap .testi-quote-text .quote-icon {
    color: rgb(var(--color-primary));
    font-size: 42px;
    position: absolute
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap .testi-quote-text .quote-icon.left {
    left: -70px;
    top: -15px
}

.section-testimonial .testimonial-slider .testimonial-item .testimonial-cap .testi-quote-text .quote-icon.right {
    right: -60px;
    bottom: -17.6px
}

.section-testimonial .testimonial-slider .swiper-button-prev,.section-testimonial .testimonial-slider .swiper-button-next {
    width: auto;
    height: auto;
    transition: transform .2s ease
}

.section-testimonial .testimonial-slider .swiper-button-prev:after,.section-testimonial .testimonial-slider .swiper-button-next:after {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 40 40'%3E%3Cpath fill='%23000' d='M24.73 28.146a.498.498 0 0 0 .36-.153l7.359-7.631a.498.498 0 0 0 0-.693l-7.391-7.662a.5.5 0 1 0-.72.693l7.056 7.315l-7.024 7.284a.5.5 0 0 0 .36.847'/%3E%3Cpath fill='%23000' d='M7.91 20.515h24.18a.5.5 0 0 0 0-1H7.91a.5.5 0 0 0 0 1'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    width: 40px;
    height: 40px;
    transform: rotate(180deg)
}

.section-testimonial .testimonial-slider .swiper-button-next:after {
    transform: rotate(0);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1em' height='1em' viewBox='0 0 40 40'%3E%3Cpath fill='%23000' d='M24.73 28.146a.498.498 0 0 0 .36-.153l7.359-7.631a.498.498 0 0 0 0-.693l-7.391-7.662a.5.5 0 1 0-.72.693l7.056 7.315l-7.024 7.284a.5.5 0 0 0 .36.847'/%3E%3Cpath fill='%23000' d='M7.91 20.515h24.18a.5.5 0 0 0 0-1H7.91a.5.5 0 0 0 0 1'/%3E%3C/svg%3E")
}

.section-testimonial .testimonial-slider .swiper-button-prev:hover {
    transform: translate(-5px)
}

.section-testimonial .testimonial-slider .swiper-button-next:hover {
    transform: translate(5px)
}

@media only screen and (max-width: 500px) {
    .section-testimonial .tagline-wrap {
        justify-content:center
    }

    .section-testimonial .text-animation-wrapper .heading {
        text-align: center
    }

    .section-testimonial .testimonial-slider .testimonial-item {
        flex-direction: column;
        gap: 45px;
        padding: 0
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-info {
        width: 100%
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-cap {
        width: 100%;
        padding: 32px 24px
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-cap p svg {
        font-size: 28px!important
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-cap p .quote-icon.left {
        left: -20px!important;
        top: -40px!important
    }

    .section-testimonial .testimonial-slider .testimonial-item .testimonial-cap p .quote-icon.right {
        right: -10px!important;
        bottom: -17.6px!important
    }

    .section-testimonial .testimonial-slider .swiper-button-prev,.section-testimonial .testimonial-slider .swiper-button-next {
        display: none
    }
}

@media only screen and (max-width: 1200px) {
    .section-testimonial {
        padding-top:120px
    }

    .section-testimonial .tagline-wrap {
        justify-content: center
    }

    .section-testimonial .heading {
        text-align: center
    }

    .section-testimonial .testimonial-slider .testimonial-item {
        flex-direction: column;
        gap: 45px;
        padding: 0
    }
}

.section-search-by-type {
    background-color: #fff;
    padding-top: 120px;
    padding-bottom: 120px
}

.search-property-image {
    height: 320px;
    overflow: hidden
}

.search-property-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.search-property-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 12px
}

.search-property-content .divider {
    display: block;
    height: .1px;
    width: 100%;
    background-color: #9d9d9c
}

.search-property-content .property-listings {
    font-size: 12px;
    color: #9d9d9c;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    white-space: nowrap
}

@media screen and (max-width: 1200px) {
    .property-by-type-item {
        grid-column:span 6
    }
}

.section-property-category {
    background-color: #f9f9f9;
    padding-top: 120px;
    padding-bottom: 120px
}

.category-list {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 48px
}

.category-list .category-item .category-img {
    width: auto;
    height: 400px
}

.category-list .category-item .category-img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%
}

.category-list .category-item .category-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    margin-top: 24px;
    gap: 6px
}

.category-list .category-item .category-content p.tagline {
    color: #232323;
    font-weight: 300;
    padding: 0 24px;
    letter-spacing: 2px;
    line-height: 1.8;
    text-decoration: none;
    background-color: transparent;
    text-transform: uppercase;
    font-size: 12px
}

.category-list .category-item .category-content p.desc-text {
    font-size: 14px;
    color: #232323;
    font-weight: 300;
    padding: 0;
    line-height: 1.8;
    text-decoration: none;
    background-color: transparent
}

@media screen and (max-width: 500px) {
    .category-list {
        display:grid;
        grid-template-columns: 1fr;
        gap: 48px
    }
}

@media screen and (max-width: 1200px) {
    .category-list .category-item {
        grid-column:span 2
    }

    .category-list .category-item .category-img {
        height: 300px!important
    }
}

.clients-section {
    background-color: #f9f9f9;
    padding-top: 120px;
    padding-bottom: 120px
}

.clients-section .clients-row {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.clients-section .clients-row .clients-item {
    height: 100%;
    flex: 0 0 12vw;
    margin: 0 24px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.clients-section .clients-row .clients-item:first-child {
    margin-left: 0
}

.clients-section .clients-row .clients-item img {
    max-height: 11vw;
    max-width: 11vw;
    padding: 30px;
    transition: all .3s ease
}

.clients-section .clients-row .clients-item img:hover img {
    filter: grayscale(.3);
    transform: translateY(-6px)
}

.clients-section .marquee {
    overflow: hidden
}

.clients-section .marquee .marquee-content {
    display: flex;
    width: -moz-fit-content;
    width: fit-content;
    animation: marquee 25s linear infinite
}

@keyframes marquee {
    0% {
        transform: translate(0)
    }

    to {
        transform: translate(-50%)
    }
}

@media screen and (max-width: 1200px) {
    .clients-section .clients-row {
        flex-wrap:wrap;
        justify-content: center
    }

    .clients-section .clients-row .clients-item img {
        max-height: 14vw;
        max-width: 14vw
    }
}

@media screen and (max-width: 880px) {
    .clients-section .clients-row .clients-item img {
        max-height:18vw;
        max-width: 18vw
    }
}

@media screen and (max-width: 800px) {
    .clients-section .clients-row .clients-item img {
        max-height:18vw;
        max-width: 18vw
    }
}

@media screen and (max-width: 768px) {
    .clients-section .clients-row .clients-item img {
        max-height:25vw;
        max-width: 25vw
    }
}

@media screen and (max-width: 500px) {
    .clients-section {
        padding-top:80px;
        padding-bottom: 80px
    }

    .clients-section .clients-row {
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 40px
    }

    .clients-section .clients-row .clients-item {
        flex: 0 0 55vw;
        margin: 0;
        aspect-ratio: auto
    }

    .clients-section .clients-row .clients-item img {
        max-height: 40vw;
        max-width: 40vw;
        padding: 30px
    }
}

.accordion-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.accordion-item {
    background-color: #ffffff59;
    border: 1px solid #b8b8b8;
    /* padding:16px 20px; */
}

.accordion-item .accordion-title {
    font-size: 20px;
    color: #ae803e;
    background: #282425;
    border-top: 1px solid #fff;
}

.accordion-item .icon {
    font-size: 20px;
    width: 20px;
    height: 20px;
    opacity: .5
}


@media screen and (max-width: 500px) {
    .accordion-item .accordion-title {
        text-align:start;
        font-size: 18px
    }

    .accordion-item .accordion-content {
        font-size: 18px
    }
}

.heading {
    text-transform: uppercase;
    font-size: 46px;
    line-height: 1.3;
    font-family: optima sans-serif;
}


.tagline-wrap[data-v-317d5dba] {
    display: flex
}

.tagline-wrap.center[data-v-317d5dba] {
    justify-content: center
}

.tagline-wrap .section-tagline[data-v-317d5dba] {
    font-size: 12px;
    color: #9d9d9c;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center
}

.tagline-wrap .section-tagline[data-v-317d5dba]:after {
    content: "";
    display: block;
    height: .1px;
    width: 120px;
    background-color: #9d9d9c;
    margin-left: 10px
}


.section-team {
    padding: 120px 0
}

.section-team .team-item {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 40px;
    box-shadow: inset 0 0 40px -8px #e0e0e0;
    border-radius: 260px;
    margin-bottom: 60px
}

.section-team .team-item.reflected {
    padding: 40px 40px 40px 110px;
    background: #231f20;

}

.section-team .team-item .team-img {
    border-radius: 50%;
    overflow: hidden;
    height: 200px;
    min-width: 200px
}

.section-team .team-item .team-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.section-team .team-item .team-content .name {
    display: flex;
    align-items: center;
    font-size: 26px
}

.section-team .team-item .team-content .name .agent-flags {
    display: flex;
    gap: 4px;
    margin: 0 4px
}

.section-team .team-item .team-content .designation {
    color: #999;
    margin-bottom: 14px
}

@media screen and (max-width: 768px) {
    .section-team .team-item {
        flex-direction:column;
        border-radius: 15px
    }

    .section-team .team-item.reflected {
        padding: 40px;
        flex-direction: column-reverse
    }

    .section-team .team-item .team-img {
        height: 200px;
        width: 200px
    }

    .section-team .team-item .team-content .name {
        white-space: nowrap
    }
}

@media screen and (max-width: 1024px) {
    .section-team .team-item {
        flex-direction:column;
        border-radius: 15px
    }

    .section-team .team-item.reflected {
        padding: 40px;
        flex-direction: column-reverse
    }

    .section-team .team-item .team-img {
        height: 200px;
        width: 200px
    }
}




.breadcrumb {
    margin-top: 60px
}

.breadcrumb .heading {
    text-transform: uppercase;
    font-size: 46px;
    text-align: center
}

.breadcrumb .desc {
    color: #232323;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 30px
}

.divider {
    width: 100%;
    border-top: 1px solid #ccc!important;
    margin: 28px 0 25px
}

.help-us-wrap {
    background-color: #e9e9e9;
    padding: 40px 110px
}

.help-us-wrap .contact-form {
    display: flex;
    flex-direction: column;
    padding: 40px 0
}

.help-us-wrap .contact-form textarea {
    font-size: 16px;
    font-weight: 300;
    height: 320px;
    resize: none
}

.help-us-wrap .contact-form select.form-input {
    width: 35%
}

.help-us-wrap .contact-form .form-input.phone::-webkit-inner-spin-button,.help-us-wrap .contact-form ::-webkit-outer-spin-button {
    display: none!important
}

.help-us-wrap .contact-form .form-group {
    margin-bottom: 36px
}

.help-us-wrap .contact-form .form-group .form-input {
    font-family: Lato,Open Sans,sans-serif;
    font-weight: 300;
    font-size: 15px;
    padding: 12px 15px;
    border-radius: 2px;
    width: 100%;
    background-color: #fff;
    border: none
}

.help-us-wrap .contact-form .form-group .form-input::-moz-placeholder {
    color: #000
}

.help-us-wrap .contact-form .form-group .form-input::placeholder {
    color: #000
}

.help-us-wrap .contact-form .form-group .form-input:focus {
    outline: none;
    border: none;
    box-shadow: none
}

.help-us-wrap .contact-form .form-group .form-input.phone {
    display: inline-block
}

.help-us-wrap .contact-form .form-group .error-msg {
    margin-top: 5px;
    color: red
}

.help-us-wrap .contact-form .submit-btn {
    width: 30%;
    height: 45px;
    background-color: #464645;
    display: inline-block;
    color: #fff;
    font-family: Lato,Open Sans,sans-serif;
    border-radius: 2px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 auto;
    text-align: center;
    text-transform: uppercase
}

.call-us-wrap {
    padding: 40px;
    margin-left: 30px
}

.call-us-wrap .contact-heading {
    font-size: 32px
}

.call-us-wrap .contact-heading a {
    transition: all .2s ease
}

.call-us-wrap .contact-heading a:hover {
    color: #cdb154
}

.call-us-wrap .address-wrap {
    display: flex;
    align-items: center;
    gap: 10px
}

.call-us-wrap .address-wrap a {
    white-space: nowrap
}

.call-us-wrap .branch-in-france {
    margin-top: 50px
}

@media only screen and (max-width: 500px) {
    .help-us-wrap {
        padding:40px 20px
    }

    .help-us-wrap .contact-form .form-group textarea {
        height: 200px!important
    }

    .call-us-wrap {
        padding: 40px 20px;
        margin-left: 0
    }

    .call-us-wrap .contact-heading {
        font-size: 26px
    }

    .call-us-wrap .address-wrap {
        align-items: flex-start;
        flex-direction: column;
        gap: 14px
    }
}

@media only screen and (max-width: 1025px) {
    .contact-grid-item {
        grid-column:span 12
    }

    .help-us-wrap {
        padding: 40px
    }

    .call-us-wrap .address-wrap {
        flex-direction: column;
        gap: 20px
    }
}



   
   a.btn.btn-blue.get-touch-btn {
    background: #fff;
    color: #232323 !important;
    border: 0;
}


li.watsapp-tab {
    /* gap: 8px; */
    padding-right: 33px;
}

a.header_whatsapp {
    color: white;
}

i.bi.bi-whatsapp {
    height: 14px;
    width: 15px;
    display: inline-block;
}
   
   
   .nav-link {
  position: relative;
  text-decoration: none;
  color: #ffff; /* Change to your preferred text color */
  padding: 5px 0;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 20px;
    bottom: -1px;
    width: 0;
    height: 2px;
    background-color: #ffffff;
    transition: width 0.3s 
ease;
}

.nav-link:hover::after {
    width: 65%;
}



/* Container for custom select */
.dropdown {
  position: relative;
  display: inline-block;
  width: 220px; /* adjust width */
  font-family: Arial, sans-serif;
}

/* Fake select box */
.dropdown-toggle {
  background: #fff;
  border: 1px solid #ccc;
  padding: 10px 12px;
  width: 100%;
  cursor: pointer;
  border-radius: 6px;
  font-size: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.dropdown-toggle:hover {
  border-color: #007bff;
}

/* Dropdown menu */
.dropdown-menu {
  position: absolute;
  bottom: 100%; /* open upwards */
  left: 0;
  width: 100%;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 5px;
  display: none;
  flex-direction: column;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}

/* Show menu when active */
.dropdown.open .dropdown-menu {
  display: flex;
}

/* Menu items */
.dropdown-menu li {
  padding: 10px 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.dropdown-menu li:hover {
  background: #f5f5f5;
}



/* ===== MOBILE ONLY RESPONSIVE (max-width: 767px) ===== */
@media (max-width: 767px) {

  .property-search-filter {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    justify-content: center !important;
  }

  .search-item {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    border-right: none !important;
    margin-bottom: 8px;
  }

  /* PROPERTY CATEGORY (Buy/Rent/Off Plan) */
  .property-category .button-input {
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 8px !important;
  }

  /* RADIO BUTTONS */
  .property-category input[type="radio"] {
    display: none !important;
  }
  .property-category label {
    padding: 8px 12px !important;
    font-size: 14px !important;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
    display: inline-block;
  }
  .property-category input[type="radio"]:checked + label {
    background: #222;
    color: #fff;
  }

  /* DROPDOWN BUTTONS */
  .dropdown-btn {
    width: 100% !important;
    justify-content: space-between !important;
    padding: 10px !important;
    font-size: 14px;
  }

  .dropdown-menu {
    position: relative !important;
    display: none !important;
    margin-top: 5px !important;
    width: 100% !important;
  }

  /* SEARCH BUTTON */
  .search-btn-item {
    flex: 1 1 100% !important;
  }
  .search-btn {
    width: 100% !important;
    padding: 12px !important;
    font-size: 15px !important;
  }
}

.section-about img {
    width: -webkit-fill-available;
}



.testimonial-item span {
    color: #000000;
}

.section-faq {
    padding: 60px 0;
  }
  .accordion-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
  }
  .accordion-title {
    background: none;
    border: none;
    outline: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: color 0.3s;
  }
  .accordion-title:hover {
    color: #e3cb7c;
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 15px;
    border-top: 1px solid #fff;
  }
  .accordion-content p {
    margin: 10px 0;
    color: #ffffff;
    line-height: 1.6;
  }
  .accordion-title.active .icon {
    transform: rotate(180deg);
    transition: transform 0.3s;
  }
  .icon {
    font-size: 1rem;
    transition: transform 0.3s;
  }
